blob: b70df63e72b375ad0268522ca7825008a5f157ca (
plain)
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
|
############################################################
Sectioning
############################################################
Sectioning commands provide the means to structure your text
into units.
\part ::part::
\chapter (report and book class only) ::chapter::
\section ::section::
\subsection ::subsection::
\subsubsection ::subsubsection::
\paragraph ::paragraph::
\subparagraph ::subparagraph::
All sectioning commands take the same general form, i.e.,
\chapter[optional]{title}
In addition to providing the heading in the text, the
mandatory argument of the sectioning command can appear in
two other places:
1. The table of contents
2. The running head at the top of the page
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 optional
argument that provides the text for these other two
purposes.
All sectioning commands have *-forms that print a title,
but do not include a number and do not make an entry in the
table of contents.
############################################################
\appendix ::appendix::
############################################################
The \appendix command changes the way sectional units are
numbered. The \appendix command generates no text and does
not affect the numbering of parts.
The normal use of this command is something like
\chapter{The First Chapter}
...
\appendix
\chapter{The First Appendix}
|