summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/info/latex2e.info
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/info/latex2e.info')
-rw-r--r--Master/texmf/doc/info/latex2e.info777
1 files changed, 411 insertions, 366 deletions
diff --git a/Master/texmf/doc/info/latex2e.info b/Master/texmf/doc/info/latex2e.info
index edc546d1656..4802f6726e1 100644
--- a/Master/texmf/doc/info/latex2e.info
+++ b/Master/texmf/doc/info/latex2e.info
@@ -1,9 +1,8 @@
-This is latex2e.info, produced by makeinfo version 4.12 from
+This is latex2e.info, produced by makeinfo version 4.13 from
latex2e.texi.
-This document is version 2.0 (June 2008) of an unofficial reference
-manual for LaTeX, a document preparation system. LaTeX is a macro
-package for TeX.
+This document is an unofficial reference manual for LaTeX, a document
+preparation system, version as of September 2009.
This was originally translated from `LATEX.HLP' v1.0a in the VMS
Help Library. The pre-translation version was written by George D.
@@ -16,7 +15,7 @@ L. Botway and C. Biemesderfer (published by the TeX Users Group as
`TeXniques' number 10), as reference material (text was not directly
copied).
- Copyright (C) 2007, 2008 Karl Berry.
+ Copyright (C) 2007, 2008, 2009 Karl Berry.
Copyright (C) 1988, 1994, 2007 Stephen Gilmore.
Copyright (C) 1994, 1995, 1996 Torsten Martinsen.
@@ -44,8 +43,8 @@ File: latex2e.info, Node: Top, Next: Overview, Up: (dir)
LaTeX2e
*******
-This document is version 2.0 (June 2008) of an unofficial reference
-manual for LaTeX, a document preparation system. It is intended to
+This document is an unofficial reference manual for LaTeX, a document
+preparation system, version as of September 2009. It is intended to
cover LaTeX2e, which has been the standard version of LaTeX for many
years.
@@ -1086,7 +1085,7 @@ File: latex2e.info, Node: figure, Next: flushleft, Prev: equation, Up: Envir
8.10 `figure'
=============
- \begin{figure}[PLACEMENT]
+ \begin{figure[*]}[PLACEMENT]
FIGBODY
\label{LABEL}
\caption[LOFTITLE]{TEXT}
@@ -1096,20 +1095,35 @@ File: latex2e.info, Node: figure, Next: flushleft, Prev: equation, Up: Envir
instead "floated" to a convenient place, such as the top of a page.
Figures will not be split between two pages.
+ When typesetting in double-columns, the starred form produces a
+full-width figure (across both columns).
+
The optional argument `[placement]' determines where LaTeX will try
to place your figure. There are four places where LaTeX can possibly
put a float:
- 1. `h' (Here) - at the position in the text where the figure
- environment appears.
-
- 2. `t' (Top) - at the top of a text page.
-
- 3. `b' (Bottom) - at the bottom of a text page.
+`t'
+ (Top)--at the top of a text page.
- 4. `p' (Page of floats) - on a separate float page, which is a page
+`b'
+ (Bottom)--at the bottom of a text page. However, `b' is not
+ allowed for full-width floats (`figure*') with double-column
+ output. To ameliorate this, use the `stfloats' or `dblfloatfix'
+ package, but see the discussion at caveats in the FAQ:
+ `http://www.tex.ac.uk/cgi-bin/texfaq2html?label=2colfloat'.
+
+`h'
+ (Here)--at the position in the text where the figure environment
+ appears. However, this is not allowed by itself, `t' is
+ automatically added. To absolutely force a figure to appear
+ "here", use the `float' and use its `H' placement letter. (That
+ package also provides other options.)
+
+`p'
+ (Page of floats)--on a separate float page, which is a page
containing no text, only floats.
+
The standard report and article classes use the default placement
`tbp'.
@@ -1246,11 +1260,11 @@ There must be at least one `\item' command within the environment.
By default, the marks at each level look like this:
- 1. *
+ 1. * (bullet)
2. -- (bold en-dash)
- 3. *
+ 3. * (asterisk)
4. . (centered dot, rendered here as a period)
@@ -1308,9 +1322,9 @@ loose, by default).
`\topsep'
Vertical space between the first item and the preceding paragraph.
- The default is `4pt plus2pt minus2pt' for `10pt' documents, `6pt
- plus2pt minus2pt' for `11pt', and `9pt plus3pt minus5pt' for
- `12pt'.
+ For top-level lists, the default is `8pt plus2pt minus4pt' for
+ `10pt' documents, `9pt plus3pt minus5pt' for `11pt', and `10pt
+ plus4pt minus6pt' for `12pt'. These are reduced for nested lists.
`\partopsep'
Extra space added to `\topsep' when the list environment starts a
@@ -1318,12 +1332,6 @@ loose, by default).
documents, `3pt plus1pt minus1pt' for `11pt', and `3pt plus2pt
minus2pt' for `12pt'.
-`\topsep'
- Extra vertical space added before an initial and after a final list
- item. Its value is changed with list level and font size changes;
- for instance, within a first-level list at `10pt', it is `4pt
- plus2pt minus2pt'.
-
Especially for lists with short items, it may be desirable to elide
space between items. Here is an example defining an `itemize*'
@@ -1392,17 +1400,16 @@ File: latex2e.info, Node: minipage, Next: picture, Prev: math, Up: Environme
8.17 `minipage'
===============
- \begin{minipage}[POSITION]{WIDTH}
+ \begin{minipage}[POSITION][HEIGHT][INNER-POS]{WIDTH}
TEXT
\end{minipage}
The `minipage' environment typesets its body TEXT in a block that
-will not be broken across pages (similar to the `\parbox' command,
-*note \parbox::). You may use other paragraph-making environments
-inside a minipage (unlike `\parbox').
+will not be broken across pages. This is similar to the `\parbox'
+command (*note \parbox::), but unlike `\parbox', other paragraph-making
+environments can be used inside a minipage.
- It takes an optional POSITION argument for placing TEXT, and a
-mandatory WIDTH argument for specifying the line width.
+ The arguments are the same as for `\parbox' (*note \parbox::).
By default, paragraphs are not indented in the `minipage'
environment. You can restore indentation with a command such as
@@ -1457,13 +1464,15 @@ ordinary optional arguments, this argument is not contained in square
brackets.) The optional argument gives the coordinates of the point at
the lower-left corner of the picture (thereby determining the origin).
For example, if `\unitlength' has been set to `1mm', the command
- \begin{picture}(100,200)(10,20)
- produces a picture of width 100 millimeters and height 200
-millimeters, whose lower-left corner is the point (10,20) and whose
-upper-right corner is therefore the point (110,220). When you first
-draw a picture, you will omit the optional argument, leaving the origin
+
+ \begin{picture}(100,200)(10,20)
+
+produces a picture of width 100 millimeters and height 200 millimeters,
+whose lower-left corner is the point (10,20) and whose upper-right
+corner is therefore the point (110,220). When you first draw a
+picture, you typically omit the optional argument, leaving the origin
at the lower-left corner. If you then want to modify your picture by
-shifting everything, you just add the appropriate optional argument.
+shifting everything, you can just add the appropriate optional argument.
The environment's mandatory argument determines the nominal size of
the picture. This need bear no relation to how large the picture
@@ -1533,13 +1542,18 @@ normal `\makebox' command except that you must specify a `width' and
The optional argument, `[position]', specifies the quadrant that
your text appears in. You may select up to two of the following:
- * `t' - Moves the item to the top of the rectangle
+`t'
+ Moves the item to the top of the rectangle.
+
+`b'
+ Moves the item to the bottom.
- * `b' - Moves the item to the bottom
+`l'
+ Moves the item to the left.
- * `l' - Moves the item to the left
+`r'
+ Moves the item to the right.
- * `r' - Moves the item to the right
*Note \makebox::.
@@ -1886,17 +1900,8 @@ Tables will not be split between two pages.
The optional argument `[placement]' determines where LaTeX will try
to place your table. There are four places where LaTeX can possibly put
-a float:
-
- * `h': Here - at the position in the text where the table
- environment appears.
-
- * `t': Top - at the top of a text page.
-
- * `b': Bottom - at the bottom of a text page.
-
- * `p': Page of floats - on a separate float page, which is a page
- containing no text, only floats.
+a float; these are the same as that used with the `figure' environment,
+and described there (*note figure::).
The standard `report' and `article' classes use the default
placement `[tbp]'.
@@ -1942,40 +1947,47 @@ except for the last, where it is optional--unless an `\hline' command
Specifies the vertical position; default is alignment on the
centre of the environment.
- * `t' - align on top row
+ `t'
+ align on top row
- * `b' - align on bottom row
+ `b'
+ align on bottom row
`cols'
Specifies the column formatting. It consists of a sequence of the
following specifiers, corresponding to the sequence of columns and
intercolumn material.
- * `l' - A column of left-aligned items.
+ `l'
+ A column of left-aligned items.
+
+ `r'
+ A column of right-aligned items.
- * `r' - A column of right-aligned items.
+ `'
+ A column of centred items.
- * `c' - A column of centred items.
+ `|'
+ A vertical line the full height and depth of the environment.
- * `|' - A vertical line the full height and depth of the
- environment.
+ `@{TEXT}'
+ This inserts TEXT in every row. An @-expression suppresses
+ the intercolumn space normally inserted between columns; any
+ desired space between the inserted text and the adjacent
+ items must be included in text. An `\extracolsep{wd}'
+ command in an @-expression causes an extra space of width
+ `wd' to appear to the left of all subsequent columns, until
+ countermanded by another `\extracolsep' command. Unlike
+ ordinary intercolumn space, this extra space is not
+ suppressed by an @-expression. An `\extracolsep' command can
+ be used only in an @-expression in the `cols' argument.
- * `@{text}' - This inserts `text' in every row. An @-expression
- suppresses the intercolumn space normally inserted between
- columns; any desired space between the inserted text and the
- adjacent items must be included in text. An
- `\extracolsep{wd}' command in an @-expression causes an extra
- space of width `wd' to appear to the left of all subsequent
- columns, until countermanded by another `\extracolsep'
- command. Unlike ordinary intercolumn space, this extra space
- is not suppressed by an @-expression. An `\extracolsep'
- command can be used only in an @-expression in the `cols'
- argument.
+ `p{WD}'
+ Produces a column with each item typeset in a parbox of width
+ WD, as if it were the argument of a `\parbox[t]{WD}' command.
+ However, a `\\' may not appear in the item, except in the
+ following situations:
- * `p{wd}' - Produces a column with each item typeset in a
- parbox of width `wd', as if it were the argument of a
- `\parbox[t]{wd}' command. However, a `\\' may not appear in
- the item, except in the following situations:
1. inside an environment like `minipage', `array', or
`tabular'.
@@ -1986,10 +1998,10 @@ except for the last, where it is optional--unless an `\hline' command
appear inside braces or an environment when used in a
`p'-column element.
- * `*{num}{cols}' - Equivalent to `num' copies of `cols', where
- `num' is any positive integer and `cols' is any list of
- column-specifiers, which may contain another `*-expression'.
-
+ `*{NUM}{COLS}'
+ Equivalent to NUM copies of COLS, where NUM is a positive
+ integer and COLS is any list of column-specifiers, which may
+ contain another `*-expression'.
Parameters that control formatting:
@@ -2000,7 +2012,7 @@ except for the last, where it is optional--unless an `\hline' command
`\arraystretch'
Scaling of spacing between rows in the `tabular' and `array'
- environments; default is `1',for no scaling.
+ environments; default is `1', for no scaling.
`\doublerulesep'
Horizontal distance between the vertical rules produced by `||' in
@@ -4010,6 +4022,9 @@ Accents::).
`\acute'
Math acute accent: \acutex.
+`\bar'
+ Math bar-over accent: \barx.
+
`\breve'
Math breve accent: \brevex.
@@ -4839,9 +4854,6 @@ for creating accented characters.
`\b'
Produces a bar accent under the following, as in o_.
-`\bar'
- Produces a macron accent over the following, as in o=.
-
`\c'
Produces a cedilla accent under the following, as in
@@ -5039,7 +5051,7 @@ automatically start a new page. If you want a new page after the table
of contents, write a `\newpage' command after the `\tableofcontents'
command.
- The analagous commands `\listoffigures' and `\listoftables' produce
+ The analogous commands `\listoffigures' and `\listoftables' produce
a list of figures and a list of tables, respectively. Everything works
exactly the same as for the table of contents.
@@ -5057,8 +5069,8 @@ File: latex2e.info, Node: \addcontentsline, Next: \addtocontents, Up: Tables
23.1.1 \addcontentsline
-----------------------
-The `\addcontentsline' command adds an entry to the specified list or
-table where:
+The `\addcontentsline'{EXT}{UNIT}{TEXT} command adds an entry to the
+specified list or table where:
EXT
The extension of the file on which information is to be written,
@@ -5091,9 +5103,9 @@ File: latex2e.info, Node: \addtocontents, Prev: \addcontentsline, Up: Tables
23.1.2 \addtocontents
---------------------
-The `\addtocontents' command adds text (or formatting commands)
-directly to the `.'EXT file that generates the table of contents or
-lists of figures or tables.
+The `\addtocontents'{EXT}{TEXT} command adds text (or formatting
+commands) directly to the `.EXT' file that generates the table of
+contents or lists of figures or tables.
EXT
The extension of the file on which information is to be written:
@@ -5127,21 +5139,43 @@ File: latex2e.info, Node: Indexes, Prev: Glossaries, Up: Front/back matter
23.3 Indexes
============
-The command `\makeindex' enables creating indexes.
+The command `\makeindex' enables creating indexes. Put this in the
+preamble.
- The command `\index{TEXT}' writes a glossary entry for TEXT to an
+ The command `\index{TEXT}' writes an index entry for TEXT to an
auxiliary file with the `.idx' extension.
Specifically, what gets written is the command
`\indexentry{TEXT}{PAGENO}', where PAGENO is the current `\thepage'
value.
+ To generate a index entry for `bar' that says `See foo', use a
+vertical bar: `\index{bar|see{foo}}'. Use `seealso' instead of `see'
+to make a `See also' entry.
+
+ The text `See' is defined by the macro `\seename', and `See also' by
+the macro `\alsoname'. These can be redefined for other languages.
+
+ The generated `.idx' file is then sorted with an external command,
+usually either `makeindex'
+(`http://mirror.ctan.org/indexing/makeindex') or (the multi-lingual)
+`xindy' (`http://xindy.sourceforge.net'). This results in a `.ind'
+file, which can then be read to typeset the index.
+
+ The index is usually generated with the `\printindex' command. This
+is defined in the `makeidx' package, so `\usepackage{makeidx}' needs to
+be in the preamble.
+
The rubber length `\indexspace' is inserted before each new letter
-in the index; its default value is `10pt plus5pt minus3pt'.
+in the printed index; its default value is `10pt plus5pt minus3pt'.
+
+ The `showidx' package causes each index entries to be shown in the
+margin on the page where the entry appears. This can help in preparing
+the index.
- The `.idx' file can then be sorted with an external command,
-typically `makeindex' or `xindy', resulting in a `.ind' file, which can
-then be used to typeset the index.
+ The `multind' package supports multiple indexes. See also the TeX
+FAQ entry on this topic,
+`http://www.tex.ac.uk/cgi-bin/texfaq2html?label=multind'.

File: latex2e.info, Node: Letters, Next: Terminal Input/Output, Prev: Front/back matter, Up: Top
@@ -5581,8 +5615,9 @@ Concept Index
* * prompt: Command Line. (line 15)
* *-form of sectioning commands: Sectioning. (line 38)
* .glo file: Glossaries. (line 8)
-* .idx file: Indexes. (line 8)
-* .ind file: Indexes. (line 18)
+* .idx file: Indexes. (line 9)
+* .ind file: Indexes. (line 23)
+* `see' and `see also' index entries: Indexes. (line 16)
* abstracts: abstract. (line 6)
* accents: Accents. (line 6)
* accents, mathematical: Math accents. (line 6)
@@ -5599,6 +5634,7 @@ Concept Index
* arrays, math: array. (line 6)
* author, for titlepage: \maketitle. (line 12)
* bar-over accent: Accents. (line 23)
+* bar-over accent, math: Math accents. (line 14)
* bar-under accent: Accents. (line 37)
* bibliography, creating (automatically): Using BibTeX. (line 6)
* bibliography, creating (manually): thebibliography. (line 6)
@@ -5610,23 +5646,23 @@ Concept Index
* boxes: Boxes. (line 6)
* breaking lines: Line breaking. (line 6)
* breaking pages: Page breaking. (line 6)
-* breve accent: Accents. (line 62)
-* breve accent, math: Math accents. (line 14)
+* breve accent: Accents. (line 59)
+* breve accent, math: Math accents. (line 17)
* bullet symbol: Math symbols. (line 87)
* bulleted lists: itemize. (line 6)
* calligraphic letters for math: Font styles. (line 87)
* cc list, in letters: \cc. (line 6)
-* cedilla accent: Accents. (line 43)
+* cedilla accent: Accents. (line 40)
* centering text, declaration for: \centering. (line 6)
* centering text, environment for: center. (line 6)
* characters, accented: Accents. (line 6)
* characters, non-English: Non-English characters.
(line 6)
* characters, reserved: Reserved characters. (line 6)
-* check accent: Accents. (line 65)
-* check accent, math: Math accents. (line 17)
+* check accent: Accents. (line 62)
+* check accent, math: Math accents. (line 20)
* circumflex accent: Accents. (line 26)
-* circumflex accent, math: Math accents. (line 29)
+* circumflex accent, math: Math accents. (line 32)
* class options: Document class options.
(line 6)
* classes of documents: Document classes. (line 6)
@@ -5670,15 +5706,15 @@ Concept Index
* document classes: Document classes. (line 6)
* document templates: Document templates. (line 6)
* dot accent: Accents. (line 20)
-* dot over accent, math: Math accents. (line 23)
+* dot over accent, math: Math accents. (line 26)
* dot-over accent: Accents. (line 20)
-* dot-under accent: Accents. (line 46)
-* dotless i: Accents. (line 53)
-* dotless i, math: Math accents. (line 32)
-* dotless j: Accents. (line 56)
-* dotless j, math: Math accents. (line 35)
+* dot-under accent: Accents. (line 43)
+* dotless i: Accents. (line 50)
+* dotless i, math: Math accents. (line 35)
+* dotless j: Accents. (line 53)
+* dotless j, math: Math accents. (line 38)
* double dagger, in text: Text symbols. (line 16)
-* double dot accent, math: Math accents. (line 20)
+* double dot accent, math: Math accents. (line 23)
* ellipsis: Text symbols. (line 22)
* emphasis: Font styles. (line 26)
* enclosure list: \encl. (line 6)
@@ -5696,9 +5732,10 @@ Concept Index
* exponent: Subscripts & Superscripts.
(line 6)
* figure number, cross referencing: \ref. (line 6)
-* figures, footnotes in: minipage. (line 22)
+* figures, footnotes in: minipage. (line 21)
* figures, inserting: figure. (line 6)
* fixed-width font: Font styles. (line 108)
+* float package: figure. (line 34)
* flushing floats and starting a page: \clearpage. (line 6)
* font commands, low-level: Low-level font commands.
(line 6)
@@ -5711,7 +5748,7 @@ Concept Index
(line 6)
* footnote number, cross referencing: \ref. (line 6)
* footnote parameters: Footnote parameters. (line 6)
-* footnotes in figures: minipage. (line 22)
+* footnotes in figures: minipage. (line 21)
* footnotes, creating: Footnotes. (line 6)
* formulas, environment for: equation. (line 6)
* formulas, math: Math formulas. (line 6)
@@ -5721,23 +5758,23 @@ Concept Index
(line 6)
* glossaries: Glossaries. (line 6)
* grave accent: Accents. (line 29)
-* grave accent, math: Math accents. (line 26)
+* grave accent, math: Math accents. (line 29)
* greek letters: Math symbols. (line 6)
-* ha'c<ek accent, math: Math accents. (line 17)
-* hacek accent: Accents. (line 65)
+* ha'c<ek accent, math: Math accents. (line 20)
+* hacek accent: Accents. (line 62)
* hat accent: Accents. (line 26)
-* hat accent, math: Math accents. (line 29)
+* hat accent, math: Math accents. (line 32)
* header style: \pagestyle. (line 6)
* header, parameters for: Page layout parameters.
(line 6)
-* hungarian umlaut accent: Accents. (line 49)
+* hungarian umlaut accent: Accents. (line 46)
* hyphenation, defining: \hyphenation. (line 6)
* hyphenation, forcing: \- (hyphenation). (line 6)
* hyphenation, preventing: \mbox. (line 6)
* in-line formulas: math. (line 6)
* indent, forcing: \indent. (line 6)
* indent, suppressing: \noindent. (line 6)
-* indentation of paragraphs, in minipage: minipage. (line 18)
+* indentation of paragraphs, in minipage: minipage. (line 17)
* indexes: Indexes. (line 6)
* input file: Splitting the input. (line 6)
* input/Output: Terminal Input/Output.
@@ -5791,7 +5828,9 @@ Concept Index
(line 6)
* lR mode: Modes. (line 6)
* macron accent: Accents. (line 23)
-* makeindex program: Indexes. (line 18)
+* macron accent, math: Math accents. (line 14)
+* makeidx package: Indexes. (line 29)
+* makeindex program: Indexes. (line 23)
* making a title page: titlepage. (line 6)
* making paragraphs: Making paragraphs. (line 6)
* marginal notes: Marginal notes. (line 6)
@@ -5809,6 +5848,7 @@ Concept Index
* monospace font: Font styles. (line 108)
* moving arguments: \protect. (line 6)
* multicolumn text: \twocolumn. (line 6)
+* multind package: Indexes. (line 40)
* multiplication symbol, discretionary line break: Math Miscellany.
(line 7)
* nested \include, not allowed: \include. (line 18)
@@ -5836,7 +5876,7 @@ Concept Index
* oslash: Non-English characters.
(line 23)
* overbar accent: Accents. (line 23)
-* overdot accent, math: Math accents. (line 23)
+* overdot accent, math: Math accents. (line 26)
* overview of LaTeX: Overview. (line 6)
* packages, loading: Document class options.
(line 74)
@@ -5850,7 +5890,7 @@ Concept Index
* page number, cross referencing: \pageref. (line 6)
* page numbering style: \pagenumbering. (line 6)
* page styles: Page Styles. (line 6)
-* paragraph indentation, in minipage: minipage. (line 18)
+* paragraph indentation, in minipage: minipage. (line 17)
* paragraph indentations in quoted text: quotation. (line 6)
* paragraph indentations in quoted text, omitting: quote. (line 6)
* paragraph mode: Modes. (line 6)
@@ -5898,6 +5938,7 @@ Concept Index
* setting counters: \setcounter. (line 6)
* sharp S letters: Non-English characters.
(line 30)
+* showidx package: Indexes. (line 36)
* simulating typed text: verbatim. (line 6)
* sizes of text: Font sizes. (line 6)
* slanted font: Font styles. (line 105)
@@ -5933,9 +5974,9 @@ Concept Index
* thanks, for titlepage: \maketitle. (line 22)
* theorems, defining: \newtheorem. (line 6)
* theorems, typesetting: theorem. (line 6)
-* tie-after accent: Accents. (line 59)
+* tie-after accent: Accents. (line 56)
* tilde accent: Accents. (line 34)
-* tilde accent, math: Math accents. (line 38)
+* tilde accent, math: Math accents. (line 41)
* title pages, creating: titlepage. (line 6)
* title, for titlepage: \maketitle. (line 26)
* titles, making: \maketitle. (line 6)
@@ -5950,15 +5991,15 @@ Concept Index
* unordered lists: itemize. (line 6)
* using BibTeX: Using BibTeX. (line 6)
* variables, a list of: Counters. (line 6)
-* vector symbol, math: Math accents. (line 41)
+* vector symbol, math: Math accents. (line 44)
* verbatim text: verbatim. (line 6)
* verbatim text, inline: \verb. (line 6)
* vertical space: \addvspace. (line 6)
* vertical space before paragraphs: \parskip. (line 6)
* visible space: \verb. (line 17)
-* wide hat accent, math: Math accents. (line 44)
-* wide tile accent, math: Math accents. (line 47)
-* xindy program: Indexes. (line 18)
+* wide hat accent, math: Math accents. (line 47)
+* wide tile accent, math: Math accents. (line 50)
+* xindy program: Indexes. (line 23)

File: latex2e.info, Node: Command Index, Next: Concept Index, Prev: Document templates, Up: Top
@@ -6053,6 +6094,7 @@ Command Index
(line 9)
* \Alph example: enumerate. (line 42)
* \alpha: Math symbols. (line 17)
+* \alsoname: Indexes. (line 20)
* \amalg: Math symbols. (line 20)
* \and for \author: \maketitle. (line 12)
* \angle: Math symbols. (line 23)
@@ -6065,15 +6107,15 @@ Command Index
* \arctan: Math functions. (line 15)
* \arg: Math functions. (line 18)
* \arraycolsep: array. (line 43)
-* \arrayrulewidth: tabular. (line 90)
-* \arraystretch: tabular. (line 94)
+* \arrayrulewidth: tabular. (line 97)
+* \arraystretch: tabular. (line 101)
* \ast: Math symbols. (line 29)
* \asymp: Math symbols. (line 32)
* \author{NAME \and NAME2}: \maketitle. (line 11)
* \b (bar-under accent): Accents. (line 37)
* \backslash <1>: Reserved characters. (line 16)
* \backslash: Math symbols. (line 35)
-* \bar (macron, bar-over accent): Accents. (line 40)
+* \bar: Math accents. (line 13)
* \baselineskip: Low-level font commands.
(line 57)
* \baselinestretch: Low-level font commands.
@@ -6103,21 +6145,21 @@ Command Index
* \bmod: Math functions. (line 21)
* \boldmath: Math formulas. (line 31)
* \bot: Math symbols. (line 77)
-* \bottomfraction: figure. (line 40)
+* \bottomfraction: figure. (line 55)
* \bowtie: Math symbols. (line 80)
* \Box: Math symbols. (line 83)
-* \breve: Math accents. (line 13)
+* \breve: Math accents. (line 16)
* \bullet: Math symbols. (line 86)
-* \c (cedilla accent): Accents. (line 43)
+* \c (cedilla accent): Accents. (line 40)
* \cal: Font styles. (line 86)
* \cap: Math symbols. (line 89)
-* \caption: figure. (line 36)
+* \caption: figure. (line 51)
* \cc: \cc. (line 6)
* \cdot: Math symbols. (line 92)
* \cdots: Math Miscellany. (line 10)
* \centering: \centering. (line 6)
* \chapter: Sectioning. (line 10)
-* \check: Math accents. (line 16)
+* \check: Math accents. (line 19)
* \chi: Math symbols. (line 95)
* \circ: Math symbols. (line 98)
* \circle: \circle. (line 6)
@@ -6140,7 +6182,7 @@ Command Index
* \coth: Math functions. (line 33)
* \csc: Math functions. (line 36)
* \cup: Math symbols. (line 110)
-* \d (dot-under accent): Accents. (line 46)
+* \d (dot-under accent): Accents. (line 43)
* \dag: Text symbols. (line 12)
* \dagger: Math symbols. (line 113)
* \dashbox: \dashbox. (line 6)
@@ -6153,7 +6195,7 @@ Command Index
* \dbltopfraction: \twocolumn. (line 30)
* \ddag: Text symbols. (line 15)
* \ddagger: Math symbols. (line 119)
-* \ddot: Math accents. (line 19)
+* \ddot: Math accents. (line 22)
* \ddots: Math Miscellany. (line 14)
* \deg: Math functions. (line 39)
* \delta: Math symbols. (line 125)
@@ -6167,10 +6209,10 @@ Command Index
* \displaystyle: Math formulas. (line 36)
* \div: Math symbols. (line 137)
* \documentclass: Document classes. (line 6)
-* \dot: Math accents. (line 22)
+* \dot: Math accents. (line 25)
* \doteq: Math symbols. (line 140)
* \dotfill: \dotfill. (line 6)
-* \doublerulesep: tabular. (line 98)
+* \doublerulesep: tabular. (line 105)
* \Downarrow: Math symbols. (line 146)
* \downarrow: Math symbols. (line 143)
* \ell: Math symbols. (line 149)
@@ -6198,8 +6240,8 @@ Command Index
* \fboxsep: \framebox (picture). (line 14)
* \fill: \hfill. (line 9)
* \flat: Math symbols. (line 167)
-* \floatpagefraction: figure. (line 43)
-* \floatsep: figure. (line 47)
+* \floatpagefraction: figure. (line 58)
+* \floatsep: figure. (line 62)
* \flushbottom: \flushbottom. (line 6)
* \fnsymbol: \alph \Alph \arabic \roman \Roman \fnsymbol.
(line 24)
@@ -6238,9 +6280,9 @@ Command Index
* \gg: Math symbols. (line 191)
* \glossary: Glossaries. (line 8)
* \glossaryentry: Glossaries. (line 11)
-* \grave: Math accents. (line 25)
-* \H (Hungarian umlaut accent): Accents. (line 49)
-* \hat: Math accents. (line 28)
+* \grave: Math accents. (line 28)
+* \H (Hungarian umlaut accent): Accents. (line 46)
+* \hat: Math accents. (line 31)
* \hbar: Math symbols. (line 194)
* \headheight: Page layout parameters.
(line 6)
@@ -6258,21 +6300,21 @@ Command Index
* \Huge: Font sizes. (line 11)
* \huge: Font sizes. (line 11)
* \hyphenation: \hyphenation. (line 6)
-* \i (dotless i): Accents. (line 53)
+* \i (dotless i): Accents. (line 50)
* \iff: Math symbols. (line 206)
* \Im: Math symbols. (line 209)
-* \imath: Math accents. (line 31)
+* \imath: Math accents. (line 34)
* \in: Math symbols. (line 212)
* \include: \include. (line 6)
* \includeonly: \includeonly. (line 6)
* \indent: \indent. (line 6)
-* \index: Indexes. (line 8)
-* \indexentry: Indexes. (line 11)
+* \index: Indexes. (line 9)
+* \indexentry: Indexes. (line 12)
* \inf: Math functions. (line 57)
* \infty: Math symbols. (line 215)
* \input: \input. (line 6)
* \int: Math symbols. (line 218)
-* \intextsep: figure. (line 51)
+* \intextsep: figure. (line 66)
* \iota: Math symbols. (line 221)
* \it: Font styles. (line 92)
* \item <1>: itemize. (line 6)
@@ -6281,8 +6323,8 @@ Command Index
* \itemindent: itemize. (line 52)
* \itemsep: itemize. (line 75)
* \itshape: Font styles. (line 23)
-* \j (dotless j): Accents. (line 56)
-* \jmath: Math accents. (line 34)
+* \j (dotless j): Accents. (line 53)
+* \jmath: Math accents. (line 37)
* \Join: Math symbols. (line 224)
* \kappa: Math symbols. (line 227)
* \ker: Math functions. (line 60)
@@ -6465,10 +6507,10 @@ Command Index
* \parallel: Math symbols. (line 381)
* \parbox: \parbox. (line 6)
* \parindent <1>: \indent. (line 6)
-* \parindent: minipage. (line 18)
+* \parindent: minipage. (line 17)
* \parsep: itemize. (line 80)
* \parskip: \parskip. (line 6)
-* \parskip example: itemize. (line 103)
+* \parskip example: itemize. (line 97)
* \part: Sectioning. (line 8)
* \partial: Math symbols. (line 384)
* \partopsep: itemize. (line 90)
@@ -6533,6 +6575,7 @@ Command Index
* \searrow: Math symbols. (line 462)
* \sec: Math functions. (line 93)
* \section: Sectioning. (line 13)
+* \seename: Indexes. (line 20)
* \selectfont: Low-level font commands.
(line 71)
* \setcounter: \setcounter. (line 6)
@@ -6592,10 +6635,10 @@ Command Index
* \surd: Math symbols. (line 534)
* \swarrow: Math symbols. (line 537)
* \symbol: Reserved characters. (line 25)
-* \t (tie-after accent): Accents. (line 59)
+* \t (tie-after accent): Accents. (line 56)
* \TAB: \SPACE. (line 6)
* \tabbingsep: tabbing. (line 79)
-* \tabcolsep: tabular. (line 102)
+* \tabcolsep: tabular. (line 109)
* \tableofcontents: Tables of contents. (line 6)
* \tan: Math functions. (line 105)
* \tanh: Math functions. (line 108)
@@ -6603,8 +6646,8 @@ Command Index
* \telephone: \telephone. (line 6)
* \TeX: Text symbols. (line 40)
* \textbf: Font styles. (line 32)
-* \textfloatsep: figure. (line 56)
-* \textfraction: figure. (line 60)
+* \textfloatsep: figure. (line 71)
+* \textfraction: figure. (line 75)
* \textheight: Page layout parameters.
(line 27)
* \textit: Font styles. (line 23)
@@ -6624,14 +6667,14 @@ Command Index
* \thinlines: \thinlines. (line 6)
* \thinspace: \thinspace. (line 6)
* \thispagestyle: \thispagestyle. (line 6)
-* \tilde: Math accents. (line 37)
+* \tilde: Math accents. (line 40)
* \times: Math symbols. (line 546)
* \tiny: Font sizes. (line 11)
* \title{TEXT}: \maketitle. (line 25)
* \to: Math symbols. (line 549)
* \today: \today. (line 6)
* \top: Math symbols. (line 552)
-* \topfraction: figure. (line 65)
+* \topfraction: figure. (line 80)
* \topmargin: Page layout parameters.
(line 40)
* \topsep: itemize. (line 84)
@@ -6646,7 +6689,7 @@ Command Index
* \twocolumn: \twocolumn. (line 6)
* \typein: \typein. (line 6)
* \typeout: \typeout. (line 6)
-* \u (breve accent): Accents. (line 62)
+* \u (breve accent): Accents. (line 59)
* \unboldmath: Math formulas. (line 31)
* \underbrace{math}: Math Miscellany. (line 42)
* \underline{text}: Math Miscellany. (line 45)
@@ -6667,7 +6710,7 @@ Command Index
(line 75)
* \usepackage: Document class options.
(line 74)
-* \v (breve accent): Accents. (line 65)
+* \v (breve accent): Accents. (line 62)
* \value: \value. (line 6)
* \varepsilon: Math symbols. (line 591)
* \varphi: Math symbols. (line 594)
@@ -6677,7 +6720,7 @@ Command Index
* \vartheta: Math symbols. (line 606)
* \vdash: Math symbols. (line 609)
* \vdots: Math Miscellany. (line 49)
-* \vec: Math accents. (line 40)
+* \vec: Math accents. (line 43)
* \vector: \vector. (line 6)
* \vee: Math symbols. (line 612)
* \verb: \verb. (line 6)
@@ -6687,7 +6730,7 @@ Command Index
* \vline: \vline. (line 6)
* \vspace: \vspace. (line 6)
* \wedge: Math symbols. (line 621)
-* \widehat: Math accents. (line 43)
+* \widehat: Math accents. (line 46)
* \width: Predefined lengths. (line 6)
* \wp: Math symbols. (line 624)
* \wr: Math symbols. (line 627)
@@ -6734,6 +6777,7 @@ Command Index
(line 24)
* flushleft environment: flushleft. (line 6)
* flushright environment: flushright. (line 6)
+* indexspace: Indexes. (line 33)
* itemize environment: itemize. (line 6)
* landscape option: Document class options.
(line 24)
@@ -6746,7 +6790,7 @@ Command Index
* letterpaper option: Document class options.
(line 19)
* list: list. (line 6)
-* lR box: picture. (line 62)
+* lR box: picture. (line 64)
* lrbox: lrbox. (line 6)
* math environment <1>: Math formulas. (line 6)
* math environment: math. (line 6)
@@ -6764,6 +6808,7 @@ Command Index
* openright option: Document class options.
(line 49)
* picture: picture. (line 6)
+* printindex: Indexes. (line 29)
* quotation: quotation. (line 6)
* quote: quote. (line 6)
* report class: Document classes. (line 13)
@@ -6786,207 +6831,207 @@ Command Index

Tag Table:
-Node: Top1693
-Node: Overview3875
-Node: Starting & ending5743
-Node: Document classes6305
-Node: Document class options6881
-Node: Typefaces9473
-Node: Font styles9915
-Node: Font sizes12241
-Node: Low-level font commands13476
-Node: Layout15704
-Node: \onecolumn16173
-Node: \twocolumn16386
-Node: \flushbottom17891
-Node: \raggedbottom18253
-Node: Page layout parameters18539
-Node: Sectioning20630
-Node: Cross references21954
-Node: \label22385
-Node: \pageref23250
-Node: \ref23549
-Node: Environments23939
-Node: abstract25394
-Node: array25635
-Node: center26966
-Node: \centering27443
-Node: description28283
-Node: displaymath29097
-Node: document29664
-Node: enumerate29921
-Node: eqnarray31213
-Node: equation32223
-Node: figure32596
-Node: flushleft34802
-Node: \raggedright35287
-Node: flushright35846
-Node: \raggedleft36334
-Node: itemize36891
-Node: letter40693
-Node: list40931
-Node: math41755
-Node: minipage42057
-Node: picture43275
-Node: \circle47268
-Node: \makebox (picture)47601
-Node: \framebox (picture)48300
-Node: \dashbox48790
-Node: \frame49317
-Node: \line49643
-Node: \linethickness50112
-Node: \thicklines50533
-Node: \thinlines50843
-Node: \multiput51145
-Node: \oval51511
-Node: \put52128
-Node: \shortstack52376
-Node: \vector52852
-Node: quotation53158
-Node: quote53614
-Node: tabbing54046
-Node: table57209
-Node: tabular58287
-Node: \multicolumn62221
-Node: \cline63019
-Node: \hline63339
-Node: \vline63653
-Node: thebibliography63966
-Node: \bibitem65106
-Node: \cite65837
-Node: \nocite66337
-Node: Using BibTeX66621
-Node: theorem68113
-Node: titlepage68499
-Node: verbatim69100
-Node: \verb69727
-Node: verse70277
-Node: Footnotes70771
-Node: \footnote71315
-Node: \footnotemark71831
-Node: \footnotetext72398
-Node: Footnote parameters72882
-Node: Definitions73611
-Node: \newcommand & \renewcommand74326
-Node: \newcounter75541
-Node: \newlength76009
-Node: \newsavebox76521
-Node: \newenvironment & \renewenvironment76828
-Node: \newtheorem78095
-Node: \newfont79061
-Node: \protect79541
-Node: Counters80405
-Node: \alph \Alph \arabic \roman \Roman \fnsymbol81646
-Node: \usecounter82691
-Node: \value83053
-Node: \setcounter83438
-Node: \addtocounter83729
-Node: \refstepcounter84025
-Node: \stepcounter84370
-Node: \day \month \year84621
-Node: Lengths85166
-Node: \setlength85735
-Node: \addtolength86077
-Node: \settodepth86372
-Node: \settoheight86647
-Node: \settowidth86926
-Node: Predefined lengths87190
-Node: Line breaking87704
-Node: \\88762
-Node: \obeycr & \restorecr89232
-Node: \newline89636
-Node: \- (hyphenation)89926
-Node: \fussy90536
-Node: \sloppy90934
-Node: \hyphenation91261
-Node: \linebreak & \nolinebreak91887
-Node: Page breaking92556
-Node: \cleardoublepage93164
-Node: \clearpage93571
-Node: \newpage93847
-Node: \enlargethispage94082
-Node: \pagebreak & \nopagebreak94607
-Node: Making paragraphs95300
-Node: \indent95872
-Node: \noindent96344
-Node: \parskip96630
-Node: Marginal notes96888
-Node: Math formulas98407
-Node: Subscripts & Superscripts100191
-Node: Math symbols100658
-Node: Math functions107472
-Node: Math accents108416
-Node: Spacing in math mode109281
-Node: Math Miscellany109913
-Node: Modes111335
-Node: Page Styles113168
-Node: \maketitle113662
-Node: \pagenumbering114734
-Node: \pagestyle115151
-Node: \thispagestyle116293
-Node: Spaces116599
-Node: \hspace117659
-Node: \hfill118219
-Node: \SPACE118615
-Node: \AT119082
-Node: \thinspace119543
-Node: \/119802
-Node: \hrulefill120634
-Node: \dotfill120900
-Node: \addvspace121124
-Node: \bigskip \medskip \smallskip121616
-Node: \vfill122295
-Node: \vspace122600
-Node: Boxes123030
-Node: \mbox123749
-Node: \fbox and \framebox124036
-Node: lrbox124836
-Node: \makebox125153
-Node: \parbox125869
-Node: \raisebox127202
-Node: \savebox127799
-Node: \sbox128214
-Node: \usebox128663
-Node: Special insertions128921
-Node: Reserved characters129565
-Node: Text symbols130967
-Node: Accents131686
-Node: Non-English characters133321
-Node: \rule133751
-Node: \today134178
-Node: Splitting the input134623
-Node: \include135264
-Node: \includeonly135851
-Node: \input136342
-Node: Front/back matter136833
-Node: Tables of contents137038
-Node: \addcontentsline138066
-Node: \addtocontents138948
-Node: Glossaries139448
-Node: Indexes139967
-Node: Letters140668
-Node: \address142608
-Node: \cc143213
-Node: \closing143449
-Node: \encl143682
-Node: \location143874
-Node: \makelabels144136
-Node: \name144424
-Node: \opening144646
-Node: \ps144971
-Node: \signature145154
-Node: \startbreaks145437
-Node: \stopbreaks145659
-Node: \telephone145874
-Node: Terminal Input/Output146106
-Node: \typein146371
-Node: \typeout146952
-Node: Command Line147575
-Node: Document templates148270
-Node: book template148585
-Node: beamer template148928
-Node: tugboat template149466
-Node: Concept Index151691
-Node: Command Index179292
+Node: Top1667
+Node: Overview3852
+Node: Starting & ending5720
+Node: Document classes6282
+Node: Document class options6858
+Node: Typefaces9450
+Node: Font styles9892
+Node: Font sizes12218
+Node: Low-level font commands13453
+Node: Layout15681
+Node: \onecolumn16150
+Node: \twocolumn16363
+Node: \flushbottom17868
+Node: \raggedbottom18230
+Node: Page layout parameters18516
+Node: Sectioning20607
+Node: Cross references21931
+Node: \label22362
+Node: \pageref23227
+Node: \ref23526
+Node: Environments23916
+Node: abstract25371
+Node: array25612
+Node: center26943
+Node: \centering27420
+Node: description28260
+Node: displaymath29074
+Node: document29641
+Node: enumerate29898
+Node: eqnarray31190
+Node: equation32200
+Node: figure32573
+Node: flushleft35397
+Node: \raggedright35882
+Node: flushright36441
+Node: \raggedleft36929
+Node: itemize37486
+Node: letter41120
+Node: list41358
+Node: math42182
+Node: minipage42484
+Node: picture43676
+Node: \circle47674
+Node: \makebox (picture)48007
+Node: \framebox (picture)48703
+Node: \dashbox49193
+Node: \frame49720
+Node: \line50046
+Node: \linethickness50515
+Node: \thicklines50936
+Node: \thinlines51246
+Node: \multiput51548
+Node: \oval51914
+Node: \put52531
+Node: \shortstack52779
+Node: \vector53255
+Node: quotation53561
+Node: quote54017
+Node: tabbing54449
+Node: table57612
+Node: tabular58501
+Node: \multicolumn62418
+Node: \cline63216
+Node: \hline63536
+Node: \vline63850
+Node: thebibliography64163
+Node: \bibitem65303
+Node: \cite66034
+Node: \nocite66534
+Node: Using BibTeX66818
+Node: theorem68310
+Node: titlepage68696
+Node: verbatim69297
+Node: \verb69924
+Node: verse70474
+Node: Footnotes70968
+Node: \footnote71512
+Node: \footnotemark72028
+Node: \footnotetext72595
+Node: Footnote parameters73079
+Node: Definitions73808
+Node: \newcommand & \renewcommand74523
+Node: \newcounter75738
+Node: \newlength76206
+Node: \newsavebox76718
+Node: \newenvironment & \renewenvironment77025
+Node: \newtheorem78292
+Node: \newfont79258
+Node: \protect79738
+Node: Counters80602
+Node: \alph \Alph \arabic \roman \Roman \fnsymbol81843
+Node: \usecounter82888
+Node: \value83250
+Node: \setcounter83635
+Node: \addtocounter83926
+Node: \refstepcounter84222
+Node: \stepcounter84567
+Node: \day \month \year84818
+Node: Lengths85363
+Node: \setlength85932
+Node: \addtolength86274
+Node: \settodepth86569
+Node: \settoheight86844
+Node: \settowidth87123
+Node: Predefined lengths87387
+Node: Line breaking87901
+Node: \\88959
+Node: \obeycr & \restorecr89429
+Node: \newline89833
+Node: \- (hyphenation)90123
+Node: \fussy90733
+Node: \sloppy91131
+Node: \hyphenation91458
+Node: \linebreak & \nolinebreak92084
+Node: Page breaking92753
+Node: \cleardoublepage93361
+Node: \clearpage93768
+Node: \newpage94044
+Node: \enlargethispage94279
+Node: \pagebreak & \nopagebreak94804
+Node: Making paragraphs95497
+Node: \indent96069
+Node: \noindent96541
+Node: \parskip96827
+Node: Marginal notes97085
+Node: Math formulas98604
+Node: Subscripts & Superscripts100388
+Node: Math symbols100855
+Node: Math functions107669
+Node: Math accents108613
+Node: Spacing in math mode109520
+Node: Math Miscellany110152
+Node: Modes111574
+Node: Page Styles113407
+Node: \maketitle113901
+Node: \pagenumbering114973
+Node: \pagestyle115390
+Node: \thispagestyle116532
+Node: Spaces116838
+Node: \hspace117898
+Node: \hfill118458
+Node: \SPACE118854
+Node: \AT119321
+Node: \thinspace119782
+Node: \/120041
+Node: \hrulefill120873
+Node: \dotfill121139
+Node: \addvspace121363
+Node: \bigskip \medskip \smallskip121855
+Node: \vfill122534
+Node: \vspace122839
+Node: Boxes123269
+Node: \mbox123988
+Node: \fbox and \framebox124275
+Node: lrbox125075
+Node: \makebox125392
+Node: \parbox126108
+Node: \raisebox127441
+Node: \savebox128038
+Node: \sbox128453
+Node: \usebox128902
+Node: Special insertions129160
+Node: Reserved characters129804
+Node: Text symbols131206
+Node: Accents131925
+Node: Non-English characters133492
+Node: \rule133922
+Node: \today134349
+Node: Splitting the input134794
+Node: \include135435
+Node: \includeonly136022
+Node: \input136513
+Node: Front/back matter137004
+Node: Tables of contents137209
+Node: \addcontentsline138237
+Node: \addtocontents139136
+Node: Glossaries139647
+Node: Indexes140166
+Node: Letters141793
+Node: \address143733
+Node: \cc144338
+Node: \closing144574
+Node: \encl144807
+Node: \location144999
+Node: \makelabels145261
+Node: \name145549
+Node: \opening145771
+Node: \ps146096
+Node: \signature146279
+Node: \startbreaks146562
+Node: \stopbreaks146784
+Node: \telephone146999
+Node: Terminal Input/Output147231
+Node: \typein147496
+Node: \typeout148077
+Node: Command Line148700
+Node: Document templates149395
+Node: book template149710
+Node: beamer template150053
+Node: tugboat template150591
+Node: Concept Index152816
+Node: Command Index180928

End Tag Table