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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
<html>
<head><title>Sectioning</title></head>
<body>
<h1>Sectioning</h1>
<P>
</P>
<P>
Sectioning commands provide the means to structure your text into units.
</P>
<UL>
<LI>
<CODE>\part</CODE>
<LI>
<CODE>\chapter</CODE> (report and book class only)
<LI>
<CODE>\section</CODE>
<LI>
<CODE>\subsection</CODE>
<LI>
<CODE>\subsubsection</CODE>
<LI>
<CODE>\paragraph</CODE>
<LI>
<CODE>\subparagraph</CODE>
</UL>
<P>
All sectioning commands take the same general form, i.e.,
</P>
<P>
<CODE>\chapter[optional]{title}</CODE>
</P>
<P>
In addition to providing the heading in the text, the mandatory argument
of the sectioning command can appear in two other places:
</P>
<OL>
<LI>
The table of contents
<LI>
The running head at the top of the page
</OL>
<P>
You may not want the same thing to appear in these other two places as
appears in the text heading. To handle this situation, the sectioning
commands have an <CODE>optional</CODE> argument that provides the text for
these other two purposes.
</P>
<P>
All sectioning commands have <CODE>*</CODE>-forms that print a <I>title</I>,
but do not include a number and do not make an entry in the table of
contents.
</P>
<P>
</P>
<P>
<CODE>\appendix</CODE>
</P>
<P>
The <CODE>\appendix</CODE> command changes the way sectional units are
numbered. The <CODE>\appendix</CODE> command generates no text and does not
affect the numbering of parts.
The normal use of this command is something like
</P>
<PRE>
\chapter{The First Chapter}
...
\appendix
\chapter{The First Appendix}
</PRE>
<p>--><a href="index.html">LaTeX index</a>
</body>
</html>
|