|
Prev | Next | latexfont |
| Syntax |
$latex font $$ |
font |
Meaning | Example |
| default |
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
| |
\bf | bold |
\bf abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
|
\rm | roman |
\rm abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
|
\tt | typewriter |
\tt abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
|
\cal | calligraphic |
\cal abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
|
\sf | sans serif |
\sf abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
|
\cal commands does not display properly
do to a bug in it's mathvariant
display.
$latex
\[
{ abc \bf abc } abc
\]
$$
results in the following output
\[
{ abc \bf abc } abc
\]
Note that the bold font is terminate by the }.
$latex
\[
\begin{array}{cc}
\bf \sqrt{x y} & \sqrt{x y } \\
\sqrt{x y} & \sqrt{x y }
\end{array}
\]
$$
results in the following output
\[
\begin{array}{cc}
\bf \sqrt{x y} & \sqrt{x y } \\
\sqrt{x y} & \sqrt{x y }
\end{array}
\]