[FONT=Courier New]a\!b\,c\ d~e\quad f\qquad g\ \ \ \ h~~~~i\hspace{20mm}j
gives [tex]a\!b\,c\ d~e\quad f\qquad g\ \ \ \ h~~~~i\hspace{20mm}j[/tex]
To get the result [itex]f(x)=1\ \text{if} \ x>0[/itex], you can't just type
[FONT=Courier New]f(x)=1 if x>0
The result will be ugly: [itex]f(x)=1 if x>0[/itex]. Any of these codes will do a better job:
[FONT=Courier New]f(x)=1\ \text{if}\ x>0
[FONT=Courier New]f(x)=1~\text{if}~x>0
[FONT=Courier New]f(x)=1\text{ if }x>0
These are the results:
[itex]f(x)=1\ \text{if}\ x>0[/itex]
[itex]f(x)=1~\text{if}~x>0[/itex]
[itex]f(x)=1\text{ if }x>0[/itex]
The [FONT=Courier New]\text command tells LaTeX to interpret what comes next as text, instead of as variables.
[B]Subscripts and superscripts:[/B] To put a subscript on a variable, use the [FONT=Courier New]_ symbol. To put a superscript on a variable, use the [FONT=Courier New]^ symbol. For example, if you type
[FONT=Courier New]x_y,\ x^y
the result is [itex]x_y,\ x^y[/itex]. If you want to display just the subscript or the superscript, and not the variable, type [FONT=Courier New]{} where the variable would normally be. This trick is also useful when the horizontal positioning of the indices is important, as in the following example.
[FONT=Courier New]\Lambda^\mu_\nu,\ \Lambda_\nu^\mu,\ \Lambda^\mu{}_\nu,\ \Lambda_\nu{}^\mu
[tex]
\Lambda^\mu_\nu,\ \Lambda_\nu^\mu,\ \Lambda^\mu{}_\nu,\ \Lambda_\nu{}^\mu
[/tex]
Subscripts and superscripts work with integrals, limits, summations, and several other symbols. For example,
[FONT=Courier New]\lim_{n\rightarrow +\infty} {\frac{\sin(x)}{x}}
will give us
[tex]\lim_{n\rightarrow +\infty} {\frac{\sin(x)}{x}}[/tex]
If you do the same thing between itex tags, then you get [itex]\lim_{n\rightarrow +\infty} {\frac{\sin(x)}{x}}[/itex]. The subscript is written next to the limit instead of beneath it. If you don't like this, you can use the [FONT=Courier New]\displaystyle command. For example,
[FONT=Courier New]\displaystyle\lim_{n\rightarrow +\infty} {\frac{\sin(x)}{x}}
will give [itex]\displaystyle\lim_{n\rightarrow +\infty} {\frac{\sin(x)}{x}}[/itex].
[B]Grouping:[/B] By default, most LaTeX commands act only on the first character or command on its right. ([FONT=Courier New]\displaystyle is one of the exceptions). To make them act on longer pieces of input, use curly brackets [FONT=Courier New]{ }. For example
[FONT=Courier New]x^{10}+x^10
gives [itex]x^{10}+x^10[/itex]. If you want to limit the scope of a [FONT=Courier New]\displaystyle command, place the curly brackets as in this example
[FONT=Courier New]\lim_n x_n={\displaystyle\lim_n x_n}=\lim_n x_n
The result is [itex]\lim_n x_n={\displaystyle\lim_n x_n}=\lim_n x_n[/itex].
You can nest brackets within brackets as deeply as you want to build up a complicated expression. For example
[FONT=Courier New]\sqrt{1+\sqrt{1+\sqrt{1+x}}}
gives [itex]\sqrt{1+\sqrt{1+\sqrt{1+x}}}[/itex].
[B]Delimiters:[/B] The delimiters [itex](~),[~], \{~\}[/itex] are typed as [FONT=Courier New]( ), [ ], \{ \}. Note that a curly bracket must be preceded by a backslash. If you want larger delimiters, then you can use the [FONT=Courier New]\big, [FONT=Courier New]\Big, [FONT=Courier New]\bigg and [FONT=Courier New]\Bigg commands. For example
[FONT=Courier New]xe^x = x \Big( \sum_{n=0}^\infty\frac{x^n}{n!} \Big)
will give [tex]xe^x = x \Big( \sum_{n=0}^\infty\frac{x^n}{n!} \Big)[/tex] You can also let LaTeX choose the size of your delimiters. This can be done by typing \left or \right in front of the delimiter. For example
[FONT=Courier New]xe^x = x \left( \sum_{n=0}^\infty\frac{x^n}{n!} \right)
will give [tex]
xe^x = x \left( \sum_{n=0}^\infty\frac{x^n}{n!} \right)
[/tex] The size of the delimiters is determined by the size of what's between them. Because of this, there must be a [FONT=Courier New]\right for each [FONT=Courier New]\left and vice versa. So if you only want one of the delimiters to be displayed, you still have to tell LaTeX where the region that determines the size begins or ends, by typing "[FONT=Courier New]\left." or "[FONT=Courier New]\right." (i.e. you type a period instead of a delimiter), as in the following example.
[FONT=Courier New]\left\{
[FONT=Courier New]\begin{array}{l}
[FONT=Courier New]x=r\cos\theta\\
[FONT=Courier New]y=r\sin\theta
[FONT=Courier New]\end{array}
[FONT=Courier New]\right.
[FONT=Courier New]~~\Rightarrow~~ x^2+y^2
[FONT=Courier New]=r^2(\underbrace{\cos^2\theta+\sin^2\theta}_{=1})=r^2
This gives [tex]
\left\{\begin{array}{l}
x=r\cos\theta\\
y=r\sin\theta
\end{array}\right.
~~\Rightarrow~~ x^2+y^2
=r^2(\underbrace{\cos^2\theta+\sin^2\theta}_{=1})=r^2
[/tex] The array environment is explained in one of the documents linked to after the table of common symbols below.
[B]Different fonts:[/B] Sometimes we wish to type things in a different font:
[TR]
[TD][B]Name[/B][/TD]
[TD][B]Sample[/B][/TD]
[TD][B]LaTeX code[/B][/TD]
[/TR]
[TR]
[TD]Blackboard bold[/TD]
[TD][itex]\mathbb{ABCDE}[/itex][/TD]
[TD][FONT=Courier New]\mathbb{ABCDE}[/TD]
[/TR]
[TR]
[TD]Calligraphic[/TD]
[TD][itex]\mathcal {ABCDE}[/itex][/TD]
[TD][FONT=Courier New]\mathcal{ABCDE}[/TD]
[/TR]
[TR]
[TD]Fraktur[/TD]
[TD][itex]\mathfrak {ABCDE}[/itex][/TD]
[TD][FONT=Courier New]\mathfrak{ABCDE}[/TD]
[/TR]
[TR]
[TD]Sans serif[/TD]
[TD][itex]\mathsf {ABCDE}[/itex][/TD]
[TD][FONT=Courier New]\mathsf{ABCDE}[/TD]
[/TR]
[TR]
[TD]Roman (upright)[/TD]
[TD][itex]\mathrm {ABCDE}[/itex][/TD]
[TD][FONT=Courier New]\mathrm{ABCDE}[/TD]
[/TR]
[TR]
[TD]Bold[/TD]
[TD][itex]\mathbf {ABCDE}[/itex][/TD]
[TD][FONT=Courier New]\mathbf{ABCDE}[/TD]
[/TR]
[TR]
[TD]Typewriter[/TD]
[TD][itex]\mathtt {ABCDE}[/itex][/TD]
[TD][FONT=Courier New]\mathtt{ABCDE}[/TD]
[/TR]
[td] [/td]
Note: The blackboard bold font only works with capital letters.
[B]Frequently used symbols:[/B] This is a list of some of the most useful symbols and their LaTeX codes:
[TR]
[TD][B]Name[/B][/TD]
[TD][B]Sample[/B][/TD]
[TD][B]LaTeX code[/B][/TD]
[/TR]
[TR]
[TD]Infinity[/TD]
[TD][itex]\infty[/itex][/TD]
[TD][FONT=Courier New]\infty[/TD]
[/TR]
[TR]
[TD]Planck's constant[/TD]
[TD][itex]\hbar[/itex][/TD]
[TD][FONT=Courier New]\hbar[/TD]
[/TR]
[TR]
[TD]Plus or minus[/TD]
[TD][itex]\pm,\mp[/itex][/TD]
[TD][FONT=Courier New]\pm,\mp[/TD]
[/TR]
[TR]
[TD]Parallel[/TD]
[TD][itex]\parallel[/itex][/TD]
[TD][FONT=Courier New]\parallel[/TD]
[/TR]
[TR]
[TD]Perpendicular[/TD]
[TD][itex]\perp[/itex][/TD]
[TD][FONT=Courier New]\perp[/TD]
[/TR]
[TR]
[TD]For all[/TD]
[TD][itex]\forall[/itex][/TD]
[TD][FONT=Courier New]\forall[/TD]
[/TR]
[TR]
[TD]There exists[/TD]
[TD][itex]\exists[/itex][/TD]
[TD][FONT=Courier New]\exists[/TD]
[/TR]
[TR]
[TD]Ellipsis[/TD]
[TD][itex]\dots,\cdots,\vdots,\ddots[/itex][/TD]
[TD][FONT=Courier New]\dots,\cdots,\vdots,\ddots[/TD]
[/TR]
[TR]
[TD]Arrows[/TD]
[TD][itex]\rightarrow,\leftarrow,\leftrightarrow[/itex][/TD]
[TD][FONT=Courier New]\rightarrow,\leftarrow,\leftrightarrow[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][itex]\Rightarrow,\Leftarrow,\Leftrightarrow[/itex][/TD]
[TD][FONT=Courier New]\Rightarrow,\Leftarrow,\Leftrightarrow[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][itex]\mapsto,\to[/itex][/TD]
[TD][FONT=Courier New]\mapsto,\to[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][itex]\uparrow,\downarrow[/itex][/TD]
[TD][FONT=Courier New]\uparrow,\downarrow[/TD]
[/TR]
[TR]
[TD]Relations[/TD]
[TD][itex]\gt,\geq,\lt,\leq,\neq[/itex][/TD]
[TD][FONT=Courier New]\gt,\geq,\lt,\leq,\neq[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][itex]\gg,\ll,\equiv[/itex][/TD]
[TD][FONT=Courier New]\gg,\ll,\equiv[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][itex]\approx,\cong,\sim[/itex][/TD]
[TD][FONT=Courier New]\approx,\cong,\sim[/TD]
[/TR]
[TR]
[TD]Super- & subscripts[/TD]
[TD][itex]x^n, x_n[/itex][/TD]
[TD][FONT=Courier New]x^n, x_n[/TD]
[/TR]
[TR]
[TD]Tensor indices[/TD]
[TD][itex]R_{ab}{}^{cd}[/itex][/TD]
[TD][FONT=Courier New]R_{ab}{}^{cd}[/TD]
[/TR]
[TR]
[TD]Fraction[/TD]
[TD][itex]\frac{ab}{cd}[/itex][/TD]
[TD][FONT=Courier New]\frac{ab}{cd}[/TD]
[/TR]
[TR]
[TD]Roots[/TD]
[TD][itex]\sqrt{16},\sqrt[4]{16}[/itex][/TD]
[TD][FONT=Courier New]\sqrt{16},\sqrt[4]{16}[/TD]
[/TR]
[TR]
[TD]Absolute value, norm[/TD]
[TD][itex]|x|,\|x\|[/itex][/TD]
[TD][FONT=Courier New]|x|,\|x\|[/TD]
[/TR]
[TR]
[TD]Vectors, etc.[/TD]
[TD][itex]\vec r,\hat p, \tilde z[/itex][/TD]
[TD][FONT=Courier New]\vec r,\hat p, \tilde z[/TD]
[/TR]
[TR]
[TD]Complex conjugate[/TD]
[TD][itex]z^*,\bar z,z^\dagger[/itex][/TD]
[TD][FONT=Courier New]z^*,\bar z,z^\dagger[/TD]
[/TR]
[TR]
[TD]Primes[/TD]
[TD][itex]x', x''[/itex][/TD]
[TD][FONT=Courier New]x', x''[/TD]
[/TR]
[TR]
[TD]Dirac notation[/TD]
[TD][itex]\langle \phi | \psi \rangle[/itex][/TD]
[TD][FONT=Courier New]\langle \phi | \psi \rangle[/TD]
[/TR]
[TR]
[TD]Vector products[/TD]
[TD][itex]\vec A \cdot \vec B,\vec A \times \vec B[/itex][/TD]
[TD][FONT=Courier New]\vec A \cdot \vec B,\vec A \times \vec B[/TD]
[/TR]
[TR]
[TD]Direct sum[/TD]
[TD][itex]V \oplus W[/itex][/TD]
[TD][FONT=Courier New]V \oplus W[/TD]
[/TR]
[TR]
[TD]Tensor product[/TD]
[TD][itex]S \otimes T[/itex][/TD]
[TD][FONT=Courier New]S \otimes T[/TD]
[/TR]
[TR]
[TD]Function composition[/TD]
[TD][itex]f \circ g[/itex][/TD]
[TD][FONT=Courier New]f \circ g[/TD]
[/TR]
[TR]
[TD]Element of, not in[/TD]
[TD][itex]x \in A, x \not\in A[/itex][/TD]
[TD][FONT=Courier New]x \in A, x \not\in A[/TD]
[/TR]
[TR]
[TD]Subset[/TD]
[TD][itex]A \subset B, B \subseteq C[/itex][/TD]
[TD][FONT=Courier New]A \subset B, B \subseteq C[/TD]
[/TR]
[TR]
[TD]Set union, intersection[/TD]
[TD][itex]A \cup B, A \cap B[/itex][/TD]
[TD][FONT=Courier New]A \cup B, A \cap B[/TD]
[/TR]
[TR]
[TD]Set subtraction[/TD]
[TD][itex]A \setminus B[/itex][/TD]
[TD][FONT=Courier New]A \setminus B[/TD]
[/TR]
[TR]
[TD]Binomial coefficient[/TD]
[TD][itex]\binom{n}{k}, {_nC_r}[/itex][/TD]
[TD][FONT=Courier New]\binom{n}{k}, {_nC_r}[/TD]
[/TR]
[TR]
[TD]Big stuff[/TD]
[TD][tex]\bigcup_i A_i, \bigcap_i A_i[/tex][/TD]
[TD][FONT=Courier New]\bigcup_i A_i, \bigcap_i A_i[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][tex]\sum_{n=0}^\infty a_n x^n[/tex][/TD]
[TD][FONT=Courier New]\sum_{n=0}^\infty a_n x^n[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][tex]\prod_{n=0}^\infty a_n[/tex][/TD]
[TD][FONT=Courier New]\prod_{n=0}^\infty a_n[/TD]
[/TR]
[TR]
[TD]Derivatives[/TD]
[TD][itex]y', y'', y^{(n)}, \dot x, \ddot x[/itex][/TD]
[TD][FONT=Courier New]y', y'', y^{(n)}, \dot x, \ddot x[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][itex]\frac{df}{dx}, \frac{\partial f}{\partial x}[/itex][/TD]
[TD][FONT=Courier New]\frac{df}{dx}, \frac{\partial f}{\partial x}[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][itex]\nabla f, \nabla^2 \psi, \Box^2 \phi[/itex][/TD]
[TD][FONT=Courier New]\nabla f, \nabla^2 \psi, \Box^2 \phi[/TD]
[/TR]
[TR]
[TD]Integrals[/TD]
[TD][tex]\int e^x \, dx[/tex][/TD]
[TD][FONT=Courier New]\int e^x \, dx[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][tex]\oint \vec E \cdot d \vec A[/tex][/TD]
[TD][FONT=Courier New]\oint \vec E \cdot d \vec A[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][tex]\iint, \iiint[/tex][/TD]
[TD][FONT=Courier New]\iint, \iiint[/TD]
[/TR]
[TR]
[TD]Definite integrals[/TD]
[TD][tex]\int_a^b e^x \, dx = \left. e^x \right|_a^b[/tex][/TD]
[TD][FONT=Courier New]\int_a^b e^x \, dx = \left. e^x \right|_a^b[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][tex]\int_{y=c}^d \int_{x=a}^b e^{x+y} \, dx \, dy[/tex][/TD]
[TD][FONT=Courier New]\int_{y=c}^d \int_{x=a}^b e^{x+y} \, dx \, dy[/TD]
[/TR]
[TR]
[TD]Trig functions[/TD]
[TD][itex]\sin x, \cos x, \tan x, \sec x, \csc x[/itex][/TD]
[TD][FONT=Courier New]\sin x, \cos x, \tan x, \sec x, \csc x[/TD]
[/TR]
[TR]
[TD]Logarithms[/TD]
[TD][itex]\ln x, \log x, \log_2 64 = 6[/itex][/TD]
[TD][FONT=Courier New]\ln x, \log x, \log_2 64 = 6[/TD]
[/TR]
[TR]
[TD]Hyperbolic trig[/TD]
[TD][itex]\sinh x, \cosh x, \tanh x[/itex][/TD]
[TD][FONT=Courier New]\sinh x, \cosh x, \tanh x[/TD]
[/TR]
[td] [/td]
[td]
Another nice list of frequently used symbols can be found [PLAIN]http://www.artofproblemsolving.com/Wiki/index.php/LaTeX:Symbols[/PLAIN] . http://amath.colorado.edu/documentation/LaTeX/Symbols.pdf PDF file contains another one. It also contains a brief explanation of the array environment, which was used in one of the examples above. If you don't see the symbol you need in any of these lists, try [URL='http://ctan.uib.no/info/symbols/comprehensive/symbols-a4.pdf']The comprehensive LaTeX symbol list[/URL] (also a PDF file).
Sadly, not all LaTeX commands are being supported by MathJax. [PLAIN]http://www.mathjax.org/docs/1.1/tex.html#supported-latex-commands[/PLAIN] is the full list of supported commands.
[B]Formulas that span multiple lines:[/B] Longer formulas and systems of equations can be typed using the align environment. An environment is a piece of code that begins with a [FONT=Courier New]\begin statement and ends with an [FONT=Courier New]\end statement. The align environment begins with \bеgin{align} and ends with \еnd{align}. Inside an align environment (and several other environments), the code [FONT=Courier New]\\ ends a line and starts a new one. The [FONT=Courier New]& symbol is used to indicate where rows are to be aligned, as in the following example.
[FONT=Courier New]\begin{align}
[FONT=Courier New](1+x)^n &\geq 1+nx\\
[FONT=Courier New]&= \sqrt{(1+nx)^2}\\
[FONT=Courier New]&= \sqrt{1+2nx+n^2x^2}
[FONT=Courier New]\end{align}
This yields [tex]
\begin{align}
(1+x)^n &\geq 1+nx\\
&= \sqrt{(1+nx)^2}\\
&= \sqrt{1+2nx+n^2x^2}
\end{align}
[/tex]
Note: The [FONT=Courier New]\\ code only works in some environments.
[B]Matrices:[/B] A matrix can easily be typed using the matrix, pmatrix, bmatrix or vmatrix environments. For example, the pmatrix environment starts with [FONT=Courier New]\bеgin{pmatrix} and ends with [FONT=Courier New]\еnd{pmatrix}. Columns are separated by [FONT=Courier New]& and rows are separated by [FONT=Courier New]\\ . Here is an example:
[FONT=Courier New]\begin{pmatrix}
[FONT=Courier New]1 & 2 & 3 & 4\\
[FONT=Courier New]a & b & c & d\\
[FONT=Courier New]x & y & z & w
[FONT=Courier New]\end{pmatrix}
This yields [tex]
\begin{pmatrix}
1 & 2 & 3 & 4\\
a & b & c & d\\
x & y & z & w
\end{pmatrix}
[/tex]
The matrix, bmatrix and vmatrix environments produce similar results. Only the delimiters are different. See [PLAIN]http://www.math-linux.com/spip.php?article132[/PLAIN] for more examples.
[B]The cases environment:[/B] Something like [tex]
\begin{cases}
2x+y+z & = 0\\
3x+4y+5z & = 0\\
x+2y+8z & = 0
\end{cases}
[/tex] can be easily typed using the cases environment. It starts with [FONT=Courier New]\bеgin{cases} and ends with [FONT=Courier New]\еnd{cases}. Rows must be separated by [FONT=Courier New]\\ and [FONT=Courier New]& is used to indicate where rows are to be aligned. The example above is produced by
[FONT=Courier New]\begin{cases}
[FONT=Courier New]2x+y+z & = 0\\
[FONT=Courier New]3x+4y+5z & = 0\\
[FONT=Courier New]x+2y+8z & = 0
[FONT=Courier New]\end{cases}
Another example is
[FONT=Courier New]u(x) =
[FONT=Courier New]\begin{cases}
[FONT=Courier New]\exp{x} & \text{if } x \geq 0 \\
[FONT=Courier New]1 & \text{if } x < 0
[FONT=Courier New]\end{cases}
which gives [tex]
u(x) =
\begin{cases}
\exp{x} & \text{if } x \geq 0 \\
1 & \text{if } x < 0
\end{cases}
[/tex] More information about cases, align and similar environments can be found [URL='http://en.wikibooks.org/wiki/LaTeX/Advanced_Mathematics']here[/URL].[/td]
[td]Sandbox
If you wish to practice writing LaTeX or test some code, a sandbox is available [PLAIN]https://www.physicsforums.com/mathjax/test/preview.html[/PLAIN] . Please do not create threads just to practice LaTeX.
Additional information
If you have questions, you can ask them in the [URL='https://www.physicsforums.com/forumdisplay.php?f=189']Math & Science Software subforum[/URL].
If you go to advanced edit mode in one of the technical subforums (this doesn't work in the Forum Feedback & Announcements forum for example), you will see a button with a Σ symbol on it, above the input field. If you click on it, a menu with mathematical symbols will appear. When you select a symbol, its LaTeX code will be typed automatically, along with a pair of itex tags.
A left-click on a LaTeX image will by default display a box with a larger version of the same image. Try it on this one: [tex]x_{j_{2^k}}[/tex] A right-click will display a menu where you can choose to
[LIST]
[*]view the LaTeX source code.
[*]change the factor by which the larger image is larger than the default size.
[*]always scale all LaTeX images to a larger or smaller size.
[*]change the zoom trigger, i.e. change what you have to do to make the larger image appear.
[*]go to the MathJax help page.
[/LIST]
If you change the zoom trigger to "hover", you will only have to hold the mouse pointer over the LaTeX image for the larger version to appear. However, this will also make it harder to right-click to bring up the menu, because a right-click on the larger image does nothing. So if you want to change it back, you have to be fast. Move the mouse pointer over the image, and right-click [I]before[/I] the larger image appears.
Another way to see the LaTeX source code is of course to just click the QUOTE button next to the post. This is usually a better way, since it also shows the itex or tex tags, and the text around them, but it doesn't work in locked threads, or when the LaTeX image is in a quote box.
Simple non-LaTeX options
If you just want a subscript or a superscript, you can use vBulletin's sub and sup tags. For example, [plain]x[sub]1[/sub][/plain] yields x[sub]1[/sub], and [plain]x[sup]2[/sup][/plain] yields x[sup]2[/sup]. If you don't want to type these tags, you can use the X[sub]2[/sub] and X[sup]2[/sup] buttons above the input field when you're in advanced edit mode.
If you just want to insert a Greek letter or a mathematical symbol in your post, the easiest way is to just click on the symbol you want in the box of symbols to the right of the input field when you're in advanced edit mode. If you need a symbol that you don't see in that box, you can try to find it in [URL='https://www.physicsforums.com/showthread.php?p=4781371#post4845980']post #11[/URL], or on [PLAIN]http://tlt.its.psu.edu/suggestions/international/bylanguage/mathchart.html[/PLAIN] .
Do not use these symbols, the sub/sup tags, or any other vBulletin tags inside a LaTeX ex-ression (i.e. between tex or itex tags).
Acknowledgements
We are indebted to member and former admin chroot, whose efforts brought LaTeX to Physics Forums in the first place, and forum admin and owner Greg Bernhardt for updating to the currently-used MathJax processor. Numerous other members have provided valuable feedback and helped with the debugging process.
The authors of this FAQ are
[LIST]
[*]Fredrik
[*]micromass
[*]Redbelly98
[*]vela
[*]Mark44
[/LIST]
[/td]