1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
\sectiontitle{Control Sequences used in Text (\LaTeX)}
\label{la-txtcs}
\appenditem{Control Sequences for Changing Fonts in Text}
\begin{quote}
\begin{tabular}{ll}
\verb?\rm? changes to the normal ``roman'' font: & \rm Roman\\
\verb?\sl? changes to a slanted roman font: & \sl Slanted\\
\verb?\it? changes to an italic font: & \it Italic\\
\verb?\tt? changes to an ``typewriter'' font: & \tt Typewriter\\
\verb?\bf? changes to a boldface font: & \bf Boldface
\end{tabular}
\end{quote}
In \LaTeX\ the control sequence \verb?\em? {\em emphasizes\/}
text, switching from non-italic to {\it italic} and {\it from
italic to {\em roman}.}
\iftwopage\newpage\fi
\appenditem{Control Sequences for obtaining Accents in Text}
\begin{quote}
\begin{tabular}{llll}
\verb?\'{e}? & \'{e}
& e.g., \verb?math\'{e}matique? yields `math\'{e}matique' \\
\verb?\`{e}? & \`{e}
& e.g., \verb?alg\`{e}bre? yields `alg\`{e}bre' \\
\verb?\^{e}? & \^{e}
& e.g., \verb?h\^{o}te? yields `h\^{o}te' \\
\verb?\"{o}? & \"{o}
& e.g., \verb?H\"{o}lder? yields `H\"{o}lder' \\
\verb?\~{n}? & \~{n}
& e.g., \verb?ma\~{n}ana? yields `ma\~{n}ana' \\
\verb?\={o}? & \={o} & \\
\verb?\.{o}? & \.{o} & \\
\verb?\u{o}? & \u{o} & \\
\verb?\v{c}? & \v{c}
& e.g., \verb?\v{C}ech? yields `\v{C}ech' \\
\verb?\H{o}? & \H{o} & \\
\verb?\t{oo}? & \t{oo} & \\
\verb?\c{c}? & \c{c}
& e.g., \verb?gar\c{c}on? yields `gar\c{c}on' \\
\verb?\d{o}? & \d{o} & \\
\verb?\b{o}? & \b{o} &
\end{tabular}
\end{quote}
These accents are for use in ordinary text. They cannot be
used within mathematical formulae, since different control
sequences are used to produce accents within mathematics.
\appenditem{Special Symbols used in Text}
\begin{tabular}{ll}
\verb?\oe, \OE? & \oe, \OE \\
\verb?\ae, \AE? & \ae, \AE \\
\verb?\aa, \AA? & \aa, \AA \\
\verb?\o, \O? & \o, \O \\
\verb?\l, \L? & \l, \L \\
\verb?\ss? & \ss \\
\verb+?+\verb+`+ & ?` \\
\verb+!+\verb+`+ & !` \\
\verb?\dag? & \dag \\
\verb?\ddag? & \ddag \\
\verb?\S? & \S \\
\verb?\P? & \P \\
\verb?\copyright? & \copyright \\
\verb?\pounds? & \pounds \\
\verb?\i? & \i \\
\verb?\j? & \j
\end{tabular}
|