summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.txt')
-rw-r--r--Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.txt1890
1 files changed, 968 insertions, 922 deletions
diff --git a/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.txt b/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.txt
index c1e85d52913..95368211ed9 100644
--- a/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.txt
+++ b/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.txt
@@ -243,8 +243,8 @@ Command Index
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.
@@ -1101,7 +1101,7 @@ places an equation number in the right margin.
8.10 `figure'
=============
- \begin{figure}[PLACEMENT]
+ \begin{figure[*]}[PLACEMENT]
FIGBODY
\label{LABEL}
\caption[LOFTITLE]{TEXT}
@@ -1111,20 +1111,35 @@ places an equation number in the right margin.
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'.
@@ -1238,11 +1253,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)
@@ -1300,9 +1315,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
@@ -1310,12 +1325,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*'
@@ -1372,17 +1381,16 @@ text. `\(...\))' and `$...$' are synonyms. *Note Math formulas::.
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
@@ -1434,13 +1442,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
@@ -1487,13 +1497,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::.
@@ -1792,17 +1807,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]'.
@@ -1845,40 +1851,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'.
@@ -1889,10 +1902,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:
@@ -1903,7 +1916,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
@@ -3615,6 +3628,9 @@ Accents::).
`\acute'
Math acute accent: \acutex.
+`\bar'
+ Math bar-over accent: \barx.
+
`\breve'
Math breve accent: \brevex.
@@ -4293,9 +4309,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
@@ -4454,7 +4467,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.
@@ -4464,8 +4477,8 @@ of these lists from being generated.
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,
@@ -4495,9 +4508,9 @@ ENTRY
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:
@@ -4525,21 +4538,43 @@ glossaries.
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'.
24 Letters
**********
@@ -4877,715 +4912,723 @@ Email \verb|tugboat@tug.org| if problems or questions.
Concept Index
*************
-* prompt: See 26. (line 4738)
+* prompt: See 26. (line 4773)
*-form of sectioning commands: See 6. (line 788)
-.glo file: See 23.2. (line 4515)
-.idx file: See 23.3. (line 4530)
-.ind file: See 23.3. (line 4540)
+.glo file: See 23.2. (line 4528)
+.idx file: See 23.3. (line 4544)
+.ind file: See 23.3. (line 4558)
+`see' and `see also' index entries: See 23.3. (line 4551)
abstracts: See 8.1. (line 881)
-accents: See 21.3. (line 4263)
-accents, mathematical: See 16.4. (line 3611)
-accessing any character of a font: See 21.1. (line 4210)
-acute accent: See 21.3. (line 4272)
-acute accent, math: See 16.4. (line 3616)
-ae ligature: See 21.4. (line 4337)
+accents: See 21.3. (line 4279)
+accents, mathematical: See 16.4. (line 3624)
+accessing any character of a font: See 21.1. (line 4226)
+acute accent: See 21.3. (line 4288)
+acute accent, math: See 16.4. (line 3629)
+ae ligature: See 21.4. (line 4350)
aligning Equations: See 8.8. (line 1065)
-alignment via tabbing: See 8.21. (line 1688)
+alignment via tabbing: See 8.21. (line 1703)
appendix, creating: See 6. (line 794)
-aring: See 21.4. (line 4333)
+aring: See 21.4. (line 4346)
arrays, math: See 8.2. (line 892)
-author, for titlepage: See 18.1. (line 3779)
-bar-over accent: See 21.3. (line 4280)
-bar-under accent: See 21.3. (line 4294)
-bibliography, creating (automatically): See 8.24.4. (line 2035)
-bibliography, creating (manually): See 8.24. (line 1970)
-bibTeX, using: See 8.24.4. (line 2035)
+author, for titlepage: See 18.1. (line 3795)
+bar-over accent: See 21.3. (line 4296)
+bar-over accent, math: See 16.4. (line 3632)
+bar-under accent: See 21.3. (line 4310)
+bibliography, creating (automatically): See 8.24.4. (line 2048)
+bibliography, creating (manually): See 8.24. (line 1983)
+bibTeX, using: See 8.24.4. (line 2048)
black boxes, omitting: See 3.1. (line 357)
bold font: See 4.1. (line 502)
bold typewriter, avoiding: See 8.4. (line 988)
-boxes: See 20. (line 4019)
-breaking lines: See 13. (line 2578)
-breaking pages: See 14. (line 2679)
-breve accent: See 21.3. (line 4319)
-breve accent, math: See 16.4. (line 3619)
-bullet symbol: See 16.2. (line 2946)
-bulleted lists: See 8.13. (line 1223)
+boxes: See 20. (line 4035)
+breaking lines: See 13. (line 2591)
+breaking pages: See 14. (line 2692)
+breve accent: See 21.3. (line 4332)
+breve accent, math: See 16.4. (line 3635)
+bullet symbol: See 16.2. (line 2959)
+bulleted lists: See 8.13. (line 1238)
calligraphic letters for math: See 4.1. (line 505)
-cc list, in letters: See 24.2. (line 4596)
-cedilla accent: See 21.3. (line 4300)
+cc list, in letters: See 24.2. (line 4631)
+cedilla accent: See 21.3. (line 4313)
centering text, declaration for: See 8.3.1. (line 953)
centering text, environment for: See 8.3. (line 939)
-characters, accented: See 21.3. (line 4263)
-characters, non-English: See 21.4. (line 4328)
-characters, reserved: See 21.1. (line 4191)
-check accent: See 21.3. (line 4322)
-check accent, math: See 16.4. (line 3622)
-circumflex accent: See 21.3. (line 4283)
-circumflex accent, math: See 16.4. (line 3634)
+characters, accented: See 21.3. (line 4279)
+characters, non-English: See 21.4. (line 4341)
+characters, reserved: See 21.1. (line 4207)
+check accent: See 21.3. (line 4335)
+check accent, math: See 16.4. (line 3638)
+circumflex accent: See 21.3. (line 4299)
+circumflex accent, math: See 16.4. (line 3650)
class options: See 3.1. (line 336)
classes of documents: See 3. (line 319)
-closing letters: See 24.3. (line 4606)
-closing quote: See 21.2. (line 4251)
-code, typesetting: See 8.27. (line 2105)
-command Line: See 26. (line 4729)
-commands, defining new ones: See 10.1. (line 2231)
-computer programs, typesetting: See 8.27. (line 2105)
-copyright symbol: See 21.2. (line 4226)
-counters, a list of: See 11. (line 2405)
-counters, defining new: See 10.2. (line 2264)
-counters, getting value of: See 11.3. (line 2464)
-counters, setting: See 11.4. (line 2478)
-creating letters: See 24. (line 4547)
-creating pictures: See 8.18. (line 1404)
-creating tables: See 8.22. (line 1780)
-credit footnote: See 18.1. (line 3789)
+closing letters: See 24.3. (line 4641)
+closing quote: See 21.2. (line 4267)
+code, typesetting: See 8.27. (line 2118)
+command Line: See 26. (line 4764)
+commands, defining new ones: See 10.1. (line 2244)
+computer programs, typesetting: See 8.27. (line 2118)
+copyright symbol: See 21.2. (line 4242)
+counters, a list of: See 11. (line 2418)
+counters, defining new: See 10.2. (line 2277)
+counters, getting value of: See 11.3. (line 2477)
+counters, setting: See 11.4. (line 2491)
+creating letters: See 24. (line 4582)
+creating pictures: See 8.18. (line 1412)
+creating tables: See 8.22. (line 1795)
+credit footnote: See 18.1. (line 3805)
cross references: See 7. (line 807)
cross referencing with page number: See 7.2. (line 849)
cross referencing, symbolic: See 7.3. (line 859)
-dagger, in text: See 21.2. (line 4229)
-date, for titlepage: See 18.1. (line 3785)
-datetime package: See 21.6. (line 4382)
-defining a new command: See 10.1. (line 2231)
-defining new environments: See 10.5. (line 2304)
-defining new fonts: See 10.7. (line 2369)
-defining new theorems: See 10.6. (line 2340)
-definitions: See 10. (line 2226)
+dagger, in text: See 21.2. (line 4245)
+date, for titlepage: See 18.1. (line 3801)
+datetime package: See 21.6. (line 4395)
+defining a new command: See 10.1. (line 2244)
+defining new environments: See 10.5. (line 2317)
+defining new fonts: See 10.7. (line 2382)
+defining new theorems: See 10.6. (line 2353)
+definitions: See 10. (line 2239)
description lists, creating: See 8.4. (line 976)
-discretionary multiplication: See 16.6. (line 3680)
-displaying quoted text with paragraph indentation:See 8.19. (line 1658)
+discretionary multiplication: See 16.6. (line 3696)
+displaying quoted text with paragraph indentation:See 8.19. (line 1673)
displaying quoted text without paragraph indentation:See 8.20.
- (line 1673)
+ (line 1688)
document class options: See 3.1. (line 336)
document classes: See 3. (line 319)
document templates: See Appendix A.
- (line 4745)
-dot accent: See 21.3. (line 4277)
-dot over accent, math: See 16.4. (line 3628)
-dot-over accent: See 21.3. (line 4277)
-dot-under accent: See 21.3. (line 4303)
-dotless i: See 21.3. (line 4310)
-dotless i, math: See 16.4. (line 3637)
-dotless j: See 21.3. (line 4313)
-dotless j, math: See 16.4. (line 3640)
-double dagger, in text: See 21.2. (line 4232)
-double dot accent, math: See 16.4. (line 3625)
-ellipsis: See 21.2. (line 4238)
+ (line 4780)
+dot accent: See 21.3. (line 4293)
+dot over accent, math: See 16.4. (line 3644)
+dot-over accent: See 21.3. (line 4293)
+dot-under accent: See 21.3. (line 4316)
+dotless i: See 21.3. (line 4323)
+dotless i, math: See 16.4. (line 3653)
+dotless j: See 21.3. (line 4326)
+dotless j, math: See 16.4. (line 3656)
+double dagger, in text: See 21.2. (line 4248)
+double dot accent, math: See 16.4. (line 3641)
+ellipsis: See 21.2. (line 4254)
emphasis: See 4.1. (line 444)
-enclosure list: See 24.4. (line 4616)
+enclosure list: See 24.4. (line 4651)
ending & starting: See 2. (line 301)
-enlarge current page: See 14.4. (line 2706)
+enlarge current page: See 14.4. (line 2719)
environments: See 8. (line 871)
-environments, defining: See 10.5. (line 2304)
+environments, defining: See 10.5. (line 2317)
equation number, cross referencing: See 7.3. (line 859)
equation numbers, omitting: See 8.8. (line 1079)
equations, aligning: See 8.8. (line 1065)
equations, environment for: See 8.9. (line 1091)
-es-zet German letter: See 21.4. (line 4352)
-exponent: See 16.1. (line 2856)
+es-zet German letter: See 21.4. (line 4365)
+exponent: See 16.1. (line 2869)
figure number, cross referencing: See 7.3. (line 859)
-figures, footnotes in: See 8.17. (line 1391)
+figures, footnotes in: See 8.17. (line 1399)
figures, inserting: See 8.10. (line 1104)
fixed-width font: See 4.1. (line 526)
-flushing floats and starting a page: See 14.2. (line 2694)
+float package: See 8.10. (line 1132)
+flushing floats and starting a page: See 14.2. (line 2707)
font commands, low-level: See 4.3. (line 558)
font sizes: See 4.2. (line 532)
font styles: See 4.1. (line 424)
fonts: See 4. (line 418)
-fonts, new commands for: See 10.7. (line 2369)
-footer style: See 18.3. (line 3824)
+fonts, new commands for: See 10.7. (line 2382)
+footer style: See 18.3. (line 3840)
footer, parameters for: See 5.5. (line 706)
footnote number, cross referencing: See 7.3. (line 859)
-footnote parameters: See 9.4. (line 2209)
-footnotes in figures: See 8.17. (line 1391)
-footnotes, creating: See 9. (line 2158)
+footnote parameters: See 9.4. (line 2222)
+footnotes in figures: See 8.17. (line 1399)
+footnotes, creating: See 9. (line 2171)
formulas, environment for: See 8.9. (line 1091)
-formulas, math: See 16. (line 2818)
-fragile commands: See 10.8. (line 2383)
-functions, math: See 16.3. (line 3502)
+formulas, math: See 16. (line 2831)
+fragile commands: See 10.8. (line 2396)
+functions, math: See 16.3. (line 3515)
global options: See 3.1. (line 336)
-glossaries: See 23.2. (line 4513)
-grave accent: See 21.3. (line 4286)
-grave accent, math: See 16.4. (line 3631)
-greek letters: See 16.2. (line 2865)
-ha'c<ek accent, math: See 16.4. (line 3622)
-hacek accent: See 21.3. (line 4322)
-hat accent: See 21.3. (line 4283)
-hat accent, math: See 16.4. (line 3634)
-header style: See 18.3. (line 3824)
+glossaries: See 23.2. (line 4526)
+grave accent: See 21.3. (line 4302)
+grave accent, math: See 16.4. (line 3647)
+greek letters: See 16.2. (line 2878)
+ha'c<ek accent, math: See 16.4. (line 3638)
+hacek accent: See 21.3. (line 4335)
+hat accent: See 21.3. (line 4299)
+hat accent, math: See 16.4. (line 3650)
+header style: See 18.3. (line 3840)
header, parameters for: See 5.5. (line 706)
-hungarian umlaut accent: See 21.3. (line 4306)
-hyphenation, defining: See 13.7. (line 2646)
-hyphenation, forcing: See 13.4. (line 2616)
-hyphenation, preventing: See 20.1. (line 4025)
-in-line formulas: See 8.16. (line 1363)
-indent, forcing: See 15.1. (line 2747)
-indent, suppressing: See 15.2. (line 2758)
-indentation of paragraphs, in minipage: See 8.17. (line 1387)
-indexes: See 23.3. (line 4528)
-input file: See 22. (line 4388)
-input/Output: See 25. (line 4696)
+hungarian umlaut accent: See 21.3. (line 4319)
+hyphenation, defining: See 13.7. (line 2659)
+hyphenation, forcing: See 13.4. (line 2629)
+hyphenation, preventing: See 20.1. (line 4041)
+in-line formulas: See 8.16. (line 1372)
+indent, forcing: See 15.1. (line 2760)
+indent, suppressing: See 15.2. (line 2771)
+indentation of paragraphs, in minipage: See 8.17. (line 1395)
+indexes: See 23.3. (line 4541)
+input file: See 22. (line 4401)
+input/Output: See 25. (line 4731)
inserting figures: See 8.10. (line 1104)
italic font: See 4.1. (line 511)
-justification, ragged left: See 8.12.1. (line 1210)
-justification, ragged right: See 8.11.1. (line 1184)
+justification, ragged left: See 8.12.1. (line 1225)
+justification, ragged right: See 8.11.1. (line 1199)
Knuth, Donald E.:
See ``LaTeX2e''. (line 251)
labelled lists, creating: See 8.4. (line 976)
Lamport, Leslie:
See ``LaTeX2e''. (line 251)
-LaTeX logo: See 21.2. (line 4235)
+LaTeX logo: See 21.2. (line 4251)
LaTeX overview: See 1. (line 261)
LaTeX Project team:
See ``LaTeX2e''. (line 251)
layout commands: See 5. (line 634)
layout, page parameters for: See 5.5. (line 706)
-left quote: See 21.2. (line 4242)
-left-justifying text: See 8.11.1. (line 1184)
-left-justifying text, environment for: See 8.11. (line 1171)
-left-to-right mode: See 17. (line 3729)
-lengths, adding to: See 12.2. (line 2531)
-lengths, defining and using: See 12. (line 2518)
-lengths, defining new: See 10.3. (line 2279)
-lengths, predefined: See 12.6. (line 2559)
-lengths, setting: See 12.1. (line 2524)
-letters: See 24. (line 4547)
-letters, accented: See 21.3. (line 4263)
-letters, ending: See 24.3. (line 4606)
-letters, non-English: See 21.4. (line 4328)
-letters, starting: See 24.8. (line 4649)
-line break, forcing: See 13.1. (line 2590)
-line breaking: See 13. (line 2578)
-line breaks, forcing: See 13.8. (line 2662)
-line breaks, preventing: See 13.8. (line 2662)
-lines in tables: See 8.23. (line 1816)
-lining text up in columns using tab stops: See 8.21. (line 1688)
-lining text up in tables: See 8.23. (line 1816)
-list items, specifying counter: See 11.2. (line 2453)
-lists of items: See 8.13. (line 1223)
-lists of items, generic: See 8.15. (line 1341)
+left quote: See 21.2. (line 4258)
+left-justifying text: See 8.11.1. (line 1199)
+left-justifying text, environment for: See 8.11. (line 1186)
+left-to-right mode: See 17. (line 3745)
+lengths, adding to: See 12.2. (line 2544)
+lengths, defining and using: See 12. (line 2531)
+lengths, defining new: See 10.3. (line 2292)
+lengths, predefined: See 12.6. (line 2572)
+lengths, setting: See 12.1. (line 2537)
+letters: See 24. (line 4582)
+letters, accented: See 21.3. (line 4279)
+letters, ending: See 24.3. (line 4641)
+letters, non-English: See 21.4. (line 4341)
+letters, starting: See 24.8. (line 4684)
+line break, forcing: See 13.1. (line 2603)
+line breaking: See 13. (line 2591)
+line breaks, forcing: See 13.8. (line 2675)
+line breaks, preventing: See 13.8. (line 2675)
+lines in tables: See 8.23. (line 1822)
+lining text up in columns using tab stops: See 8.21. (line 1703)
+lining text up in tables: See 8.23. (line 1822)
+list items, specifying counter: See 11.2. (line 2466)
+lists of items: See 8.13. (line 1238)
+lists of items, generic: See 8.15. (line 1350)
lists of items, numbered: See 8.7. (line 1024)
loading additional packages: See 3.1. (line 404)
-logo, LaTeX: See 21.2. (line 4235)
-logo, TeX: See 21.2. (line 4257)
+logo, LaTeX: See 21.2. (line 4251)
+logo, TeX: See 21.2. (line 4273)
low-level font commands: See 4.3. (line 558)
-lR mode: See 17. (line 3729)
-macron accent: See 21.3. (line 4280)
-makeindex program: See 23.3. (line 4540)
-making a title page: See 8.26. (line 2088)
-making paragraphs: See 15. (line 2739)
-marginal notes: See 15.4. (line 2771)
-math accents: See 16.4. (line 3611)
-math formulas: See 16. (line 2818)
-math functions: See 16.3. (line 3502)
-math Miscellany: See 16.6. (line 3679)
-math mode: See 17. (line 3729)
-math mode, entering: See 16. (line 2818)
-math mode, spacing: See 16.5. (line 3658)
-math symbols: See 16.2. (line 2865)
-minipage, creating a: See 8.17. (line 1375)
-modes: See 17. (line 3729)
+lR mode: See 17. (line 3745)
+macron accent: See 21.3. (line 4296)
+macron accent, math: See 16.4. (line 3632)
+makeidx package: See 23.3. (line 4564)
+makeindex program: See 23.3. (line 4558)
+making a title page: See 8.26. (line 2101)
+making paragraphs: See 15. (line 2752)
+marginal notes: See 15.4. (line 2784)
+math accents: See 16.4. (line 3624)
+math formulas: See 16. (line 2831)
+math functions: See 16.3. (line 3515)
+math Miscellany: See 16.6. (line 3695)
+math mode: See 17. (line 3745)
+math mode, entering: See 16. (line 2831)
+math mode, spacing: See 16.5. (line 3674)
+math symbols: See 16.2. (line 2878)
+minipage, creating a: See 8.17. (line 1384)
+modes: See 17. (line 3745)
monospace font: See 4.1. (line 526)
-moving arguments: See 10.8. (line 2383)
+moving arguments: See 10.8. (line 2396)
multicolumn text: See 5.2. (line 645)
-multiplication symbol, discretionary line break:See 16.6. (line 3680)
-nested \include, not allowed: See 22.1. (line 4409)
-new commands, defining: See 10.1. (line 2231)
-new line, output as input: See 13.2. (line 2600)
-new line, starting: See 13.1. (line 2590)
-new line, starting (paragraph mode): See 13.3. (line 2609)
-new page, starting: See 14.3. (line 2700)
-non-English characters: See 21.4. (line 4328)
-notes in the margin: See 15.4. (line 2771)
-null delimiter: See 16.6. (line 3694)
-numbered items, specifying counter: See 11.2. (line 2453)
+multind package: See 23.3. (line 4575)
+multiplication symbol, discretionary line break:See 16.6. (line 3696)
+nested \include, not allowed: See 22.1. (line 4422)
+new commands, defining: See 10.1. (line 2244)
+new line, output as input: See 13.2. (line 2613)
+new line, starting: See 13.1. (line 2603)
+new line, starting (paragraph mode): See 13.3. (line 2622)
+new page, starting: See 14.3. (line 2713)
+non-English characters: See 21.4. (line 4341)
+notes in the margin: See 15.4. (line 2784)
+null delimiter: See 16.6. (line 3710)
+numbered items, specifying counter: See 11.2. (line 2466)
oblique font: See 4.1. (line 523)
-oe ligature: See 21.4. (line 4349)
+oe ligature: See 21.4. (line 4362)
one-column output: See 5.1. (line 639)
-opening quote: See 21.2. (line 4242)
+opening quote: See 21.2. (line 4258)
options, document class: See 3.1. (line 336)
options, global: See 3.1. (line 411)
-oslash: See 21.4. (line 4345)
-overbar accent: See 21.3. (line 4280)
-overdot accent, math: See 16.4. (line 3628)
+oslash: See 21.4. (line 4358)
+overbar accent: See 21.3. (line 4296)
+overdot accent, math: See 16.4. (line 3644)
overview of LaTeX: See 1. (line 261)
packages, loading: See 3.1. (line 404)
-page break, forcing: See 14.5. (line 2721)
-page break, preventing: See 14.5. (line 2721)
-page breaking: See 14. (line 2679)
+page break, forcing: See 14.5. (line 2734)
+page break, preventing: See 14.5. (line 2734)
+page breaking: See 14. (line 2692)
page layout parameters: See 5.5. (line 706)
page number, cross referencing: See 7.2. (line 849)
-page numbering style: See 18.2. (line 3800)
-page styles: See 18. (line 3767)
-paragraph indentation, in minipage: See 8.17. (line 1387)
-paragraph indentations in quoted text: See 8.19. (line 1658)
-paragraph indentations in quoted text, omitting:See 8.20. (line 1673)
-paragraph mode: See 17. (line 3729)
-paragraph sign: See 21.2. (line 4245)
-paragraphs: See 15. (line 2739)
+page numbering style: See 18.2. (line 3816)
+page styles: See 18. (line 3783)
+paragraph indentation, in minipage: See 8.17. (line 1395)
+paragraph indentations in quoted text: See 8.19. (line 1673)
+paragraph indentations in quoted text, omitting:See 8.20. (line 1688)
+paragraph mode: See 17. (line 3745)
+paragraph sign: See 21.2. (line 4261)
+paragraphs: See 15. (line 2752)
parameters, page layout: See 5.5. (line 706)
-pictures, creating: See 8.18. (line 1404)
-pilcrow: See 21.2. (line 4245)
-poetry, an environment for: See 8.28. (line 2139)
-polish l: See 21.4. (line 4341)
-postscript, in letters: See 24.9. (line 4662)
-pounds symbol: See 21.2. (line 4248)
+pictures, creating: See 8.18. (line 1412)
+pilcrow: See 21.2. (line 4261)
+poetry, an environment for: See 8.28. (line 2152)
+polish l: See 21.4. (line 4354)
+postscript, in letters: See 24.9. (line 4697)
+pounds symbol: See 21.2. (line 4264)
preamble, defined: See 2. (line 312)
-predefined lengths: See 12.6. (line 2559)
-prompt, *: See 26. (line 4738)
-quoted text with paragraph indentation, displaying:See 8.19. (line 1658)
+predefined lengths: See 12.6. (line 2572)
+prompt, *: See 26. (line 4773)
+quoted text with paragraph indentation, displaying:See 8.19. (line 1673)
quoted text without paragraph indentation, displaying:See 8.20.
- (line 1673)
-ragged left text: See 8.12.1. (line 1210)
-ragged left text, environment for: See 8.12. (line 1197)
-ragged right text: See 8.11.1. (line 1184)
-ragged right text, environment for: See 8.11. (line 1171)
-redefining environments: See 10.5. (line 2304)
-remarks in the margin: See 15.4. (line 2771)
-reserved characters: See 21.1. (line 4191)
-right quote: See 21.2. (line 4251)
-right-justifying text: See 8.12.1. (line 1210)
-right-justifying text, environment for: See 8.12. (line 1197)
-robust commands: See 10.8. (line 2393)
+ (line 1688)
+ragged left text: See 8.12.1. (line 1225)
+ragged left text, environment for: See 8.12. (line 1212)
+ragged right text: See 8.11.1. (line 1199)
+ragged right text, environment for: See 8.11. (line 1186)
+redefining environments: See 10.5. (line 2317)
+remarks in the margin: See 15.4. (line 2784)
+reserved characters: See 21.1. (line 4207)
+right quote: See 21.2. (line 4267)
+right-justifying text: See 8.12.1. (line 1225)
+right-justifying text, environment for: See 8.12. (line 1212)
+robust commands: See 10.8. (line 2406)
roman font: See 4.1. (line 514)
running header and footer: See 5.5. (line 706)
-running header and footer style: See 18.3. (line 3824)
+running header and footer style: See 18.3. (line 3840)
sans serif font: See 4.1. (line 520)
script letters for math: See 4.1. (line 505)
section number, cross referencing: See 7.3. (line 859)
-section symbol: See 21.2. (line 4254)
+section symbol: See 21.2. (line 4270)
sectioning: See 6. (line 756)
setspace package: See 4.3. (line 615)
-setting counters: See 11.4. (line 2478)
-sharp S letters: See 21.4. (line 4352)
-simulating typed text: See 8.27. (line 2105)
+setting counters: See 11.4. (line 2491)
+sharp S letters: See 21.4. (line 4365)
+showidx package: See 23.3. (line 4571)
+simulating typed text: See 8.27. (line 2118)
sizes of text: See 4.2. (line 532)
slanted font: See 4.1. (line 523)
small caps font: See 4.1. (line 517)
-space, inserting vertical: See 19.9. (line 3967)
-spaces: See 19. (line 3869)
-spacing within math mode: See 16.5. (line 3658)
-special characters: See 21.4. (line 4328)
-splitting the input file: See 22. (line 4388)
+space, inserting vertical: See 19.9. (line 3983)
+spaces: See 19. (line 3885)
+spacing within math mode: See 16.5. (line 3674)
+special characters: See 21.4. (line 4341)
+splitting the input file: See 22. (line 4401)
starting & ending: See 2. (line 301)
-starting a new page: See 14.3. (line 2700)
-starting a new page and clearing floats: See 14.2. (line 2694)
-starting on a right-hand page: See 14.1. (line 2686)
-sterling symbol: See 21.2. (line 4248)
+starting a new page: See 14.3. (line 2713)
+starting a new page and clearing floats: See 14.2. (line 2707)
+starting on a right-hand page: See 14.1. (line 2699)
+sterling symbol: See 21.2. (line 4264)
stretch, omitting vertical: See 5.4. (line 700)
styles of text: See 4.1. (line 424)
-styles, page: See 18. (line 3767)
-subscript: See 16.1. (line 2856)
-superscript: See 16.1. (line 2856)
-symbols, math: See 16.2. (line 2865)
-tab stops, using: See 8.21. (line 1688)
-table of contents entry, manually adding: See 23.1.1. (line 4467)
-table of contents, creating: See 23.1. (line 4447)
-tables, creating: See 8.22. (line 1780)
-terminal Input/Output: See 25. (line 4696)
-TeX logo: See 21.2. (line 4257)
-text symbols: See 21.2. (line 4222)
-thanks, for titlepage: See 18.1. (line 3789)
-theorems, defining: See 10.6. (line 2340)
-theorems, typesetting: See 8.25. (line 2075)
-tie-after accent: See 21.3. (line 4316)
-tilde accent: See 21.3. (line 4291)
-tilde accent, math: See 16.4. (line 3643)
-title pages, creating: See 8.26. (line 2088)
-title, for titlepage: See 18.1. (line 3793)
-titles, making: See 18.1. (line 3773)
+styles, page: See 18. (line 3783)
+subscript: See 16.1. (line 2869)
+superscript: See 16.1. (line 2869)
+symbols, math: See 16.2. (line 2878)
+tab stops, using: See 8.21. (line 1703)
+table of contents entry, manually adding: See 23.1.1. (line 4480)
+table of contents, creating: See 23.1. (line 4460)
+tables, creating: See 8.22. (line 1795)
+terminal Input/Output: See 25. (line 4731)
+TeX logo: See 21.2. (line 4273)
+text symbols: See 21.2. (line 4238)
+thanks, for titlepage: See 18.1. (line 3805)
+theorems, defining: See 10.6. (line 2353)
+theorems, typesetting: See 8.25. (line 2088)
+tie-after accent: See 21.3. (line 4329)
+tilde accent: See 21.3. (line 4307)
+tilde accent, math: See 16.4. (line 3659)
+title pages, creating: See 8.26. (line 2101)
+title, for titlepage: See 18.1. (line 3809)
+titles, making: See 18.1. (line 3789)
two-column output: See 5.2. (line 645)
-typed text, simulating: See 8.27. (line 2105)
+typed text, simulating: See 8.27. (line 2118)
typeface sizes: See 4.2. (line 532)
typeface styles: See 4.1. (line 424)
typefaces: See 4. (line 418)
typewriter font: See 4.1. (line 526)
typewriter labels in lists: See 8.4. (line 988)
-umlaut accent: See 21.3. (line 4269)
-unordered lists: See 8.13. (line 1223)
-using BibTeX: See 8.24.4. (line 2035)
-variables, a list of: See 11. (line 2405)
-vector symbol, math: See 16.4. (line 3646)
-verbatim text: See 8.27. (line 2105)
-verbatim text, inline: See 8.27.1. (line 2122)
-vertical space: See 19.9. (line 3967)
-vertical space before paragraphs: See 15.3. (line 2765)
-visible space: See 8.27.1. (line 2133)
-wide hat accent, math: See 16.4. (line 3649)
-wide tile accent, math: See 16.4. (line 3652)
-xindy program: See 23.3. (line 4540)
+umlaut accent: See 21.3. (line 4285)
+unordered lists: See 8.13. (line 1238)
+using BibTeX: See 8.24.4. (line 2048)
+variables, a list of: See 11. (line 2418)
+vector symbol, math: See 16.4. (line 3662)
+verbatim text: See 8.27. (line 2118)
+verbatim text, inline: See 8.27.1. (line 2135)
+vertical space: See 19.9. (line 3983)
+vertical space before paragraphs: See 15.3. (line 2778)
+visible space: See 8.27.1. (line 2146)
+wide hat accent, math: See 16.4. (line 3665)
+wide tile accent, math: See 16.4. (line 3668)
+xindy program: See 23.3. (line 4558)
Command Index
*************
-$: See 16. (line 2838)
+$: See 16. (line 2851)
10pt option: See 3.1. (line 344)
11pt option: See 3.1. (line 344)
12pt option: See 3.1. (line 344)
@{...}: See 8.2. (line 917)
-\" (umlaut accent): See 21.3. (line 4269)
-\#: See 21.1. (line 4196)
-\$: See 21.1. (line 4196)
-\%: See 21.1. (line 4196)
-\&: See 21.1. (line 4196)
-\' (acute accent): See 21.3. (line 4272)
-\' (tabbing): See 8.21. (line 1727)
-\(: See 16. (line 2830)
-\): See 16. (line 2830)
-\*: See 16.6. (line 3679)
-\+: See 8.21. (line 1719)
-\,: See 16.5. (line 3671)
-\-: See 8.21. (line 1723)
-\- (hyphenation): See 13.4. (line 2616)
-\. (dot-over accent): See 21.3. (line 4277)
-\/: See 19.6. (line 3936)
-\:: See 16.5. (line 3668)
-\;: See 16.5. (line 3664)
-\<: See 8.21. (line 1715)
-\= (macron accent): See 21.3. (line 4280)
-\= (tabbing): See 8.21. (line 1709)
-\> <1>: See 16.5. (line 3668)
-\>: See 8.21. (line 1713)
-\> (tabbing): See 8.21. (line 1712)
-\@: See 19.4. (line 3915)
-\[: See 16. (line 2830)
-\\ (for \shortstack objects): See 8.18.13. (line 1642)
+\" (umlaut accent): See 21.3. (line 4285)
+\#: See 21.1. (line 4212)
+\$: See 21.1. (line 4212)
+\%: See 21.1. (line 4212)
+\&: See 21.1. (line 4212)
+\' (acute accent): See 21.3. (line 4288)
+\' (tabbing): See 8.21. (line 1742)
+\(: See 16. (line 2843)
+\): See 16. (line 2843)
+\*: See 16.6. (line 3695)
+\+: See 8.21. (line 1734)
+\,: See 16.5. (line 3687)
+\-: See 8.21. (line 1738)
+\- (hyphenation): See 13.4. (line 2629)
+\. (dot-over accent): See 21.3. (line 4293)
+\/: See 19.6. (line 3952)
+\:: See 16.5. (line 3684)
+\;: See 16.5. (line 3680)
+\<: See 8.21. (line 1730)
+\= (macron accent): See 21.3. (line 4296)
+\= (tabbing): See 8.21. (line 1724)
+\> <1>: See 16.5. (line 3684)
+\>: See 8.21. (line 1728)
+\> (tabbing): See 8.21. (line 1727)
+\@: See 19.4. (line 3931)
+\[: See 16. (line 2843)
+\\ (for \shortstack objects): See 8.18.13. (line 1657)
\\ (for array): See 8.2. (line 914)
\\ (for center): See 8.3. (line 946)
\\ (for eqnarray): See 8.8. (line 1071)
-\\ (for flushright): See 8.12. (line 1203)
-\\ for \author: See 18.1. (line 3779)
-\\ for \title: See 18.1. (line 3793)
-\\ for flushleft: See 8.11. (line 1177)
-\\ for letters: See 24. (line 4573)
-\\ for tabular: See 8.23. (line 1833)
-\\ for verse: See 8.28. (line 2150)
-\\ force line break: See 13.1. (line 2590)
-\\ tabbing: See 8.21. (line 1706)
+\\ (for flushright): See 8.12. (line 1218)
+\\ for \author: See 18.1. (line 3795)
+\\ for \title: See 18.1. (line 3809)
+\\ for flushleft: See 8.11. (line 1192)
+\\ for letters: See 24. (line 4608)
+\\ for tabular: See 8.23. (line 1839)
+\\ for verse: See 8.28. (line 2163)
+\\ force line break: See 13.1. (line 2603)
+\\ tabbing: See 8.21. (line 1721)
\\* (for eqnarray): See 8.8. (line 1076)
-\]: See 16. (line 2830)
-\^: See 21.1. (line 4206)
-\^ (circumflex accent): See 21.3. (line 4283)
-\_: See 21.1. (line 4196)
-\` (grave accent): See 21.3. (line 4286)
-\` (tabbing): See 8.21. (line 1733)
-\a (tabbing): See 8.21. (line 1742)
-\a' (acute accent in tabbing): See 8.21. (line 1743)
-\a= (macron accent in tabbing): See 8.21. (line 1743)
-\a` (grave accent in tabbing): See 8.21. (line 1743)
-\AA (AA): See 21.4. (line 4333)
-\aa (aa): See 21.4. (line 4333)
-\acute: See 16.4. (line 3615)
-\addcontentsline{EXT}{UNIT}{TEXT}: See 23.1.1. (line 4467)
-\address: See 24.1. (line 4583)
-\addtocontents{EXT}{TEXT}: See 23.1.2. (line 4498)
-\addtocounter: See 11.5. (line 2488)
-\addtolength: See 12.2. (line 2531)
-\addvspace: See 19.9. (line 3967)
-\AE (AE): See 21.4. (line 4337)
-\ae (ae): See 21.4. (line 4337)
-\aleph: See 16.2. (line 2873)
-\Alph: See 11.1. (line 2427)
-\alph: See 11.1. (line 2424)
+\]: See 16. (line 2843)
+\^: See 21.1. (line 4222)
+\^ (circumflex accent): See 21.3. (line 4299)
+\_: See 21.1. (line 4212)
+\` (grave accent): See 21.3. (line 4302)
+\` (tabbing): See 8.21. (line 1748)
+\a (tabbing): See 8.21. (line 1757)
+\a' (acute accent in tabbing): See 8.21. (line 1758)
+\a= (macron accent in tabbing): See 8.21. (line 1758)
+\a` (grave accent in tabbing): See 8.21. (line 1758)
+\AA (AA): See 21.4. (line 4346)
+\aa (aa): See 21.4. (line 4346)
+\acute: See 16.4. (line 3628)
+\addcontentsline{EXT}{UNIT}{TEXT}: See 23.1.1. (line 4480)
+\address: See 24.1. (line 4618)
+\addtocontents{EXT}{TEXT}: See 23.1.2. (line 4511)
+\addtocounter: See 11.5. (line 2501)
+\addtolength: See 12.2. (line 2544)
+\addvspace: See 19.9. (line 3983)
+\AE (AE): See 21.4. (line 4350)
+\ae (ae): See 21.4. (line 4350)
+\aleph: See 16.2. (line 2886)
+\Alph: See 11.1. (line 2440)
+\alph: See 11.1. (line 2437)
\Alph example: See 8.7. (line 1060)
-\alpha: See 16.2. (line 2876)
-\amalg: See 16.2. (line 2879)
-\and for \author: See 18.1. (line 3779)
-\angle: See 16.2. (line 2882)
+\alpha: See 16.2. (line 2889)
+\alsoname: See 23.3. (line 4555)
+\amalg: See 16.2. (line 2892)
+\and for \author: See 18.1. (line 3795)
+\angle: See 16.2. (line 2895)
\appendix: See 6. (line 794)
-\approx: See 16.2. (line 2885)
-\arabic: See 11.1. (line 2430)
-\arccos: See 16.3. (line 3505)
-\arcsin: See 16.3. (line 3508)
-\arctan: See 16.3. (line 3511)
-\arg: See 16.3. (line 3514)
+\approx: See 16.2. (line 2898)
+\arabic: See 11.1. (line 2443)
+\arccos: See 16.3. (line 3518)
+\arcsin: See 16.3. (line 3521)
+\arctan: See 16.3. (line 3524)
+\arg: See 16.3. (line 3527)
\arraycolsep: See 8.2. (line 929)
-\arrayrulewidth: See 8.23. (line 1900)
-\arraystretch: See 8.23. (line 1904)
-\ast: See 16.2. (line 2888)
-\asymp: See 16.2. (line 2891)
-\author{NAME \and NAME2}: See 18.1. (line 3778)
-\b (bar-under accent): See 21.3. (line 4294)
-\backslash <1>: See 21.1. (line 4201)
-\backslash: See 16.2. (line 2894)
-\bar (macron, bar-over accent): See 21.3. (line 4297)
+\arrayrulewidth: See 8.23. (line 1913)
+\arraystretch: See 8.23. (line 1917)
+\ast: See 16.2. (line 2901)
+\asymp: See 16.2. (line 2904)
+\author{NAME \and NAME2}: See 18.1. (line 3794)
+\b (bar-under accent): See 21.3. (line 4310)
+\backslash <1>: See 21.1. (line 4217)
+\backslash: See 16.2. (line 2907)
+\bar: See 16.4. (line 3631)
\baselineskip: See 4.3. (line 609)
\baselinestretch: See 4.3. (line 615)
\begin: See 8. (line 871)
-\beta: See 16.2. (line 2897)
+\beta: See 16.2. (line 2910)
\bf: See 4.1. (line 501)
\bfseries: See 4.1. (line 450)
-\bibitem: See 8.24.1. (line 1995)
-\bibliography: See 8.24.4. (line 2035)
-\bibliographystyle: See 8.24.4. (line 2035)
-\bigcap: See 16.2. (line 2900)
-\bigcirc: See 16.2. (line 2903)
-\bigcup: See 16.2. (line 2906)
-\bigodot: See 16.2. (line 2909)
-\bigoplus: See 16.2. (line 2912)
-\bigotimes: See 16.2. (line 2915)
-\bigskip: See 19.10. (line 3981)
-\bigskipamount: See 19.10. (line 3981)
-\bigsqcup: See 16.2. (line 2924)
-\bigtriangledown: See 16.2. (line 2918)
-\bigtriangleup: See 16.2. (line 2921)
-\biguplus: See 16.2. (line 2927)
-\bigwedge: See 16.2. (line 2933)
-\bmod: See 16.3. (line 3517)
-\boldmath: See 16. (line 2843)
-\bot: See 16.2. (line 2936)
-\bottomfraction: See 8.10. (line 1138)
-\bowtie: See 16.2. (line 2939)
-\Box: See 16.2. (line 2942)
-\breve: See 16.4. (line 3618)
-\bullet: See 16.2. (line 2945)
-\c (cedilla accent): See 21.3. (line 4300)
+\bibitem: See 8.24.1. (line 2008)
+\bibliography: See 8.24.4. (line 2048)
+\bibliographystyle: See 8.24.4. (line 2048)
+\bigcap: See 16.2. (line 2913)
+\bigcirc: See 16.2. (line 2916)
+\bigcup: See 16.2. (line 2919)
+\bigodot: See 16.2. (line 2922)
+\bigoplus: See 16.2. (line 2925)
+\bigotimes: See 16.2. (line 2928)
+\bigskip: See 19.10. (line 3997)
+\bigskipamount: See 19.10. (line 3997)
+\bigsqcup: See 16.2. (line 2937)
+\bigtriangledown: See 16.2. (line 2931)
+\bigtriangleup: See 16.2. (line 2934)
+\biguplus: See 16.2. (line 2940)
+\bigwedge: See 16.2. (line 2946)
+\bmod: See 16.3. (line 3530)
+\boldmath: See 16. (line 2856)
+\bot: See 16.2. (line 2949)
+\bottomfraction: See 8.10. (line 1153)
+\bowtie: See 16.2. (line 2952)
+\Box: See 16.2. (line 2955)
+\breve: See 16.4. (line 3634)
+\bullet: See 16.2. (line 2958)
+\c (cedilla accent): See 21.3. (line 4313)
\cal: See 4.1. (line 504)
-\cap: See 16.2. (line 2948)
-\caption: See 8.10. (line 1134)
-\cc: See 24.2. (line 4596)
-\cdot: See 16.2. (line 2951)
-\cdots: See 16.6. (line 3683)
+\cap: See 16.2. (line 2961)
+\caption: See 8.10. (line 1149)
+\cc: See 24.2. (line 4631)
+\cdot: See 16.2. (line 2964)
+\cdots: See 16.6. (line 3699)
\centering: See 8.3.1. (line 953)
\chapter: See 6. (line 760)
-\check: See 16.4. (line 3621)
-\chi: See 16.2. (line 2954)
-\circ: See 16.2. (line 2957)
-\circle: See 8.18.1. (line 1470)
-\cite: See 8.24.2. (line 2012)
-\cleardoublepage: See 14.1. (line 2686)
-\clearpage: See 14.2. (line 2694)
-\cline: See 8.23.2. (line 1944)
-\closing: See 24.3. (line 4606)
-\clubsuit: See 16.2. (line 2960)
+\check: See 16.4. (line 3637)
+\chi: See 16.2. (line 2967)
+\circ: See 16.2. (line 2970)
+\circle: See 8.18.1. (line 1480)
+\cite: See 8.24.2. (line 2025)
+\cleardoublepage: See 14.1. (line 2699)
+\clearpage: See 14.2. (line 2707)
+\cline: See 8.23.2. (line 1957)
+\closing: See 24.3. (line 4641)
+\clubsuit: See 16.2. (line 2973)
\columnsep: See 5.2. (line 655)
\columnseprule: See 5.2. (line 658)
\columnwidth: See 5.2. (line 662)
-\cong: See 16.2. (line 2963)
-\contentsline: See 23.1.1. (line 4492)
-\coprod: See 16.2. (line 2966)
-\copyright: See 21.2. (line 4225)
-\cos: See 16.3. (line 3520)
-\cosh: See 16.3. (line 3523)
-\cot: See 16.3. (line 3526)
-\coth: See 16.3. (line 3529)
-\csc: See 16.3. (line 3532)
-\cup: See 16.2. (line 2969)
-\d (dot-under accent): See 21.3. (line 4303)
-\dag: See 21.2. (line 4228)
-\dagger: See 16.2. (line 2972)
-\dashbox: See 8.18.4. (line 1518)
-\dashv: See 16.2. (line 2975)
-\date{TEXT}: See 18.1. (line 3784)
-\day: See 11.8. (line 2507)
+\cong: See 16.2. (line 2976)
+\contentsline: See 23.1.1. (line 4505)
+\coprod: See 16.2. (line 2979)
+\copyright: See 21.2. (line 4241)
+\cos: See 16.3. (line 3533)
+\cosh: See 16.3. (line 3536)
+\cot: See 16.3. (line 3539)
+\coth: See 16.3. (line 3542)
+\csc: See 16.3. (line 3545)
+\cup: See 16.2. (line 2982)
+\d (dot-under accent): See 21.3. (line 4316)
+\dag: See 21.2. (line 4244)
+\dagger: See 16.2. (line 2985)
+\dashbox: See 8.18.4. (line 1533)
+\dashv: See 16.2. (line 2988)
+\date{TEXT}: See 18.1. (line 3800)
+\day: See 11.8. (line 2520)
\dblfloatpagefraction: See 5.2. (line 674)
\dblfloatsep: See 5.2. (line 678)
\dbltextfloatsep: See 5.2. (line 683)
\dbltopfraction: See 5.2. (line 669)
-\ddag: See 21.2. (line 4231)
-\ddagger: See 16.2. (line 2978)
-\ddot: See 16.4. (line 3624)
-\ddots: See 16.6. (line 3687)
-\deg: See 16.3. (line 3535)
-\delta: See 16.2. (line 2984)
-\Delta: See 16.2. (line 2981)
-\depth: See 12.6. (line 2563)
-\det: See 16.3. (line 3538)
-\diamond: See 16.2. (line 2990)
-\Diamond: See 16.2. (line 2987)
-\diamondsuit: See 16.2. (line 2993)
-\dim: See 16.3. (line 3541)
-\displaystyle: See 16. (line 2848)
-\div: See 16.2. (line 2996)
+\ddag: See 21.2. (line 4247)
+\ddagger: See 16.2. (line 2991)
+\ddot: See 16.4. (line 3640)
+\ddots: See 16.6. (line 3703)
+\deg: See 16.3. (line 3548)
+\delta: See 16.2. (line 2997)
+\Delta: See 16.2. (line 2994)
+\depth: See 12.6. (line 2576)
+\det: See 16.3. (line 3551)
+\diamond: See 16.2. (line 3003)
+\Diamond: See 16.2. (line 3000)
+\diamondsuit: See 16.2. (line 3006)
+\dim: See 16.3. (line 3554)
+\displaystyle: See 16. (line 2861)
+\div: See 16.2. (line 3009)
\documentclass: See 3. (line 319)
-\dot: See 16.4. (line 3627)
-\doteq: See 16.2. (line 2999)
-\dotfill: See 19.8. (line 3961)
-\doublerulesep: See 8.23. (line 1908)
-\Downarrow: See 16.2. (line 3005)
-\downarrow: See 16.2. (line 3002)
-\ell: See 16.2. (line 3008)
+\dot: See 16.4. (line 3643)
+\doteq: See 16.2. (line 3012)
+\dotfill: See 19.8. (line 3977)
+\doublerulesep: See 8.23. (line 1921)
+\Downarrow: See 16.2. (line 3018)
+\downarrow: See 16.2. (line 3015)
+\ell: See 16.2. (line 3021)
\em: See 4.1. (line 507)
\emph: See 4.1. (line 444)
-\emptyset: See 16.2. (line 3011)
-\encl: See 24.4. (line 4616)
+\emptyset: See 16.2. (line 3024)
+\encl: See 24.4. (line 4651)
\end: See 8. (line 871)
-\enlargethispage: See 14.4. (line 2706)
+\enlargethispage: See 14.4. (line 2719)
\enumi: See 8.7. (line 1050)
\enumii: See 8.7. (line 1050)
\enumiii: See 8.7. (line 1050)
\enumiv: See 8.7. (line 1050)
-\epsilon: See 16.2. (line 3014)
-\equiv: See 16.2. (line 3017)
-\eta: See 16.2. (line 3020)
+\epsilon: See 16.2. (line 3027)
+\equiv: See 16.2. (line 3030)
+\eta: See 16.2. (line 3033)
\evensidemargin: See 3.1. (line 385)
-\exists: See 16.2. (line 3023)
-\exp: See 16.3. (line 3544)
-\fbox: See 20.2. (line 4032)
-\fboxrule <1>: See 20.2. (line 4042)
-\fboxrule: See 8.18.3. (line 1511)
-\fboxsep <1>: See 20.2. (line 4042)
-\fboxsep: See 8.18.3. (line 1511)
-\fill: See 19.2. (line 3897)
-\flat: See 16.2. (line 3026)
-\floatpagefraction: See 8.10. (line 1141)
-\floatsep: See 8.10. (line 1145)
+\exists: See 16.2. (line 3036)
+\exp: See 16.3. (line 3557)
+\fbox: See 20.2. (line 4048)
+\fboxrule <1>: See 20.2. (line 4058)
+\fboxrule: See 8.18.3. (line 1526)
+\fboxsep <1>: See 20.2. (line 4058)
+\fboxsep: See 8.18.3. (line 1526)
+\fill: See 19.2. (line 3913)
+\flat: See 16.2. (line 3039)
+\floatpagefraction: See 8.10. (line 1156)
+\floatsep: See 8.10. (line 1160)
\flushbottom: See 5.3. (line 691)
-\fnsymbol: See 11.1. (line 2439)
+\fnsymbol: See 11.1. (line 2452)
\fontencoding: See 4.3. (line 563)
\fontfamily: See 4.3. (line 566)
\fontseries: See 4.3. (line 577)
\fontshape: See 4.3. (line 592)
\fontsize: See 4.3. (line 609)
-\footnote: See 9.1. (line 2165)
-\footnotemark: See 9.2. (line 2180)
-\footnoterule: See 9.4. (line 2209)
-\footnotesep: See 9.4. (line 2215)
+\footnote: See 9.1. (line 2178)
+\footnotemark: See 9.2. (line 2193)
+\footnoterule: See 9.4. (line 2222)
+\footnotesep: See 9.4. (line 2228)
\footnotesize: See 4.2. (line 537)
-\footnotetext: See 9.3. (line 2195)
+\footnotetext: See 9.3. (line 2208)
\footskip: See 5.5. (line 716)
-\forall: See 16.2. (line 3029)
-\frac: See 16.6. (line 3691)
-\frac{num}{den}: See 16.6. (line 3690)
-\frame: See 8.18.5. (line 1531)
-\framebox <1>: See 20.2. (line 4032)
-\framebox: See 8.18.3. (line 1503)
-\frown: See 16.2. (line 3032)
-\fussy: See 13.5. (line 2628)
-\gamma: See 16.2. (line 3038)
-\Gamma: See 16.2. (line 3035)
-\gcd: See 16.3. (line 3547)
-\ge: See 16.2. (line 3041)
-\geq: See 16.2. (line 3044)
-\gets: See 16.2. (line 3047)
-\gg: See 16.2. (line 3050)
-\glossary: See 23.2. (line 4515)
-\glossaryentry: See 23.2. (line 4518)
-\grave: See 16.4. (line 3630)
-\H (Hungarian umlaut accent): See 21.3. (line 4306)
-\hat: See 16.4. (line 3633)
-\hbar: See 16.2. (line 3053)
+\forall: See 16.2. (line 3042)
+\frac: See 16.6. (line 3707)
+\frac{num}{den}: See 16.6. (line 3706)
+\frame: See 8.18.5. (line 1546)
+\framebox <1>: See 20.2. (line 4048)
+\framebox: See 8.18.3. (line 1518)
+\frown: See 16.2. (line 3045)
+\fussy: See 13.5. (line 2641)
+\gamma: See 16.2. (line 3051)
+\Gamma: See 16.2. (line 3048)
+\gcd: See 16.3. (line 3560)
+\ge: See 16.2. (line 3054)
+\geq: See 16.2. (line 3057)
+\gets: See 16.2. (line 3060)
+\gg: See 16.2. (line 3063)
+\glossary: See 23.2. (line 4528)
+\glossaryentry: See 23.2. (line 4531)
+\grave: See 16.4. (line 3646)
+\H (Hungarian umlaut accent): See 21.3. (line 4319)
+\hat: See 16.4. (line 3649)
+\hbar: See 16.2. (line 3066)
\headheight: See 5.5. (line 706)
\headsep: See 5.5. (line 711)
-\heartsuit: See 16.2. (line 3056)
-\height: See 12.6. (line 2561)
-\hfill: See 19.2. (line 3894)
-\hline: See 8.23.3. (line 1955)
-\hom: See 16.3. (line 3550)
-\hookleftarrow: See 16.2. (line 3059)
-\hookrightarrow: See 16.2. (line 3062)
-\hrulefill: See 19.7. (line 3954)
-\hspace: See 19.1. (line 3878)
+\heartsuit: See 16.2. (line 3069)
+\height: See 12.6. (line 2574)
+\hfill: See 19.2. (line 3910)
+\hline: See 8.23.3. (line 1968)
+\hom: See 16.3. (line 3563)
+\hookleftarrow: See 16.2. (line 3072)
+\hookrightarrow: See 16.2. (line 3075)
+\hrulefill: See 19.7. (line 3970)
+\hspace: See 19.1. (line 3894)
\Huge: See 4.2. (line 537)
\huge: See 4.2. (line 537)
-\hyphenation: See 13.7. (line 2646)
-\i (dotless i): See 21.3. (line 4310)
-\iff: See 16.2. (line 3065)
-\Im: See 16.2. (line 3068)
-\imath: See 16.4. (line 3636)
-\in: See 16.2. (line 3071)
-\include: See 22.1. (line 4397)
-\includeonly: See 22.2. (line 4415)
-\indent: See 15.1. (line 2747)
-\index: See 23.3. (line 4530)
-\indexentry: See 23.3. (line 4533)
-\inf: See 16.3. (line 3553)
-\infty: See 16.2. (line 3074)
-\input: See 22.3. (line 4429)
-\int: See 16.2. (line 3077)
-\intextsep: See 8.10. (line 1149)
-\iota: See 16.2. (line 3080)
+\hyphenation: See 13.7. (line 2659)
+\i (dotless i): See 21.3. (line 4323)
+\iff: See 16.2. (line 3078)
+\Im: See 16.2. (line 3081)
+\imath: See 16.4. (line 3652)
+\in: See 16.2. (line 3084)
+\include: See 22.1. (line 4410)
+\includeonly: See 22.2. (line 4428)
+\indent: See 15.1. (line 2760)
+\index: See 23.3. (line 4544)
+\indexentry: See 23.3. (line 4547)
+\inf: See 16.3. (line 3566)
+\infty: See 16.2. (line 3087)
+\input: See 22.3. (line 4442)
+\int: See 16.2. (line 3090)
+\intextsep: See 8.10. (line 1164)
+\iota: See 16.2. (line 3093)
\it: See 4.1. (line 510)
-\item <1>: See 8.13. (line 1223)
+\item <1>: See 8.13. (line 1238)
\item <2>: See 8.7. (line 1037)
\item: See 8.4. (line 984)
-\itemindent: See 8.13. (line 1269)
-\itemsep: See 8.13. (line 1292)
+\itemindent: See 8.13. (line 1284)
+\itemsep: See 8.13. (line 1307)
\itshape: See 4.1. (line 441)
-\j (dotless j): See 21.3. (line 4313)
-\jmath: See 16.4. (line 3639)
-\Join: See 16.2. (line 3083)
-\kappa: See 16.2. (line 3086)
-\ker: See 16.3. (line 3556)
-\kill: See 8.21. (line 1747)
-\L (/L): See 21.4. (line 4341)
-\l (/l): See 21.4. (line 4341)
+\j (dotless j): See 21.3. (line 4326)
+\jmath: See 16.4. (line 3655)
+\Join: See 16.2. (line 3096)
+\kappa: See 16.2. (line 3099)
+\ker: See 16.3. (line 3569)
+\kill: See 8.21. (line 1762)
+\L (/L): See 21.4. (line 4354)
+\l (/l): See 21.4. (line 4354)
\label: See 7.1. (line 813)
\labelenumi: See 8.7. (line 1054)
\labelenumii: See 8.7. (line 1054)
\labelenumiii: See 8.7. (line 1054)
\labelenumiv: See 8.7. (line 1054)
-\labelitemi: See 8.13. (line 1249)
-\labelitemii: See 8.13. (line 1249)
-\labelitemiii: See 8.13. (line 1249)
-\labelitemiv: See 8.13. (line 1249)
-\labelsep: See 8.13. (line 1272)
-\labelwidth: See 8.13. (line 1275)
-\lambda: See 16.2. (line 3092)
-\Lambda: See 16.2. (line 3089)
-\land: See 16.2. (line 3095)
-\langle: See 16.2. (line 3098)
+\labelitemi: See 8.13. (line 1264)
+\labelitemii: See 8.13. (line 1264)
+\labelitemiii: See 8.13. (line 1264)
+\labelitemiv: See 8.13. (line 1264)
+\labelsep: See 8.13. (line 1287)
+\labelwidth: See 8.13. (line 1290)
+\lambda: See 16.2. (line 3105)
+\Lambda: See 16.2. (line 3102)
+\land: See 16.2. (line 3108)
+\langle: See 16.2. (line 3111)
\LARGE: See 4.2. (line 537)
\Large: See 4.2. (line 537)
\large: See 4.2. (line 537)
-\LaTeX: See 21.2. (line 4234)
-\lbrace: See 16.2. (line 3101)
-\lbrack: See 16.2. (line 3104)
-\lceil: See 16.2. (line 3107)
-\ldots: See 21.2. (line 4237)
-\le: See 16.2. (line 3110)
-\leadsto: See 16.2. (line 3113)
-\left DELIM1 ... \right DELIM2: See 16.6. (line 3693)
-\leftarrow: See 16.2. (line 3118)
-\Leftarrow: See 16.2. (line 3115)
+\LaTeX: See 21.2. (line 4250)
+\lbrace: See 16.2. (line 3114)
+\lbrack: See 16.2. (line 3117)
+\lceil: See 16.2. (line 3120)
+\ldots: See 21.2. (line 4253)
+\le: See 16.2. (line 3123)
+\leadsto: See 16.2. (line 3126)
+\left DELIM1 ... \right DELIM2: See 16.6. (line 3709)
+\leftarrow: See 16.2. (line 3131)
+\Leftarrow: See 16.2. (line 3128)
\lefteqn: See 8.8. (line 1084)
-\leftharpoondown: See 16.2. (line 3121)
-\leftharpoonup: See 16.2. (line 3124)
-\leftmargin: See 8.13. (line 1256)
-\leftmargini: See 8.13. (line 1256)
-\leftmarginii: See 8.13. (line 1256)
-\leftmarginiii: See 8.13. (line 1256)
-\leftmarginiv: See 8.13. (line 1256)
-\leftmarginv: See 8.13. (line 1256)
-\leftmarginvi: See 8.13. (line 1256)
-\leftrightarrow: See 16.2. (line 3130)
-\Leftrightarrow: See 16.2. (line 3127)
-\leq: See 16.2. (line 3133)
-\lfloor: See 16.2. (line 3136)
-\lg: See 16.3. (line 3559)
-\lhd: See 16.2. (line 3139)
-\lim: See 16.3. (line 3562)
-\liminf: See 16.3. (line 3565)
-\limsup: See 16.3. (line 3568)
-\line: See 8.18.6. (line 1542)
-\linebreak: See 13.8. (line 2662)
-\linethickness: See 8.18.7. (line 1557)
+\leftharpoondown: See 16.2. (line 3134)
+\leftharpoonup: See 16.2. (line 3137)
+\leftmargin: See 8.13. (line 1271)
+\leftmargini: See 8.13. (line 1271)
+\leftmarginii: See 8.13. (line 1271)
+\leftmarginiii: See 8.13. (line 1271)
+\leftmarginiv: See 8.13. (line 1271)
+\leftmarginv: See 8.13. (line 1271)
+\leftmarginvi: See 8.13. (line 1271)
+\leftrightarrow: See 16.2. (line 3143)
+\Leftrightarrow: See 16.2. (line 3140)
+\leq: See 16.2. (line 3146)
+\lfloor: See 16.2. (line 3149)
+\lg: See 16.3. (line 3572)
+\lhd: See 16.2. (line 3152)
+\lim: See 16.3. (line 3575)
+\liminf: See 16.3. (line 3578)
+\limsup: See 16.3. (line 3581)
+\line: See 8.18.6. (line 1557)
+\linebreak: See 13.8. (line 2675)
+\linethickness: See 8.18.7. (line 1572)
\linewidth: See 5.5. (line 721)
-\listoffigures: See 23.1. (line 4457)
-\listoftables: See 23.1. (line 4457)
-\listparindent: See 8.13. (line 1278)
-\ll: See 16.2. (line 3142)
-\ln: See 16.3. (line 3571)
-\lnot: See 16.2. (line 3145)
-\location: See 24.5. (line 4625)
-\log: See 16.3. (line 3574)
-\longleftarrow: See 16.2. (line 3148)
-\longleftrightarrow: See 16.2. (line 3151)
-\longmapsto: See 16.2. (line 3154)
-\longrightarrow: See 16.2. (line 3157)
-\lor: See 16.2. (line 3160)
-\lq: See 21.2. (line 4241)
-\makebox: See 20.4. (line 4063)
-\makebox (picture): See 8.18.2. (line 1481)
-\makeglossary: See 23.2. (line 4513)
-\makeindex: See 23.3. (line 4528)
-\makelabels: See 24.6. (line 4633)
-\maketitle: See 18.1. (line 3773)
-\mapsto: See 16.2. (line 3163)
-\marginpar: See 15.4. (line 2771)
-\marginparpush: See 15.4. (line 2800)
-\marginparsep: See 15.4. (line 2804)
-\marginparwidth: See 15.4. (line 2808)
-\markboth{LEFT}{RIGHT}: See 18.3. (line 3848)
-\markright{RIGHT}: See 18.3. (line 3855)
+\listoffigures: See 23.1. (line 4470)
+\listoftables: See 23.1. (line 4470)
+\listparindent: See 8.13. (line 1293)
+\ll: See 16.2. (line 3155)
+\ln: See 16.3. (line 3584)
+\lnot: See 16.2. (line 3158)
+\location: See 24.5. (line 4660)
+\log: See 16.3. (line 3587)
+\longleftarrow: See 16.2. (line 3161)
+\longleftrightarrow: See 16.2. (line 3164)
+\longmapsto: See 16.2. (line 3167)
+\longrightarrow: See 16.2. (line 3170)
+\lor: See 16.2. (line 3173)
+\lq: See 21.2. (line 4257)
+\makebox: See 20.4. (line 4079)
+\makebox (picture): See 8.18.2. (line 1491)
+\makeglossary: See 23.2. (line 4526)
+\makeindex: See 23.3. (line 4541)
+\makelabels: See 24.6. (line 4668)
+\maketitle: See 18.1. (line 3789)
+\mapsto: See 16.2. (line 3176)
+\marginpar: See 15.4. (line 2784)
+\marginparpush: See 15.4. (line 2813)
+\marginparsep: See 15.4. (line 2817)
+\marginparwidth: See 15.4. (line 2821)
+\markboth{LEFT}{RIGHT}: See 18.3. (line 3864)
+\markright{RIGHT}: See 18.3. (line 3871)
\mathbf: See 4.1. (line 474)
\mathcal: See 4.1. (line 490)
\mathnormal: See 4.1. (line 487)
@@ -5593,213 +5636,214 @@ $: See 16. (line 2838)
\mathsf: See 4.1. (line 477)
\mathtt: See 4.1. (line 480)
\mathversion: See 4.1. (line 492)
-\max: See 16.3. (line 3577)
-\mbox: See 20.1. (line 4025)
+\max: See 16.3. (line 3590)
+\mbox: See 20.1. (line 4041)
\mdseries: See 4.1. (line 447)
-\medskip: See 19.10. (line 3985)
-\medskipamount: See 19.10. (line 3985)
-\mho: See 16.2. (line 3166)
-\mid: See 16.2. (line 3168)
-\min: See 16.3. (line 3580)
-\models: See 16.2. (line 3171)
-\month: See 11.8. (line 2507)
-\mp: See 16.2. (line 3174)
-\mu: See 16.2. (line 3177)
-\multicolumn: See 8.23.1. (line 1921)
-\multiput: See 8.18.10. (line 1581)
-\nabla: See 16.2. (line 3180)
-\name: See 24.7. (line 4641)
-\natural: See 16.2. (line 3183)
-\ne: See 16.2. (line 3186)
-\nearrow: See 16.2. (line 3189)
-\neg: See 16.2. (line 3192)
-\neq: See 16.2. (line 3195)
-\newcommand: See 10.1. (line 2231)
-\newcounter: See 10.2. (line 2264)
-\newenvironment: See 10.5. (line 2304)
-\newfont: See 10.7. (line 2369)
-\newlength: See 10.3. (line 2279)
-\NEWLINE: See 19.3. (line 3904)
-\newline: See 13.3. (line 2609)
-\newpage: See 14.3. (line 2700)
-\newsavebox: See 10.4. (line 2294)
-\newtheorem: See 10.6. (line 2340)
-\ni: See 16.2. (line 3198)
-\nocite: See 8.24.3. (line 2027)
-\nofiles: See 23.1. (line 4461)
-\noindent: See 15.2. (line 2758)
-\nolinebreak: See 13.8. (line 2662)
+\medskip: See 19.10. (line 4001)
+\medskipamount: See 19.10. (line 4001)
+\mho: See 16.2. (line 3179)
+\mid: See 16.2. (line 3181)
+\min: See 16.3. (line 3593)
+\models: See 16.2. (line 3184)
+\month: See 11.8. (line 2520)
+\mp: See 16.2. (line 3187)
+\mu: See 16.2. (line 3190)
+\multicolumn: See 8.23.1. (line 1934)
+\multiput: See 8.18.10. (line 1596)
+\nabla: See 16.2. (line 3193)
+\name: See 24.7. (line 4676)
+\natural: See 16.2. (line 3196)
+\ne: See 16.2. (line 3199)
+\nearrow: See 16.2. (line 3202)
+\neg: See 16.2. (line 3205)
+\neq: See 16.2. (line 3208)
+\newcommand: See 10.1. (line 2244)
+\newcounter: See 10.2. (line 2277)
+\newenvironment: See 10.5. (line 2317)
+\newfont: See 10.7. (line 2382)
+\newlength: See 10.3. (line 2292)
+\NEWLINE: See 19.3. (line 3920)
+\newline: See 13.3. (line 2622)
+\newpage: See 14.3. (line 2713)
+\newsavebox: See 10.4. (line 2307)
+\newtheorem: See 10.6. (line 2353)
+\ni: See 16.2. (line 3211)
+\nocite: See 8.24.3. (line 2040)
+\nofiles: See 23.1. (line 4474)
+\noindent: See 15.2. (line 2771)
+\nolinebreak: See 13.8. (line 2675)
\nonumber: See 8.8. (line 1079)
-\nopagebreak: See 14.5. (line 2721)
+\nopagebreak: See 14.5. (line 2734)
\normalfont: See 4.1. (line 468)
-\normalmarginpar: See 15.4. (line 2788)
+\normalmarginpar: See 15.4. (line 2801)
\normalsize: See 4.2. (line 537)
-\not: See 16.2. (line 3201)
-\notin: See 16.2. (line 3204)
-\nu: See 16.2. (line 3207)
-\nwarrow: See 16.2. (line 3210)
-\O (/O): See 21.4. (line 4345)
-\o (/o): See 21.4. (line 4345)
-\obeycr: See 13.2. (line 2600)
+\not: See 16.2. (line 3214)
+\notin: See 16.2. (line 3217)
+\nu: See 16.2. (line 3220)
+\nwarrow: See 16.2. (line 3223)
+\O (/O): See 21.4. (line 4358)
+\o (/o): See 21.4. (line 4358)
+\obeycr: See 13.2. (line 2613)
\oddsidemargin: See 3.1. (line 385)
-\odot: See 16.2. (line 3213)
-\OE (OE): See 21.4. (line 4349)
-\oe (oe): See 21.4. (line 4349)
-\oint: See 16.2. (line 3216)
-\omega: See 16.2. (line 3222)
-\Omega: See 16.2. (line 3219)
-\ominus: See 16.2. (line 3225)
+\odot: See 16.2. (line 3226)
+\OE (OE): See 21.4. (line 4362)
+\oe (oe): See 21.4. (line 4362)
+\oint: See 16.2. (line 3229)
+\omega: See 16.2. (line 3235)
+\Omega: See 16.2. (line 3232)
+\ominus: See 16.2. (line 3238)
\onecolumn: See 5.1. (line 639)
-\opening: See 24.8. (line 4649)
-\oplus: See 16.2. (line 3228)
-\oslash: See 16.2. (line 3231)
-\otimes: See 16.2. (line 3234)
-\oval: See 8.18.11. (line 1591)
-\overbrace{TEXT}: See 16.6. (line 3698)
-\overline{TEXT}: See 16.6. (line 3702)
-\owns: See 16.2. (line 3237)
-\P: See 21.2. (line 4244)
-\pagebreak: See 14.5. (line 2721)
-\pagenumbering: See 18.2. (line 3800)
+\opening: See 24.8. (line 4684)
+\oplus: See 16.2. (line 3241)
+\oslash: See 16.2. (line 3244)
+\otimes: See 16.2. (line 3247)
+\oval: See 8.18.11. (line 1606)
+\overbrace{TEXT}: See 16.6. (line 3714)
+\overline{TEXT}: See 16.6. (line 3718)
+\owns: See 16.2. (line 3250)
+\P: See 21.2. (line 4260)
+\pagebreak: See 14.5. (line 2734)
+\pagenumbering: See 18.2. (line 3816)
\pageref: See 7.2. (line 849)
-\pagestyle: See 18.3. (line 3824)
+\pagestyle: See 18.3. (line 3840)
\paragraph: See 6. (line 769)
-\parallel: See 16.2. (line 3240)
-\parbox: See 20.5. (line 4091)
-\parindent <1>: See 15.1. (line 2747)
-\parindent: See 8.17. (line 1387)
-\parsep: See 8.13. (line 1297)
-\parskip: See 15.3. (line 2765)
-\parskip example: See 8.13. (line 1320)
+\parallel: See 16.2. (line 3253)
+\parbox: See 20.5. (line 4107)
+\parindent <1>: See 15.1. (line 2760)
+\parindent: See 8.17. (line 1395)
+\parsep: See 8.13. (line 1312)
+\parskip: See 15.3. (line 2778)
+\parskip example: See 8.13. (line 1329)
\part: See 6. (line 758)
-\partial: See 16.2. (line 3243)
-\partopsep: See 8.13. (line 1307)
-\perp: See 16.2. (line 3246)
-\phi: See 16.2. (line 3249)
-\pi: See 16.2. (line 3255)
-\Pi: See 16.2. (line 3252)
-\pm: See 16.2. (line 3258)
-\pmod: See 16.3. (line 3583)
-\poptabs: See 8.21. (line 1753)
-\pounds: See 21.2. (line 4247)
-\Pr: See 16.3. (line 3586)
-\prec: See 16.2. (line 3261)
-\preceq: See 16.2. (line 3264)
-\prime: See 16.2. (line 3267)
-\prod: See 16.2. (line 3270)
-\propto: See 16.2. (line 3273)
-\protect: See 10.8. (line 2383)
-\ps: See 24.9. (line 4662)
-\psi: See 16.2. (line 3279)
-\Psi: See 16.2. (line 3276)
-\pushtabs: See 8.21. (line 1756)
-\put: See 8.18.12. (line 1618)
+\partial: See 16.2. (line 3256)
+\partopsep: See 8.13. (line 1322)
+\perp: See 16.2. (line 3259)
+\phi: See 16.2. (line 3262)
+\pi: See 16.2. (line 3268)
+\Pi: See 16.2. (line 3265)
+\pm: See 16.2. (line 3271)
+\pmod: See 16.3. (line 3596)
+\poptabs: See 8.21. (line 1768)
+\pounds: See 21.2. (line 4263)
+\Pr: See 16.3. (line 3599)
+\prec: See 16.2. (line 3274)
+\preceq: See 16.2. (line 3277)
+\prime: See 16.2. (line 3280)
+\prod: See 16.2. (line 3283)
+\propto: See 16.2. (line 3286)
+\protect: See 10.8. (line 2396)
+\ps: See 24.9. (line 4697)
+\psi: See 16.2. (line 3292)
+\Psi: See 16.2. (line 3289)
+\pushtabs: See 8.21. (line 1771)
+\put: See 8.18.12. (line 1633)
\raggedbottom: See 5.4. (line 700)
-\raggedleft: See 8.12.1. (line 1210)
-\raggedright: See 8.11.1. (line 1184)
-\raisebox: See 20.6. (line 4135)
-\rangle: See 16.2. (line 3282)
-\rbrace: See 16.2. (line 3285)
-\rbrack: See 16.2. (line 3288)
-\rceil: See 16.2. (line 3291)
-\Re: See 16.2. (line 3294)
+\raggedleft: See 8.12.1. (line 1225)
+\raggedright: See 8.11.1. (line 1199)
+\raisebox: See 20.6. (line 4151)
+\rangle: See 16.2. (line 3295)
+\rbrace: See 16.2. (line 3298)
+\rbrack: See 16.2. (line 3301)
+\rceil: See 16.2. (line 3304)
+\Re: See 16.2. (line 3307)
\ref: See 7.3. (line 859)
-\refstepcounter: See 11.6. (line 2494)
-\renewenvironment: See 10.5. (line 2304)
-\restorecr: See 13.2. (line 2600)
-\reversemarginpar: See 15.4. (line 2788)
-\rfloor: See 16.2. (line 3297)
-\rhd: See 16.2. (line 3300)
-\rho: See 16.2. (line 3303)
-\right: See 16.6. (line 3694)
-\rightarrow: See 16.2. (line 3309)
-\Rightarrow: See 16.2. (line 3306)
-\rightharpoondown: See 16.2. (line 3312)
-\rightharpoonup: See 16.2. (line 3315)
-\rightleftharpoons: See 16.2. (line 3318)
-\rightmargin: See 8.13. (line 1282)
+\refstepcounter: See 11.6. (line 2507)
+\renewenvironment: See 10.5. (line 2317)
+\restorecr: See 13.2. (line 2613)
+\reversemarginpar: See 15.4. (line 2801)
+\rfloor: See 16.2. (line 3310)
+\rhd: See 16.2. (line 3313)
+\rho: See 16.2. (line 3316)
+\right: See 16.6. (line 3710)
+\rightarrow: See 16.2. (line 3322)
+\Rightarrow: See 16.2. (line 3319)
+\rightharpoondown: See 16.2. (line 3325)
+\rightharpoonup: See 16.2. (line 3328)
+\rightleftharpoons: See 16.2. (line 3331)
+\rightmargin: See 8.13. (line 1297)
\rm: See 4.1. (line 513)
\rmfamily: See 4.1. (line 438)
-\roman: See 11.1. (line 2433)
-\rq: See 21.2. (line 4250)
-\rule: See 21.5. (line 4358)
-\S: See 21.2. (line 4253)
-\savebox: See 20.7. (line 4151)
-\sbox: See 20.8. (line 4163)
+\roman: See 11.1. (line 2446)
+\rq: See 21.2. (line 4266)
+\rule: See 21.5. (line 4371)
+\S: See 21.2. (line 4269)
+\savebox: See 20.7. (line 4167)
+\sbox: See 20.8. (line 4179)
\sc: See 4.1. (line 516)
\scriptsize: See 4.2. (line 537)
\scshape: See 4.1. (line 462)
-\searrow: See 16.2. (line 3321)
-\sec: See 16.3. (line 3589)
+\searrow: See 16.2. (line 3334)
+\sec: See 16.3. (line 3602)
\section: See 6. (line 763)
+\seename: See 23.3. (line 4555)
\selectfont: See 4.3. (line 623)
-\setcounter: See 11.4. (line 2478)
-\setlength: See 12.1. (line 2524)
-\setminus: See 16.2. (line 3324)
-\settodepth: See 12.3. (line 2537)
-\settoheight: See 12.4. (line 2545)
-\settowidth: See 12.5. (line 2553)
+\setcounter: See 11.4. (line 2491)
+\setlength: See 12.1. (line 2537)
+\setminus: See 16.2. (line 3337)
+\settodepth: See 12.3. (line 2550)
+\settoheight: See 12.4. (line 2558)
+\settowidth: See 12.5. (line 2566)
\sf: See 4.1. (line 519)
\sffamily: See 4.1. (line 459)
-\sharp: See 16.2. (line 3327)
-\shortstack: See 8.18.13. (line 1626)
-\sigma: See 16.2. (line 3333)
-\Sigma: See 16.2. (line 3330)
-\signature: See 24.10. (line 4668)
-\sim: See 16.2. (line 3336)
-\simeq: See 16.2. (line 3339)
-\sin: See 16.3. (line 3592)
-\sinh: See 16.3. (line 3595)
+\sharp: See 16.2. (line 3340)
+\shortstack: See 8.18.13. (line 1641)
+\sigma: See 16.2. (line 3346)
+\Sigma: See 16.2. (line 3343)
+\signature: See 24.10. (line 4703)
+\sim: See 16.2. (line 3349)
+\simeq: See 16.2. (line 3352)
+\sin: See 16.3. (line 3605)
+\sinh: See 16.3. (line 3608)
\sl: See 4.1. (line 522)
\slshape: See 4.1. (line 456)
\small: See 4.2. (line 537)
-\smallint: See 16.2. (line 3342)
-\smallskip: See 19.10. (line 3989)
-\smallskipamount: See 19.10. (line 3989)
-\smile: See 16.2. (line 3345)
-\SPACE: See 19.3. (line 3904)
-\spadesuit: See 16.2. (line 3348)
-\sqcap: See 16.2. (line 3351)
-\sqcup: See 16.2. (line 3354)
-\sqrt[ROOT]{arg}: See 16.6. (line 3705)
-\sqsubset: See 16.2. (line 3357)
-\sqsubseteq: See 16.2. (line 3360)
-\sqsupset: See 16.2. (line 3363)
-\sqsupseteq: See 16.2. (line 3366)
-\ss (ss): See 21.4. (line 4352)
-\stackrel{TEXT}{RELATION}: See 16.6. (line 3711)
-\star: See 16.2. (line 3369)
-\startbreaks: See 24.11. (line 4674)
-\stepcounter: See 11.7. (line 2501)
-\stop: See 26. (line 4738)
-\stopbreaks: See 24.12. (line 4681)
+\smallint: See 16.2. (line 3355)
+\smallskip: See 19.10. (line 4005)
+\smallskipamount: See 19.10. (line 4005)
+\smile: See 16.2. (line 3358)
+\SPACE: See 19.3. (line 3920)
+\spadesuit: See 16.2. (line 3361)
+\sqcap: See 16.2. (line 3364)
+\sqcup: See 16.2. (line 3367)
+\sqrt[ROOT]{arg}: See 16.6. (line 3721)
+\sqsubset: See 16.2. (line 3370)
+\sqsubseteq: See 16.2. (line 3373)
+\sqsupset: See 16.2. (line 3376)
+\sqsupseteq: See 16.2. (line 3379)
+\ss (ss): See 21.4. (line 4365)
+\stackrel{TEXT}{RELATION}: See 16.6. (line 3727)
+\star: See 16.2. (line 3382)
+\startbreaks: See 24.11. (line 4709)
+\stepcounter: See 11.7. (line 2514)
+\stop: See 26. (line 4773)
+\stopbreaks: See 24.12. (line 4716)
\subparagraph: See 6. (line 771)
\subsection: See 6. (line 765)
-\subset: See 16.2. (line 3372)
-\subseteq: See 16.2. (line 3375)
+\subset: See 16.2. (line 3385)
+\subseteq: See 16.2. (line 3388)
\subsubsection: See 6. (line 767)
-\succ: See 16.2. (line 3378)
-\succeq: See 16.2. (line 3381)
-\sum: See 16.2. (line 3384)
-\sup: See 16.3. (line 3598)
-\supset: See 16.2. (line 3387)
-\supseteq: See 16.2. (line 3390)
-\surd: See 16.2. (line 3393)
-\swarrow: See 16.2. (line 3396)
-\symbol: See 21.1. (line 4210)
-\t (tie-after accent): See 21.3. (line 4316)
-\TAB: See 19.3. (line 3904)
-\tabbingsep: See 8.21. (line 1761)
-\tabcolsep: See 8.23. (line 1912)
-\tableofcontents: See 23.1. (line 4447)
-\tan: See 16.3. (line 3601)
-\tanh: See 16.3. (line 3604)
-\tau: See 16.2. (line 3399)
-\telephone: See 24.13. (line 4688)
-\TeX: See 21.2. (line 4256)
+\succ: See 16.2. (line 3391)
+\succeq: See 16.2. (line 3394)
+\sum: See 16.2. (line 3397)
+\sup: See 16.3. (line 3611)
+\supset: See 16.2. (line 3400)
+\supseteq: See 16.2. (line 3403)
+\surd: See 16.2. (line 3406)
+\swarrow: See 16.2. (line 3409)
+\symbol: See 21.1. (line 4226)
+\t (tie-after accent): See 21.3. (line 4329)
+\TAB: See 19.3. (line 3920)
+\tabbingsep: See 8.21. (line 1776)
+\tabcolsep: See 8.23. (line 1925)
+\tableofcontents: See 23.1. (line 4460)
+\tan: See 16.3. (line 3614)
+\tanh: See 16.3. (line 3617)
+\tau: See 16.2. (line 3412)
+\telephone: See 24.13. (line 4723)
+\TeX: See 21.2. (line 4272)
\textbf: See 4.1. (line 450)
-\textfloatsep: See 8.10. (line 1154)
-\textfraction: See 8.10. (line 1158)
+\textfloatsep: See 8.10. (line 1169)
+\textfraction: See 8.10. (line 1173)
\textheight: See 5.5. (line 727)
\textit: See 4.1. (line 441)
\textmd: See 4.1. (line 447)
@@ -5811,86 +5855,86 @@ $: See 16. (line 2838)
\texttt: See 4.1. (line 465)
\textup: See 4.1. (line 453)
\textwidth: See 5.5. (line 734)
-\thanks{TEXT}: See 18.1. (line 3788)
-\theta: See 16.2. (line 3402)
-\thicklines: See 8.18.8. (line 1567)
-\thinlines: See 8.18.9. (line 1574)
-\thinspace: See 19.5. (line 3929)
-\thispagestyle: See 18.4. (line 3862)
-\tilde: See 16.4. (line 3642)
-\times: See 16.2. (line 3405)
+\thanks{TEXT}: See 18.1. (line 3804)
+\theta: See 16.2. (line 3415)
+\thicklines: See 8.18.8. (line 1582)
+\thinlines: See 8.18.9. (line 1589)
+\thinspace: See 19.5. (line 3945)
+\thispagestyle: See 18.4. (line 3878)
+\tilde: See 16.4. (line 3658)
+\times: See 16.2. (line 3418)
\tiny: See 4.2. (line 537)
-\title{TEXT}: See 18.1. (line 3792)
-\to: See 16.2. (line 3408)
-\today: See 21.6. (line 4377)
-\top: See 16.2. (line 3411)
-\topfraction: See 8.10. (line 1163)
+\title{TEXT}: See 18.1. (line 3808)
+\to: See 16.2. (line 3421)
+\today: See 21.6. (line 4390)
+\top: See 16.2. (line 3424)
+\topfraction: See 8.10. (line 1178)
\topmargin: See 5.5. (line 740)
-\topsep: See 8.13. (line 1301)
+\topsep: See 8.13. (line 1316)
\topskip: See 5.5. (line 747)
-\totalheight: See 12.6. (line 2565)
-\triangle: See 16.2. (line 3414)
-\triangleleft: See 16.2. (line 3417)
-\triangleright: See 16.2. (line 3420)
+\totalheight: See 12.6. (line 2578)
+\triangle: See 16.2. (line 3427)
+\triangleleft: See 16.2. (line 3430)
+\triangleright: See 16.2. (line 3433)
\tt: See 4.1. (line 525)
\ttfamily: See 4.1. (line 465)
\twocolumn: See 5.2. (line 645)
-\typein: See 25.1. (line 4699)
-\typeout: See 25.2. (line 4713)
-\u (breve accent): See 21.3. (line 4319)
-\unboldmath: See 16. (line 2843)
-\underbrace{math}: See 16.6. (line 3715)
-\underline{text}: See 16.6. (line 3718)
-\unitlength: See 8.18. (line 1408)
-\unlhd: See 16.2. (line 3423)
-\unrhd: See 16.2. (line 3426)
-\uparrow: See 16.2. (line 3432)
-\Uparrow: See 16.2. (line 3429)
-\updownarrow: See 16.2. (line 3438)
-\Updownarrow: See 16.2. (line 3435)
-\uplus: See 16.2. (line 3441)
+\typein: See 25.1. (line 4734)
+\typeout: See 25.2. (line 4748)
+\u (breve accent): See 21.3. (line 4332)
+\unboldmath: See 16. (line 2856)
+\underbrace{math}: See 16.6. (line 3731)
+\underline{text}: See 16.6. (line 3734)
+\unitlength: See 8.18. (line 1416)
+\unlhd: See 16.2. (line 3436)
+\unrhd: See 16.2. (line 3439)
+\uparrow: See 16.2. (line 3445)
+\Uparrow: See 16.2. (line 3442)
+\updownarrow: See 16.2. (line 3451)
+\Updownarrow: See 16.2. (line 3448)
+\uplus: See 16.2. (line 3454)
\upshape: See 4.1. (line 453)
-\upsilon: See 16.2. (line 3447)
-\Upsilon: See 16.2. (line 3444)
-\usebox: See 20.9. (line 4175)
-\usecounter: See 11.2. (line 2453)
+\upsilon: See 16.2. (line 3460)
+\Upsilon: See 16.2. (line 3457)
+\usebox: See 20.9. (line 4191)
+\usecounter: See 11.2. (line 2466)
\usefont: See 4.3. (line 627)
\usepackage: See 3.1. (line 404)
-\v (breve accent): See 21.3. (line 4322)
-\value: See 11.3. (line 2464)
-\varepsilon: See 16.2. (line 3450)
-\varphi: See 16.2. (line 3453)
-\varpi: See 16.2. (line 3456)
-\varrho: See 16.2. (line 3459)
-\varsigma: See 16.2. (line 3462)
-\vartheta: See 16.2. (line 3465)
-\vdash: See 16.2. (line 3468)
-\vdots: See 16.6. (line 3722)
-\vec: See 16.4. (line 3645)
-\vector: See 8.18.14. (line 1647)
-\vee: See 16.2. (line 3471)
-\verb: See 8.27.1. (line 2122)
-\vert: See 16.2. (line 3477)
-\Vert: See 16.2. (line 3474)
-\vfill: See 19.11. (line 3998)
-\vline: See 8.23.4. (line 1962)
-\vspace: See 19.12. (line 4005)
-\wedge: See 16.2. (line 3480)
-\widehat: See 16.4. (line 3648)
-\width: See 12.6. (line 2559)
-\wp: See 16.2. (line 3483)
-\wr: See 16.2. (line 3486)
-\xi: See 16.2. (line 3492)
-\Xi: See 16.2. (line 3489)
-\year: See 11.8. (line 2507)
-\zeta: See 16.2. (line 3495)
-\{: See 21.1. (line 4196)
-\|: See 16.2. (line 2870)
-\}: See 21.1. (line 4196)
-\~: See 21.1. (line 4206)
-\~ (tilde accent): See 21.3. (line 4291)
-^: See 16.1. (line 2856)
-_: See 16.1. (line 2856)
+\v (breve accent): See 21.3. (line 4335)
+\value: See 11.3. (line 2477)
+\varepsilon: See 16.2. (line 3463)
+\varphi: See 16.2. (line 3466)
+\varpi: See 16.2. (line 3469)
+\varrho: See 16.2. (line 3472)
+\varsigma: See 16.2. (line 3475)
+\vartheta: See 16.2. (line 3478)
+\vdash: See 16.2. (line 3481)
+\vdots: See 16.6. (line 3738)
+\vec: See 16.4. (line 3661)
+\vector: See 8.18.14. (line 1662)
+\vee: See 16.2. (line 3484)
+\verb: See 8.27.1. (line 2135)
+\vert: See 16.2. (line 3490)
+\Vert: See 16.2. (line 3487)
+\vfill: See 19.11. (line 4014)
+\vline: See 8.23.4. (line 1975)
+\vspace: See 19.12. (line 4021)
+\wedge: See 16.2. (line 3493)
+\widehat: See 16.4. (line 3664)
+\width: See 12.6. (line 2572)
+\wp: See 16.2. (line 3496)
+\wr: See 16.2. (line 3499)
+\xi: See 16.2. (line 3505)
+\Xi: See 16.2. (line 3502)
+\year: See 11.8. (line 2520)
+\zeta: See 16.2. (line 3508)
+\{: See 21.1. (line 4212)
+\|: See 16.2. (line 2883)
+\}: See 21.1. (line 4212)
+\~: See 21.1. (line 4222)
+\~ (tilde accent): See 21.3. (line 4307)
+^: See 16.1. (line 2869)
+_: See 16.1. (line 2869)
a4paper option: See 3.1. (line 349)
a5paper option: See 3.1. (line 349)
abstract environment: See 8.1. (line 881)
@@ -5900,52 +5944,54 @@ b5paper option: See 3.1. (line 349)
book class: See 3. (line 326)
center environment: See 8.3. (line 939)
description environment: See 8.4. (line 976)
-displaymath environment <1>: See 16. (line 2818)
+displaymath environment <1>: See 16. (line 2831)
displaymath environment: See 8.5. (line 999)
document environment: See 8.6. (line 1018)
draft option: See 3.1. (line 354)
enumerate environment: See 8.7. (line 1024)
eqnarray environment: See 8.8. (line 1065)
-equation environment <1>: See 16. (line 2818)
+equation environment <1>: See 16. (line 2831)
equation environment: See 8.9. (line 1091)
executivepaper option: See 3.1. (line 349)
figure: See 8.10. (line 1104)
final option: See 3.1. (line 354)
fleqn option: See 3.1. (line 354)
-flushleft environment: See 8.11. (line 1171)
-flushright environment: See 8.12. (line 1197)
-itemize environment: See 8.13. (line 1223)
+flushleft environment: See 8.11. (line 1186)
+flushright environment: See 8.12. (line 1212)
+indexspace: See 23.3. (line 4568)
+itemize environment: See 8.13. (line 1238)
landscape option: See 3.1. (line 354)
legalpaper option: See 3.1. (line 349)
leqno option: See 3.1. (line 354)
-letter: See 8.14. (line 1336)
+letter: See 8.14. (line 1345)
letter class: See 3. (line 326)
letterpaper option: See 3.1. (line 349)
-list: See 8.15. (line 1341)
-lR box: See 8.18. (line 1460)
-lrbox: See 20.3. (line 4053)
-math environment <1>: See 16. (line 2818)
-math environment: See 8.16. (line 1363)
-minipage environment: See 8.17. (line 1375)
+list: See 8.15. (line 1350)
+lR box: See 8.18. (line 1470)
+lrbox: See 20.3. (line 4069)
+math environment <1>: See 16. (line 2831)
+math environment: See 8.16. (line 1372)
+minipage environment: See 8.17. (line 1384)
notitlepage option: See 3.1. (line 354)
onecolumn option: See 3.1. (line 379)
oneside option: See 3.1. (line 379)
openany option: See 3.1. (line 379)
openbib option: See 3.1. (line 354)
openright option: See 3.1. (line 379)
-picture: See 8.18. (line 1404)
-quotation: See 8.19. (line 1658)
-quote: See 8.20. (line 1673)
+picture: See 8.18. (line 1412)
+printindex: See 23.3. (line 4564)
+quotation: See 8.19. (line 1673)
+quote: See 8.20. (line 1688)
report class: See 3. (line 326)
slides class: See 3. (line 326)
-tabbing environment: See 8.21. (line 1688)
-table: See 8.22. (line 1780)
-tabular environment: See 8.23. (line 1816)
-thebibliography: See 8.24. (line 1970)
-theorem environment: See 8.25. (line 2075)
-titlepage environment: See 8.26. (line 2088)
+tabbing environment: See 8.21. (line 1703)
+table: See 8.22. (line 1795)
+tabular environment: See 8.23. (line 1822)
+thebibliography: See 8.24. (line 1983)
+theorem environment: See 8.25. (line 2088)
+titlepage environment: See 8.26. (line 2101)
titlepage option: See 3.1. (line 354)
twocolumn option: See 3.1. (line 379)
twoside option: See 3.1. (line 379)
-verbatim environment: See 8.27. (line 2105)
-verse environment: See 8.28. (line 2139)
+verbatim environment: See 8.27. (line 2118)
+verse environment: See 8.28. (line 2152)