File: sec166.html

package info (click to toggle)
ts 9802-1
  • links: PTS
  • area: non-free
  • in suites: hamm
  • size: 2,348 kB
  • ctags: 1,468
  • sloc: tcl: 4,567; ansic: 3,389; makefile: 88; sh: 1
file content (57 lines) | stat: -rw-r--r-- 1,599 bytes parent folder | download | duplicates (3)
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
<html>
<head><title>Special Characters</title></head>
<body>
<h1>Special Characters</h1>
<P>

</P>
<P>
The following characters play a special role in LaTeX and are called
"special printing characters", or simply "special characters".

</P>

<PRE>
                       # $ % &#38; ~ _ ^ &#92; { }
</PRE>

<P>
Whenever you put one of these special characters into your file, you are
doing something special.  If you simply want the character to be printed
just as any other letter, include a <CODE>&#92;</CODE> in front of the character.
For example, <CODE>&#92;$</CODE> will produce <CODE>$</CODE> in your output.

</P>
<P>
One exception to this rule is the <CODE>&#92;</CODE> itself because <CODE>&#92;&#92;</CODE> has
its own special meaning.  A <CODE>&#92;</CODE> is produced by typing
<CODE>$&#92;backslash$</CODE> in your file.

</P>
<P>
Also, <CODE>&#92;~</CODE> means `place a tilde accent over the following letter',
so you will probably want to use <CODE>&#92;verb</CODE> instead.

</P>
<P>

</P>
<P>
In addition, you can access any character of a font once you know its
number by using the <CODE>&#92;symbol</CODE> command. For example, the character
used for displaying spaces in the <CODE>&#92;verb*</CODE> command has the code
decimal 32, so it can be typed as <CODE>&#92;symbol{32}</CODE>.

</P>
<P>
You can also specify octal numbers with <CODE>'</CODE> or hexadecimal numbers
with <CODE>"</CODE>, so the previous example could also be written as
<CODE>&#92;symbol{'40}</CODE> or <CODE>&#92;symbol{"20}</CODE>.

</P>



<p>--&gt;<a href="index.html">LaTeX index</a>
</body>
</html>