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.txt4949
1 files changed, 2560 insertions, 2389 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 ba93e97513a..d6bc68bdb68 100644
--- a/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.txt
+++ b/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.txt
@@ -36,11 +36,8 @@ LaTeX2e: An unofficial reference manual
2.2 Output files
2.3 TeX engines
2.4 LaTeX command syntax
- 2.4.1 Environments
- 2.4.2 Command declarations
- 2.4.3 '\makeatletter' & '\makeatother'
- 2.4.3.1 '\@ifstar'
- 2.5 CTAN: Comprehensive TeX Archive Network
+ 2.5 Environment
+ 2.6 CTAN: the Comprehensive TeX Archive Network
3 Document classes
3.1 Document class options
3.2 Additional packages
@@ -157,14 +154,16 @@ LaTeX2e: An unofficial reference manual
12 Definitions
12.1 '\newcommand' & '\renewcommand'
12.2 '\providecommand'
- 12.3 '\newcounter': Allocating a counter
- 12.4 '\newlength'
- 12.5 '\newsavebox'
- 12.6 '\newenvironment' & '\renewenvironment'
- 12.7 '\newtheorem'
- 12.8 '\newfont'
- 12.9 '\protect'
- 12.10 '\ignorespaces & \ignorespacesafterend'
+ 12.3 '\makeatletter' & '\makeatother'
+ 12.4 '\@ifstar'
+ 12.5 '\newcounter': Allocating a counter
+ 12.6 '\newlength'
+ 12.7 '\newsavebox'
+ 12.8 '\newenvironment' & '\renewenvironment'
+ 12.9 '\newtheorem'
+ 12.10 '\newfont'
+ 12.11 '\protect'
+ 12.12 '\ignorespaces & \ignorespacesafterend'
13 Counters
13.1 '\alph \Alph \arabic \roman \Roman \fnsymbol': Printing counters
13.2 '\usecounter'
@@ -197,6 +196,8 @@ LaTeX2e: An unofficial reference manual
16.4 Math accents
16.5 Over- and Underlining
16.6 Spacing in math mode
+ 16.6.1 '\smash'
+ 16.6.2 '\phantom' & '\vphantom' & '\hphantom'
16.7 Math miscellany
16.7.1 Colon character ':' & '\colon'
16.7.2 '\*'
@@ -312,18 +313,26 @@ Index
LaTeX2e: An unofficial reference manual
***************************************
-This document is an unofficial reference manual (version of July 2018)
-for LaTeX2e, a document preparation system.
+This document is an unofficial reference manual (version of October
+2018) for LaTeX2e, a document preparation system.
1 About this document
*********************
This is an unofficial reference manual for the LaTeX2e document
preparation system, which is a macro package for the TeX typesetting
-program (*note Overview::). This document's home page is
-<puszcza.gnu.org.ua/software/latexrefman>. That page has links to the
-current output in various formats, sources, mailing list archives and
-subscriptions, and other infrastructure.
+program (*note Overview::).
+
+ This document's home page is
+<https://puszcza.gnu.org.ua/software/latexrefman>. There you can get
+the sources, subscribe to the mailing list or read its archives, see
+other infrastructure, and get the current output in various formats. In
+particular, the output comes in two web formats. Probably the most
+convenient one, shown at <http://latexref.xyz/>, has pages for each
+topic and so is good for a quick lookup; see also the note there about
+easy-to-remember links. The other, shown at
+<http://svn.gnu.org.ua/viewvc/latexrefman/trunk/latex2e.html?view=co>,
+has all the information on single page.
In this document, we will mostly just use 'LaTeX' rather than
'LaTeX2e', since the previous version of LaTeX (2.09) was frozen decades
@@ -538,6 +547,12 @@ bracket (']') hide it inside curly braces, as in '\item[closing bracket
argument after it, then to make the first character of the following
text be an open square bracket, hide it inside curly braces.
+ Some of LaTeX's commands are a "declaration". Such a command changes
+the value the meaning of some other command or parameter. For instance,
+the '\mainmatter' declaration changes the typesetting of page numbers
+from roman numerals to arabic (*note \frontmatter & \mainmatter &
+\backmatter::).
+
LaTeX has the convention that some commands have a '*' form that is
related to the form without a '*', such as '\chapter' and '\chapter*'.
The exact difference in behavior varies from command to command.
@@ -545,8 +560,8 @@ The exact difference in behavior varies from command to command.
This manual describes all accepted options and '*'-forms for the
commands it covers (barring unintentional omissions, a.k.a. bugs).
-2.4.1 Environments
-------------------
+2.5 Environment
+===============
Synopsis:
@@ -563,7 +578,9 @@ behavior. For instance, for poetry in LaTeX put the lines between
...
\end{verse}
- *Note Environments:: for a list of environments.
+ *Note Environments:: for a list of environments. Particularly
+notable is that every LaTeX document must have a 'document' environment,
+a '\begin{document} ... \end{document}' pair.
The ENVIRONMENT NAME at the beginning must exactly match that at the
end. This includes the case where ENVIRONMENT NAME ends in a
@@ -578,120 +595,8 @@ required (it specifies the formatting of columns).
... rows of table ...
\end{tabular}
-2.4.2 Command declarations
---------------------------
-
-A command that changes the value, or changes the meaning, of some other
-command or parameter. For instance, the '\mainmatter' command changes
-the setting of page numbers from roman numerals to arabic.
-
-2.4.3 '\makeatletter' & '\makeatother'
---------------------------------------
-
-Synopsis:
-
- \makeatletter
- ... definition of commands with @ in their name ..
- \makeatother
-
- Used to redefine internal LaTeX commands. '\makeatletter' makes the
-at-sign character '@' have the category code of a letter, 11.
-'\makeatother' sets the category code of '@' to 12, its original value.
-
- As each character is read by TeX for LaTeX, it is assigned a
-character category code, or "catcode" for short. For instance, the
-backslash '\' is assigned the catcode 0, for characters that start a
-command. These two commands alter the catcode assigned to '@'.
-
- The alteration is needed because many of LaTeX's commands use '@' in
-their name, to prevent users from accidentally defining a command that
-replaces one of LaTeX's own. Command names consist of a category 0
-character, ordinarily backslash, followed by letters, category 11
-characters (except that a command name can also consist of a category 0
-character followed by a single non-letter symbol). So under the default
-category codes, user-defined commands cannot contain an '@'. But
-'\makeatletter' and '\makeatother' allow users to define or redefine
-commands named with '@'.
-
- Use these two commands inside a '.tex' file, in the preamble, when
-defining or redefining a command with '@' in its name. Don't use them
-inside '.sty' or '.cls' files since the '\usepackage' and
-'\documentclass' commands set the at sign to have the character code of
-a letter.
-
- For a comprehensive list of macros with an at-sign in their names see
-<http://ctan.org/pkg/macros2e>. These macros are mainly intended to
-package or class authors.
-
- In this example the class file has a command '\thesis@universityname'
-that the user wants to change. These three lines should go in the
-preamble, before the '\begin{document}'.
-
- \makeatletter
- \renewcommand{\thesis@universityname}{Saint Michael's College}
- \makeatother
-
-2.4.3.1 '\@ifstar'
-..................
-
-Synopsis:
-
- \newcommand{\mycmd}{\@ifstar{\mycmd@star}{\mycmd@nostar}}
- \newcommand{\mycmd@nostar}[NOSTAR-NUM-ARGS]{NOSTAR-BODY}
- \newcommand{\mycmd@star}[STAR-NUM-ARGS]{STAR-BODY}
-
- Many standard LaTeX environments or commands have a variant with the
-same name but ending with a star character '*', an asterisk. Examples
-are the 'table' and 'table*' environments and the '\section' and
-'\section*' commands.
-
- When defining environments, following this pattern is straightforward
-because '\newenvironment' and '\renewenvironment' allow the environment
-name to contain a star. For commands the situation is more complex. As
-in the synopsis above, there will be a user-called command, given above
-as '\mycmd', which peeks ahead to see if it is followed by a star. For
-instance, LaTeX does not really have a '\section*' command; instead, the
-'\section' command peeks ahead. This command does not accept arguments
-but instead expands to one of two commands that do accept arguments. In
-the synopsis these two are '\mycmd@nostar' and '\mycmd@star'. They
-could take the same number of arguments or a different number, or no
-arguments at all. As always, in a LaTeX document a command using
-at-sign '@' must be enclosed inside a '\makeatletter ... \makeatother'
-block (*note \makeatletter & \makeatother::).
-
- This example of '\@ifstar' defines the command '\ciel' and a variant
-'\ciel*'. Both have one required argument. A call to '\ciel{night}'
-will return "starry night sky" while '\ciel*{blue}' will return "starry
-not blue sky".
-
- \newcommand*{\ciel@unstarred}[1]{starry #1 sky}
- \newcommand*{\ciel@starred}[1]{starry not #1 sky}
- \newcommand*{\ciel}{\@ifstar{\ciel@starred}{\ciel@unstarred}}
-
- In the next example, the starred variant takes a different number of
-arguments than the unstarred one. With this definition, Agent 007's
-'``My name is \agentsecret*{Bond}, \agentsecret{James}{Bond}.''' is
-equivalent to entering the commands '``My name is \textsc{Bond},
-\textit{James} textsc{Bond}.'''
-
- \newcommand*{\agentsecret@unstarred}[2]{\textit{#1} \textsc{#2}}
- \newcommand*{\agentsecret@starred}[1]{\textsc{#1}}
- \newcommand*{\agentsecret}{%
- \@ifstar{\agentsecret@starred}{\agentsecret@unstarred}}
-
- There are two sometimes more convenient ways to accomplish the work
-of '\@ifstar'. The 'suffix' package allows the construct
-'\newcommand\mycommand{UNSTARRED VERSION}' followed by
-'\WithSuffix\newcommand\mycommand*{STARRED VERSION}'. And LaTeX3 has
-the 'xparse' package that allows this code.
-
- \NewDocumentCommand\foo{s}{\IfBooleanTF#1
- {STARRED VERSION}%
- {UNSTARRED VERSION}%
- }
-
-2.5 CTAN: Comprehensive TeX Archive Network
-===========================================
+2.6 CTAN: the Comprehensive TeX Archive Network
+===============================================
The Comprehensive TeX Archive Network, CTAN, is the TeX and LaTeX
community's repository of free material. It is a set of Internet sites
@@ -892,23 +797,26 @@ class or package from interfering with others. For instance, the class
---------------------------------
A class file or package file typically has four parts.
- In the "identification part", the file says that it is a LaTeX
+ 1. In the "identification part", the file says that it is a LaTeX
package or class and describes itself, using the '\NeedsTeXFormat'
and '\ProvidesClass' or '\ProvidesPackage' commands.
- 1. The "preliminary declarations part" declares some commands and can
+
+ 2. The "preliminary declarations part" declares some commands and can
also load other files. Usually these commands will be those needed
for the code used in the next part. For example, an 'smcmemo'
class might be called with an option to read in a file with a list
of people for the to-head, as '\documentclass[mathto]{smcmemo}',
and therefore needs to define a command
'\newcommand{\setto}[1]{\def\@tolist{#1}}' used in that file.
- 2. In the "handle options part" the class or package declares and
+
+ 3. In the "handle options part" the class or package declares and
processes its options. Class options allow a user to start their
document as '\documentclass[OPTION LIST]{CLASS NAME}', to modify
the behavior of the class. An example is when you declare
'\documentclass[11pt]{article}' to set the default document font
size.
- 3. Finally, in the "more declarations part" the class or package
+
+ 4. Finally, in the "more declarations part" the class or package
usually does most of its work: declaring new variables, commands
and fonts, and loading other files.
@@ -3996,7 +3904,7 @@ or
default depends on the list type.
Because the optional label is surrounded by square brackets '[...]',
-if you have an item whose text starts with '[', you have to to hide the
+if you have an item whose text starts with '[', you have to hide the
bracket inside curly braces, as in: '\item {[} is an open square
bracket'; otherwise, LaTeX will think it marks the start of an optional
label.
@@ -4156,10 +4064,9 @@ is the value of POSITION).
Stretch CONTENTS out vertically; it must contain vertically
stretchable space.
- The INNER-POS argument makes sense when the HEIGHT options is set to
-a value larger than the 'minipage''s natural height. To see the effect
-of the options, run this example with the various choices in place of
-'b'.
+ The INNER-POS argument makes sense when the HEIGHT option is set to a
+value larger than the 'minipage''s natural height. To see the effect of
+the options, run this example with the various choices in place of 'b'.
Text before
\begin{center}
@@ -5022,8 +4929,8 @@ between them. This is specified in 'tabular''s argument '{l|l}'. Put
the entries into different columns by separating them with an ampersand,
'&'. The end of each row is marked with a double backslash, '\\'. Put
a horizontal rule below a row, after a double backslash, with '\hline'.
-This '\\' is optional after the last row unless an '\hline' command
-follows, to put a rule below the table.
+After the last row the '\\' is optional, unless an '\hline' command
+follows to put a rule below the table.
The required and optional arguments to 'tabular' consist of:
@@ -5075,10 +4982,9 @@ COLS
space yourself, as in '@{\hspace{1em}}'.
An empty expression '@{}' will eliminate the space. In
- particular, sometimes you want to eliminate the the space
- before the first column or after the last one, as in the
- example below where the tabular lines need to lie on the left
- margin.
+ particular, sometimes you want to eliminate the space before
+ the first column or after the last one, as in the example
+ below where the tabular lines need to lie on the left margin.
\begin{flushleft}
\begin{tabular}{@{}l}
@@ -5244,10 +5150,10 @@ center those two columns on the page range en-dash.
Impressionistic &1875 &1925
\end{tabular}
-Note that although the 'tabular' specification by default puts a
-vertical rule between the first and second columns, because there is no
-vertical bar in the COLS of either of the first row's '\multicolumn'
-commands, no rule appears in the first row.
+Although the 'tabular' specification by default puts a vertical rule
+between the first and second columns, no such vertical rule appears in
+the first row here. That's because there is no vertical bar in the COLS
+part of the first row's first '\multicolumn' command.
8.23.2 '\vline'
---------------
@@ -5452,12 +5358,20 @@ citation keys (*note \bibitem::).
Addison-Wesley, Reading, Massachusetts, 1983.
\end{thebibliography}
-produces the output '... source is [1]'.
+produces output like '... source is [1]'. (You can change the
+appearance of the citation with bibliography styles. More is in *note
+Using BibTeX::.)
The optional argument SUBCITE is appended to the citation. For
example, 'See 14.3 in \cite[p.~314]{texbook}' might produce 'See 14.3 in
[1, p. 314]'.
+ In addition to what appears in the output, '\cite' writes information
+to the auxiliary file 'FILENAME.aux'. For instance, '\cite{latexdps}'
+writes '\citation{latexdps}' to that file. This information is used by
+BibTeX to include in your reference list only those works that you have
+actually cited; see *note \nocite:: also.
+
If KEYS is not in your bibliography information then you get 'LaTeX
Warning: There were undefined references', and in the output the
citation shows as a boldface question mark between square brackets.
@@ -5465,13 +5379,7 @@ There are two possible causes. If you have mistyped something, as in
'\cite{texbok}' then you need to correct the spelling. On the other
hand, if you have just added or modified the bibliographic information
and so changed the '.aux' file (*note \bibitem::) then the fix may be to
-just run LaTeX again.
-
- In addition to what appears in the output, '\cite' writes information
-to the auxiliary file 'FILENAME.aux'. For instance, '\cite{latexdps}'
-writes '\citation{latexdps}' to that file. This information is used by
-BibTeX to include in your reference list only those works that you have
-actually cited; see *note \nocite:: also.
+run LaTeX again.
8.24.3 '\nocite'
----------------
@@ -6618,7 +6526,113 @@ be loaded more than once, such as a style file. *Note \newcommand &
outputs 'From Saint Michael's College'. Unlike '\newcommand', the
repeated use of '\providecommand' does not give an error.
-12.3 '\newcounter': Allocating a counter
+12.3 '\makeatletter' & '\makeatother'
+=====================================
+
+Synopsis:
+
+ \makeatletter
+ ... definition of commands with @ in their name ..
+ \makeatother
+
+ Use this pair when you redefine LaTeX commands that are named with an
+at-sign character ''@''. The '\makeatletter' declaration makes the
+at-sign character have the category code of a letter, code 11. The
+'\makeatother' declaration sets the category code of the at-sign to
+code 12, its default value.
+
+ As TeX reads characters, it assigns each one a category code, or
+"catcode". For instance, it assigns the backslash character ''\'' the
+catcode 0. Command names consist of a category 0 character, ordinarily
+backslash, followed by letters, category 11 characters (except that a
+command name can also consist of a category 0 character followed by a
+single non-letter symbol).
+
+ LaTeX's source code has the convention that some commands use '@' in
+their name. These commands are mainly intended for package or class
+writers. The convention prevents authors who are just using a package
+or class from accidentally replacing such a command with one of their
+own, because by default the at-sign has catcode 12.
+
+ The pair '\makeatletter' and '\makeatother' changes the default code
+and then changes it back. Use them inside a '.tex' file, in the
+preamble, when you are defining or redefining commands named with '@',
+by having them surround your definition. Don't use these inside '.sty'
+or '.cls' files since the '\usepackage' and '\documentclass' commands
+already arrange that the at-sign has the character code of a letter,
+catcode 11.
+
+ For a comprehensive list of macros with an at-sign in their names see
+<http://ctan.org/pkg/macros2e>.
+
+ In this example the class file has a command '\thesis@universityname'
+that the user wants to change. These three lines should go in the
+preamble, before the '\begin{document}'.
+
+ \makeatletter
+ \renewcommand{\thesis@universityname}{Saint Michael's College}
+ \makeatother
+
+12.4 '\@ifstar'
+===============
+
+Synopsis:
+
+ \newcommand{\mycmd}{\@ifstar{\mycmd@star}{\mycmd@nostar}}
+ \newcommand{\mycmd@nostar}[NOSTAR-NUM-ARGS]{NOSTAR-BODY}
+ \newcommand{\mycmd@star}[STAR-NUM-ARGS]{STAR-BODY}
+
+ Many standard LaTeX environments or commands have a variant with the
+same name but ending with a star character '*', an asterisk. Examples
+are the 'table' and 'table*' environments and the '\section' and
+'\section*' commands.
+
+ When defining environments, following this pattern is straightforward
+because '\newenvironment' and '\renewenvironment' allow the environment
+name to contain a star. For commands the situation is more complex. As
+in the synopsis above, there will be a user-called command, given above
+as '\mycmd', which peeks ahead to see if it is followed by a star. For
+instance, LaTeX does not really have a '\section*' command; instead, the
+'\section' command peeks ahead. This command does not accept arguments
+but instead expands to one of two commands that do accept arguments. In
+the synopsis these two are '\mycmd@nostar' and '\mycmd@star'. They
+could take the same number of arguments or a different number, or no
+arguments at all. As always, in a LaTeX document a command using
+at-sign '@' must be enclosed inside a '\makeatletter ... \makeatother'
+block (*note \makeatletter & \makeatother::).
+
+ This example of '\@ifstar' defines the command '\ciel' and a variant
+'\ciel*'. Both have one required argument. A call to '\ciel{night}'
+will return "starry night sky" while '\ciel*{blue}' will return "starry
+not blue sky".
+
+ \newcommand*{\ciel@unstarred}[1]{starry #1 sky}
+ \newcommand*{\ciel@starred}[1]{starry not #1 sky}
+ \newcommand*{\ciel}{\@ifstar{\ciel@starred}{\ciel@unstarred}}
+
+ In the next example, the starred variant takes a different number of
+arguments than the unstarred one. With this definition, Agent 007's
+'``My name is \agentsecret*{Bond}, \agentsecret{James}{Bond}.''' is
+equivalent to entering the commands '``My name is \textsc{Bond},
+\textit{James} textsc{Bond}.'''
+
+ \newcommand*{\agentsecret@unstarred}[2]{\textit{#1} \textsc{#2}}
+ \newcommand*{\agentsecret@starred}[1]{\textsc{#1}}
+ \newcommand*{\agentsecret}{%
+ \@ifstar{\agentsecret@starred}{\agentsecret@unstarred}}
+
+ There are two sometimes more convenient ways to accomplish the work
+of '\@ifstar'. The 'suffix' package allows the construct
+'\newcommand\mycommand{UNSTARRED VERSION}' followed by
+'\WithSuffix\newcommand\mycommand*{STARRED VERSION}'. And LaTeX3 has
+the 'xparse' package that allows this code.
+
+ \NewDocumentCommand\foo{s}{\IfBooleanTF#1
+ {STARRED VERSION}%
+ {UNSTARRED VERSION}%
+ }
+
+12.5 '\newcounter': Allocating a counter
========================================
Synopsis, one of:
@@ -6659,7 +6673,7 @@ already defined. Or name \end... illegal, see p.192 of the manual.'.
exist. Entering '\newcounter{jh}[lh]' when 'lh' is not a defined
counter will get you 'LaTeX Error: No counter 'lh' defined.'
-12.4 '\newlength'
+12.6 '\newlength'
=================
Synopsis:
@@ -6681,20 +6695,21 @@ inserted'. If the command sequence already exists then you get
something like 'LaTeX Error: Command \graphichgt already defined. Or
name \end... illegal, see p.192 of the manual'.
-12.5 '\newsavebox'
+12.7 '\newsavebox'
==================
Synopsis:
- \newsavebox{CMD}
+ \newsavebox{\CMD}
- Define '\CMD' to refer to a new "bin" for storing boxes. Such a box
-is for holding typeset material, to use multiple times or to measure or
-manipulate (*note Boxes::). The required bin name 'CMD' must start with
-a backslash, '\', and must not already be defined. This command is
-fragile (*note \protect::).
+ Define \CMD, the string consisting of a backslash followed by CMD, to
+refer to a new bin for storing material. These bins hold material that
+has been typeset, to use multiple times or to measure or manipulate
+(*note Boxes::). The bin name \CMD is required, must start with a
+backslash, \, and must not already be a defined command. This command
+is fragile (*note \protect::).
- The first line here sets you up to save the material for later use.
+ This allocates a bin and then puts typeset material into it.
\newsavebox{\logobox}
\savebox{\logobox}{LoGo}
@@ -6708,7 +6723,7 @@ p.192 of the manual'.
The allocation of a box is global.
-12.6 '\newenvironment' & '\renewenvironment'
+12.8 '\newenvironment' & '\renewenvironment'
============================================
Synopses, one of:
@@ -6842,7 +6857,7 @@ in ENDDEF, in this case in a box (*note \sbox & \savebox::).
\end{quotation}
}
-12.7 '\newtheorem'
+12.9 '\newtheorem'
==================
Synopses:
@@ -6954,8 +6969,8 @@ and 'Definition 2.2'.
Second def
\end{defn}
-12.8 '\newfont'
-===============
+12.10 '\newfont'
+================
This command is obsolete. This description is here only to help with
old documents. New documents should define fonts in families through
@@ -6967,7 +6982,7 @@ associate a boldface with a roman (*note Fonts::).
\newfont{\CMD}{FONT DESCRIPTION}
Define a command '\CMD' that will change the current font. The
-control sequence must must not already be defined. It must begin with a
+control sequence must not already be defined. It must begin with a
backslash, '\'.
The FONT DESCRIPTION consists of a FONTNAME and an optional "at
@@ -6986,8 +7001,8 @@ each.
\testfontat abc
\testfontscaled abc
-12.9 '\protect'
-===============
+12.11 '\protect'
+================
All LaTeX commands are either "fragile" or "robust". A fragile command
can break when it is used in the argument to certain other commands.
@@ -7038,7 +7053,7 @@ because the '\(..\)' in the section title expands to illegal TeX in the
\section{Einstein's \( e=mc^2 \)}
...
-12.10 '\ignorespaces & \ignorespacesafterend'
+12.12 '\ignorespaces & \ignorespacesafterend'
=============================================
Synopsis:
@@ -7347,24 +7362,30 @@ month value produces no output).
A "length" is a measure of distance. Many LaTeX commands take a length
as an argument.
- This shows a box of the given length.
+ Lengths come in two types. A "rigid length" such as '10pt' does not
+contain a 'plus' or 'minus' component. (Plain TeX calls this a
+"dimen".) A "rubber length" (what Plain TeX calls a "skip") such as as
+with '1cm plus0.05cm minus0.01cm' can contain either or both of those
+components. In that rubber length, the '1cm' is the "natural length"
+while the other two, the 'plus' and 'minus' components, allow TeX to
+stretch or shrink the length to optimize placement.
- \newcommand{\blackbar}[1]{\rule{#1}{10pt}} % make a bar
- \newcommand{\showhbox}[2]{\fboxsep=0pt\fbox{\hbox to #1{#2}}} % box it
- XXX\showhbox{100pt}{\blackbar{100pt}}YYY
+ The illustrations below use these two commands.
+
+ % make a black bar 10pt tall and #1 wide
+ \newcommand{\blackbar}[1]{\rule{#1}{10pt}}
+
+ % Make a box around #2 that is #1 wide (excluding the border)
+ \newcommand{\showhbox}[2]{%
+ \fboxsep=0pt\fbox{\hbox to #1{#2}}}
-It produces a black bar 100 points long between 'XXX' and 'YYY'.
+This example uses those commands to show a black bar 100 points long
+between 'XXX' and 'YYY'. This length is rigid.
- Lengths come in two types. A "rigid length" (what Plain TeX calls a
-"dimen") such as '10pt' does not contain a 'plus' or 'minus' component.
-The above example shows a rigid length. A "rubber length" (what Plain
-TeX calls a "skip") can contain those components, as with '1cm
-plus0.05cm minus0.01cm'. Here the '1cm' is the "natural length" while
-the other two, the 'plus' and 'minus' components, allow the length to
-stretch or shrink.
+ XXX\showhbox{100pt}{\blackbar{100pt}}YYY
- Shrinking is simpler: with '1cm minus 0.05cm', the natural length is
-1cm but if smaller is needed then TeX can shrink it down as far as
+ As for rubber lengths, shrinking is simpler one: with '1cm minus
+0.05cm', the natural length is 1cm but TeX can shrink it down as far as
0.95cm. Beyond that, TeX refuses to shrink any more. Thus, below the
first one works fine, producing a space of 98 points between the two
bars.
@@ -7382,7 +7403,7 @@ allocated, as TeX has refused to shrink the total to less than
309 points.
Stretching is like shrinking except that if TeX is asked to stretch
-beyond the given amount, it won't refuse. Here the first line is fine,
+beyond the given amount, it will do it. Here the first line is fine,
producing a space of 110 points between the bars.
XXX\showhbox{300pt}{%
@@ -7392,10 +7413,9 @@ producing a space of 110 points between the bars.
\blackbar{95pt}\hspace{100pt plus 1pt}\blackbar{95pt}}YYY
In the second line TeX needs a stretch of 10 points and only 1 point was
-specified. In this situation, TeX stretches the space to the required
-length, but it complains with a warning like 'Underfull \hbox (badness
-10000) detected at line 22'. (We won't discuss badness; the point is
-that the system was not given as much stretch as needed.)
+specified. TeX stretches the space to the required length but it gives
+you a warning like 'Underfull \hbox (badness 10000) detected at line
+22'. (We won't discuss badness.)
You can put both stretch and shrink in the same length, as in '1ex
plus 0.05ex minus 0.02ex'.
@@ -7403,14 +7423,15 @@ plus 0.05ex minus 0.02ex'.
If TeX is setting two or more rubber lengths then it allocates the
stretch or shrink in proportion.
- XXX\showhbox{300pt}{\blackbar{100pt}% left
+ XXX\showhbox{300pt}{%
+ \blackbar{100pt}% left
\hspace{0pt plus 50pt}\blackbar{80pt}\hspace{0pt plus 10pt}% middle
\blackbar{100pt}}YYY % right
-The outside bars take up 100 points, so the middle needs another 100.
-In the middle the bar takes up 80 points, so the two '\hspace''s must
-stretch 20 points. Because the two say 'plus 50pt' and 'plus 10pt', TeX
-gets 5/6 of the stretch from the first space and 1/6 from the second.
+The left and right bars take up 100 points, so the middle needs another
+100. The middle bar is 80 points so the two '\hspace''s must stretch
+20 points. Because the two are 'plus 50pt' and 'plus 10pt', TeX gets
+5/6 of the stretch from the first space and 1/6 from the second.
The 'plus' or 'minus' component of a rubber length can contain a
"fill" component, as in '1in plus2fill'. This gives the length infinite
@@ -7423,10 +7444,10 @@ distance. Here the two figures will be equal-spaced across the page.
\hspace{0pt plus 1fill}
\end{minipage}
- TeX actually has three infinite glue components 'fil', 'fill', and
-'filll'. The later ones are more infinite than the earlier ones.
-Ordinarily document authors only use the middle one (*note \hfill:: and
-*note \vfill::).
+ TeX actually has three levels of infinity for glue components: 'fil',
+'fill', and 'filll'. The later ones are more infinite than the earlier
+ones. Ordinarily document authors only use the middle one (*note
+\hfill:: and *note \vfill::).
Multiplying a rubber length by a number turns it into a rigid length,
so that after '\setlength{\ylength}{1in plus 0.2in}' and
@@ -7439,8 +7460,8 @@ TeX and LaTeX know about these units both inside and outside of math
mode.
'pt'
- Point 1/72.27 inch. The conversion to metric units, to two decimal
- places, is 1point = 2.85mm = 28.45cm.
+ Point, 1/72.27 inch. The conversion to metric units, to two
+ decimal places, is 1point = 2.85mm = 28.45cm.
'pc'
Pica, 12 pt
@@ -7502,8 +7523,13 @@ while the second will not.
\setlength{\parindent}{0em}
He said stop going to those places.
- If there is no such length LEN then you get something like 'Undefined
-control sequence. <argument> \praindent'.
+ If you did not declare LEN with '\newlength', for example if you
+mistype the above as
+'\newlength{\specparindent}\setlength{\sepcparindent}{...}', then you
+get an error like 'Undefined control sequence. <argument> \sepcindent'.
+If you omit the backslash at the start of the length name then you get
+an error like 'Missing number, treated as zero. <to be read again>
+\relax l.19 \setlength{specparindent}{0.6\parindent}'
14.3 '\addtolength'
===================
@@ -7519,18 +7545,20 @@ understands (*note Units of length::).
Below, if '\parskip' starts with the value '0pt plus 1pt'
- \addtolength{\parskip}{1pt}
Doctor: how is the boy who swallowed the silver dollar?
+ \addtolength{\parskip}{1pt}
Nurse: no change.
then it has the value '1pt plus 1pt' for the second paragraph.
- If there is no such length LEN then you get something like 'Undefined
-control sequence. <argument> \praindent'. If you leave off the
-backslash at the start of LEN, as in '\addtolength{parindent}{1pt}',
-then you get something like 'You can't use `the letter p' after
-\advance'.
+ If you did not declare the length LEN with '\newlength', if for
+example you mistype the above as
+'\addtolength{\specparindent}{0.6\praindent}', then you get something
+like 'Undefined control sequence. <argument> \praindent'. If you leave
+off the backslash at the start of LEN, as in
+'\addtolength{parindent}{1pt}', then you get something like 'You can't
+use `the letter p' after \advance'.
14.4 '\settodepth'
==================
@@ -7549,11 +7577,12 @@ the TEXT argument. The length name LEN must begin with a backslash,
\settodepth{\alphabetdepth}{abcdefghijklmnopqrstuvwxyz}
\the\alphabetdepth
- If there is no such length LEN then you get something like 'Undefined
-control sequence. <argument> \alphabetdepth'. If you leave the
-backslash out of LEN, as in '\settodepth{alphabetdepth}{...}' then you
-get something like 'Missing number, treated as zero. <to be read again>
-\setbox'.
+ If you did not set aside the length LEN, if for example you mistype
+the above as '\settodepth{\aplhabetdepth}{abc...}', then you get
+something like 'Undefined control sequence. <argument> \aplhabetdepth'.
+If you leave the backslash out of LEN, as in
+'\settodepth{alphabetdepth}{...}' then you get something like 'Missing
+number, treated as zero. <to be read again> \setbox'.
14.5 '\settoheight'
===================
@@ -7572,11 +7601,12 @@ backslash, '\'.
\settoheight{\alphabetheight}{abcdefghijklmnopqrstuvwxyz}
\the\alphabetheight
- If there is no such length LEN then you get something like 'Undefined
-control sequence. <argument> \alphabetheight'. If you leave the
-backslash out of LEN, as in '\settoheight{alphabetheight}{...}' then you
-get something like 'Missing number, treated as zero. <to be read again>
-\setbox'.
+ If no such length LEN has been declared with '\newlength', if for
+example you mistype as '\settoheight{\aplhabetheight}{abc...}', then you
+get something like 'Undefined control sequence. <argument>
+\alphabetheight'. If you leave the backslash out of LEN, as in
+'\settoheight{alphabetheight}{...}' then you get something like 'Missing
+number, treated as zero. <to be read again> \setbox'.
14.6 '\settowidth'
==================
@@ -7595,18 +7625,19 @@ backslash, '\'.
\settowidth{\alphabetwidth}{abcdefghijklmnopqrstuvwxyz}
\the\alphabetwidth
- If there is no such length LEN then you get something like 'Undefined
-control sequence. <argument> \alphabetwidth'. If you leave the
-backslash out of LEN, as in '\settoheight{alphabetwidth}{...}' then you
-get something like 'Missing number, treated as zero. <to be read again>
-\setbox'.
+ If no such length LEN has been set aside, if for example you mistype
+the above as '\settowidth{\aplhabetwidth}{abc...}', then you get
+something like 'Undefined control sequence. <argument> \aplhabetwidth'.
+If you leave the backslash out of LEN, as in
+'\settoheight{alphabetwidth}{...}' then you get something like 'Missing
+number, treated as zero. <to be read again> \setbox'.
15 Making paragraphs
********************
-Once LaTeX has all of a paragraph's contents it divides it into lines,
-in a way that is optimized over the entire paragraph (*note Line
-breaking::). To end the current paragraph, put an empty line.
+To start a paragraph, just type some text. To end the current
+paragraph, put an empty line. This is three paragraphs, separated by
+two empty lines.
It is a truth universally acknowledged, that a single man in possession
of a good fortune, must be in want of a wife.
@@ -7622,6 +7653,10 @@ breaking::). To end the current paragraph, put an empty line.
The separator lines must be empty, including not containing a comment
character, '%'.
+ Once LaTeX has gathered all of a paragraph's contents it divides that
+content into lines in a way that is optimized over the entire paragraph
+(*note Line breaking::).
+
There are places where a new paragraph is not permitted. Don't put a
blank line in math mode (*note Modes::); here the line before the
'\end{equation}'
@@ -7644,8 +7679,8 @@ complete'.
15.1 '\par'
===========
-Synopsis (note that while reading the input TeX, converts two
-consecutive newlines to a '\par'):
+Synopsis (note that while reading the input TeX converts two consecutive
+newlines to a '\par'):
\par
@@ -7659,22 +7694,24 @@ readability.
\newcommand{\syllabusLegalese}{%
\whatCheatingIs\par\whatHappensWhenICatchYou}
- The '\par' command does nothing in LR mode or a vertical mode but it
-terminates paragraph mode, bringing LaTeX to vertical mode (*note
+ In LR mode or a vertical mode the '\par' command does nothing but it
+terminates paragraph mode, switching LaTeX to vertical mode (*note
Modes::).
- You cannot use the '\par' command in math mode or in the argument of
-many commands, such as the '\section' command (*note Making paragraphs::
-and *note \newcommand & \renewcommand::).
+ You cannot use the '\par' command in a math mode. You also cannot
+use it in the argument of many commands, such as the '\section' command
+(*note Making paragraphs:: and *note \newcommand & \renewcommand::).
- The '\par' command differs from the '\paragraph' command in that the
+ The '\par' command is not the same as the '\paragraph' command. The
latter is, like '\section' or '\subsection', a sectioning unit used by
-the standard LaTeX documents.
+the standard LaTeX documents (*note \subsubsection & \paragraph &
+\subparagraph::).
- The '\par' command differs from '\newline' and the line break double
-backslash, '\\', in that \par ends the paragraph not just the line. It
-also triggers the addition of the between-paragraph vertical space
-'\parskip' (*note \parindent & \parskip::).
+ The '\par' command is not the same as '\newline' or the line break
+double backslash, '\\'. The difference is that '\par' ends the
+paragraph, not just the line, and also triggers the addition of the
+between-paragraph vertical space '\parskip' (*note \parindent &
+\parskip::).
The output from this example
@@ -7792,7 +7829,7 @@ paragraph. Revert that to the default position with '\normalmarginpar'.
When you specify the optional argument LEFT then it is used for a
note in the left margin, while the mandatory argument RIGHT is used for
-a note in the the right margin.
+a note in the right margin.
Normally, a note's first word will not be hyphenated. You can enable
hyphenation there by beginning LEFT or RIGHT with '\hspace{0pt}'.
@@ -9261,6 +9298,117 @@ something like 5/18 times the width of a 'M'.
A length of 2 quads, that is, 36mu = 2em. It is available in both
text and math mode.
+16.6.1 '\smash'
+---------------
+
+Synopsis:
+
+ \smash{SUBFORMULA}
+
+ Typeset SUBFORMULA as if its height and depth were zero.
+
+ In this example the exponential is so tall that without the '\smash'
+command LaTeX would separate its line from the line above it, and the
+uneven line spacing might be unsightly.
+
+ To compute the tetration $\smash{2^{2^{2^2}}}$,
+ evaluate from the top down, as $2^{2^4}=2^{16}=65536$.
+
+ (Because of the '\smash' the printed expression could run into the
+line above so you may want to wait until the final version of the
+document to make such adjustments.)
+
+ This pictures the effect of '\smash' by using '\fbox' to surround the
+box that LaTeX will put on the line. The '\blackbar' command makes a
+bar extending from 10 points below the baseline to 20 points above.
+
+ \newcommand{\blackbar}{\rule[-10pt]{5pt}{30pt}}
+ \fbox{\blackbar}
+ \fbox{\smash{\blackbar}}
+
+ The first box that LaTeX places is 20 points high and 10 points deep.
+But the second box is treated by LaTeX as having zero height and zero
+depth, despite that the ink printed on the page still extends well above
+and below the line.
+
+ The '\smash' command appears often in mathematics to adjust the size
+of an element that surrounds a subformula. Here the first radical
+extends below the baseline while the second lies just on the baseline.
+
+ \begin{equation}
+ \sqrt{\sum_{0\leq k< n} f(k)}
+ \sqrt{\vphantom{\sum}\smash{\sum_{0\leq k< n}} f(k)}
+ \end{equation}
+
+ Note the use of '\vphantom' to give the '\sqrt' command an argument
+with the height of the '\sum' (*note \phantom & \vphantom &
+\hphantom::).
+
+ While most often used in mathematics, the '\smash' command can appear
+in other contexts. However, it doesn't change into horizontal mode. So
+if it starts a paragraph then you should first put a '\leavevmode', as
+in the bottom line below.
+
+ xxx xxx xxx
+
+ \smash{yyy} % no paragraph indent
+
+ \leavevmode\smash{zzz} % usual paragraph indent
+
+ The package 'mathtools' has operators that provide even finer control
+over smashing a subformula box.
+
+16.6.2 '\phantom' & '\vphantom' & '\hphantom'
+---------------------------------------------
+
+Synopsis:
+
+ \phantom{SUBFORMULA}
+
+ or
+
+ \vphantom{SUBFORMULA}
+
+ or
+
+ \hphantom{SUBFORMULA}
+
+ The '\phantom' command creates a box with the same height, depth, and
+width as SUBFORMULA, but empty. That is, this command causes LaTeX to
+typeset the box but not its ink. The '\vphantom' variant also produces
+an invisible box with the same height and depth as SUBFORMULA, but it
+has width zero. And '\hphantom' makes a box with the same width as
+SUBFORMULA but with height and depth zero.
+
+ Without the '\vphantom' in this example, the top bars of the two
+square roots would be at different heights.
+
+ \( \sqrt{\vphantom{a^3}a}\cdot\sqrt{a^3} \)
+
+ The '\vphantom{a^3}' causes the first '\sqrt' to have inside it a box
+of the same height as the second '\sqrt', so LaTeX makes the bars align.
+
+ These commands often are combined with '\smash'. *Note \smash:: for
+another example of the use of '\vphantom'.
+
+ The three phantom commands appear often but note that LaTeX provides
+a suite of other commands to work with box sizes that may be more
+convenient, including '\makebox' (*note \mbox & \makebox::) as well as
+'\settodepth' (*note \settodepth::), '\settoheight' (*note
+\settoheight::), and '\settowidth' (*note \settowidth::). In addition,
+the 'mathtools' package has many commands that offer fine-grained
+control over spacing.
+
+ All three commands produce an ordinary box, without any special
+mathematics status. So to do something like attaching a superscript you
+should give it such a status, for example with the '\operatorname'
+command from the package 'amsmath'.
+
+ While most often used in mathematics, these three can appear in other
+contexts. However, they don't cause LaTeX to change into horizontal
+mode. So if one of these starts a paragraph then you should prefix it
+with '\leavevmode'.
+
16.7 Math miscellany
====================
@@ -9420,11 +9568,11 @@ mode, then it reads the 'L' and switches to paragraph mode, then the
next switch happens at the '\(' where LaTeX changes to math mode, and
then when it leaves the formula it pops back to paragraph mode.
- Paragraph mode has two subcases. If you use a '\parbox' command or
-or a 'minipage' then LaTeX is put into paragraph mode. But it will not
-put a page break here. Inside one of these boxes, called a "parbox",
-LaTeX is in "inner paragraph mode". Its more usual situation, where it
-can put page breaks, is "outer paragraph mode" (*note Page breaking::).
+ Paragraph mode has two subcases. If you use a '\parbox' command or a
+'minipage' then LaTeX is put into paragraph mode. But it will not put a
+page break here. Inside one of these boxes, called a "parbox", LaTeX is
+in "inner paragraph mode". Its more usual situation, where it can put
+page breaks, is "outer paragraph mode" (*note Page breaking::).
17.1 '\ensuremath'
==================
@@ -9517,21 +9665,21 @@ either in the preamble or in the document body.
'\thanks{TEXT}'
Optional. Produce a footnote. You can use it in the author
- information for acknowledgements, as illustrated below, but you can
+ information for acknowledgements as illustrated above, but you can
also use it in the title, or any place a footnote makes sense. It
- can be any text so you can use it to print an email address, or for
- any purpose.
+ can be any text at all so you can use it for any purpose, such as
+ to print an email address.
'\title{TEXT}'
Required. Declare TEXT to be the title of the document. Get line
breaks inside TEXT with a double backslash, '\\'. If you omit the
'\title' declaration then you get 'LaTeX Error: No \title given'.
- Many publishers will provide a class to use in place of 'article' in
-that example, that formats the title according to their house
-requirements. To make your own, see *note titlepage::. You can either
+ To make your own title page, see *note titlepage::. You can either
create this as a one-off or you can include it as part of a renewed
-'\maketitle' command.
+'\maketitle' command. (Many publishers will provide a class to use in
+place of 'article' that formats the title according to their house
+requirements.)
18.2 '\pagenumbering'
=====================
@@ -9558,7 +9706,7 @@ numbered '1', etc.
\alph \Alph \arabic \roman \Roman \fnsymbol::).
'arabic'
- arabic numerals: 1, 2, ...
+ Arabic numerals: 1, 2, ...
'roman'
lowercase Roman numerals: i, ii, ...
@@ -9688,7 +9836,7 @@ or environments.
Often the first page of a chapter or section has a different style.
For example, this LaTeX book document has the first page of the first
-chapter in in 'plain' style, as is the default (*note Page styles::).
+chapter in 'plain' style, as is the default (*note Page styles::).
\documentclass{book}
\pagestyle{headings}
@@ -9989,32 +10137,32 @@ backslash followed by a space. Synopsis:
Produce a space. By default it produces white space of length
3.33333pt plus 1.66666pt minus 1.11111pt.
- A blank is not a space. When you type a blank between words, LaTeX
-produces white space. That's different from an explicit space. This
-illustrates.
+ When you type one or more blanks between words, LaTeX produces white
+space. But that is different than an explicit space. This illustrates.
\begin{tabular}{l}
+ One blank: makes some space \\
Three blanks: in a row \\
Three spaces:\ \ \ in a row \\
\end{tabular}
-On the first line LaTeX collapses the three blanks to output one
-whitespace (it would be the same with a single blank or, for instance,
-with a blank and an tab and a blank, or a blank and a newline and a
-blank). But the second line asks for three spaces so the white area is
-wider. Thus, the backslash-space command will create some horizontal
-space. (But the best way to create horizontal space is with '\hspace';
-*Note \hspace::.)
-
- The backslash-space command has two main uses. First, it is often
-used after control sequences to keep them from gobbling the space that
-follows, as in '\TeX\ is nice'. (But the approach of using curly
-parentheses, as in '\TeX{} is nice', has the advantage of still working
-if the next character is a period.)
-
- The second common use is that it mark a period as ending an
-abbreviation instead of ending a sentence, as in 'So says Prof.\ Smith'
-(*note \@::).
+On the first line LaTeX puts some space after the colon. On the second
+line LaTeX collapses the three blanks to output one whitespace, so you
+end with the same space after the colon as in the first line. LaTeX
+would similarly collapse a blank followed by a tab, or a blank and a
+newline and a blank. However, the bottom line asks for three spaces so
+the white area is wider. That is, the backslash-space command creates a
+fixed amount of horizontal space. (Note that you can define a
+horizontal space of any width at all with '\hspace'; see *note
+\hspace::.)
+
+ The backslash-space command has two main uses. It is often used
+after control sequences to keep them from gobbling the space that
+follows, as in '\TeX\ is nice'. (But using curly parentheses, as in
+'\TeX{} is best', has the advantage of still working if the next
+character is a period.) The other common use is that it marks a period
+as ending an abbreviation instead of ending a sentence, as in 'So says
+Prof.\ Smith' (*note \@::).
Under normal circumstances, '\'<tab> and '\'<newline> are equivalent
to backslash-space, '\ '.
@@ -10312,7 +10460,7 @@ line.
\end{enumerate}
\end{minipage}%
-The final two lists use 'fbox' to show what's happening. The third
+The final two lists use '\fbox' to show what's happening. The third
list's '\parbox' goes only to the bottom of its second 'test', which
happens not have any characters that descend below the baseline. The
fourth list adds the strut that gives the needed extra below-baseline
@@ -10490,7 +10638,7 @@ Synopsis, one of:
\makebox[WIDTH]{TEXT}
\makebox[WIDTH][POSITION]{TEXT}
- Create a box, a container for material. The TEXT is is typeset in LR
+ Create a box, a container for material. The TEXT is typeset in LR
mode (*note Modes::) so it is not broken into lines. The '\mbox'
command is robust, while '\makebox' is fragile (*note \protect::).
@@ -10857,9 +11005,9 @@ starts with a backslash.) This command is robust (*note \protect::).
You can add color to text, rules, etc. You can also have color in a box
or on an entire page and write text on top of it.
- Color support comes as an additional package. So all the commands
-below will only work if your document preamble contains
-'\usepackage{color}', that brings in the standard package.
+ Color support comes as an additional package. So put
+'\usepackage{color}' in your document preamble to use the commands
+described here.
Many other packages also supplement LaTeX's color abilities.
Particularly worth mentioning is 'xcolor', which is widely used and
@@ -11385,9 +11533,9 @@ COMMAND
left blank. This command must start with a single backward quote.
Thus, '\DeclareGraphicsRule{.eps.gz}{eps}{.eps.bb}{`gunzip -c #1}'
specifies that any file with the extension '.eps.gz' should be
- treated as an 'eps' file, with the the BoundingBox information
- stored in the file with extension '.eps.bb', and that the command
- 'gunzip -c' will run on your platform to decompresses the file.
+ treated as an 'eps' file, with the BoundingBox information stored
+ in the file with extension '.eps.bb', and that the command 'gunzip
+ -c' will run on your platform to decompresses the file.
Such a command is specific to your platform. In addition, your TeX
system must allow you to run external commands; as a security
@@ -11719,11 +11867,11 @@ the file 'lion.xxx' as though it were 'lion.png'. For more on these,
22.3.2 '\rotatebox'
-------------------
-Synopsis for 'graphics' package:
+Synopsis if you use the 'graphics' package:
\rotatebox{ANGLE}{MATERIAL}
- Synopses for 'graphicx' package:
+ Synopses if you use the 'graphicx' package:
\rotatebox{ANGLE}{MATERIAL}
\rotatebox[KEY-VALUE LIST]{ANGLE}{MATERIAL}
@@ -11753,7 +11901,7 @@ new position, is what LaTeX uses as the box when typesetting this
material.
If you use the 'graphics' package then the rotation is about the
-reference point of the box. If you use the 'graphicx' package then then
+reference point of the box. If you use the 'graphicx' package then
these are the options that can go in the KEY-VALUE LIST, but note that
you can get the same effect without needing this package, except for the
'x' and 'y' options (*note \includegraphics::).
@@ -11764,13 +11912,14 @@ you can get the same effect without needing this package, except for the
left, 'r' for right, 'b' for bottom, 'c' for center, 't' for top,
and 'B' for baseline. Thus, the first line here
- \includegraphics[angle=180,origin=c]{moon}
- \includegraphics[angle=180,origin=lB]{LeBateau}
+ \rotatebox[origin=c]{180}{moon}
+ \rotatebox[origin=lB]{180}{LeBateau}
will turn the picture upside down from the center while the second
will turn its picture upside down about its left baseline. (The
character 'c' gives the horizontal center in 'bc' or 'tc' but gives
- the vertical center in 'lc' or 'rc'.) The default is 'lB'.
+ the vertical center in 'lc' or 'rc', and gives both in 'c'.) The
+ default is 'lB'.
'x, y'
Specify an arbitrary point of rotation with '\rotatebox[x=TeX
@@ -12936,10 +13085,9 @@ the INDEX-ENTRY-STRING as well as indexing it.
The '\index' command writes the indexing information to the file
'ROOT-NAME.idx' file. Specifically, it writes text of the command
-'\indexentry{INDEX-ENTRY-STRING}{PAGE-NUM}', where where PAGE-NUM is the
-value of the '\thepage' counter. On occasion, when the '\printindex'
-command is confused, you have to delete this file to start with a fresh
-slate.
+'\indexentry{INDEX-ENTRY-STRING}{PAGE-NUM}', where PAGE-NUM is the value
+of the '\thepage' counter. On occasion, when the '\printindex' command
+is confused, you have to delete this file to start with a fresh slate.
If you omit the closing brace of an '\index' command then you get a
message like this.
@@ -13011,9 +13159,9 @@ then it is a comment.
'lethead_flag'
An integer. It governs what is inserted for a new group or letter.
If it is 0 (which is the default) then other than 'group_skip'
- nothing will be inserted before the group. If it is is positive
- then at a new letter the 'lethead_prefix' and 'lethead_suffix' will
- be inserted, with that letter in uppercase between them. If it is
+ nothing will be inserted before the group. If it is positive then
+ at a new letter the 'lethead_prefix' and 'lethead_suffix' will be
+ inserted, with that letter in uppercase between them. If it is
negative then what will be inserted is the letter in lowercase.
The default is 0.
@@ -13098,9 +13246,8 @@ then it is a comment.
There are a number of other programs that do the job 'makeindex'
does. One is 'xindy', which does internationalization and can process
indexes for documents marked up using LaTeX and a number of other
-languages. It is is highly configurable, both in markup terms and in
-terms of the collating order of the text. See the documentation on
-CTAN.
+languages. It is highly configurable, both in markup terms and in terms
+of the collating order of the text, as described in its documentation.
25.2.3 '\printindex'
--------------------
@@ -13716,17 +13863,17 @@ prefixing them with '-' or '--'. This is the case for both TeX Live
start with a backslash then TeX considers it the name of a file to
input. Otherwise it waits for the first '\input' instruction and
the name of the input file will be the job name. This is used to
- name the log file the output file. This option overrides that
- process and directly specifies the name. *Note Command line
+ name the log file the output file. The 'jobname' option overrides
+ that process and directly specifies the name. *Note Command line
input:: for an example of its use.
'-output-directory=DIRECTORY'
Write files in the directory DIRECTORY. It must already exist.
-'shell-escape'
-'no-shell-escape'
-'enable-write18'
-'disable-write18'
+'--shell-escape'
+'--no-shell-escape'
+'--enable-write18'
+'--disable-write18'
Enable or disable '\write18{SHELL COMMAND}'. The first two options
are for with TeX Live or MacTeX while the second two are for
MiKTeX.
@@ -13776,9 +13923,9 @@ PDF.
\href{https://www.ctan.org}{CTAN} % in body
...
-Compiling this document 'book.tex' with the command line 'pdflatex test'
+Compiling this document 'book.tex' with the command line 'pdflatex book'
will give the 'CTAN' link in blue. But compiling it with 'pdflatex
-"\def\paperversion{}\input test.tex"' has the link in black. (Note the
+"\def\paperversion{}\input book.tex"' has the link in black. (Note the
use of double quotes to prevent interpretation of the symbols by the
command line shell; your system may do this differently.)
@@ -13797,7 +13944,7 @@ called 'main.pdf' and the second would overwrite the first.
pdflatex -jobname=aa "\RequirePackage[draft]{graphicx}\input{aa.tex}"
so the graphic files are read for their size information but not
-incorporated into the PDF. (The 'jobname' option is needed because
+incorporated into the PDF. (The 'jobname' option is there because
otherwise the output file would be 'graphicx.pdf', as '\RequirePackage'
does an '\input' of its own.)
@@ -13835,8 +13982,8 @@ instead of 'pdflatex test' you might type 'pdflatex tste'.
(Press Enter to retry, or Control-D to exit)
Please type another input file name:
-The simplest thing is to enter '<Contol>' and 'd' (holding them down at
-the same time), and just fix the command line.
+The simplest thing is to enter '<Control>' and 'd' (holding them down at
+the same time), and then retype the correct command line.
Appendix A Document templates
*****************************
@@ -14060,2561 +14207,2585 @@ Index
* Menu:
-* &: tabular. (line 5037)
+* &: tabular. (line 4940)
* * prompt: Recovering from errors.
- (line 13911)
+ (line 14060)
* *-form of environment commands: \newenvironment & \renewenvironment.
- (line 6754)
-* *-form of sectioning commands: Sectioning. (line 2077)
+ (line 6771)
+* *-form of sectioning commands: Sectioning. (line 1981)
* *-form, defining new commands: \newcommand & \renewcommand.
- (line 6509)
+ (line 6413)
* --disable-write18 command-line option: Command line options.
- (line 13813)
+ (line 13962)
* --enable-write18 command-line option: Command line options.
- (line 13813)
+ (line 13962)
* --file-line-error command-line option: Command line options.
- (line 13840)
+ (line 13989)
* --halt-on-error command-line option: Command line options.
- (line 13837)
+ (line 13986)
* --help command-line option: Command line options.
- (line 13778)
+ (line 13927)
* --interaction command-line option: Command line options.
- (line 13781)
+ (line 13930)
* --jobname command-line option: Command line options.
- (line 13798)
+ (line 13947)
* --no-file-line-error command-line option: Command line options.
- (line 13840)
+ (line 13989)
* --no-shell-escape command-line option: Command line options.
- (line 13813)
+ (line 13962)
* --output-directory command-line option: Command line options.
- (line 13810)
+ (line 13959)
* --shell-escape command-line option: Command line options.
- (line 13813)
+ (line 13962)
* --version command-line option: Command line options.
- (line 13773)
-* .aux file: Output files. (line 449)
-* .dvi file: Output files. (line 426)
-* .glo file: Glossaries. (line 13245)
-* .idx file: Indexes. (line 12884)
-* .idx file <1>: makeindex. (line 13036)
-* .ind file: makeindex. (line 13036)
-* .isty file: makeindex. (line 13048)
-* .lof file: Output files. (line 459)
+ (line 13922)
+* .aux file: Output files. (line 458)
+* .dvi file: Output files. (line 435)
+* .glo file: Glossaries. (line 13394)
+* .idx file: Indexes. (line 13035)
+* .idx file <1>: makeindex. (line 13186)
+* .ind file: makeindex. (line 13186)
+* .isty file: makeindex. (line 13198)
+* .lof file: Output files. (line 468)
* .lof file <1>: Table of contents etc..
- (line 12650)
-* .log file: Output files. (line 444)
-* .lot file: Output files. (line 459)
+ (line 12801)
+* .log file: Output files. (line 453)
+* .lot file: Output files. (line 468)
* .lot file <1>: Table of contents etc..
- (line 12650)
-* .pdf file: Output files. (line 436)
-* .tex, default extension: Command line. (line 13735)
-* .toc file: Output files. (line 459)
+ (line 12801)
+* .pdf file: Output files. (line 445)
+* .tex, default extension: Command line. (line 13884)
+* .toc file: Output files. (line 468)
* .toc file <1>: Table of contents etc..
- (line 12650)
-* .xdv file: TeX engines. (line 501)
+ (line 12801)
+* .xdv file: TeX engines. (line 510)
* 10pt option: Document class options.
- (line 771)
+ (line 672)
* 11pt option: Document class options.
- (line 771)
+ (line 672)
* 12pt option: Document class options.
- (line 771)
+ (line 672)
* :: Colon character & \colon.
- (line 9335)
+ (line 9486)
* : <1>: Colon character & \colon.
- (line 9335)
+ (line 9486)
* [...] for optional arguments: LaTeX command syntax.
- (line 520)
+ (line 529)
* \ character starting commands: LaTeX command syntax.
- (line 520)
+ (line 529)
* \!: Spacing in math mode.
- (line 9312)
-* \" (umlaut accent): Accents. (line 12227)
+ (line 9351)
+* \" (umlaut accent): Accents. (line 12378)
* \#: Reserved characters.
- (line 11939)
+ (line 12090)
* \$: Reserved characters.
- (line 11939)
+ (line 12090)
* \%: Reserved characters.
- (line 11939)
+ (line 12090)
* \&: Reserved characters.
- (line 11939)
-* \' (acute accent): Accents. (line 12231)
-* \' (tabbing): tabbing. (line 4883)
-* \*: \*. (line 9355)
-* \+: tabbing. (line 4875)
+ (line 12090)
+* \' (acute accent): Accents. (line 12382)
+* \' (tabbing): tabbing. (line 4786)
+* \*: \*. (line 9506)
+* \+: tabbing. (line 4778)
* \,: Spacing in math mode.
- (line 9298)
-* \-: tabbing. (line 4879)
-* \- (hyphenation): \- (hyphenation). (line 5904)
-* \. (dot-over accent): Accents. (line 12234)
-* \/: \/. (line 10174)
+ (line 9337)
+* \-: tabbing. (line 4782)
+* \- (hyphenation): \- (hyphenation). (line 5808)
+* \. (dot-over accent): Accents. (line 12385)
+* \/: \/. (line 10324)
* \:: Spacing in math mode.
- (line 9294)
+ (line 9333)
* \;: Spacing in math mode.
- (line 9289)
-* \<: tabbing. (line 4871)
-* \= (macron accent): Accents. (line 12238)
-* \= (tabbing): tabbing. (line 4865)
-* \>: tabbing. (line 4869)
+ (line 9328)
+* \<: tabbing. (line 4774)
+* \= (macron accent): Accents. (line 12389)
+* \= (tabbing): tabbing. (line 4768)
+* \>: tabbing. (line 4772)
* \> <1>: Spacing in math mode.
- (line 9294)
-* \> (tabbing): tabbing. (line 4868)
-* \@: \@. (line 9977)
-* \@beginparpenalty: list. (line 3964)
-* \@endparpenalty: list. (line 3972)
-* \@fnsymbol: \footnote. (line 6260)
-* \@ifstar: \@ifstar. (line 642)
-* \@itempenalty: list. (line 3968)
-* \@startsection: \@startsection. (line 2548)
-* \a (tabbing): tabbing. (line 4898)
-* \a' (acute accent in tabbing): tabbing. (line 4899)
-* \a= (macron accent in tabbing): tabbing. (line 4899)
+ (line 9333)
+* \> (tabbing): tabbing. (line 4771)
+* \@: \@. (line 10127)
+* \@beginparpenalty: list. (line 3868)
+* \@endparpenalty: list. (line 3876)
+* \@fnsymbol: \footnote. (line 6164)
+* \@ifstar: \@ifstar. (line 6598)
+* \@itempenalty: list. (line 3872)
+* \@startsection: \@startsection. (line 2452)
+* \a (tabbing): tabbing. (line 4801)
+* \a' (acute accent in tabbing): tabbing. (line 4802)
+* \a= (macron accent in tabbing): tabbing. (line 4802)
* \aa (aa): Additional Latin letters.
- (line 12304)
+ (line 12455)
* \AA (AA): Additional Latin letters.
- (line 12304)
-* \acute: Math accents. (line 9182)
-* \addcontentsline: \addcontentsline. (line 12744)
-* \address: \address. (line 13424)
-* \addtocontents{EXT}{TEXT}: \addtocontents. (line 12819)
-* \addtocounter: \addtocounter. (line 7299)
-* \addtolength: \addtolength. (line 7535)
-* \addvspace: \addvspace. (line 10499)
+ (line 12455)
+* \acute: Math accents. (line 9221)
+* \addcontentsline: \addcontentsline. (line 12895)
+* \address: \address. (line 13573)
+* \addtocontents{EXT}{TEXT}: \addtocontents. (line 12970)
+* \addtocounter: \addtocounter. (line 7316)
+* \addtolength: \addtolength. (line 7563)
+* \addvspace: \addvspace. (line 10649)
* \ae (ae): Additional Latin letters.
- (line 12308)
+ (line 12459)
* \AE (AE): Additional Latin letters.
- (line 12308)
-* \aleph: Math symbols. (line 8016)
-* \Alph example: enumerate. (line 3323)
-* \alpha: Math symbols. (line 8019)
+ (line 12459)
+* \aleph: Math symbols. (line 8055)
+* \Alph example: enumerate. (line 3227)
+* \alpha: Math symbols. (line 8058)
* \alph{COUNTER}: \alph \Alph \arabic \roman \Roman \fnsymbol.
- (line 7174)
+ (line 7191)
* \Alph{COUNTER}: \alph \Alph \arabic \roman \Roman \fnsymbol.
- (line 7179)
-* \alsoname: \index. (line 12970)
-* \amalg: Math symbols. (line 8022)
-* \and for \author: \maketitle. (line 9567)
-* \angle: Math symbols. (line 8025)
-* \appendix: \appendix. (line 2487)
-* \approx: Math symbols. (line 8030)
+ (line 7196)
+* \alsoname: \index. (line 13121)
+* \amalg: Math symbols. (line 8061)
+* \and for \author: \maketitle. (line 9718)
+* \angle: Math symbols. (line 8064)
+* \appendix: \appendix. (line 2391)
+* \approx: Math symbols. (line 8069)
* \arabic{COUNTER}: \alph \Alph \arabic \roman \Roman \fnsymbol.
- (line 7184)
-* \arccos: Math functions. (line 9065)
-* \arcsin: Math functions. (line 9068)
-* \arctan: Math functions. (line 9071)
-* \arg: Math functions. (line 9074)
-* \arraycolsep: array. (line 3006)
-* \arrayrulewidth: tabular. (line 5163)
-* \arraystretch: tabular. (line 5169)
-* \ast: Math symbols. (line 8033)
-* \asymp: Math symbols. (line 8042)
-* \AtBeginDocument: \AtBeginDocument. (line 3236)
+ (line 7201)
+* \arccos: Math functions. (line 9104)
+* \arcsin: Math functions. (line 9107)
+* \arctan: Math functions. (line 9110)
+* \arg: Math functions. (line 9113)
+* \arraycolsep: array. (line 2910)
+* \arrayrulewidth: tabular. (line 5065)
+* \arraystretch: tabular. (line 5071)
+* \ast: Math symbols. (line 8072)
+* \asymp: Math symbols. (line 8081)
+* \AtBeginDocument: \AtBeginDocument. (line 3140)
* \AtBeginDvi: Class and package commands.
- (line 948)
-* \AtEndDocument: \AtEndDocument. (line 3252)
+ (line 852)
+* \AtEndDocument: \AtEndDocument. (line 3156)
* \AtEndOfClass: Class and package commands.
- (line 953)
+ (line 857)
* \AtEndOfPackage: Class and package commands.
- (line 953)
-* \author{NAME1 \and NAME2 \and ...}: \maketitle. (line 9566)
-* \a` (grave accent in tabbing): tabbing. (line 4899)
-* \b (bar-under accent): Accents. (line 12253)
+ (line 857)
+* \author{NAME1 \and NAME2 \and ...}: \maketitle. (line 9717)
+* \a` (grave accent in tabbing): tabbing. (line 4802)
+* \b (bar-under accent): Accents. (line 12404)
* \backmatter: \frontmatter & \mainmatter & \backmatter.
- (line 2520)
-* \backslash: Math symbols. (line 8045)
-* \bar: Math accents. (line 9185)
+ (line 2424)
+* \backslash: Math symbols. (line 8084)
+* \bar: Math accents. (line 9224)
* \baselineskip: Low-level font commands.
- (line 1566)
+ (line 1470)
* \baselinestretch: Low-level font commands.
- (line 1576)
-* \begin: Environments. (line 2898)
-* \beta: Math symbols. (line 8049)
-* \bf: Font styles. (line 1364)
-* \bfseries: Font styles. (line 1329)
-* \bibitem: \bibitem. (line 5390)
-* \bibliography: Using BibTeX. (line 5512)
-* \bibliographystyle: Using BibTeX. (line 5512)
-* \bigcap: Math symbols. (line 8052)
-* \bigcirc: Math symbols. (line 8056)
-* \bigcup: Math symbols. (line 8060)
-* \bigodot: Math symbols. (line 8064)
-* \bigoplus: Math symbols. (line 8067)
-* \bigotimes: Math symbols. (line 8070)
+ (line 1480)
+* \begin: Environments. (line 2802)
+* \beta: Math symbols. (line 8088)
+* \bf: Font styles. (line 1268)
+* \bfseries: Font styles. (line 1233)
+* \bibitem: \bibitem. (line 5292)
+* \bibliography: Using BibTeX. (line 5416)
+* \bibliographystyle: Using BibTeX. (line 5416)
+* \bigcap: Math symbols. (line 8091)
+* \bigcirc: Math symbols. (line 8095)
+* \bigcup: Math symbols. (line 8099)
+* \bigodot: Math symbols. (line 8103)
+* \bigoplus: Math symbols. (line 8106)
+* \bigotimes: Math symbols. (line 8109)
* \bigskip: \bigskip & \medskip & \smallskip.
- (line 10280)
+ (line 10430)
* \bigskipamount: \bigskip & \medskip & \smallskip.
- (line 10281)
-* \bigsqcup: Math symbols. (line 8081)
-* \bigtriangledown: Math symbols. (line 8073)
-* \bigtriangleup: Math symbols. (line 8077)
-* \biguplus: Math symbols. (line 8084)
-* \bigvee: Math symbols. (line 8088)
-* \bigwedge: Math symbols. (line 8091)
-* \bmod: Math functions. (line 9077)
+ (line 10431)
+* \bigsqcup: Math symbols. (line 8120)
+* \bigtriangledown: Math symbols. (line 8112)
+* \bigtriangleup: Math symbols. (line 8116)
+* \biguplus: Math symbols. (line 8123)
+* \bigvee: Math symbols. (line 8127)
+* \bigwedge: Math symbols. (line 8130)
+* \bmod: Math functions. (line 9116)
* \boldmath: \boldmath & \unboldmath.
- (line 8967)
+ (line 9006)
* \boldmath <1>: \boldmath & \unboldmath.
- (line 8975)
-* \bot: Math symbols. (line 8094)
-* \bottomfraction: Floats. (line 1990)
-* \bottomfraction <1>: Floats. (line 1991)
-* \bowtie: Math symbols. (line 8099)
-* \Box: Math symbols. (line 8102)
-* \breve: Math accents. (line 9188)
-* \bullet: Math symbols. (line 8107)
-* \c (cedilla accent): Accents. (line 12263)
-* \cal: Font styles. (line 1367)
-* \cap: Math symbols. (line 8110)
-* \capitalacute: Accents. (line 12231)
-* \capitalbreve: Accents. (line 12289)
-* \capitalcaron: Accents. (line 12293)
-* \capitalcedilla: Accents. (line 12263)
-* \capitalcircumflex: Accents. (line 12242)
-* \capitaldieresis: Accents. (line 12227)
-* \capitaldotaccent: Accents. (line 12267)
-* \capitalgrave: Accents. (line 12246)
-* \capitalhungarumlaut: Accents. (line 12271)
-* \capitalmacron: Accents. (line 12238)
-* \capitalnewtie: Accents. (line 12285)
-* \capitalogonek: Accents. (line 12275)
-* \capitalring: Accents. (line 12279)
-* \capitaltie: Accents. (line 12285)
-* \capitaltilde: Accents. (line 12250)
-* \caption: figure. (line 3449)
-* \caption <1>: table. (line 4989)
-* \cc: \cc. (line 13450)
-* \cdot: Math symbols. (line 8115)
-* \cdots: Dots. (line 9018)
-* \centering: \centering. (line 3088)
-* \chapter: Sectioning. (line 2052)
-* \chapter <1>: \chapter. (line 2185)
-* \check: Math accents. (line 9191)
+ (line 9014)
+* \bot: Math symbols. (line 8133)
+* \bottomfraction: Floats. (line 1894)
+* \bottomfraction <1>: Floats. (line 1895)
+* \bowtie: Math symbols. (line 8138)
+* \Box: Math symbols. (line 8141)
+* \breve: Math accents. (line 9227)
+* \bullet: Math symbols. (line 8146)
+* \c (cedilla accent): Accents. (line 12414)
+* \cal: Font styles. (line 1271)
+* \cap: Math symbols. (line 8149)
+* \capitalacute: Accents. (line 12382)
+* \capitalbreve: Accents. (line 12440)
+* \capitalcaron: Accents. (line 12444)
+* \capitalcedilla: Accents. (line 12414)
+* \capitalcircumflex: Accents. (line 12393)
+* \capitaldieresis: Accents. (line 12378)
+* \capitaldotaccent: Accents. (line 12418)
+* \capitalgrave: Accents. (line 12397)
+* \capitalhungarumlaut: Accents. (line 12422)
+* \capitalmacron: Accents. (line 12389)
+* \capitalnewtie: Accents. (line 12436)
+* \capitalogonek: Accents. (line 12426)
+* \capitalring: Accents. (line 12430)
+* \capitaltie: Accents. (line 12436)
+* \capitaltilde: Accents. (line 12401)
+* \caption: figure. (line 3353)
+* \caption <1>: table. (line 4892)
+* \cc: \cc. (line 13599)
+* \cdot: Math symbols. (line 8154)
+* \cdots: Dots. (line 9057)
+* \centering: \centering. (line 2992)
+* \chapter: Sectioning. (line 1956)
+* \chapter <1>: \chapter. (line 2089)
+* \check: Math accents. (line 9230)
* \CheckCommand: Class and package commands.
- (line 960)
+ (line 864)
* \CheckCommand*: Class and package commands.
- (line 960)
-* \chi: Math symbols. (line 8118)
-* \circ: Math symbols. (line 8121)
-* \circle: \circle. (line 4536)
-* \cite: \cite. (line 5449)
+ (line 864)
+* \chi: Math symbols. (line 8157)
+* \circ: Math symbols. (line 8160)
+* \circle: \circle. (line 4439)
+* \cite: \cite. (line 5351)
* \ClassError: Class and package commands.
- (line 980)
+ (line 884)
* \ClassInfo: Class and package commands.
- (line 980)
+ (line 884)
* \ClassInfoNoLine: Class and package commands.
- (line 980)
+ (line 884)
* \ClassWarning: Class and package commands.
- (line 980)
+ (line 884)
* \ClassWarningNoLine: Class and package commands.
- (line 980)
+ (line 884)
* \cleardoublepage: \clearpage & \cleardoublepage.
- (line 6083)
+ (line 5987)
* \clearpage: \clearpage & \cleardoublepage.
- (line 6083)
-* \cline: \cline. (line 5297)
-* \closing: \closing. (line 13466)
-* \clubsuit: Math symbols. (line 8126)
+ (line 5987)
+* \cline: \cline. (line 5199)
+* \closing: \closing. (line 13615)
+* \clubsuit: Math symbols. (line 8165)
* \colon: Colon character & \colon.
- (line 9335)
-* \columnsep: \twocolumn. (line 1644)
+ (line 9486)
+* \columnsep: \twocolumn. (line 1548)
* \columnsep <1>: Page layout parameters.
- (line 1769)
+ (line 1673)
* \columnsep <2>: Page layout parameters.
- (line 1772)
-* \columnseprule: \twocolumn. (line 1650)
+ (line 1676)
+* \columnseprule: \twocolumn. (line 1554)
* \columnseprule <1>: Page layout parameters.
- (line 1770)
+ (line 1674)
* \columnseprule <2>: Page layout parameters.
- (line 1772)
-* \columnwidth: \twocolumn. (line 1657)
+ (line 1676)
+* \columnwidth: \twocolumn. (line 1561)
* \columnwidth <1>: Page layout parameters.
- (line 1771)
+ (line 1675)
* \columnwidth <2>: Page layout parameters.
- (line 1772)
-* \complement: Math symbols. (line 8129)
-* \cong: Math symbols. (line 8135)
-* \contentsline: \addcontentsline. (line 12748)
-* \coprod: Math symbols. (line 8138)
-* \copyright: Text symbols. (line 12026)
-* \cos: Math functions. (line 9080)
-* \cosh: Math functions. (line 9083)
-* \cot: Math functions. (line 9086)
-* \coth: Math functions. (line 9089)
-* \csc: Math functions. (line 9092)
-* \cup: Math symbols. (line 8141)
+ (line 1676)
+* \complement: Math symbols. (line 8168)
+* \cong: Math symbols. (line 8174)
+* \contentsline: \addcontentsline. (line 12899)
+* \coprod: Math symbols. (line 8177)
+* \copyright: Text symbols. (line 12177)
+* \cos: Math functions. (line 9119)
+* \cosh: Math functions. (line 9122)
+* \cot: Math functions. (line 9125)
+* \coth: Math functions. (line 9128)
+* \csc: Math functions. (line 9131)
+* \cup: Math symbols. (line 8180)
* \CurrentOption: Class and package commands.
- (line 999)
-* \d (dot-under accent): Accents. (line 12267)
-* \dag: Text symbols. (line 12030)
-* \dagger: Math symbols. (line 8146)
-* \dashbox: \dashbox. (line 4742)
-* \dashv: Math symbols. (line 8149)
-* \date{TEXT}: \maketitle. (line 9574)
+ (line 903)
+* \d (dot-under accent): Accents. (line 12418)
+* \dag: Text symbols. (line 12181)
+* \dagger: Math symbols. (line 8185)
+* \dashbox: \dashbox. (line 4645)
+* \dashv: Math symbols. (line 8188)
+* \date{TEXT}: \maketitle. (line 9725)
* \day: \day & \month & \year.
- (line 7349)
-* \dblfloatpagefraction: \twocolumn. (line 1690)
-* \dblfloatsep: \twocolumn. (line 1696)
-* \dbltextfloatsep: \twocolumn. (line 1703)
-* \dbltopfraction: \twocolumn. (line 1669)
-* \dbltopnumber: \twocolumn. (line 1708)
-* \ddag: Text symbols. (line 12033)
-* \ddagger: Math symbols. (line 8153)
-* \ddot: Math accents. (line 9194)
-* \ddots: Dots. (line 9022)
+ (line 7366)
+* \dblfloatpagefraction: \twocolumn. (line 1594)
+* \dblfloatsep: \twocolumn. (line 1600)
+* \dbltextfloatsep: \twocolumn. (line 1607)
+* \dbltopfraction: \twocolumn. (line 1573)
+* \dbltopnumber: \twocolumn. (line 1612)
+* \ddag: Text symbols. (line 12184)
+* \ddagger: Math symbols. (line 8192)
+* \ddot: Math accents. (line 9233)
+* \ddots: Dots. (line 9061)
* \DeclareGraphicsExtensions: \DeclareGraphicsExtensions.
- (line 11358)
+ (line 11508)
* \DeclareGraphicsRule: \DeclareGraphicsRule.
- (line 11398)
+ (line 11548)
* \DeclareOption: Class and package commands.
- (line 1005)
+ (line 909)
* \DeclareOption*: Class and package commands.
- (line 1005)
+ (line 909)
* \DeclareRobustCommand: Class and package commands.
- (line 1035)
+ (line 939)
* \DeclareRobustCommand*: Class and package commands.
- (line 1035)
-* \deg: Math functions. (line 9095)
-* \Delta: Math symbols. (line 8156)
-* \delta: Math symbols. (line 8159)
-* \det: Math functions. (line 9098)
+ (line 939)
+* \deg: Math functions. (line 9134)
+* \Delta: Math symbols. (line 8195)
+* \delta: Math symbols. (line 8198)
+* \det: Math functions. (line 9137)
* \dh (d): Additional Latin letters.
- (line 12312)
+ (line 12463)
* \DH (D): Additional Latin letters.
- (line 12312)
-* \Diamond: Math symbols. (line 8162)
-* \diamond: Math symbols. (line 8166)
-* \diamondsuit: Math symbols. (line 8170)
-* \dim: Math functions. (line 9101)
-* \displaystyle: Math formulas. (line 7902)
-* \div: Math symbols. (line 8173)
+ (line 12463)
+* \Diamond: Math symbols. (line 8201)
+* \diamond: Math symbols. (line 8205)
+* \diamondsuit: Math symbols. (line 8209)
+* \dim: Math functions. (line 9140)
+* \displaystyle: Math formulas. (line 7941)
+* \div: Math symbols. (line 8212)
* \dj: Additional Latin letters.
- (line 12318)
+ (line 12469)
* \DJ: Additional Latin letters.
- (line 12318)
-* \documentclass: Document classes. (line 729)
-* \dot: Math accents. (line 9197)
-* \doteq: Math symbols. (line 8176)
+ (line 12469)
+* \documentclass: Document classes. (line 630)
+* \dot: Math accents. (line 9236)
+* \doteq: Math symbols. (line 8215)
* \dotfill: \hrulefill & \dotfill.
- (line 10209)
-* \dots: Text symbols. (line 12050)
-* \doublerulesep: tabular. (line 5174)
-* \downarrow: Math symbols. (line 8180)
-* \Downarrow: Math symbols. (line 8184)
-* \ell: Math symbols. (line 8188)
-* \emph: Font styles. (line 1349)
-* \emptyset: Math symbols. (line 8191)
-* \encl: \encl. (line 13479)
-* \end: Environments. (line 2898)
-* \endinput: \endinput. (line 12464)
-* \enlargethispage: \enlargethispage. (line 6157)
+ (line 10359)
+* \dots: Text symbols. (line 12201)
+* \doublerulesep: tabular. (line 5076)
+* \downarrow: Math symbols. (line 8219)
+* \Downarrow: Math symbols. (line 8223)
+* \ell: Math symbols. (line 8227)
+* \emph: Font styles. (line 1253)
+* \emptyset: Math symbols. (line 8230)
+* \encl: \encl. (line 13628)
+* \end: Environments. (line 2802)
+* \endinput: \endinput. (line 12615)
+* \enlargethispage: \enlargethispage. (line 6061)
* \enspace: \enspace & \quad & \qquad.
- (line 9782)
-* \enumi: enumerate. (line 3309)
-* \enumii: enumerate. (line 3309)
-* \enumiii: enumerate. (line 3309)
-* \enumiv: enumerate. (line 3309)
-* \epsilon: Math symbols. (line 8195)
-* \equiv: Math symbols. (line 8201)
-* \eta: Math symbols. (line 8204)
+ (line 9932)
+* \enumi: enumerate. (line 3213)
+* \enumii: enumerate. (line 3213)
+* \enumiii: enumerate. (line 3213)
+* \enumiv: enumerate. (line 3213)
+* \epsilon: Math symbols. (line 8234)
+* \equiv: Math symbols. (line 8240)
+* \eta: Math symbols. (line 8243)
* \evensidemargin: Document class options.
- (line 841)
+ (line 742)
* \evensidemargin <1>: Page layout parameters.
- (line 1830)
+ (line 1734)
* \evensidemargin <2>: Page layout parameters.
- (line 1831)
+ (line 1735)
* \ExecuteOptions: Class and package commands.
- (line 1111)
-* \exists: Math symbols. (line 8207)
-* \exp: Math functions. (line 9104)
-* \extracolsep: tabular. (line 5114)
-* \fbox: \fbox & \framebox. (line 10644)
+ (line 1015)
+* \exists: Math symbols. (line 8246)
+* \exp: Math functions. (line 9143)
+* \extracolsep: tabular. (line 5016)
+* \fbox: \fbox & \framebox. (line 10794)
* \fboxrule: \framebox (picture).
- (line 4719)
-* \fboxrule <1>: \fbox & \framebox. (line 10677)
-* \fboxrule <2>: \fbox & \framebox. (line 10676)
+ (line 4622)
+* \fboxrule <1>: \fbox & \framebox. (line 10827)
+* \fboxrule <2>: \fbox & \framebox. (line 10826)
* \fboxsep: \framebox (picture).
- (line 4719)
-* \fboxsep <1>: \fbox & \framebox. (line 10682)
-* \fboxsep <2>: \fbox & \framebox. (line 10681)
-* \fill: \hfill. (line 9869)
-* \flat: Math symbols. (line 8210)
-* \floatpagefraction: Floats. (line 1994)
-* \floatpagefraction <1>: Floats. (line 1995)
-* \floatsep: Floats. (line 2010)
-* \floatsep <1>: Floats. (line 2011)
-* \flushbottom: \flushbottom. (line 1737)
-* \fnsymbol, and footnotes: \footnote. (line 6260)
+ (line 4622)
+* \fboxsep <1>: \fbox & \framebox. (line 10832)
+* \fboxsep <2>: \fbox & \framebox. (line 10831)
+* \fill: \hfill. (line 10019)
+* \flat: Math symbols. (line 8249)
+* \floatpagefraction: Floats. (line 1898)
+* \floatpagefraction <1>: Floats. (line 1899)
+* \floatsep: Floats. (line 1914)
+* \floatsep <1>: Floats. (line 1915)
+* \flushbottom: \flushbottom. (line 1641)
+* \fnsymbol, and footnotes: \footnote. (line 6164)
* \fnsymbol{COUNTER}: \alph \Alph \arabic \roman \Roman \fnsymbol.
- (line 7197)
+ (line 7214)
* \fontencoding: Low-level font commands.
- (line 1476)
+ (line 1380)
* \fontfamily: Low-level font commands.
- (line 1486)
+ (line 1390)
* \fontseries: Low-level font commands.
- (line 1513)
+ (line 1417)
* \fontshape: Low-level font commands.
- (line 1553)
+ (line 1457)
* \fontsize: Low-level font commands.
- (line 1566)
-* \footnote: \footnote. (line 6242)
-* \footnotemark: \footnotemark. (line 6308)
-* \footnoterule: \footnote. (line 6270)
-* \footnotesep: \footnote. (line 6282)
-* \footnotesize: Font sizes. (line 1441)
-* \footnotetext: \footnotetext. (line 6364)
+ (line 1470)
+* \footnote: \footnote. (line 6146)
+* \footnotemark: \footnotemark. (line 6212)
+* \footnoterule: \footnote. (line 6174)
+* \footnotesep: \footnote. (line 6186)
+* \footnotesize: Font sizes. (line 1345)
+* \footnotetext: \footnotetext. (line 6268)
* \footskip: Page layout parameters.
- (line 1789)
+ (line 1693)
* \footskip <1>: Page layout parameters.
- (line 1790)
-* \forall: Math symbols. (line 8213)
-* \frac: \frac. (line 9371)
-* \frame: \frame. (line 4730)
+ (line 1694)
+* \forall: Math symbols. (line 8252)
+* \frac: \frac. (line 9522)
+* \frame: \frame. (line 4633)
* \framebox: \framebox (picture).
- (line 4694)
-* \framebox <1>: \fbox & \framebox. (line 10644)
-* \frenchspacing: \frenchspacing. (line 10023)
+ (line 4597)
+* \framebox <1>: \fbox & \framebox. (line 10794)
+* \frenchspacing: \frenchspacing. (line 10173)
* \frontmatter: \frontmatter & \mainmatter & \backmatter.
- (line 2520)
-* \frown: Math symbols. (line 8216)
-* \fussy: \fussy & \sloppy. (line 5962)
-* \Gamma: Math symbols. (line 8219)
-* \gamma: Math symbols. (line 8222)
-* \gcd: Math functions. (line 9107)
-* \ge: Math symbols. (line 8225)
-* \geq: Math symbols. (line 8229)
-* \gets: Math symbols. (line 8233)
-* \gg: Math symbols. (line 8236)
-* \gls: \gls. (line 13315)
-* \graphicspath: \graphicspath. (line 11296)
-* \graphpaper: \graphpaper. (line 4440)
-* \grave: Math accents. (line 9200)
-* \guillemotleft (<<): Text symbols. (line 12042)
-* \guillemotright (>>): Text symbols. (line 12043)
-* \guilsinglleft (<): Text symbols. (line 12044)
-* \guilsinglright (>): Text symbols. (line 12045)
-* \H (Hungarian umlaut accent): Accents. (line 12271)
-* \hat: Math accents. (line 9203)
-* \hbar: Math symbols. (line 8240)
+ (line 2424)
+* \frown: Math symbols. (line 8255)
+* \fussy: \fussy & \sloppy. (line 5866)
+* \Gamma: Math symbols. (line 8258)
+* \gamma: Math symbols. (line 8261)
+* \gcd: Math functions. (line 9146)
+* \ge: Math symbols. (line 8264)
+* \geq: Math symbols. (line 8268)
+* \gets: Math symbols. (line 8272)
+* \gg: Math symbols. (line 8275)
+* \gls: \gls. (line 13464)
+* \graphicspath: \graphicspath. (line 11446)
+* \graphpaper: \graphpaper. (line 4343)
+* \grave: Math accents. (line 9239)
+* \guillemotleft (<<): Text symbols. (line 12193)
+* \guillemotright (>>): Text symbols. (line 12194)
+* \guilsinglleft (<): Text symbols. (line 12195)
+* \guilsinglright (>): Text symbols. (line 12196)
+* \H (Hungarian umlaut accent): Accents. (line 12422)
+* \hat: Math accents. (line 9242)
+* \hbar: Math symbols. (line 8279)
* \headheight: Page layout parameters.
- (line 1777)
+ (line 1681)
* \headheight <1>: Page layout parameters.
- (line 1778)
+ (line 1682)
* \headsep: Page layout parameters.
- (line 1782)
+ (line 1686)
* \headsep <1>: Page layout parameters.
- (line 1783)
-* \heartsuit: Math symbols. (line 8243)
-* \hfill: \hfill. (line 9857)
-* \hline: \hline. (line 5320)
-* \hom: Math functions. (line 9110)
-* \hookleftarrow: Math symbols. (line 8246)
-* \hookrightarrow: Math symbols. (line 8249)
+ (line 1687)
+* \heartsuit: Math symbols. (line 8282)
+* \hfill: \hfill. (line 10007)
+* \hline: \hline. (line 5222)
+* \hom: Math functions. (line 9149)
+* \hookleftarrow: Math symbols. (line 8285)
+* \hookrightarrow: Math symbols. (line 8288)
* \hrulefill: \hrulefill & \dotfill.
- (line 10209)
+ (line 10359)
* \hsize: Page layout parameters.
- (line 1882)
+ (line 1786)
* \hsize <1>: Page layout parameters.
- (line 1882)
-* \hspace: \hspace. (line 9810)
-* \hss: \hss. (line 9890)
-* \huge: Font sizes. (line 1441)
-* \Huge: Font sizes. (line 1441)
-* \hyphenation: \hyphenation. (line 6003)
-* \i (dotless i): Accents. (line 12221)
-* \iff: Math symbols. (line 8252)
+ (line 1786)
+* \hspace: \hspace. (line 9960)
+* \hss: \hss. (line 10040)
+* \huge: Font sizes. (line 1345)
+* \Huge: Font sizes. (line 1345)
+* \hyphenation: \hyphenation. (line 5907)
+* \i (dotless i): Accents. (line 12372)
+* \iff: Math symbols. (line 8291)
* \IfFileExists: Class and package commands.
- (line 1067)
+ (line 971)
* \ignorespaces: \ignorespaces & \ignorespacesafterend.
- (line 7063)
+ (line 7080)
* \ignorespacesafterend: \ignorespaces & \ignorespacesafterend.
- (line 7063)
+ (line 7080)
* \ij (ij): Additional Latin letters.
- (line 12324)
+ (line 12475)
* \IJ (IJ): Additional Latin letters.
- (line 12324)
-* \Im: Math symbols. (line 8256)
-* \imath: Math symbols. (line 8259)
-* \in: Math symbols. (line 8263)
+ (line 12475)
+* \Im: Math symbols. (line 8295)
+* \imath: Math symbols. (line 8298)
+* \in: Math symbols. (line 8302)
* \include: \include & \includeonly.
- (line 12495)
-* \includegraphics: \includegraphics. (line 11477)
+ (line 12646)
+* \includegraphics: \includegraphics. (line 11627)
* \includeonly: \include & \includeonly.
- (line 12495)
+ (line 12646)
* \indent: \indent & \noindent.
- (line 7722)
-* \index: Indexes. (line 12884)
-* \index <1>: \index. (line 12920)
-* \indexentry: \index. (line 13020)
-* \indexspace: makeindex. (line 13088)
-* \inf: Math functions. (line 9113)
-* \infty: Math symbols. (line 8268)
-* \input: \input. (line 12612)
+ (line 7761)
+* \index: Indexes. (line 13035)
+* \index <1>: \index. (line 13071)
+* \indexentry: \index. (line 13171)
+* \indexspace: makeindex. (line 13238)
+* \inf: Math functions. (line 9152)
+* \infty: Math symbols. (line 8307)
+* \input: \input. (line 12763)
* \InputIfFileExists: Class and package commands.
- (line 1067)
-* \int: Math symbols. (line 8271)
-* \intextsep: Floats. (line 2014)
-* \intextsep <1>: Floats. (line 2015)
-* \iota: Math symbols. (line 8274)
-* \it: Font styles. (line 1370)
-* \item: description. (line 3155)
-* \item <1>: enumerate. (line 3291)
-* \item <2>: itemize. (line 3624)
-* \item <3>: itemize. (line 3646)
-* \itemindent: list. (line 3789)
-* \itemsep: list. (line 3793)
-* \itshape: Font styles. (line 1323)
-* \j (dotless j): Accents. (line 12221)
-* \jmath: Math symbols. (line 8281)
-* \Join: Math symbols. (line 8277)
-* \k (ogonek): Accents. (line 12275)
-* \kappa: Math symbols. (line 8285)
-* \ker: Math functions. (line 9116)
-* \kill: tabbing. (line 4903)
+ (line 971)
+* \int: Math symbols. (line 8310)
+* \intextsep: Floats. (line 1918)
+* \intextsep <1>: Floats. (line 1919)
+* \iota: Math symbols. (line 8313)
+* \it: Font styles. (line 1274)
+* \item: description. (line 3059)
+* \item <1>: enumerate. (line 3195)
+* \item <2>: itemize. (line 3528)
+* \item <3>: itemize. (line 3550)
+* \itemindent: list. (line 3693)
+* \itemsep: list. (line 3697)
+* \itshape: Font styles. (line 1227)
+* \j (dotless j): Accents. (line 12372)
+* \jmath: Math symbols. (line 8320)
+* \Join: Math symbols. (line 8316)
+* \k (ogonek): Accents. (line 12426)
+* \kappa: Math symbols. (line 8324)
+* \ker: Math functions. (line 9155)
+* \kill: tabbing. (line 4806)
* \l (/l): Additional Latin letters.
- (line 12328)
+ (line 12479)
* \L (/L): Additional Latin letters.
- (line 12328)
-* \label: \label. (line 2787)
-* \labelenumi: enumerate. (line 3318)
-* \labelenumii: enumerate. (line 3318)
-* \labelenumiii: enumerate. (line 3318)
-* \labelenumiv: enumerate. (line 3318)
-* \labelitemi: itemize. (line 3653)
-* \labelitemii: itemize. (line 3653)
-* \labelitemiii: itemize. (line 3653)
-* \labelitemiv: itemize. (line 3653)
-* \labelsep: list. (line 3805)
-* \labelwidth: list. (line 3810)
-* \Lambda: Math symbols. (line 8288)
-* \lambda: Math symbols. (line 8291)
-* \land: Math symbols. (line 8294)
-* \langle: Math symbols. (line 8299)
-* \large: Font sizes. (line 1441)
-* \Large: Font sizes. (line 1441)
-* \LARGE: Font sizes. (line 1441)
-* \LaTeX: Text symbols. (line 12036)
-* \LaTeXe: Text symbols. (line 12039)
-* \lbrace: Math symbols. (line 8304)
-* \lbrack: Math symbols. (line 8308)
-* \lceil: Math symbols. (line 8312)
-* \ldots: Dots. (line 9026)
-* \ldots <1>: Text symbols. (line 12049)
-* \le: Math symbols. (line 8316)
-* \leadsto: Math symbols. (line 8320)
-* \left: \left & \right. (line 9383)
-* \Leftarrow: Math symbols. (line 8327)
-* \leftarrow: Math symbols. (line 8332)
-* \lefteqn: eqnarray. (line 3375)
-* \leftharpoondown: Math symbols. (line 8336)
-* \leftharpoonup: Math symbols. (line 8339)
-* \leftmargin: itemize. (line 3672)
-* \leftmargin <1>: list. (line 3830)
-* \leftmargini: itemize. (line 3672)
-* \leftmarginii: itemize. (line 3672)
-* \leftmarginiii: itemize. (line 3672)
-* \leftmarginiv: itemize. (line 3672)
-* \leftmarginv: itemize. (line 3672)
-* \leftmarginvi: itemize. (line 3672)
-* \Leftrightarrow: Math symbols. (line 8342)
-* \leftrightarrow: Math symbols. (line 8347)
-* \leq: Math symbols. (line 8352)
-* \lfloor: Math symbols. (line 8356)
-* \lg: Math functions. (line 9119)
-* \lhd: Math symbols. (line 8359)
-* \lim: Math functions. (line 9122)
-* \liminf: Math functions. (line 9125)
-* \limsup: Math functions. (line 9128)
-* \line: \line. (line 4464)
+ (line 12479)
+* \label: \label. (line 2691)
+* \labelenumi: enumerate. (line 3222)
+* \labelenumii: enumerate. (line 3222)
+* \labelenumiii: enumerate. (line 3222)
+* \labelenumiv: enumerate. (line 3222)
+* \labelitemi: itemize. (line 3557)
+* \labelitemii: itemize. (line 3557)
+* \labelitemiii: itemize. (line 3557)
+* \labelitemiv: itemize. (line 3557)
+* \labelsep: list. (line 3709)
+* \labelwidth: list. (line 3714)
+* \Lambda: Math symbols. (line 8327)
+* \lambda: Math symbols. (line 8330)
+* \land: Math symbols. (line 8333)
+* \langle: Math symbols. (line 8338)
+* \large: Font sizes. (line 1345)
+* \Large: Font sizes. (line 1345)
+* \LARGE: Font sizes. (line 1345)
+* \LaTeX: Text symbols. (line 12187)
+* \LaTeXe: Text symbols. (line 12190)
+* \lbrace: Math symbols. (line 8343)
+* \lbrack: Math symbols. (line 8347)
+* \lceil: Math symbols. (line 8351)
+* \ldots: Dots. (line 9065)
+* \ldots <1>: Text symbols. (line 12200)
+* \le: Math symbols. (line 8355)
+* \leadsto: Math symbols. (line 8359)
+* \left: \left & \right. (line 9534)
+* \Leftarrow: Math symbols. (line 8366)
+* \leftarrow: Math symbols. (line 8371)
+* \lefteqn: eqnarray. (line 3279)
+* \leftharpoondown: Math symbols. (line 8375)
+* \leftharpoonup: Math symbols. (line 8378)
+* \leftmargin: itemize. (line 3576)
+* \leftmargin <1>: list. (line 3734)
+* \leftmargini: itemize. (line 3576)
+* \leftmarginii: itemize. (line 3576)
+* \leftmarginiii: itemize. (line 3576)
+* \leftmarginiv: itemize. (line 3576)
+* \leftmarginv: itemize. (line 3576)
+* \leftmarginvi: itemize. (line 3576)
+* \Leftrightarrow: Math symbols. (line 8381)
+* \leftrightarrow: Math symbols. (line 8386)
+* \leq: Math symbols. (line 8391)
+* \lfloor: Math symbols. (line 8395)
+* \lg: Math functions. (line 9158)
+* \lhd: Math symbols. (line 8398)
+* \lim: Math functions. (line 9161)
+* \liminf: Math functions. (line 9164)
+* \limsup: Math functions. (line 9167)
+* \line: \line. (line 4367)
* \linebreak: \linebreak & \nolinebreak.
- (line 6021)
+ (line 5925)
* \linespread: Low-level font commands.
- (line 1590)
-* \linethickness: \linethickness. (line 4508)
+ (line 1494)
+* \linethickness: \linethickness. (line 4411)
* \linewidth: Page layout parameters.
- (line 1796)
+ (line 1700)
* \linewidth <1>: Page layout parameters.
- (line 1797)
+ (line 1701)
* \listoffigures: Table of contents etc..
- (line 12650)
+ (line 12801)
* \listoftables: Table of contents etc..
- (line 12650)
-* \listparindent: list. (line 3847)
-* \ll: Math symbols. (line 8367)
-* \ln: Math functions. (line 9131)
-* \lnot: Math symbols. (line 8371)
+ (line 12801)
+* \listparindent: list. (line 3751)
+* \ll: Math symbols. (line 8406)
+* \ln: Math functions. (line 9170)
+* \lnot: Math symbols. (line 8410)
* \LoadClass: Class and package commands.
- (line 1087)
+ (line 991)
* \LoadClassWithOptions: Class and package commands.
- (line 1087)
-* \location: \location. (line 13494)
-* \log: Math functions. (line 9134)
-* \longleftarrow: Math symbols. (line 8374)
-* \longleftrightarrow: Math symbols. (line 8379)
-* \longmapsto: Math symbols. (line 8383)
-* \longrightarrow: Math symbols. (line 8388)
-* \lor: Math symbols. (line 8393)
-* \lq: Text symbols. (line 12055)
+ (line 991)
+* \location: \location. (line 13643)
+* \log: Math functions. (line 9173)
+* \longleftarrow: Math symbols. (line 8413)
+* \longleftrightarrow: Math symbols. (line 8418)
+* \longmapsto: Math symbols. (line 8422)
+* \longrightarrow: Math symbols. (line 8427)
+* \lor: Math symbols. (line 8432)
+* \lq: Text symbols. (line 12206)
* \mainmatter: \frontmatter & \mainmatter & \backmatter.
- (line 2520)
-* \makebox: \mbox & \makebox. (line 10555)
+ (line 2424)
+* \makebox: \mbox & \makebox. (line 10705)
* \makebox (for picture): \makebox (picture).
- (line 4656)
-* \makeglossary: Glossaries. (line 13208)
-* \makeglossary <1>: Glossaries. (line 13245)
-* \makeindex: Indexes. (line 12884)
-* \makelabel: list. (line 3766)
-* \makelabels: \makelabels. (line 13504)
-* \maketitle: \maketitle. (line 9530)
-* \mapsto: Math symbols. (line 8396)
-* \marginpar: Marginal notes. (line 7798)
+ (line 4559)
+* \makeglossary: Glossaries. (line 13357)
+* \makeglossary <1>: Glossaries. (line 13394)
+* \makeindex: Indexes. (line 13035)
+* \makelabel: list. (line 3670)
+* \makelabels: \makelabels. (line 13653)
+* \maketitle: \maketitle. (line 9681)
+* \mapsto: Math symbols. (line 8435)
+* \marginpar: Marginal notes. (line 7837)
* \marginparpush: Page layout parameters.
- (line 1803)
+ (line 1707)
* \marginparpush <1>: Page layout parameters.
- (line 1806)
-* \marginparpush <2>: Marginal notes. (line 7827)
-* \marginparsep: Marginal notes. (line 7831)
+ (line 1710)
+* \marginparpush <2>: Marginal notes. (line 7866)
+* \marginparsep: Marginal notes. (line 7870)
* \marginparwidth: Page layout parameters.
- (line 1805)
+ (line 1709)
* \marginparwidth <1>: Page layout parameters.
- (line 1806)
-* \marginparwidth <2>: Marginal notes. (line 7835)
+ (line 1710)
+* \marginparwidth <2>: Marginal notes. (line 7874)
* \marginsep: Page layout parameters.
- (line 1804)
+ (line 1708)
* \marginsep <1>: Page layout parameters.
- (line 1806)
-* \markboth{LEFT-HEAD}{RIGHT-HEAD}: \pagestyle. (line 9729)
-* \markright{RIGHT}: \pagestyle. (line 9738)
-* \mathbf: Font styles. (line 1400)
-* \mathcal: Font styles. (line 1416)
-* \mathdollar: Math symbols. (line 8905)
-* \mathnormal: Font styles. (line 1413)
-* \mathparagraph: Math symbols. (line 8908)
-* \mathring: Math accents. (line 9206)
-* \mathrm: Font styles. (line 1397)
-* \mathsection: Math symbols. (line 8911)
-* \mathsf: Font styles. (line 1403)
-* \mathsterling: Math symbols. (line 8914)
-* \mathtt: Font styles. (line 1406)
-* \mathunderscore: Math symbols. (line 8917)
-* \mathversion: Font styles. (line 1418)
-* \max: Math functions. (line 9137)
-* \mbox: \mbox & \makebox. (line 10555)
-* \mdseries: Font styles. (line 1326)
+ (line 1710)
+* \markboth{LEFT-HEAD}{RIGHT-HEAD}: \pagestyle. (line 9879)
+* \markright{RIGHT}: \pagestyle. (line 9888)
+* \mathbf: Font styles. (line 1304)
+* \mathcal: Font styles. (line 1320)
+* \mathdollar: Math symbols. (line 8944)
+* \mathnormal: Font styles. (line 1317)
+* \mathparagraph: Math symbols. (line 8947)
+* \mathring: Math accents. (line 9245)
+* \mathrm: Font styles. (line 1301)
+* \mathsection: Math symbols. (line 8950)
+* \mathsf: Font styles. (line 1307)
+* \mathsterling: Math symbols. (line 8953)
+* \mathtt: Font styles. (line 1310)
+* \mathunderscore: Math symbols. (line 8956)
+* \mathversion: Font styles. (line 1322)
+* \max: Math functions. (line 9176)
+* \mbox: \mbox & \makebox. (line 10705)
+* \mdseries: Font styles. (line 1230)
* \medskip: \bigskip & \medskip & \smallskip.
- (line 10285)
+ (line 10435)
* \medskipamount: \bigskip & \medskip & \smallskip.
- (line 10286)
+ (line 10436)
* \medspace: Spacing in math mode.
- (line 9294)
-* \mho: Math symbols. (line 8400)
-* \mid: Math symbols. (line 8405)
-* \min: Math functions. (line 9140)
-* \models: Math symbols. (line 8415)
+ (line 9333)
+* \mho: Math symbols. (line 8439)
+* \mid: Math symbols. (line 8444)
+* \min: Math functions. (line 9179)
+* \models: Math symbols. (line 8454)
* \month: \day & \month & \year.
- (line 7349)
-* \mp: Math symbols. (line 8420)
-* \mu: Math symbols. (line 8423)
-* \multicolumn: \multicolumn. (line 5189)
-* \multiput: \multiput. (line 4392)
-* \nabla: Math symbols. (line 8426)
-* \name: \name. (line 13561)
-* \natural: Math symbols. (line 8429)
-* \ne: Math symbols. (line 8432)
-* \nearrow: Math symbols. (line 8435)
+ (line 7366)
+* \mp: Math symbols. (line 8459)
+* \mu: Math symbols. (line 8462)
+* \multicolumn: \multicolumn. (line 5091)
+* \multiput: \multiput. (line 4295)
+* \nabla: Math symbols. (line 8465)
+* \name: \name. (line 13710)
+* \natural: Math symbols. (line 8468)
+* \ne: Math symbols. (line 8471)
+* \nearrow: Math symbols. (line 8474)
* \NeedsTeXFormat: Class and package commands.
- (line 1121)
-* \neg: Math symbols. (line 8438)
+ (line 1025)
+* \neg: Math symbols. (line 8477)
* \negthinspace: Spacing in math mode.
- (line 9312)
+ (line 9351)
* \negthinspace <1>: \thinspace & \negthinspace.
- (line 10150)
-* \neq: Math symbols. (line 8442)
+ (line 10300)
+* \neq: Math symbols. (line 8481)
* \newcommand: \newcommand & \renewcommand.
- (line 6490)
-* \newcounter: \newcounter. (line 6643)
+ (line 6394)
+* \newcounter: \newcounter. (line 6659)
* \newenvironment: \newenvironment & \renewenvironment.
- (line 6733)
-* \newfont: \newfont. (line 6979)
-* \newglossaryentry: \newglossaryentry. (line 13256)
-* \newlength: \newlength. (line 6684)
-* \newline: \newline. (line 5880)
-* \NEWLINE: \(SPACE). (line 10053)
-* \newpage: \newpage. (line 6124)
-* \newsavebox: \newsavebox. (line 6706)
-* \newtheorem: \newtheorem. (line 6867)
-* \newtie: Accents. (line 12285)
+ (line 6750)
+* \newfont: \newfont. (line 6996)
+* \newglossaryentry: \newglossaryentry. (line 13405)
+* \newlength: \newlength. (line 6700)
+* \newline: \newline. (line 5784)
+* \NEWLINE: \(SPACE). (line 10203)
+* \newpage: \newpage. (line 6028)
+* \newsavebox: \newsavebox. (line 6722)
+* \newtheorem: \newtheorem. (line 6884)
+* \newtie: Accents. (line 12436)
* \ng: Additional Latin letters.
- (line 12332)
+ (line 12483)
* \NG: Additional Latin letters.
- (line 12332)
-* \ni: Math symbols. (line 8445)
-* \nocite: \nocite. (line 5497)
-* \nocorr: Font styles. (line 1311)
-* \nocorrlist: Font styles. (line 1311)
-* \nofiles: \nofiles. (line 12859)
+ (line 12483)
+* \ni: Math symbols. (line 8484)
+* \nocite: \nocite. (line 5401)
+* \nocorr: Font styles. (line 1215)
+* \nocorrlist: Font styles. (line 1215)
+* \nofiles: \nofiles. (line 13010)
* \noindent: \indent & \noindent.
- (line 7722)
+ (line 7761)
* \nolinebreak: \linebreak & \nolinebreak.
- (line 6021)
-* \nonfrenchspacing: \frenchspacing. (line 10023)
-* \nonumber: eqnarray. (line 3370)
+ (line 5925)
+* \nonfrenchspacing: \frenchspacing. (line 10173)
+* \nonumber: eqnarray. (line 3274)
* \nopagebreak: \pagebreak & \nopagebreak.
- (line 6182)
-* \normalfont: Font styles. (line 1347)
-* \normalmarginpar: Marginal notes. (line 7814)
-* \normalsfcodes: \normalsfcodes. (line 10043)
-* \normalsize: Font sizes. (line 1441)
-* \not: Math symbols. (line 8450)
-* \notin: Math symbols. (line 8458)
-* \nu: Math symbols. (line 8462)
-* \nwarrow: Math symbols. (line 8465)
+ (line 6086)
+* \normalfont: Font styles. (line 1251)
+* \normalmarginpar: Marginal notes. (line 7853)
+* \normalsfcodes: \normalsfcodes. (line 10193)
+* \normalsize: Font sizes. (line 1345)
+* \not: Math symbols. (line 8489)
+* \notin: Math symbols. (line 8497)
+* \nu: Math symbols. (line 8501)
+* \nwarrow: Math symbols. (line 8504)
* \o (/o): Additional Latin letters.
- (line 12336)
+ (line 12487)
* \O (/O): Additional Latin letters.
- (line 12336)
+ (line 12487)
* \obeycr: \obeycr & \restorecr.
- (line 5840)
+ (line 5744)
* \oddsidemargin: Document class options.
- (line 841)
+ (line 742)
* \oddsidemargin <1>: Page layout parameters.
- (line 1829)
+ (line 1733)
* \oddsidemargin <2>: Page layout parameters.
- (line 1831)
-* \odot: Math symbols. (line 8468)
+ (line 1735)
+* \odot: Math symbols. (line 8507)
* \oe (oe): Additional Latin letters.
- (line 12340)
+ (line 12491)
* \OE (OE): Additional Latin letters.
- (line 12340)
-* \oint: Math symbols. (line 8473)
-* \oldstylenums: Font styles. (line 1422)
-* \Omega: Math symbols. (line 8477)
-* \omega: Math symbols. (line 8480)
-* \ominus: Math symbols. (line 8483)
-* \onecolumn: \onecolumn. (line 1618)
-* \opening: \opening. (line 13571)
-* \oplus: Math symbols. (line 8486)
+ (line 12491)
+* \oint: Math symbols. (line 8512)
+* \oldstylenums: Font styles. (line 1326)
+* \Omega: Math symbols. (line 8516)
+* \omega: Math symbols. (line 8519)
+* \ominus: Math symbols. (line 8522)
+* \onecolumn: \onecolumn. (line 1522)
+* \opening: \opening. (line 13720)
+* \oplus: Math symbols. (line 8525)
* \OptionNotUsed: Class and package commands.
- (line 1139)
-* \oslash: Math symbols. (line 8490)
-* \otimes: Math symbols. (line 8493)
-* \oval: \oval. (line 4555)
+ (line 1043)
+* \oslash: Math symbols. (line 8529)
+* \otimes: Math symbols. (line 8532)
+* \oval: \oval. (line 4458)
* \overbrace{MATH}: Over- and Underlining.
- (line 9261)
+ (line 9300)
* \overline{TEXT}: Over- and Underlining.
- (line 9242)
-* \owns: Math symbols. (line 8498)
-* \P: Text symbols. (line 12058)
+ (line 9281)
+* \owns: Math symbols. (line 8537)
+* \P: Text symbols. (line 12209)
* \PackageError: Class and package commands.
- (line 980)
+ (line 884)
* \PackageInfo: Class and package commands.
- (line 980)
+ (line 884)
* \PackageInfoNoLine: Class and package commands.
- (line 980)
+ (line 884)
* \PackageWarning: Class and package commands.
- (line 980)
+ (line 884)
* \PackageWarningNoLine: Class and package commands.
- (line 980)
+ (line 884)
* \pagebreak: \pagebreak & \nopagebreak.
- (line 6182)
-* \pagenumbering: \pagenumbering. (line 9602)
-* \pageref: \pageref. (line 2845)
-* \pagestyle: \pagestyle. (line 9660)
+ (line 6086)
+* \pagenumbering: \pagenumbering. (line 9752)
+* \pageref: \pageref. (line 2749)
+* \pagestyle: \pagestyle. (line 9810)
* \paperheight: Page layout parameters.
- (line 1842)
+ (line 1746)
* \paperheight <1>: Page layout parameters.
- (line 1843)
+ (line 1747)
* \paperwidth: Page layout parameters.
- (line 1848)
+ (line 1752)
* \paperwidth <1>: Page layout parameters.
- (line 1849)
-* \par: \par. (line 7671)
-* \paragraph: Sectioning. (line 2052)
+ (line 1753)
+* \par: \par. (line 7708)
+* \paragraph: Sectioning. (line 1956)
* \paragraph <1>: \subsubsection & \paragraph & \subparagraph.
- (line 2420)
-* \parallel: Math symbols. (line 8503)
-* \parbox: \parbox. (line 10711)
-* \parindent: minipage. (line 4186)
+ (line 2324)
+* \parallel: Math symbols. (line 8542)
+* \parbox: \parbox. (line 10861)
+* \parindent: minipage. (line 4089)
* \parindent <1>: \indent & \noindent.
- (line 7722)
+ (line 7761)
* \parindent <2>: \parindent & \parskip.
- (line 7771)
-* \parsep: list. (line 3853)
+ (line 7810)
+* \parsep: list. (line 3757)
* \parskip: \parindent & \parskip.
- (line 7771)
-* \parskip example: itemize. (line 3691)
-* \part: Sectioning. (line 2052)
-* \part <1>: \part. (line 2131)
-* \partial: Math symbols. (line 8506)
-* \partopsep: list. (line 3862)
+ (line 7810)
+* \parskip example: itemize. (line 3595)
+* \part: Sectioning. (line 1956)
+* \part <1>: \part. (line 2035)
+* \partial: Math symbols. (line 8545)
+* \partopsep: list. (line 3766)
* \PassOptionsToClass: Class and package commands.
- (line 1145)
+ (line 1049)
* \PassOptionsToPackage: Class and package commands.
- (line 1145)
+ (line 1049)
* \pdfpageheight: Document class options.
- (line 797)
+ (line 698)
* \pdfpagewidth: Document class options.
- (line 797)
-* \perp: Math symbols. (line 8509)
-* \phi: Math symbols. (line 8514)
-* \Pi: Math symbols. (line 8518)
-* \pi: Math symbols. (line 8521)
-* \pm: Math symbols. (line 8525)
-* \pmod: Math functions. (line 9143)
-* \poptabs: tabbing. (line 4909)
-* \poptabs <1>: tabbing. (line 4910)
-* \pounds: Text symbols. (line 12062)
-* \Pr: Math functions. (line 9146)
-* \prec: Math symbols. (line 8528)
-* \preceq: Math symbols. (line 8531)
-* \prime: Math symbols. (line 8536)
-* \printglossaries: Glossaries. (line 13208)
-* \printglossaries <1>: Glossaries. (line 13245)
-* \printindex: \printindex. (line 13193)
-* \printindex <1>: \printindex. (line 13197)
+ (line 698)
+* \perp: Math symbols. (line 8548)
+* \phi: Math symbols. (line 8553)
+* \Pi: Math symbols. (line 8557)
+* \pi: Math symbols. (line 8560)
+* \pm: Math symbols. (line 8564)
+* \pmod: Math functions. (line 9182)
+* \poptabs: tabbing. (line 4812)
+* \poptabs <1>: tabbing. (line 4813)
+* \pounds: Text symbols. (line 12213)
+* \Pr: Math functions. (line 9185)
+* \prec: Math symbols. (line 8567)
+* \preceq: Math symbols. (line 8570)
+* \prime: Math symbols. (line 8575)
+* \printglossaries: Glossaries. (line 13357)
+* \printglossaries <1>: Glossaries. (line 13394)
+* \printindex: \printindex. (line 13342)
+* \printindex <1>: \printindex. (line 13346)
* \ProcessOptions: Class and package commands.
- (line 1182)
+ (line 1086)
* \ProcessOptions*: Class and package commands.
- (line 1182)
-* \prod: Math symbols. (line 8545)
-* \propto: Math symbols. (line 8548)
-* \protect: \protect. (line 7011)
-* \providecommand: \providecommand. (line 6615)
+ (line 1086)
+* \prod: Math symbols. (line 8584)
+* \propto: Math symbols. (line 8587)
+* \protect: \protect. (line 7028)
+* \providecommand: \providecommand. (line 6519)
* \ProvidesClass: Class and package commands.
- (line 1220)
+ (line 1124)
* \ProvidesFile: Class and package commands.
- (line 1253)
+ (line 1157)
* \ProvidesPackage: Class and package commands.
- (line 1220)
-* \ps: \ps. (line 13583)
-* \Psi: Math symbols. (line 8551)
-* \psi: Math symbols. (line 8554)
-* \pushtabs: tabbing. (line 4912)
-* \put: \put. (line 4374)
-* \qbezier: \qbezier. (line 4415)
+ (line 1124)
+* \ps: \ps. (line 13732)
+* \Psi: Math symbols. (line 8590)
+* \psi: Math symbols. (line 8593)
+* \pushtabs: tabbing. (line 4815)
+* \put: \put. (line 4277)
+* \qbezier: \qbezier. (line 4318)
* \qquad: Spacing in math mode.
- (line 9323)
+ (line 9362)
* \qquad <1>: \enspace & \quad & \qquad.
- (line 9782)
+ (line 9932)
* \quad: Spacing in math mode.
- (line 9317)
+ (line 9356)
* \quad <1>: \enspace & \quad & \qquad.
- (line 9782)
-* \quotedblbase (,,): Text symbols. (line 12066)
-* \quotesinglbase (,): Text symbols. (line 12067)
-* \r (ring accent): Accents. (line 12279)
-* \raggedbottom: \raggedbottom. (line 1758)
-* \raggedleft: \raggedleft. (line 3599)
-* \raggedright: \raggedright. (line 3548)
-* \raisebox: \raisebox. (line 10763)
-* \rangle: Math symbols. (line 8557)
-* \rbrace: Math symbols. (line 8562)
-* \rbrack: Math symbols. (line 8566)
-* \rceil: Math symbols. (line 8570)
-* \Re: Math symbols. (line 8573)
-* \ref: \ref. (line 2869)
-* \reflectbox: \scalebox. (line 11866)
-* \refstepcounter: \refstepcounter. (line 7315)
+ (line 9932)
+* \quotedblbase (,,): Text symbols. (line 12217)
+* \quotesinglbase (,): Text symbols. (line 12218)
+* \r (ring accent): Accents. (line 12430)
+* \raggedbottom: \raggedbottom. (line 1662)
+* \raggedleft: \raggedleft. (line 3503)
+* \raggedright: \raggedright. (line 3452)
+* \raisebox: \raisebox. (line 10913)
+* \rangle: Math symbols. (line 8596)
+* \rbrace: Math symbols. (line 8601)
+* \rbrack: Math symbols. (line 8605)
+* \rceil: Math symbols. (line 8609)
+* \Re: Math symbols. (line 8612)
+* \ref: \ref. (line 2773)
+* \reflectbox: \scalebox. (line 12017)
+* \refstepcounter: \refstepcounter. (line 7332)
* \renewenvironment: \newenvironment & \renewenvironment.
- (line 6733)
+ (line 6750)
* \RequirePackage: Class and package commands.
- (line 1262)
+ (line 1166)
* \RequirePackageWithOptions: Class and package commands.
- (line 1262)
-* \resizebox: \resizebox. (line 11897)
+ (line 1166)
+* \resizebox: \resizebox. (line 12048)
* \restorecr: \obeycr & \restorecr.
- (line 5840)
-* \restriction: Math symbols. (line 8578)
-* \revemptyset: Math symbols. (line 8583)
-* \reversemarginpar: Marginal notes. (line 7814)
-* \rfloor: Math symbols. (line 8588)
-* \rhd: Math symbols. (line 8592)
-* \rho: Math symbols. (line 8599)
-* \right: \left & \right. (line 9383)
-* \Rightarrow: Math symbols. (line 8603)
-* \rightarrow: Math symbols. (line 8608)
-* \rightharpoondown: Math symbols. (line 8612)
-* \rightharpoonup: Math symbols. (line 8615)
-* \rightleftharpoons: Math symbols. (line 8618)
-* \rightmargin: list. (line 3877)
-* \rm: Font styles. (line 1373)
-* \rmfamily: Font styles. (line 1320)
+ (line 5744)
+* \restriction: Math symbols. (line 8617)
+* \revemptyset: Math symbols. (line 8622)
+* \reversemarginpar: Marginal notes. (line 7853)
+* \rfloor: Math symbols. (line 8627)
+* \rhd: Math symbols. (line 8631)
+* \rho: Math symbols. (line 8638)
+* \right: \left & \right. (line 9534)
+* \Rightarrow: Math symbols. (line 8642)
+* \rightarrow: Math symbols. (line 8647)
+* \rightharpoondown: Math symbols. (line 8651)
+* \rightharpoonup: Math symbols. (line 8654)
+* \rightleftharpoons: Math symbols. (line 8657)
+* \rightmargin: list. (line 3781)
+* \rm: Font styles. (line 1277)
+* \rmfamily: Font styles. (line 1224)
* \roman{COUNTER}: \alph \Alph \arabic \roman \Roman \fnsymbol.
- (line 7187)
+ (line 7204)
* \Roman{COUNTER}: \alph \Alph \arabic \roman \Roman \fnsymbol.
- (line 7192)
-* \rotatebox: \rotatebox. (line 11799)
-* \rq: Text symbols. (line 12070)
-* \rule: \rule. (line 12355)
-* \S: Text symbols. (line 12073)
-* \savebox: \sbox & \savebox. (line 10809)
-* \sbox: \sbox & \savebox. (line 10809)
-* \sc: Font styles. (line 1376)
-* \scalebox: \scalebox. (line 11866)
-* \scriptsize: Font sizes. (line 1441)
-* \scshape: Font styles. (line 1341)
-* \searrow: Math symbols. (line 8621)
-* \sec: Math functions. (line 9149)
-* \section: Sectioning. (line 2052)
-* \section <1>: \section. (line 2278)
-* \seename: \index. (line 12970)
+ (line 7209)
+* \rotatebox: \rotatebox. (line 11949)
+* \rq: Text symbols. (line 12221)
+* \rule: \rule. (line 12506)
+* \S: Text symbols. (line 12224)
+* \savebox: \sbox & \savebox. (line 10959)
+* \sbox: \sbox & \savebox. (line 10959)
+* \sc: Font styles. (line 1280)
+* \scalebox: \scalebox. (line 12017)
+* \scriptsize: Font sizes. (line 1345)
+* \scshape: Font styles. (line 1245)
+* \searrow: Math symbols. (line 8660)
+* \sec: Math functions. (line 9188)
+* \section: Sectioning. (line 1956)
+* \section <1>: \section. (line 2182)
+* \seename: \index. (line 13121)
* \selectfont: Low-level font commands.
- (line 1596)
-* \setcounter: \setcounter. (line 7281)
-* \setlength: \setlength. (line 7512)
-* \setminus: Math symbols. (line 8624)
-* \settodepth: \settodepth. (line 7562)
-* \settoheight: \settoheight. (line 7585)
-* \settowidth: \settowidth. (line 7608)
-* \sf: Font styles. (line 1379)
-* \sffamily: Font styles. (line 1338)
-* \sharp: Math symbols. (line 8630)
-* \shortstack: \shortstack. (line 4591)
-* \Sigma: Math symbols. (line 8633)
-* \sigma: Math symbols. (line 8636)
-* \signature: \signature. (line 13600)
-* \sim: Math symbols. (line 8640)
-* \simeq: Math symbols. (line 8643)
-* \sin: Math functions. (line 9152)
-* \sinh: Math functions. (line 9155)
-* \sl: Font styles. (line 1382)
-* \sloppy: \fussy & \sloppy. (line 5962)
-* \slshape: Font styles. (line 1335)
-* \small: Font sizes. (line 1441)
-* \smallint: Math symbols. (line 8646)
+ (line 1500)
+* \setcounter: \setcounter. (line 7298)
+* \setlength: \setlength. (line 7535)
+* \setminus: Math symbols. (line 8663)
+* \settodepth: \settodepth. (line 7592)
+* \settoheight: \settoheight. (line 7616)
+* \settowidth: \settowidth. (line 7640)
+* \sf: Font styles. (line 1283)
+* \sffamily: Font styles. (line 1242)
+* \sharp: Math symbols. (line 8669)
+* \shortstack: \shortstack. (line 4494)
+* \Sigma: Math symbols. (line 8672)
+* \sigma: Math symbols. (line 8675)
+* \signature: \signature. (line 13749)
+* \sim: Math symbols. (line 8679)
+* \simeq: Math symbols. (line 8682)
+* \sin: Math functions. (line 9191)
+* \sinh: Math functions. (line 9194)
+* \sl: Font styles. (line 1286)
+* \sloppy: \fussy & \sloppy. (line 5866)
+* \slshape: Font styles. (line 1239)
+* \small: Font sizes. (line 1345)
+* \smallint: Math symbols. (line 8685)
* \smallskip: \bigskip & \medskip & \smallskip.
- (line 10290)
+ (line 10440)
* \smallskipamount: \bigskip & \medskip & \smallskip.
- (line 10291)
-* \smile: Math symbols. (line 8650)
-* \SPACE: \(SPACE). (line 10053)
-* \spacefactor: \spacefactor. (line 9916)
-* \spadesuit: Math symbols. (line 8653)
-* \sqcap: Math symbols. (line 8656)
-* \sqcup: Math symbols. (line 8660)
-* \sqrt: \sqrt. (line 9418)
-* \sqsubset: Math symbols. (line 8664)
-* \sqsubseteq: Math symbols. (line 8669)
-* \sqsupset: Math symbols. (line 8674)
-* \sqsupseteq: Math symbols. (line 8679)
+ (line 10441)
+* \smile: Math symbols. (line 8689)
+* \SPACE: \(SPACE). (line 10203)
+* \spacefactor: \spacefactor. (line 10066)
+* \spadesuit: Math symbols. (line 8692)
+* \sqcap: Math symbols. (line 8695)
+* \sqcup: Math symbols. (line 8699)
+* \sqrt: \sqrt. (line 9569)
+* \sqsubset: Math symbols. (line 8703)
+* \sqsubseteq: Math symbols. (line 8708)
+* \sqsupset: Math symbols. (line 8713)
+* \sqsupseteq: Math symbols. (line 8718)
* \ss (ss): Additional Latin letters.
- (line 12344)
+ (line 12495)
* \SS (SS): Additional Latin letters.
- (line 12344)
-* \stackrel: \stackrel. (line 9434)
-* \star: Math symbols. (line 8684)
-* \stepcounter: \stepcounter. (line 7333)
+ (line 12495)
+* \stackrel: \stackrel. (line 9585)
+* \star: Math symbols. (line 8723)
+* \stepcounter: \stepcounter. (line 7350)
* \stop: Recovering from errors.
- (line 13911)
-* \strut: \strut. (line 10334)
-* \subparagraph: Sectioning. (line 2052)
+ (line 14060)
+* \strut: \strut. (line 10484)
+* \subparagraph: Sectioning. (line 1956)
* \subparagraph <1>: \subsubsection & \paragraph & \subparagraph.
- (line 2420)
-* \subsection: Sectioning. (line 2052)
-* \subsection <1>: \subsection. (line 2356)
-* \subset: Math symbols. (line 8692)
-* \subseteq: Math symbols. (line 8695)
+ (line 2324)
+* \subsection: Sectioning. (line 1956)
+* \subsection <1>: \subsection. (line 2260)
+* \subset: Math symbols. (line 8731)
+* \subseteq: Math symbols. (line 8734)
* \subsubsection: \subsubsection & \paragraph & \subparagraph.
- (line 2420)
-* \succ: Math symbols. (line 8698)
-* \succeq: Math symbols. (line 8702)
-* \sum: Math symbols. (line 8707)
-* \sup: Math functions. (line 9158)
-* \suppressfloats: Floats. (line 1983)
-* \supset: Math symbols. (line 8711)
-* \supseteq: Math symbols. (line 8714)
-* \surd: Math symbols. (line 8717)
-* \swarrow: Math symbols. (line 8722)
+ (line 2324)
+* \succ: Math symbols. (line 8737)
+* \succeq: Math symbols. (line 8741)
+* \sum: Math symbols. (line 8746)
+* \sup: Math functions. (line 9197)
+* \suppressfloats: Floats. (line 1887)
+* \supset: Math symbols. (line 8750)
+* \supseteq: Math symbols. (line 8753)
+* \surd: Math symbols. (line 8756)
+* \swarrow: Math symbols. (line 8761)
* \symbol: Symbols by font position.
- (line 12009)
-* \t (tie-after accent): Accents. (line 12285)
-* \TAB: \(SPACE). (line 10053)
-* \tabbingsep: tabbing. (line 4917)
-* \tabcolsep: tabular. (line 5178)
+ (line 12160)
+* \t (tie-after accent): Accents. (line 12436)
+* \TAB: \(SPACE). (line 10203)
+* \tabbingsep: tabbing. (line 4820)
+* \tabcolsep: tabular. (line 5080)
* \tableofcontents: Table of contents etc..
- (line 12650)
-* \tan: Math functions. (line 9161)
-* \tanh: Math functions. (line 9164)
-* \tau: Math symbols. (line 8725)
-* \telephone: \telephone. (line 13630)
-* \TeX: Text symbols. (line 12077)
-* \textascendercompwordmark: Text symbols. (line 12115)
-* \textasciicircum: Text symbols. (line 12080)
-* \textasciitilde: Text symbols. (line 12083)
-* \textasteriskcentered: Text symbols. (line 12086)
+ (line 12801)
+* \tan: Math functions. (line 9200)
+* \tanh: Math functions. (line 9203)
+* \tau: Math symbols. (line 8764)
+* \telephone: \telephone. (line 13779)
+* \TeX: Text symbols. (line 12228)
+* \textascendercompwordmark: Text symbols. (line 12266)
+* \textasciicircum: Text symbols. (line 12231)
+* \textasciitilde: Text symbols. (line 12234)
+* \textasteriskcentered: Text symbols. (line 12237)
* \textbackslash: Reserved characters.
- (line 11946)
-* \textbackslash <1>: Text symbols. (line 12089)
-* \textbar: Text symbols. (line 12092)
-* \textbardbl: Text symbols. (line 12095)
-* \textbf: Font styles. (line 1329)
-* \textbigcircle: Text symbols. (line 12098)
-* \textbraceleft: Text symbols. (line 12101)
-* \textbraceright: Text symbols. (line 12104)
-* \textbullet: Text symbols. (line 12107)
-* \textcapitalcompwordmark: Text symbols. (line 12114)
-* \textcircled{LETTER}: Text symbols. (line 12110)
-* \textcompwordmark: Text symbols. (line 12113)
-* \textcopyright: Text symbols. (line 12027)
-* \textdagger: Text symbols. (line 12122)
-* \textdaggerdbl: Text symbols. (line 12125)
-* \textdollar (or \$): Text symbols. (line 12128)
-* \textellipsis: Text symbols. (line 12051)
-* \textemdash (or ---): Text symbols. (line 12131)
-* \textendash (or --): Text symbols. (line 12136)
-* \texteuro: Text symbols. (line 12139)
-* \textexclamdown (or !`): Text symbols. (line 12145)
-* \textfloatsep: Floats. (line 2019)
-* \textfloatsep <1>: Floats. (line 2020)
-* \textfraction: Floats. (line 1998)
-* \textfraction <1>: Floats. (line 1999)
-* \textgreater: Text symbols. (line 12148)
+ (line 12097)
+* \textbackslash <1>: Text symbols. (line 12240)
+* \textbar: Text symbols. (line 12243)
+* \textbardbl: Text symbols. (line 12246)
+* \textbf: Font styles. (line 1233)
+* \textbigcircle: Text symbols. (line 12249)
+* \textbraceleft: Text symbols. (line 12252)
+* \textbraceright: Text symbols. (line 12255)
+* \textbullet: Text symbols. (line 12258)
+* \textcapitalcompwordmark: Text symbols. (line 12265)
+* \textcircled{LETTER}: Text symbols. (line 12261)
+* \textcompwordmark: Text symbols. (line 12264)
+* \textcopyright: Text symbols. (line 12178)
+* \textdagger: Text symbols. (line 12273)
+* \textdaggerdbl: Text symbols. (line 12276)
+* \textdollar (or \$): Text symbols. (line 12279)
+* \textellipsis: Text symbols. (line 12202)
+* \textemdash (or ---): Text symbols. (line 12282)
+* \textendash (or --): Text symbols. (line 12287)
+* \texteuro: Text symbols. (line 12290)
+* \textexclamdown (or !`): Text symbols. (line 12296)
+* \textfloatsep: Floats. (line 1923)
+* \textfloatsep <1>: Floats. (line 1924)
+* \textfraction: Floats. (line 1902)
+* \textfraction <1>: Floats. (line 1903)
+* \textgreater: Text symbols. (line 12299)
* \textheight: Page layout parameters.
- (line 1854)
+ (line 1758)
* \textheight <1>: Page layout parameters.
- (line 1855)
-* \textit: Font styles. (line 1323)
-* \textleftarrow: Text symbols. (line 12154)
-* \textless: Text symbols. (line 12151)
-* \textmd: Font styles. (line 1326)
-* \textnormal: Font styles. (line 1347)
-* \textordfeminine: Text symbols. (line 12157)
-* \textordmasculine: Text symbols. (line 12158)
-* \textparagraph: Text symbols. (line 12059)
-* \textperiodcentered: Text symbols. (line 12161)
-* \textquestiondown (or ?`): Text symbols. (line 12164)
-* \textquotedblleft (or ``): Text symbols. (line 12167)
-* \textquotedblright (or ''): Text symbols. (line 12170)
-* \textquoteleft (or `): Text symbols. (line 12173)
-* \textquoteright (or '): Text symbols. (line 12176)
-* \textquotesingle: Text symbols. (line 12179)
-* \textquotestraightbase: Text symbols. (line 12182)
-* \textquotestraightdblbase: Text symbols. (line 12183)
-* \textregistered: Text symbols. (line 12186)
-* \textrightarrow: Text symbols. (line 12189)
-* \textrm: Font styles. (line 1320)
-* \textsc: Font styles. (line 1341)
-* \textsection: Text symbols. (line 12074)
-* \textsf: Font styles. (line 1338)
-* \textsl: Font styles. (line 1335)
-* \textsterling: Text symbols. (line 12063)
-* \textthreequartersemdash: Text symbols. (line 12192)
-* \texttrademark: Text symbols. (line 12195)
-* \texttt: Font styles. (line 1344)
-* \texttwelveudash: Text symbols. (line 12198)
-* \textunderscore: Text symbols. (line 12201)
-* \textup: Font styles. (line 1332)
-* \textvisiblespace: Text symbols. (line 12204)
+ (line 1759)
+* \textit: Font styles. (line 1227)
+* \textleftarrow: Text symbols. (line 12305)
+* \textless: Text symbols. (line 12302)
+* \textmd: Font styles. (line 1230)
+* \textnormal: Font styles. (line 1251)
+* \textordfeminine: Text symbols. (line 12308)
+* \textordmasculine: Text symbols. (line 12309)
+* \textparagraph: Text symbols. (line 12210)
+* \textperiodcentered: Text symbols. (line 12312)
+* \textquestiondown (or ?`): Text symbols. (line 12315)
+* \textquotedblleft (or ``): Text symbols. (line 12318)
+* \textquotedblright (or ''): Text symbols. (line 12321)
+* \textquoteleft (or `): Text symbols. (line 12324)
+* \textquoteright (or '): Text symbols. (line 12327)
+* \textquotesingle: Text symbols. (line 12330)
+* \textquotestraightbase: Text symbols. (line 12333)
+* \textquotestraightdblbase: Text symbols. (line 12334)
+* \textregistered: Text symbols. (line 12337)
+* \textrightarrow: Text symbols. (line 12340)
+* \textrm: Font styles. (line 1224)
+* \textsc: Font styles. (line 1245)
+* \textsection: Text symbols. (line 12225)
+* \textsf: Font styles. (line 1242)
+* \textsl: Font styles. (line 1239)
+* \textsterling: Text symbols. (line 12214)
+* \textthreequartersemdash: Text symbols. (line 12343)
+* \texttrademark: Text symbols. (line 12346)
+* \texttt: Font styles. (line 1248)
+* \texttwelveudash: Text symbols. (line 12349)
+* \textunderscore: Text symbols. (line 12352)
+* \textup: Font styles. (line 1236)
+* \textvisiblespace: Text symbols. (line 12355)
* \textwidth: Page layout parameters.
- (line 1862)
+ (line 1766)
* \textwidth <1>: Page layout parameters.
- (line 1863)
+ (line 1767)
* \th (th): Additional Latin letters.
- (line 12348)
+ (line 12499)
* \TH (TH): Additional Latin letters.
- (line 12348)
-* \thanks{TEXT}: \maketitle. (line 9580)
-* \theta: Math symbols. (line 8728)
-* \thicklines: \thicklines. (line 4528)
+ (line 12499)
+* \thanks{TEXT}: \maketitle. (line 9731)
+* \theta: Math symbols. (line 8767)
+* \thicklines: \thicklines. (line 4431)
* \thickspace: Spacing in math mode.
- (line 9289)
-* \thinlines: \thinlines. (line 4520)
+ (line 9328)
+* \thinlines: \thinlines. (line 4423)
* \thinspace: Spacing in math mode.
- (line 9298)
+ (line 9337)
* \thinspace <1>: \thinspace & \negthinspace.
- (line 10150)
-* \thispagestyle: \thispagestyle. (line 9744)
-* \tilde: Math accents. (line 9209)
-* \times: Math symbols. (line 8732)
-* \tiny: Font sizes. (line 1441)
-* \title{TEXT}: \maketitle. (line 9587)
-* \to: Math symbols. (line 8736)
-* \today: \today. (line 12390)
-* \top: Math symbols. (line 8740)
-* \topfraction: Floats. (line 2003)
-* \topfraction <1>: Floats. (line 2004)
+ (line 10300)
+* \thispagestyle: \thispagestyle. (line 9894)
+* \tilde: Math accents. (line 9248)
+* \times: Math symbols. (line 8771)
+* \tiny: Font sizes. (line 1345)
+* \title{TEXT}: \maketitle. (line 9738)
+* \to: Math symbols. (line 8775)
+* \today: \today. (line 12541)
+* \top: Math symbols. (line 8779)
+* \topfraction: Floats. (line 1907)
+* \topfraction <1>: Floats. (line 1908)
* \topmargin: Page layout parameters.
- (line 1887)
-* \topsep: list. (line 3882)
+ (line 1791)
+* \topsep: list. (line 3786)
* \topskip: Page layout parameters.
- (line 1894)
+ (line 1798)
* \topskip <1>: Page layout parameters.
- (line 1895)
-* \triangle: Math symbols. (line 8745)
-* \triangleleft: Math symbols. (line 8748)
-* \triangleright: Math symbols. (line 8754)
-* \tt: Font styles. (line 1385)
-* \ttfamily: Font styles. (line 1344)
-* \twocolumn: \twocolumn. (line 1630)
-* \typein: \typein. (line 13645)
-* \typeout: \typeout. (line 13690)
-* \u (breve accent): Accents. (line 12289)
+ (line 1799)
+* \triangle: Math symbols. (line 8784)
+* \triangleleft: Math symbols. (line 8787)
+* \triangleright: Math symbols. (line 8793)
+* \tt: Font styles. (line 1289)
+* \ttfamily: Font styles. (line 1248)
+* \twocolumn: \twocolumn. (line 1534)
+* \typein: \typein. (line 13794)
+* \typeout: \typeout. (line 13839)
+* \u (breve accent): Accents. (line 12440)
* \unboldmath: \boldmath & \unboldmath.
- (line 8967)
+ (line 9006)
* \unboldmath <1>: \boldmath & \unboldmath.
- (line 8975)
-* \underbar: Accents. (line 12255)
+ (line 9014)
+* \underbar: Accents. (line 12406)
* \underbrace{MATH}: Over- and Underlining.
- (line 9247)
+ (line 9286)
* \underline{TEXT}: Over- and Underlining.
- (line 9230)
-* \unitlength: picture. (line 4259)
-* \unlhd: Math symbols. (line 8760)
-* \unrhd: Math symbols. (line 8767)
-* \Uparrow: Math symbols. (line 8774)
-* \uparrow: Math symbols. (line 8778)
-* \Updownarrow: Math symbols. (line 8782)
-* \updownarrow: Math symbols. (line 8787)
-* \upharpoonright: Math symbols. (line 8792)
-* \uplus: Math symbols. (line 8797)
-* \upshape: Font styles. (line 1332)
-* \Upsilon: Math symbols. (line 8804)
-* \upsilon: Math symbols. (line 8807)
-* \usebox: \usebox. (line 10915)
-* \usecounter: \usecounter. (line 7222)
+ (line 9269)
+* \unitlength: picture. (line 4162)
+* \unlhd: Math symbols. (line 8799)
+* \unrhd: Math symbols. (line 8806)
+* \Uparrow: Math symbols. (line 8813)
+* \uparrow: Math symbols. (line 8817)
+* \Updownarrow: Math symbols. (line 8821)
+* \updownarrow: Math symbols. (line 8826)
+* \upharpoonright: Math symbols. (line 8831)
+* \uplus: Math symbols. (line 8836)
+* \upshape: Font styles. (line 1236)
+* \Upsilon: Math symbols. (line 8843)
+* \upsilon: Math symbols. (line 8846)
+* \usebox: \usebox. (line 11065)
+* \usecounter: \usecounter. (line 7239)
* \usefont: Low-level font commands.
- (line 1604)
+ (line 1508)
* \usepackage: Additional packages.
- (line 862)
-* \v (breve accent): Accents. (line 12293)
-* \value: \value. (line 7248)
-* \vanothing: Math symbols. (line 8815)
-* \varepsilon: Math symbols. (line 8810)
-* \varphi: Math symbols. (line 8820)
-* \varpi: Math symbols. (line 8824)
-* \varrho: Math symbols. (line 8828)
-* \varsigma: Math symbols. (line 8832)
-* \vartheta: Math symbols. (line 8836)
-* \vdash: Math symbols. (line 8840)
-* \vdots: Dots. (line 9035)
-* \vec: Math accents. (line 9212)
-* \vector: \vector. (line 4633)
-* \vee: Math symbols. (line 8844)
-* \verb: \verb. (line 5678)
-* \Vert: Math symbols. (line 8849)
-* \vert: Math symbols. (line 8865)
-* \vfill: \vfill. (line 10470)
-* \vline: \vline. (line 5271)
-* \vspace: \vspace. (line 10419)
-* \wedge: Math symbols. (line 8883)
-* \widehat: Math accents. (line 9215)
-* \widetilde: Math accents. (line 9218)
-* \wp: Math symbols. (line 8887)
-* \wr: Math symbols. (line 8890)
-* \Xi: Math symbols. (line 8893)
-* \xi: Math symbols. (line 8896)
+ (line 763)
+* \v (breve accent): Accents. (line 12444)
+* \value: \value. (line 7265)
+* \vanothing: Math symbols. (line 8854)
+* \varepsilon: Math symbols. (line 8849)
+* \varphi: Math symbols. (line 8859)
+* \varpi: Math symbols. (line 8863)
+* \varrho: Math symbols. (line 8867)
+* \varsigma: Math symbols. (line 8871)
+* \vartheta: Math symbols. (line 8875)
+* \vdash: Math symbols. (line 8879)
+* \vdots: Dots. (line 9074)
+* \vec: Math accents. (line 9251)
+* \vector: \vector. (line 4536)
+* \vee: Math symbols. (line 8883)
+* \verb: \verb. (line 5582)
+* \Vert: Math symbols. (line 8888)
+* \vert: Math symbols. (line 8904)
+* \vfill: \vfill. (line 10620)
+* \vline: \vline. (line 5173)
+* \vspace: \vspace. (line 10569)
+* \wedge: Math symbols. (line 8922)
+* \widehat: Math accents. (line 9254)
+* \widetilde: Math accents. (line 9257)
+* \wp: Math symbols. (line 8926)
+* \wr: Math symbols. (line 8929)
+* \Xi: Math symbols. (line 8932)
+* \xi: Math symbols. (line 8935)
* \year: \day & \month & \year.
- (line 7349)
-* \zeta: Math symbols. (line 8899)
-* \\ (for center): center. (line 3050)
-* \\ (for eqnarray): eqnarray. (line 3358)
-* \\ (for flushright): flushright. (line 3587)
-* \\ (for \shortstack objects): \shortstack. (line 4617)
-* \\ (tabbing): tabbing. (line 4862)
-* \\ for flushleft: flushleft. (line 3528)
-* \\ for letters: Letters. (line 13388)
-* \\ for tabular: tabular. (line 5040)
-* \\ for verse: verse. (line 5740)
-* \\ for \author: \maketitle. (line 9567)
-* \\ for \title: \maketitle. (line 9588)
-* \\ force line break: \\. (line 5778)
-* \\* (for eqnarray): eqnarray. (line 3366)
+ (line 7366)
+* \zeta: Math symbols. (line 8938)
+* \\ (for center): center. (line 2954)
+* \\ (for eqnarray): eqnarray. (line 3262)
+* \\ (for flushright): flushright. (line 3491)
+* \\ (for \shortstack objects): \shortstack. (line 4520)
+* \\ (tabbing): tabbing. (line 4765)
+* \\ for flushleft: flushleft. (line 3432)
+* \\ for letters: Letters. (line 13537)
+* \\ for tabular: tabular. (line 4943)
+* \\ for verse: verse. (line 5644)
+* \\ for \author: \maketitle. (line 9718)
+* \\ for \title: \maketitle. (line 9739)
+* \\ force line break: \\. (line 5682)
+* \\* (for eqnarray): eqnarray. (line 3270)
* \^: Reserved characters.
- (line 11946)
-* \^ (circumflex accent): Accents. (line 12242)
+ (line 12097)
+* \^ (circumflex accent): Accents. (line 12393)
* \_: Reserved characters.
- (line 11939)
-* \` (grave accent): Accents. (line 12246)
-* \` (tabbing): tabbing. (line 4889)
+ (line 12090)
+* \` (grave accent): Accents. (line 12397)
+* \` (tabbing): tabbing. (line 4792)
* \{: Reserved characters.
- (line 11939)
-* \|: Math symbols. (line 8013)
+ (line 12090)
+* \|: Math symbols. (line 8052)
* \}: Reserved characters.
- (line 11939)
+ (line 12090)
* \~: Reserved characters.
- (line 11946)
-* \~ (tilde accent): Accents. (line 12250)
+ (line 12097)
+* \~ (tilde accent): Accents. (line 12401)
* ^: Subscripts & superscripts.
- (line 7938)
+ (line 7977)
* _: Subscripts & superscripts.
- (line 7938)
-* 'see' and 'see also' index entries: \index. (line 12970)
+ (line 7977)
+* 'see' and 'see also' index entries: \index. (line 13121)
* {...} for required arguments: LaTeX command syntax.
- (line 520)
-* ~: ~. (line 10094)
+ (line 529)
+* ~: ~. (line 10244)
* a4paper option: Document class options.
- (line 776)
+ (line 677)
* a5paper option: Document class options.
- (line 776)
-* abstract environment: abstract. (line 2915)
-* abstracts: abstract. (line 2915)
-* accents: Accents. (line 12210)
-* accents, mathematical: Math accents. (line 9178)
+ (line 677)
+* abstract environment: abstract. (line 2819)
+* abstracts: abstract. (line 2819)
+* accents: Accents. (line 12361)
+* accents, mathematical: Math accents. (line 9217)
* accessing any character of a font: Symbols by font position.
- (line 12009)
-* acronyms, list of: Glossaries. (line 13208)
-* acute accent: Accents. (line 12231)
-* acute accent, math: Math accents. (line 9183)
+ (line 12160)
+* acronyms, list of: Glossaries. (line 13357)
+* acute accent: Accents. (line 12382)
+* acute accent, math: Math accents. (line 9222)
* additional packages, loading: Additional packages.
- (line 862)
+ (line 763)
* ae ligature: Additional Latin letters.
- (line 12308)
-* algorithm2e package: tabbing. (line 4942)
-* align environment, from amsmath: eqnarray. (line 3335)
-* aligning equations: eqnarray. (line 3335)
-* alignment via tabbing: tabbing. (line 4802)
-* amsfonts package: Math formulas. (line 7927)
-* amsmath package: array. (line 3010)
-* amsmath package <1>: array. (line 3021)
-* amsmath package <2>: displaymath. (line 3202)
-* amsmath package <3>: equation. (line 3405)
-* amsmath package <4>: theorem. (line 5592)
-* amsmath package <5>: Math formulas. (line 7927)
-* amsmath package <6>: Dots. (line 9038)
-* amsmath package <7>: Math functions. (line 9167)
-* amsmath package <8>: Colon character & \colon.
- (line 9344)
+ (line 12459)
+* algorithm2e package: tabbing. (line 4845)
+* align environment, from amsmath: eqnarray. (line 3239)
+* aligning equations: eqnarray. (line 3239)
+* alignment via tabbing: tabbing. (line 4705)
+* amsfonts package: Math formulas. (line 7966)
+* amsmath package: array. (line 2914)
+* amsmath package <1>: array. (line 2925)
+* amsmath package <2>: displaymath. (line 3106)
+* amsmath package <3>: equation. (line 3309)
+* amsmath package <4>: theorem. (line 5496)
+* amsmath package <5>: Math formulas. (line 7966)
+* amsmath package <6>: Dots. (line 9077)
+* amsmath package <7>: Math functions. (line 9206)
+* amsmath package <8>: \phantom & \vphantom & \hphantom.
+ (line 9467)
* amsmath package <9>: Colon character & \colon.
- (line 9348)
-* amsmath package, replacing eqnarray: eqnarray. (line 3335)
-* amsthm package: theorem. (line 5592)
-* amsthm package <1>: \rule. (line 12367)
-* appendices: \appendix. (line 2487)
-* appendix: \appendix. (line 2487)
-* appendix package: \appendix. (line 2510)
+ (line 9495)
+* amsmath package <10>: Colon character & \colon.
+ (line 9499)
+* amsmath package, replacing eqnarray: eqnarray. (line 3239)
+* amsthm package: theorem. (line 5496)
+* amsthm package <1>: \rule. (line 12518)
+* appendices: \appendix. (line 2391)
+* appendix: \appendix. (line 2391)
+* appendix package: \appendix. (line 2414)
* aring: Additional Latin letters.
- (line 12304)
-* array (package) package: array. (line 3032)
-* array environment: array. (line 2961)
-* arrays, math: array. (line 2961)
-* arrow, left, in text: Text symbols. (line 12155)
-* arrow, right, in text: Text symbols. (line 12190)
-* article class: Document classes. (line 734)
-* ascender height: Text symbols. (line 12116)
-* ASCII circumflex, in text: Text symbols. (line 12081)
-* ASCII tilde, in text: Text symbols. (line 12084)
-* asterisk, centered, in text: Text symbols. (line 12087)
-* Asymptote package: \line. (line 4494)
-* Asymptote package <1>: \strut. (line 10390)
-* Asymptote package <2>: \mbox & \makebox. (line 10622)
-* at clause, in font definitions: \newfont. (line 6992)
-* at-sign: \@. (line 9977)
-* author, for titlepage: \maketitle. (line 9567)
-* auxiliary file: Output files. (line 449)
+ (line 12455)
+* array (package) package: array. (line 2936)
+* array environment: array. (line 2865)
+* arrays, math: array. (line 2865)
+* arrow, left, in text: Text symbols. (line 12306)
+* arrow, right, in text: Text symbols. (line 12341)
+* article class: Document classes. (line 635)
+* ascender height: Text symbols. (line 12267)
+* ASCII circumflex, in text: Text symbols. (line 12232)
+* ASCII tilde, in text: Text symbols. (line 12235)
+* asterisk, centered, in text: Text symbols. (line 12238)
+* Asymptote package: \line. (line 4397)
+* Asymptote package <1>: \strut. (line 10540)
+* Asymptote package <2>: \mbox & \makebox. (line 10772)
+* at clause, in font definitions: \newfont. (line 7009)
+* at-sign: \@. (line 10127)
+* author, for titlepage: \maketitle. (line 9718)
+* auxiliary file: Output files. (line 458)
* b5paper option: Document class options.
- (line 776)
-* babel package: \chapter. (line 2250)
-* babel package <1>: thebibliography. (line 5384)
-* babel package <2>: Accents. (line 12210)
-* babel package <3>: \today. (line 12397)
+ (line 677)
+* babel package: \chapter. (line 2154)
+* babel package <1>: thebibliography. (line 5286)
+* babel package <2>: Accents. (line 12361)
+* babel package <3>: \today. (line 12548)
* babel package <4>: Table of contents etc..
- (line 12724)
-* babel package <5>: \index. (line 12970)
-* background, colored: Colored pages. (line 11162)
-* backslash, in text: Text symbols. (line 12090)
-* bar, double vertical, in text: Text symbols. (line 12096)
-* bar, vertical, in text: Text symbols. (line 12093)
-* bar-over accent: Accents. (line 12238)
-* bar-over accent, math: Math accents. (line 9186)
-* bar-under accent: Accents. (line 12253)
-* basics of LaTeX: Overview. (line 364)
-* beamer template and class: beamer template. (line 13938)
-* beginning of document hook: \AtBeginDocument. (line 3236)
+ (line 12875)
+* babel package <5>: \index. (line 13121)
+* background, colored: Colored pages. (line 11312)
+* backslash, in text: Text symbols. (line 12241)
+* bar, double vertical, in text: Text symbols. (line 12247)
+* bar, vertical, in text: Text symbols. (line 12244)
+* bar-over accent: Accents. (line 12389)
+* bar-over accent, math: Math accents. (line 9225)
+* bar-under accent: Accents. (line 12404)
+* basics of LaTeX: Overview. (line 373)
+* beamer template and class: beamer template. (line 14087)
+* beginning of document hook: \AtBeginDocument. (line 3140)
* bibliography format, open: Document class options.
- (line 824)
-* bibliography, creating (automatically): Using BibTeX. (line 5512)
-* bibliography, creating (manually): thebibliography. (line 5337)
-* bibTeX, using: Using BibTeX. (line 5512)
-* big circle symbols, in text: Text symbols. (line 12099)
-* Big point: Units of length. (line 7476)
+ (line 725)
+* bibliography, creating (automatically): Using BibTeX. (line 5416)
+* bibliography, creating (manually): thebibliography. (line 5239)
+* bibTeX, using: Using BibTeX. (line 5416)
+* big circle symbols, in text: Text symbols. (line 12250)
+* Big point: Units of length. (line 7499)
* bigfoot package: Footnotes of footnotes.
- (line 6469)
+ (line 6373)
* black boxes, omitting: Document class options.
- (line 810)
-* blackboard bold: Blackboard bold. (line 8923)
+ (line 711)
+* blackboard bold: Blackboard bold. (line 8962)
* bm package: \boldmath & \unboldmath.
- (line 8993)
-* bold font: Font styles. (line 1365)
-* bold math: Font styles. (line 1418)
-* bold typewriter, avoiding: description. (line 3160)
+ (line 9032)
+* bold font: Font styles. (line 1269)
+* bold math: Font styles. (line 1322)
+* bold typewriter, avoiding: description. (line 3064)
* boldface mathematics: \boldmath & \unboldmath.
- (line 8967)
-* book class: Document classes. (line 734)
+ (line 9006)
+* book class: Document classes. (line 635)
* book, back matter: \frontmatter & \mainmatter & \backmatter.
- (line 2520)
+ (line 2424)
* book, end matter: \frontmatter & \mainmatter & \backmatter.
- (line 2520)
+ (line 2424)
* book, front matter: \frontmatter & \mainmatter & \backmatter.
- (line 2520)
+ (line 2424)
* book, main matter: \frontmatter & \mainmatter & \backmatter.
- (line 2520)
-* bottomnumber: Floats. (line 2026)
-* bottomnumber <1>: Floats. (line 2027)
-* box: \mbox & \makebox. (line 10555)
-* box, allocating new: \newsavebox. (line 6706)
-* box, colored: Colored boxes. (line 11125)
-* box, save: \sbox & \savebox. (line 10809)
-* box, use saved box: \usebox. (line 10915)
-* boxes: Boxes. (line 10546)
-* bp: Units of length. (line 7476)
-* brace, left, in text: Text symbols. (line 12102)
-* brace, right, in text: Text symbols. (line 12105)
-* breaking lines: Line breaking. (line 5761)
-* breaking pages: Page breaking. (line 6052)
-* breaks, multiplication discretionary: \*. (line 9355)
-* breve accent: Accents. (line 12289)
-* breve accent, math: Math accents. (line 9189)
+ (line 2424)
+* bottomnumber: Floats. (line 1930)
+* bottomnumber <1>: Floats. (line 1931)
+* box: \mbox & \makebox. (line 10705)
+* box, allocating new: \newsavebox. (line 6722)
+* box, colored: Colored boxes. (line 11275)
+* box, save: \sbox & \savebox. (line 10959)
+* box, use saved box: \usebox. (line 11065)
+* boxes: Boxes. (line 10696)
+* bp: Units of length. (line 7499)
+* brace, left, in text: Text symbols. (line 12253)
+* brace, right, in text: Text symbols. (line 12256)
+* breaking lines: Line breaking. (line 5665)
+* breaking pages: Page breaking. (line 5956)
+* breaks, multiplication discretionary: \*. (line 9506)
+* breve accent: Accents. (line 12440)
+* breve accent, math: Math accents. (line 9228)
* bug reporting: About this document.
- (line 335)
-* bullet lists: itemize. (line 3624)
-* bullet symbol: Math symbols. (line 8108)
-* bullet, in text: Text symbols. (line 12108)
-* bulleted lists: itemize. (line 3624)
-* calligraphic fonts: Calligraphic. (line 8949)
-* calligraphic letters for math: Font styles. (line 1368)
-* cap height: Text symbols. (line 12116)
-* caron accent: Accents. (line 12293)
+ (line 344)
+* bullet lists: itemize. (line 3528)
+* bullet symbol: Math symbols. (line 8147)
+* bullet, in text: Text symbols. (line 12259)
+* bulleted lists: itemize. (line 3528)
+* calligraphic fonts: Calligraphic. (line 8988)
+* calligraphic letters for math: Font styles. (line 1272)
+* cap height: Text symbols. (line 12267)
+* caron accent: Accents. (line 12444)
* catcode: \makeatletter & \makeatother.
- (line 606)
+ (line 6560)
* category code, character: \makeatletter & \makeatother.
- (line 606)
-* cc: Units of length. (line 7489)
-* cc list, in letters: \cc. (line 13450)
-* cedilla accent: Accents. (line 12263)
-* center environment: center. (line 3040)
-* centered asterisk, in text: Text symbols. (line 12087)
+ (line 6560)
+* cc: Units of length. (line 7512)
+* cc list, in letters: \cc. (line 13599)
+* cedilla accent: Accents. (line 12414)
+* center environment: center. (line 2944)
+* centered asterisk, in text: Text symbols. (line 12238)
* centered equations: Document class options.
- (line 814)
-* centered period, in text: Text symbols. (line 12162)
-* centering text, declaration for: \centering. (line 3088)
-* centering text, environment for: center. (line 3040)
-* Centimeter: Units of length. (line 7480)
-* chapter: Sectioning. (line 2052)
-* chapter <1>: \chapter. (line 2185)
+ (line 715)
+* centered period, in text: Text symbols. (line 12313)
+* centering text, declaration for: \centering. (line 2992)
+* centering text, environment for: center. (line 2944)
+* Centimeter: Units of length. (line 7503)
+* chapter: Sectioning. (line 1956)
+* chapter <1>: \chapter. (line 2089)
* character category code: \makeatletter & \makeatother.
- (line 606)
-* characters, accented: Accents. (line 12210)
+ (line 6560)
+* character, invisible: \phantom & \vphantom & \hphantom.
+ (line 9429)
+* characters, accented: Accents. (line 12361)
* characters, case of: Upper and lower case.
- (line 11964)
+ (line 12115)
* characters, non-English: Additional Latin letters.
- (line 12298)
+ (line 12449)
* characters, reserved: Reserved characters.
- (line 11932)
+ (line 12083)
* characters, special: Reserved characters.
- (line 11932)
-* check accent: Accents. (line 12293)
-* check accent, math: Math accents. (line 9192)
-* Cicero: Units of length. (line 7489)
-* circle symbol, big, in text: Text symbols. (line 12099)
-* circled letter, in text: Text symbols. (line 12111)
-* circumflex accent: Accents. (line 12242)
-* circumflex accent, math: Math accents. (line 9204)
-* circumflex, ASCII, in text: Text symbols. (line 12081)
-* citation key: \bibitem. (line 5399)
+ (line 12083)
+* check accent: Accents. (line 12444)
+* check accent, math: Math accents. (line 9231)
+* Cicero: Units of length. (line 7512)
+* circle symbol, big, in text: Text symbols. (line 12250)
+* circled letter, in text: Text symbols. (line 12262)
+* circumflex accent: Accents. (line 12393)
+* circumflex accent, math: Math accents. (line 9243)
+* circumflex, ASCII, in text: Text symbols. (line 12232)
+* citation key: \bibitem. (line 5301)
* class and package commands: Class and package commands.
- (line 945)
+ (line 849)
* class and package difference: Class and package construction.
- (line 887)
+ (line 788)
* class and package structure: Class and package structure.
- (line 901)
+ (line 802)
* class file example: Class and package structure.
- (line 931)
+ (line 835)
* class file layout: Class and package structure.
- (line 901)
+ (line 802)
* class options: Document class options.
- (line 763)
+ (line 664)
* class options <1>: Class and package structure.
- (line 901)
+ (line 802)
* class options <2>: Class and package commands.
- (line 1005)
-* classes of documents: Document classes. (line 729)
-* cleveref package: Cross references. (line 2779)
-* cleveref package <1>: \ref. (line 2892)
-* cleveref package <2>: \footnotemark. (line 6350)
+ (line 909)
+* classes of documents: Document classes. (line 630)
+* cleveref package: Cross references. (line 2683)
+* cleveref package <1>: \ref. (line 2796)
+* cleveref package <2>: \footnotemark. (line 6254)
* clock option to slides class: Document class options.
- (line 856)
-* closing letters: \closing. (line 13466)
-* closing quote: Text symbols. (line 12071)
-* cm: Units of length. (line 7480)
-* code, typesetting: verbatim. (line 5639)
+ (line 757)
+* closing letters: \closing. (line 13615)
+* closing quote: Text symbols. (line 12222)
+* cm: Units of length. (line 7503)
+* code, typesetting: verbatim. (line 5543)
* colon character: Colon character & \colon.
- (line 9335)
-* color: Color. (line 10927)
-* color <1>: Define colors. (line 11032)
-* color <2>: Colored text. (line 11054)
-* color <3>: Colored boxes. (line 11125)
-* color <4>: Colored pages. (line 11162)
-* color models: Color models. (line 10980)
+ (line 9486)
+* color: Color. (line 11077)
+* color <1>: Define colors. (line 11182)
+* color <2>: Colored text. (line 11204)
+* color <3>: Colored boxes. (line 11275)
+* color <4>: Colored pages. (line 11312)
+* color models: Color models. (line 11130)
* color package commands: Commands for color.
- (line 11027)
+ (line 11177)
* color package options: Color package options.
- (line 10942)
-* color, define: Define colors. (line 11032)
-* colored boxes: Colored boxes. (line 11125)
-* colored page: Colored pages. (line 11162)
-* colored text: Colored text. (line 11054)
-* command line: Command line. (line 13723)
+ (line 11092)
+* color, define: Define colors. (line 11182)
+* colored boxes: Colored boxes. (line 11275)
+* colored page: Colored pages. (line 11312)
+* colored text: Colored text. (line 11204)
+* command line: Command line. (line 13872)
* command syntax: LaTeX command syntax.
- (line 520)
+ (line 529)
* commands, class and package: Class and package commands.
- (line 945)
+ (line 849)
* commands, defining new ones: \newcommand & \renewcommand.
- (line 6490)
-* commands, defining new ones <1>: \providecommand. (line 6615)
+ (line 6394)
+* commands, defining new ones <1>: \providecommand. (line 6519)
* commands, document class: Class and package construction.
- (line 878)
+ (line 779)
* commands, graphics package: Commands for graphics.
- (line 11471)
+ (line 11621)
* commands, ignore spaces: \ignorespaces & \ignorespacesafterend.
- (line 7063)
+ (line 7080)
* commands, redefining: \newcommand & \renewcommand.
- (line 6490)
-* commands, star-variants: \@ifstar. (line 642)
-* composite word mark, in text: Text symbols. (line 12116)
-* computer programs, typesetting: verbatim. (line 5639)
+ (line 6394)
+* commands, star-variants: \@ifstar. (line 6598)
+* composite word mark, in text: Text symbols. (line 12267)
+* computer programs, typesetting: verbatim. (line 5543)
* configuration, graphics package: Graphics package configuration.
- (line 11284)
-* contents file: Output files. (line 459)
-* copyright symbol: Text symbols. (line 12028)
-* counters, a list of: Counters. (line 7138)
-* counters, defining new: \newcounter. (line 6643)
-* counters, getting value of: \value. (line 7248)
+ (line 11434)
+* contents file: Output files. (line 468)
+* copyright symbol: Text symbols. (line 12179)
+* counters, a list of: Counters. (line 7155)
+* counters, defining new: \newcounter. (line 6659)
+* counters, getting value of: \value. (line 7265)
* counters, printing: \alph \Alph \arabic \roman \Roman \fnsymbol.
- (line 7166)
-* counters, setting: \setcounter. (line 7281)
-* cprotect package: verbatim. (line 5659)
-* cprotect package <1>: \verb. (line 5717)
-* creating pictures: picture. (line 4240)
-* creating tables: table. (line 4951)
-* credit footnote: \maketitle. (line 9581)
-* cross references: Cross references. (line 2747)
-* cross references, resolving: Output files. (line 449)
-* cross referencing with page number: \pageref. (line 2845)
-* cross referencing, symbolic: \ref. (line 2869)
-* CTAN: CTAN. (line 703)
-* currency, dollar: Text symbols. (line 12129)
-* currency, euro: Text symbols. (line 12140)
-* dagger, double, in text: Text symbols. (line 12126)
-* dagger, in text: Text symbols. (line 12031)
-* dagger, in text <1>: Text symbols. (line 12123)
-* DANTE e.V.: CTAN. (line 717)
-* date, for titlepage: \maketitle. (line 9575)
-* date, today's: \today. (line 12390)
-* datetime package: \today. (line 12411)
-* dbltopnumber: Floats. (line 2030)
-* dbltopnumber <1>: Floats. (line 2031)
-* dcolumn package: array. (line 3032)
-* dd: Units of length. (line 7486)
-* define color: Define colors. (line 11032)
+ (line 7183)
+* counters, setting: \setcounter. (line 7298)
+* cprotect package: verbatim. (line 5563)
+* cprotect package <1>: \verb. (line 5621)
+* creating pictures: picture. (line 4143)
+* creating tables: table. (line 4854)
+* credit footnote: \maketitle. (line 9732)
+* cross references: Cross references. (line 2651)
+* cross references, resolving: Output files. (line 458)
+* cross referencing with page number: \pageref. (line 2749)
+* cross referencing, symbolic: \ref. (line 2773)
+* CTAN: CTAN. (line 604)
+* currency, dollar: Text symbols. (line 12280)
+* currency, euro: Text symbols. (line 12291)
+* dagger, double, in text: Text symbols. (line 12277)
+* dagger, in text: Text symbols. (line 12182)
+* dagger, in text <1>: Text symbols. (line 12274)
+* DANTE e.V.: CTAN. (line 618)
+* date, for titlepage: \maketitle. (line 9726)
+* date, today's: \today. (line 12541)
+* datetime package: \today. (line 12562)
+* dbltopnumber: Floats. (line 1934)
+* dbltopnumber <1>: Floats. (line 1935)
+* dcolumn package: array. (line 2936)
+* dd: Units of length. (line 7509)
+* define color: Define colors. (line 11182)
* defining a new command: \newcommand & \renewcommand.
- (line 6490)
-* defining a new command <1>: \providecommand. (line 6615)
+ (line 6394)
+* defining a new command <1>: \providecommand. (line 6519)
* defining new environments: \newenvironment & \renewenvironment.
- (line 6733)
-* defining new fonts: \newfont. (line 6979)
-* defining new theorems: \newtheorem. (line 6867)
-* definitions: Definitions. (line 6485)
-* delimiters, paired: \left & \right. (line 9383)
-* delim_0: makeindex. (line 13140)
-* delim_1: makeindex. (line 13144)
-* delim_2: makeindex. (line 13148)
-* delim_n: makeindex. (line 13152)
-* delim_r: makeindex. (line 13156)
-* description: \newglossaryentry. (line 13296)
-* description environment: description. (line 3130)
-* description lists, creating: description. (line 3130)
-* design size, in font definitions: \newfont. (line 6992)
-* Didot point: Units of length. (line 7486)
-* dieresis accent: Accents. (line 12227)
+ (line 6750)
+* defining new fonts: \newfont. (line 6996)
+* defining new theorems: \newtheorem. (line 6884)
+* definitions: Definitions. (line 6389)
+* delimiters, paired: \left & \right. (line 9534)
+* delim_0: makeindex. (line 13290)
+* delim_1: makeindex. (line 13294)
+* delim_2: makeindex. (line 13298)
+* delim_n: makeindex. (line 13302)
+* delim_r: makeindex. (line 13306)
+* description: \newglossaryentry. (line 13445)
+* description environment: description. (line 3034)
+* description lists, creating: description. (line 3034)
+* design size, in font definitions: \newfont. (line 7009)
+* Didot point: Units of length. (line 7509)
+* dieresis accent: Accents. (line 12378)
* difference between class and package: Class and package construction.
- (line 887)
-* discretionary breaks, multiplication: \*. (line 9355)
-* discretionary hyphenation: \discretionary. (line 5939)
-* display math mode: Modes. (line 9467)
+ (line 788)
+* discretionary breaks, multiplication: \*. (line 9506)
+* discretionary hyphenation: \discretionary. (line 5843)
+* display math mode: Modes. (line 9618)
* displaying quoted text with paragraph indentation: quotation & quote.
- (line 4772)
+ (line 4675)
* displaying quoted text without paragraph indentation: quotation & quote.
- (line 4772)
-* displaymath environment: displaymath. (line 3186)
-* displaymath environment <1>: Math formulas. (line 7847)
+ (line 4675)
+* displaymath environment: displaymath. (line 3090)
+* displaymath environment <1>: Math formulas. (line 7886)
* document class commands: Class and package construction.
- (line 878)
+ (line 779)
* document class options: Document class options.
- (line 763)
+ (line 664)
* document class, defined: Starting and ending.
- (line 401)
-* document classes: Document classes. (line 729)
-* document environment: document. (line 3230)
+ (line 410)
+* document classes: Document classes. (line 630)
+* document environment: document. (line 3134)
* document templates: Document templates.
- (line 13931)
-* dollar sign: Text symbols. (line 12129)
-* dot accent: Accents. (line 12234)
-* dot over accent, math: Math accents. (line 9198)
-* dot-over accent: Accents. (line 12234)
-* dot-under accent: Accents. (line 12267)
-* dotless i: Accents. (line 12221)
-* dotless i, math: Math symbols. (line 8260)
-* dotless j: Accents. (line 12221)
-* dotless j, math: Math symbols. (line 8282)
-* dots: Dots. (line 9007)
-* double angle quotation marks: Text symbols. (line 12046)
-* double dagger, in text: Text symbols. (line 12034)
-* double dagger, in text <1>: Text symbols. (line 12126)
-* double dot accent, math: Math accents. (line 9195)
-* double guillemets: Text symbols. (line 12046)
-* double left quote: Text symbols. (line 12168)
-* double low-9 quotation mark: Text symbols. (line 12068)
-* double quote, straight base: Text symbols. (line 12184)
-* double right quote: Text symbols. (line 12171)
+ (line 14080)
+* dollar sign: Text symbols. (line 12280)
+* dot accent: Accents. (line 12385)
+* dot over accent, math: Math accents. (line 9237)
+* dot-over accent: Accents. (line 12385)
+* dot-under accent: Accents. (line 12418)
+* dotless i: Accents. (line 12372)
+* dotless i, math: Math symbols. (line 8299)
+* dotless j: Accents. (line 12372)
+* dotless j, math: Math symbols. (line 8321)
+* dots: Dots. (line 9046)
+* double angle quotation marks: Text symbols. (line 12197)
+* double dagger, in text: Text symbols. (line 12185)
+* double dagger, in text <1>: Text symbols. (line 12277)
+* double dot accent, math: Math accents. (line 9234)
+* double guillemets: Text symbols. (line 12197)
+* double left quote: Text symbols. (line 12319)
+* double low-9 quotation mark: Text symbols. (line 12219)
+* double quote, straight base: Text symbols. (line 12335)
+* double right quote: Text symbols. (line 12322)
* double spacing: Low-level font commands.
- (line 1583)
-* double vertical bar, in text: Text symbols. (line 12096)
-* doublestruck: Blackboard bold. (line 8923)
+ (line 1487)
+* double vertical bar, in text: Text symbols. (line 12247)
+* doublestruck: Blackboard bold. (line 8962)
* draft option: Document class options.
- (line 806)
-* dvipdfmx command: Output files. (line 426)
-* dvips command: Output files. (line 426)
-* dvitype command: Output files. (line 426)
-* e-dash: Text symbols. (line 12137)
-* e-TeX: TeX engines. (line 475)
-* ellipses: Dots. (line 9007)
-* ellipsis: Text symbols. (line 12052)
-* em: Units of length. (line 7494)
-* em <1>: Units of length. (line 7494)
-* em-dash: Text symbols. (line 12132)
-* em-dash, three-quarters: Text symbols. (line 12193)
-* em-dash, two-thirds: Text symbols. (line 12199)
-* emphasis: Font styles. (line 1349)
-* enclosure list: \encl. (line 13479)
-* end of document hook: \AtEndDocument. (line 3252)
+ (line 707)
+* dvipdfmx command: Output files. (line 435)
+* dvips command: Output files. (line 435)
+* dvitype command: Output files. (line 435)
+* e-dash: Text symbols. (line 12288)
+* e-TeX: TeX engines. (line 484)
+* ellipses: Dots. (line 9046)
+* ellipsis: Text symbols. (line 12203)
+* em: Units of length. (line 7517)
+* em <1>: Units of length. (line 7517)
+* em-dash: Text symbols. (line 12283)
+* em-dash, three-quarters: Text symbols. (line 12344)
+* em-dash, two-thirds: Text symbols. (line 12350)
+* emphasis: Font styles. (line 1253)
+* enclosure list: \encl. (line 13628)
+* end of document hook: \AtEndDocument. (line 3156)
* ending and starting: Starting and ending.
- (line 390)
-* engines, TeX: TeX engines. (line 468)
-* enlarge current page: \enlargethispage. (line 6157)
-* enumerate environment: enumerate. (line 3268)
-* enumitem package: list. (line 3976)
+ (line 399)
+* engines, TeX: TeX engines. (line 477)
+* enlarge current page: \enlargethispage. (line 6061)
+* enumerate environment: enumerate. (line 3172)
+* enumitem package: list. (line 3880)
* environment: Starting and ending.
- (line 409)
-* environment, abstract: abstract. (line 2915)
-* environment, array: array. (line 2961)
-* environment, center: center. (line 3040)
-* environment, description: description. (line 3130)
-* environment, displaymath: displaymath. (line 3186)
-* environment, displaymath <1>: Math formulas. (line 7847)
-* environment, document: document. (line 3230)
-* environment, enumerate: enumerate. (line 3268)
-* environment, eqnarray: eqnarray. (line 3335)
-* environment, equation: equation. (line 3391)
-* environment, equation <1>: Math formulas. (line 7847)
-* environment, figure: figure. (line 3411)
-* environment, filecontents: filecontents. (line 3469)
-* environment, filecontents*: filecontents. (line 3469)
-* environment, flushleft: flushleft. (line 3520)
-* environment, flushright: flushright. (line 3581)
-* environment, itemize: itemize. (line 3624)
-* environment, letter: letter. (line 3707)
-* environment, list: list. (line 3712)
-* environment, math: math. (line 4076)
-* environment, math <1>: Math formulas. (line 7847)
-* environment, minipage: minipage. (line 4088)
-* environment, picture: picture. (line 4240)
-* environment, quotation: quotation & quote. (line 4772)
-* environment, quote: quotation & quote. (line 4772)
-* environment, tabbing: tabbing. (line 4802)
-* environment, table: table. (line 4951)
-* environment, tabular: tabular. (line 5011)
-* environment, thebibliography: thebibliography. (line 5337)
-* environment, theorem: theorem. (line 5570)
-* environment, theorem-like: \newtheorem. (line 6867)
-* environment, titlepage: titlepage. (line 5600)
-* environment, verbatim: verbatim. (line 5639)
-* environment, verse: verse. (line 5725)
-* environments: Environments. (line 2898)
+ (line 418)
+* environment, abstract: abstract. (line 2819)
+* environment, array: array. (line 2865)
+* environment, center: center. (line 2944)
+* environment, description: description. (line 3034)
+* environment, displaymath: displaymath. (line 3090)
+* environment, displaymath <1>: Math formulas. (line 7886)
+* environment, document: document. (line 3134)
+* environment, enumerate: enumerate. (line 3172)
+* environment, eqnarray: eqnarray. (line 3239)
+* environment, equation: equation. (line 3295)
+* environment, equation <1>: Math formulas. (line 7886)
+* environment, figure: figure. (line 3315)
+* environment, filecontents: filecontents. (line 3373)
+* environment, filecontents*: filecontents. (line 3373)
+* environment, flushleft: flushleft. (line 3424)
+* environment, flushright: flushright. (line 3485)
+* environment, itemize: itemize. (line 3528)
+* environment, letter: letter. (line 3611)
+* environment, list: list. (line 3616)
+* environment, math: math. (line 3980)
+* environment, math <1>: Math formulas. (line 7886)
+* environment, minipage: minipage. (line 3992)
+* environment, picture: picture. (line 4143)
+* environment, quotation: quotation & quote. (line 4675)
+* environment, quote: quotation & quote. (line 4675)
+* environment, tabbing: tabbing. (line 4705)
+* environment, table: table. (line 4854)
+* environment, tabular: tabular. (line 4914)
+* environment, thebibliography: thebibliography. (line 5239)
+* environment, theorem: theorem. (line 5474)
+* environment, theorem-like: \newtheorem. (line 6884)
+* environment, titlepage: titlepage. (line 5504)
+* environment, verbatim: verbatim. (line 5543)
+* environment, verse: verse. (line 5629)
+* environments: Environments. (line 2802)
* environments, defining: \newenvironment & \renewenvironment.
- (line 6733)
-* envlab package: \makelabels. (line 13553)
+ (line 6750)
+* envlab package: \makelabels. (line 13702)
* EPS files: Graphics package configuration.
- (line 11284)
-* EPS files <1>: \includegraphics. (line 11477)
-* eqnarray environment: eqnarray. (line 3335)
-* equation environment: equation. (line 3391)
-* equation environment <1>: Math formulas. (line 7847)
-* equation number, cross referencing: \ref. (line 2869)
+ (line 11434)
+* EPS files <1>: \includegraphics. (line 11627)
+* eqnarray environment: eqnarray. (line 3239)
+* equation environment: equation. (line 3295)
+* equation environment <1>: Math formulas. (line 7886)
+* equation number, cross referencing: \ref. (line 2773)
* equation numbers, left vs. right: Document class options.
- (line 820)
-* equation numbers, omitting: eqnarray. (line 3370)
-* equations, aligning: eqnarray. (line 3335)
-* equations, environment for: equation. (line 3391)
+ (line 721)
+* equation numbers, omitting: eqnarray. (line 3274)
+* equations, aligning: eqnarray. (line 3239)
+* equations, environment for: equation. (line 3295)
* equations, flush left vs. centered: Document class options.
- (line 814)
+ (line 715)
* es-zet German letter: Additional Latin letters.
- (line 12344)
-* etex command: TeX engines. (line 475)
+ (line 12495)
+* etex command: TeX engines. (line 484)
* eth, Icelandic letter: Additional Latin letters.
- (line 12312)
+ (line 12463)
* etoolbox package: Class and package commands.
- (line 1049)
-* euro symbol: Text symbols. (line 12140)
-* eurosym package: Text symbols. (line 12140)
-* ex: Units of length. (line 7494)
-* ex <1>: Units of length. (line 7494)
-* exclamation point, upside-down: Text symbols. (line 12146)
+ (line 953)
+* euro symbol: Text symbols. (line 12291)
+* eurosym package: Text symbols. (line 12291)
+* ex: Units of length. (line 7517)
+* ex <1>: Units of length. (line 7517)
+* exclamation point, upside-down: Text symbols. (line 12297)
* executivepaper option: Document class options.
- (line 776)
+ (line 677)
* exponent: Subscripts & superscripts.
- (line 7938)
+ (line 7977)
* extended Latin: Additional Latin letters.
- (line 12298)
-* external files, writing: filecontents. (line 3469)
+ (line 12449)
+* external files, writing: filecontents. (line 3373)
* families, of fonts: Low-level font commands.
- (line 1486)
-* fancyhdr package: Page styles. (line 9524)
-* fancyhdr package <1>: \pagestyle. (line 9667)
-* fancyvrb package: tabbing. (line 4942)
-* fancyvrb package <1>: verbatim. (line 5670)
-* feminine ordinal symbol: Text symbols. (line 12159)
-* figure environment: figure. (line 3411)
-* figure number, cross referencing: \ref. (line 2869)
-* figures, footnotes in: minipage. (line 4190)
-* figures, inserting: figure. (line 3411)
+ (line 1390)
+* fancyhdr package: Page styles. (line 9675)
+* fancyhdr package <1>: \pagestyle. (line 9817)
+* fancyvrb package: tabbing. (line 4845)
+* fancyvrb package <1>: verbatim. (line 5574)
+* feminine ordinal symbol: Text symbols. (line 12310)
+* figure environment: figure. (line 3315)
+* figure number, cross referencing: \ref. (line 2773)
+* figures, footnotes in: minipage. (line 4093)
+* figures, inserting: figure. (line 3315)
* file, root: Splitting the input.
- (line 12425)
-* filecontents environment: filecontents. (line 3469)
-* filecontents* environment: filecontents. (line 3469)
+ (line 12576)
+* filecontents environment: filecontents. (line 3373)
+* filecontents* environment: filecontents. (line 3373)
* final option: Document class options.
- (line 806)
+ (line 707)
* first-latex-doc document: About this document.
- (line 347)
-* fixed-width font: Font styles. (line 1386)
-* flafter package: Floats. (line 1978)
+ (line 356)
+* fixed-width font: Font styles. (line 1290)
+* flafter package: Floats. (line 1882)
* fleqn option: Document class options.
- (line 806)
-* float package: Floats. (line 1948)
-* float page: Floats. (line 1954)
+ (line 707)
+* float package: Floats. (line 1852)
+* float page: Floats. (line 1858)
* flush left equations: Document class options.
- (line 814)
+ (line 715)
* flushing floats and starting a page: \clearpage & \cleardoublepage.
- (line 6083)
-* flushleft environment: flushleft. (line 3520)
-* flushright environment: flushright. (line 3581)
+ (line 5987)
+* flushleft environment: flushleft. (line 3424)
+* flushright environment: flushright. (line 3485)
* font catalogue: Low-level font commands.
- (line 1486)
+ (line 1390)
* font commands, low-level: Low-level font commands.
- (line 1471)
+ (line 1375)
* font size: Low-level font commands.
- (line 1566)
-* font sizes: Font sizes. (line 1436)
-* font styles: Font styles. (line 1296)
+ (line 1470)
+* font sizes: Font sizes. (line 1340)
+* font styles: Font styles. (line 1200)
* font symbols, by number: Symbols by font position.
- (line 12009)
-* fonts: Fonts. (line 1290)
-* fonts, new commands for: \newfont. (line 6979)
-* fonts, script: Calligraphic. (line 8949)
-* footer style: \pagestyle. (line 9660)
+ (line 12160)
+* fonts: Fonts. (line 1194)
+* fonts, new commands for: \newfont. (line 6996)
+* fonts, script: Calligraphic. (line 8988)
+* footer style: \pagestyle. (line 9810)
* footer, parameters for: Page layout parameters.
- (line 1769)
-* footnote number, cross referencing: \ref. (line 2869)
-* footnote parameters: \footnote. (line 6270)
+ (line 1673)
+* footnote number, cross referencing: \ref. (line 2773)
+* footnote parameters: \footnote. (line 6174)
* footnote, in a table: Footnotes in a table.
- (line 6399)
+ (line 6303)
* footnote, in section headings: Footnotes in section headings.
- (line 6380)
+ (line 6284)
* footnote, of a footnote: Footnotes of footnotes.
- (line 6469)
-* footnotes in figures: minipage. (line 4190)
-* footnotes, creating: Footnotes. (line 6223)
-* Footnotes, in a minipage: \footnote. (line 6298)
-* footnotes, symbols instead of numbers: \footnote. (line 6260)
-* formulas, environment for: equation. (line 3391)
-* formulas, math: Math formulas. (line 7847)
-* forward reference: Cross references. (line 2768)
-* forward references, resolving: Output files. (line 449)
-* fraction: \frac. (line 9371)
-* fragile commands: \protect. (line 7011)
-* frame rule width: \fbox & \framebox. (line 10677)
-* frame, line width: \fbox & \framebox. (line 10677)
-* frame, separation from contents: \fbox & \framebox. (line 10682)
-* French quotation marks: Text symbols. (line 12046)
-* functions, math: Math functions. (line 9062)
+ (line 6373)
+* footnotes in figures: minipage. (line 4093)
+* footnotes, creating: Footnotes. (line 6127)
+* Footnotes, in a minipage: \footnote. (line 6202)
+* footnotes, symbols instead of numbers: \footnote. (line 6164)
+* formulas, environment for: equation. (line 3295)
+* formulas, math: Math formulas. (line 7886)
+* forward reference: Cross references. (line 2672)
+* forward references, resolving: Output files. (line 458)
+* fraction: \frac. (line 9522)
+* fragile commands: \protect. (line 7028)
+* frame rule width: \fbox & \framebox. (line 10827)
+* frame, line width: \fbox & \framebox. (line 10827)
+* frame, separation from contents: \fbox & \framebox. (line 10832)
+* French quotation marks: Text symbols. (line 12197)
+* functions, math: Math functions. (line 9101)
* geometry package: Document class options.
- (line 797)
+ (line 698)
* geometry package <1>: Document class options.
- (line 801)
+ (line 702)
* global options: Document class options.
- (line 763)
+ (line 664)
* global options <1>: Additional packages.
- (line 871)
-* glossaries: Glossaries. (line 13208)
-* glossary: Glossaries. (line 13208)
-* glossary, entries: \newglossaryentry. (line 13256)
-* glossary, entry reference: \gls. (line 13315)
-* glue register, plain TeX: \newlength. (line 6684)
-* graphics: Graphics. (line 11183)
+ (line 772)
+* glossaries: Glossaries. (line 13357)
+* glossary: Glossaries. (line 13357)
+* glossary, entries: \newglossaryentry. (line 13405)
+* glossary, entry reference: \gls. (line 13464)
+* glue register, plain TeX: \newlength. (line 6700)
+* graphics: Graphics. (line 11333)
* graphics <1>: Graphics package configuration.
- (line 11284)
-* graphics <2>: \includegraphics. (line 11477)
-* graphics package: Graphics. (line 11183)
+ (line 11434)
+* graphics <2>: \includegraphics. (line 11627)
+* graphics package: Graphics. (line 11333)
* graphics package <1>: Graphics package configuration.
- (line 11284)
-* graphics package <2>: \includegraphics. (line 11477)
+ (line 11434)
+* graphics package <2>: \includegraphics. (line 11627)
* graphics package commands: Commands for graphics.
- (line 11471)
+ (line 11621)
* graphics package options: Graphics package options.
- (line 11220)
-* graphics packages: \line. (line 4494)
-* graphics, resizing: \scalebox. (line 11866)
-* graphics, resizing <1>: \resizebox. (line 11897)
-* graphics, scaling: \scalebox. (line 11866)
-* graphics, scaling <1>: \resizebox. (line 11897)
-* grave accent: Accents. (line 12246)
-* grave accent, math: Math accents. (line 9201)
-* greater than symbol, in text: Text symbols. (line 12149)
-* greek letters: Math symbols. (line 8001)
-* group, and environments: Environments. (line 2910)
-* group_skip: makeindex. (line 13087)
-* ha'c<ek accent, math: Math accents. (line 9192)
-* hacek accent: Accents. (line 12293)
-* Halmos symbol: \rule. (line 12362)
-* hat accent: Accents. (line 12242)
-* hat accent, math: Math accents. (line 9204)
-* header style: \pagestyle. (line 9660)
+ (line 11370)
+* graphics packages: \line. (line 4397)
+* graphics, resizing: \scalebox. (line 12017)
+* graphics, resizing <1>: \resizebox. (line 12048)
+* graphics, scaling: \scalebox. (line 12017)
+* graphics, scaling <1>: \resizebox. (line 12048)
+* grave accent: Accents. (line 12397)
+* grave accent, math: Math accents. (line 9240)
+* greater than symbol, in text: Text symbols. (line 12300)
+* greek letters: Math symbols. (line 8040)
+* group, and environments: Environments. (line 2814)
+* group_skip: makeindex. (line 13237)
+* ha'c<ek accent, math: Math accents. (line 9231)
+* hacek accent: Accents. (line 12444)
+* Halmos symbol: \rule. (line 12513)
+* hat accent: Accents. (line 12393)
+* hat accent, math: Math accents. (line 9243)
+* header style: \pagestyle. (line 9810)
* header, parameters for: Page layout parameters.
- (line 1769)
+ (line 1673)
* hello, world: Starting and ending.
- (line 390)
-* here, putting floats: Floats. (line 1948)
+ (line 399)
+* here, putting floats: Floats. (line 1852)
* home page for manual: About this document.
- (line 320)
-* horizontal space: \hss. (line 9890)
-* horizontal space, stretchable: \hss. (line 9890)
-* hungarian umlaut accent: Accents. (line 12271)
-* hyperref package: \footnotemark. (line 6350)
-* hyperref package <1>: \footnotemark. (line 6359)
-* hyperref package <2>: \pagenumbering. (line 9641)
+ (line 321)
+* horizontal space: \hss. (line 10040)
+* horizontal space, stretchable: \hss. (line 10040)
+* horizontal spacing: \phantom & \vphantom & \hphantom.
+ (line 9429)
+* hungarian umlaut accent: Accents. (line 12422)
+* hyperref package: \footnotemark. (line 6254)
+* hyperref package <1>: \footnotemark. (line 6263)
+* hyperref package <2>: \pagenumbering. (line 9791)
* hyperref package <3>: Command line input.
- (line 13852)
-* hyphenation, defining: \hyphenation. (line 6003)
-* hyphenation, discretionary: \discretionary. (line 5939)
-* hyphenation, forcing: \- (hyphenation). (line 5904)
-* hyphenation, preventing: \mbox & \makebox. (line 10555)
+ (line 14001)
+* hyphenation, defining: \hyphenation. (line 5907)
+* hyphenation, discretionary: \discretionary. (line 5843)
+* hyphenation, forcing: \- (hyphenation). (line 5808)
+* hyphenation, preventing: \mbox & \makebox. (line 10705)
* Icelandic eth: Additional Latin letters.
- (line 12312)
+ (line 12463)
* Icelandic thorn: Additional Latin letters.
- (line 12348)
-* idx file: \index. (line 13020)
+ (line 12499)
+* idx file: \index. (line 13171)
* ij letter, Dutch: Additional Latin letters.
- (line 12324)
-* implementations of TeX: TeX engines. (line 468)
-* importing graphics: \includegraphics. (line 11477)
-* in: Units of length. (line 7473)
-* in-line formulas: math. (line 4076)
-* inch: Units of length. (line 7473)
-* including graphics: \includegraphics. (line 11477)
+ (line 12475)
+* implementations of TeX: TeX engines. (line 477)
+* importing graphics: \includegraphics. (line 11627)
+* in: Units of length. (line 7496)
+* in-line formulas: math. (line 3980)
+* inch: Units of length. (line 7496)
+* including graphics: \includegraphics. (line 11627)
* indent, forcing: \indent & \noindent.
- (line 7722)
-* indentation of paragraphs, in minipage: minipage. (line 4186)
-* indentfirst package: \part. (line 2175)
-* indentfirst package <1>: \chapter. (line 2237)
-* indentfirst package <2>: \section. (line 2332)
-* indentfirst package <3>: \subsection. (line 2398)
+ (line 7761)
+* indentation of paragraphs, in minipage: minipage. (line 4089)
+* indentfirst package: \part. (line 2079)
+* indentfirst package <1>: \chapter. (line 2141)
+* indentfirst package <2>: \section. (line 2236)
+* indentfirst package <3>: \subsection. (line 2302)
* indentfirst package <4>: \subsubsection & \paragraph & \subparagraph.
- (line 2475)
+ (line 2379)
* indentfirst package <5>: \indent & \noindent.
- (line 7764)
-* indent_length: makeindex. (line 13168)
-* indent_space: makeindex. (line 13164)
-* index entries, 'see' and 'see also': \index. (line 12970)
-* index entry: \index. (line 12920)
-* index package: \index. (line 13015)
-* index, page range: \index. (line 12954)
-* index, printing: \printindex. (line 13193)
-* index, processing: makeindex. (line 13036)
-* index, style file: makeindex. (line 13048)
-* indexes: Indexes. (line 12884)
-* infinite horizontal stretch: \hfill. (line 9857)
-* infinite vertical stretch: \vfill. (line 10470)
-* inner paragraph mode: Modes. (line 9485)
+ (line 7803)
+* indent_length: makeindex. (line 13318)
+* indent_space: makeindex. (line 13314)
+* index entries, 'see' and 'see also': \index. (line 13121)
+* index entry: \index. (line 13071)
+* index package: \index. (line 13166)
+* index, page range: \index. (line 13105)
+* index, printing: \printindex. (line 13342)
+* index, processing: makeindex. (line 13186)
+* index, style file: makeindex. (line 13198)
+* indexes: Indexes. (line 13035)
+* infinite horizontal stretch: \hfill. (line 10007)
+* infinite vertical stretch: \vfill. (line 10620)
+* inner paragraph mode: Modes. (line 9636)
* input file: Splitting the input.
- (line 12421)
+ (line 12572)
* input, on command line: Command line input.
- (line 13848)
+ (line 13997)
* input/output, to terminal: Terminal input/output.
- (line 13642)
-* inserting figures: figure. (line 3411)
+ (line 13791)
+* inserting figures: figure. (line 3315)
* insertions of special characters: Special insertions.
- (line 11926)
-* internal vertical mode: Modes. (line 9476)
-* italic correction: \/. (line 10174)
-* italic font: Font styles. (line 1371)
-* itemize environment: itemize. (line 3624)
-* item_0: makeindex. (line 13111)
-* item_01: makeindex. (line 13120)
-* item_1: makeindex. (line 13114)
-* item_12: makeindex. (line 13130)
-* item_2: makeindex. (line 13117)
-* item_x1: makeindex. (line 13124)
-* item_x2: makeindex. (line 13134)
+ (line 12077)
+* internal vertical mode: Modes. (line 9627)
+* invisible character: \phantom & \vphantom & \hphantom.
+ (line 9429)
+* italic correction: \/. (line 10324)
+* italic font: Font styles. (line 1275)
+* itemize environment: itemize. (line 3528)
+* item_0: makeindex. (line 13261)
+* item_01: makeindex. (line 13270)
+* item_1: makeindex. (line 13264)
+* item_12: makeindex. (line 13280)
+* item_2: makeindex. (line 13267)
+* item_x1: makeindex. (line 13274)
+* item_x2: makeindex. (line 13284)
* JPEG files: Graphics package configuration.
- (line 11284)
-* JPEG files <1>: \includegraphics. (line 11477)
+ (line 11434)
+* JPEG files <1>: \includegraphics. (line 11627)
* JPG files: Graphics package configuration.
- (line 11284)
-* JPG files <1>: \includegraphics. (line 11477)
-* justification, ragged left: \raggedleft. (line 3599)
-* justification, ragged right: \raggedright. (line 3548)
-* Knuth, Donald E.: Overview. (line 364)
-* label: Cross references. (line 2747)
-* labelled lists, creating: description. (line 3130)
-* Lamport TeX: Overview. (line 382)
-* Lamport, Leslie: Overview. (line 364)
+ (line 11434)
+* JPG files <1>: \includegraphics. (line 11627)
+* justification, ragged left: \raggedleft. (line 3503)
+* justification, ragged right: \raggedright. (line 3452)
+* Knuth, Donald E.: Overview. (line 373)
+* label: Cross references. (line 2651)
+* labelled lists, creating: description. (line 3034)
+* Lamport TeX: Overview. (line 391)
+* Lamport, Leslie: Overview. (line 373)
* landscape option: Document class options.
- (line 806)
+ (line 707)
* landscape orientation: Document class options.
- (line 817)
-* latex command: Output files. (line 426)
-* LaTeX logo: Text symbols. (line 12037)
-* LaTeX overview: Overview. (line 364)
+ (line 718)
+* latex command: Output files. (line 435)
+* LaTeX logo: Text symbols. (line 12188)
+* LaTeX overview: Overview. (line 373)
* LaTeX Project team: About this document.
- (line 331)
+ (line 340)
* LaTeX vs. LaTeX2e: About this document.
- (line 327)
+ (line 336)
* latex-doc-ptr document: About this document.
- (line 344)
-* LaTeX2e logo: Text symbols. (line 12040)
+ (line 353)
+* LaTeX2e logo: Text symbols. (line 12191)
* <latexrefman@tug.org> email address: About this document.
- (line 331)
+ (line 340)
* Latin letters, additional: Additional Latin letters.
- (line 12298)
-* layout commands: Layout. (line 1613)
+ (line 12449)
+* layout commands: Layout. (line 1517)
* layout, page parameters for: Page layout parameters.
- (line 1769)
-* left angle quotation marks: Text symbols. (line 12046)
-* left arrow, in text: Text symbols. (line 12155)
-* left brace, in text: Text symbols. (line 12102)
-* left quote: Text symbols. (line 12056)
-* left quote, double: Text symbols. (line 12168)
-* left quote, single: Text symbols. (line 12174)
+ (line 1673)
+* left angle quotation marks: Text symbols. (line 12197)
+* left arrow, in text: Text symbols. (line 12306)
+* left brace, in text: Text symbols. (line 12253)
+* left quote: Text symbols. (line 12207)
+* left quote, double: Text symbols. (line 12319)
+* left quote, single: Text symbols. (line 12325)
* left-hand equation numbers: Document class options.
- (line 820)
-* left-justifying text: \raggedright. (line 3548)
-* left-justifying text, environment for: flushleft. (line 3520)
-* left-to-right mode: Modes. (line 9454)
+ (line 721)
+* left-justifying text: \raggedright. (line 3452)
+* left-justifying text, environment for: flushleft. (line 3424)
+* left-to-right mode: Modes. (line 9605)
* legalpaper option: Document class options.
- (line 776)
-* lengths, adding to: \addtolength. (line 7535)
-* lengths, allocating new: \newlength. (line 6684)
-* lengths, defining and using: Lengths. (line 7368)
-* lengths, setting: \setlength. (line 7512)
+ (line 677)
+* lengths, adding to: \addtolength. (line 7563)
+* lengths, allocating new: \newlength. (line 6700)
+* lengths, defining and using: Lengths. (line 7385)
+* lengths, setting: \setlength. (line 7535)
* leqno option: Document class options.
- (line 806)
-* less than symbol, in text: Text symbols. (line 12152)
-* lethead_flag: makeindex. (line 13094)
-* lethead_prefix: makeindex. (line 13103)
-* lethead_suffix: makeindex. (line 13107)
-* letter class: Document classes. (line 734)
-* letter environment: letter. (line 3707)
+ (line 707)
+* less than symbol, in text: Text symbols. (line 12303)
+* lethead_flag: makeindex. (line 13244)
+* lethead_prefix: makeindex. (line 13253)
+* lethead_suffix: makeindex. (line 13257)
+* letter class: Document classes. (line 635)
+* letter environment: letter. (line 3611)
* letterpaper option: Document class options.
- (line 776)
-* letters, accented: Accents. (line 12210)
+ (line 677)
+* letters, accented: Accents. (line 12361)
* letters, additional Latin: Additional Latin letters.
- (line 12298)
-* letters, ending: \closing. (line 13466)
-* letters, starting: \opening. (line 13571)
-* letters, writing: Letters. (line 13345)
-* line break, forcing: \\. (line 5778)
-* line breaking: Line breaking. (line 5761)
-* line breaks, changing: \fussy & \sloppy. (line 5962)
+ (line 12449)
+* letters, ending: \closing. (line 13615)
+* letters, starting: \opening. (line 13720)
+* letters, writing: Letters. (line 13494)
+* line break, forcing: \\. (line 5682)
+* line breaking: Line breaking. (line 5665)
+* line breaks, changing: \fussy & \sloppy. (line 5866)
* line breaks, forcing: \linebreak & \nolinebreak.
- (line 6021)
-* line breaks, multiplication discretionary: \*. (line 9355)
+ (line 5925)
+* line breaks, multiplication discretionary: \*. (line 9506)
* line breaks, preventing: \linebreak & \nolinebreak.
- (line 6021)
-* lines in tables: tabular. (line 5011)
-* line_max: makeindex. (line 13160)
-* lining numerals: Font styles. (line 1422)
-* lining text up in tables: tabular. (line 5011)
-* lining text up using tab stops: tabbing. (line 4802)
-* list environment: list. (line 3712)
-* list items, specifying counter: \usecounter. (line 7222)
-* list of figures file: Output files. (line 459)
-* list of tables file: Output files. (line 459)
-* listings package: tabbing. (line 4942)
-* listings package <1>: verbatim. (line 5664)
-* listings package <2>: \verb. (line 5714)
-* lists of items: itemize. (line 3624)
-* lists of items, generic: list. (line 3712)
-* lists of items, numbered: enumerate. (line 3268)
+ (line 5925)
+* lines in tables: tabular. (line 4914)
+* line_max: makeindex. (line 13310)
+* lining numerals: Font styles. (line 1326)
+* lining text up in tables: tabular. (line 4914)
+* lining text up using tab stops: tabbing. (line 4705)
+* list environment: list. (line 3616)
+* list items, specifying counter: \usecounter. (line 7239)
+* list of figures file: Output files. (line 468)
+* list of tables file: Output files. (line 468)
+* listings package: tabbing. (line 4845)
+* listings package <1>: verbatim. (line 5568)
+* listings package <2>: \verb. (line 5618)
+* lists of items: itemize. (line 3528)
+* lists of items, generic: list. (line 3616)
+* lists of items, numbered: enumerate. (line 3172)
* loading additional packages: Additional packages.
- (line 862)
-* log file: Output files. (line 444)
-* logo, LaTeX: Text symbols. (line 12037)
-* logo, LaTeX2e: Text symbols. (line 12040)
-* logo, TeX: Text symbols. (line 12078)
+ (line 763)
+* log file: Output files. (line 453)
+* logo, LaTeX: Text symbols. (line 12188)
+* logo, LaTeX2e: Text symbols. (line 12191)
+* logo, TeX: Text symbols. (line 12229)
* long command: Class and package commands.
- (line 962)
-* low-9 quotation marks, single and double: Text symbols. (line 12068)
+ (line 866)
+* low-9 quotation marks, single and double: Text symbols. (line 12219)
* low-level font commands: Low-level font commands.
- (line 1471)
+ (line 1375)
* lowercase: Upper and lower case.
- (line 11964)
-* LR box: picture. (line 4337)
-* LR mode: Modes. (line 9454)
-* lrbox: lrbox. (line 10887)
+ (line 12115)
+* LR box: picture. (line 4240)
+* LR mode: Modes. (line 9605)
+* lrbox: lrbox. (line 11037)
* lshort document: About this document.
- (line 355)
-* ltugboat class: tugboat template. (line 14062)
-* lualatex command: TeX engines. (line 492)
-* LuaTeX: TeX engines. (line 492)
-* m-width: Units of length. (line 7494)
-* macro package, LaTeX as: Overview. (line 369)
-* macron accent: Accents. (line 12238)
-* macron accent, math: Math accents. (line 9186)
+ (line 364)
+* ltugboat class: tugboat template. (line 14211)
+* lualatex command: TeX engines. (line 501)
+* LuaTeX: TeX engines. (line 501)
+* m-width: Units of length. (line 7517)
+* macro package, LaTeX as: Overview. (line 378)
+* macron accent: Accents. (line 12389)
+* macron accent, math: Math accents. (line 9225)
* macros2e package: \makeatletter & \makeatother.
- (line 627)
-* Madsen, Lars: eqnarray. (line 3335)
-* make a box: \mbox & \makebox. (line 10555)
-* makeindex: makeindex. (line 13036)
-* makeindex program: makeindex. (line 13036)
-* makeindex, style file: makeindex. (line 13048)
-* making a title page: titlepage. (line 5600)
-* making paragraphs: Making paragraphs. (line 7631)
-* marginal notes: Marginal notes. (line 7798)
-* masculine ordinal symbol: Text symbols. (line 12159)
-* matching brackets: \left & \right. (line 9383)
-* matching parentheses: \left & \right. (line 9383)
-* math accents: Math accents. (line 9178)
-* math environment: math. (line 4076)
-* math environment <1>: Math formulas. (line 7847)
-* math formulas: Math formulas. (line 7847)
-* math functions: Math functions. (line 9062)
-* math miscellany: Math miscellany. (line 9329)
-* math mode: Modes. (line 9464)
-* math mode, entering: Math formulas. (line 7847)
+ (line 6584)
+* Madsen, Lars: eqnarray. (line 3239)
+* make a box: \mbox & \makebox. (line 10705)
+* makeindex: makeindex. (line 13186)
+* makeindex program: makeindex. (line 13186)
+* makeindex, style file: makeindex. (line 13198)
+* making a title page: titlepage. (line 5504)
+* making paragraphs: Making paragraphs. (line 7664)
+* marginal notes: Marginal notes. (line 7837)
+* masculine ordinal symbol: Text symbols. (line 12310)
+* matching brackets: \left & \right. (line 9534)
+* matching parentheses: \left & \right. (line 9534)
+* math accents: Math accents. (line 9217)
+* math environment: math. (line 3980)
+* math environment <1>: Math formulas. (line 7886)
+* math formulas: Math formulas. (line 7886)
+* math functions: Math functions. (line 9101)
+* math miscellany: Math miscellany. (line 9480)
+* math mode: Modes. (line 9615)
+* math mode, entering: Math formulas. (line 7886)
* math mode, spacing: Spacing in math mode.
- (line 9272)
-* math symbols: Math symbols. (line 8001)
-* math, bold: Font styles. (line 1418)
-* mathtools package: Math formulas. (line 7927)
+ (line 9311)
+* math mode, spacing <1>: \phantom & \vphantom & \hphantom.
+ (line 9429)
+* math mode, vertical space: \smash. (line 9368)
+* math symbols: Math symbols. (line 8040)
+* math, bold: Font styles. (line 1322)
+* mathtools package: Math formulas. (line 7966)
* mathtools package <1>: Over- and Underlining.
- (line 9266)
-* MetaPost package: \line. (line 4494)
+ (line 9305)
+* mathtools package <2>: \smash. (line 9423)
+* mathtools package <3>: \phantom & \vphantom & \hphantom.
+ (line 9459)
+* MetaPost package: \line. (line 4397)
* mfirstuc package: Upper and lower case.
- (line 12003)
+ (line 12154)
* mhchem package: Subscripts & superscripts.
- (line 7994)
-* Millimeter: Units of length. (line 7483)
-* minipage environment: minipage. (line 4088)
-* minipage, creating a: minipage. (line 4088)
-* minted package: tabbing. (line 4942)
-* minted package <1>: verbatim. (line 5664)
-* minted package <2>: \verb. (line 5714)
-* mirrors of CTAN: CTAN. (line 717)
-* mm: Units of length. (line 7483)
-* modes: Modes. (line 9444)
-* monospace font: Font styles. (line 1386)
-* moving arguments: \protect. (line 7024)
-* mpfootnote counter: \footnote. (line 6298)
-* mu: Units of length. (line 7505)
-* mu, math unit: Units of length. (line 7505)
-* multicolumn text: \twocolumn. (line 1630)
-* multilingual support: Accents. (line 12210)
-* multind package: Indexes. (line 12910)
-* multiplication, discretionary: \*. (line 9355)
-* name: \newglossaryentry. (line 13293)
-* NBSP: ~. (line 10094)
+ (line 8033)
+* Millimeter: Units of length. (line 7506)
+* minipage environment: minipage. (line 3992)
+* minipage, creating a: minipage. (line 3992)
+* minted package: tabbing. (line 4845)
+* minted package <1>: verbatim. (line 5568)
+* minted package <2>: \verb. (line 5618)
+* mirrors of CTAN: CTAN. (line 618)
+* mm: Units of length. (line 7506)
+* modes: Modes. (line 9595)
+* monospace font: Font styles. (line 1290)
+* moving arguments: \protect. (line 7041)
+* mpfootnote counter: \footnote. (line 6202)
+* mu: Units of length. (line 7528)
+* mu, math unit: Units of length. (line 7528)
+* multicolumn text: \twocolumn. (line 1534)
+* multilingual support: Accents. (line 12361)
+* multind package: Indexes. (line 13061)
+* multiplication, discretionary: \*. (line 9506)
+* name: \newglossaryentry. (line 13442)
+* NBSP: ~. (line 10244)
* nested \include, not allowed: \include & \includeonly.
- (line 12593)
+ (line 12744)
* new class commands: Class and package construction.
- (line 878)
+ (line 779)
* new command, check: Class and package commands.
- (line 960)
+ (line 864)
* new command, definition: Class and package commands.
- (line 1035)
+ (line 939)
* new commands, defining: \newcommand & \renewcommand.
- (line 6490)
-* new commands, defining <1>: \providecommand. (line 6615)
+ (line 6394)
+* new commands, defining <1>: \providecommand. (line 6519)
* new line, output as input: \obeycr & \restorecr.
- (line 5840)
-* new line, starting: \\. (line 5778)
-* new line, starting (paragraph mode): \newline. (line 5880)
-* new page, starting: \newpage. (line 6124)
+ (line 5744)
+* new line, starting: \\. (line 5682)
+* new line, starting (paragraph mode): \newline. (line 5784)
+* new page, starting: \newpage. (line 6028)
* non-English characters: Additional Latin letters.
- (line 12298)
-* notes in the margin: Marginal notes. (line 7798)
+ (line 12449)
+* notes in the margin: Marginal notes. (line 7837)
* notitlepage option: Document class options.
- (line 806)
-* null delimiter: \left & \right. (line 9383)
-* numbered items, specifying counter: \usecounter. (line 7222)
-* numerals, old-style: Font styles. (line 1422)
-* oblique font: Font styles. (line 1383)
+ (line 707)
+* null delimiter: \left & \right. (line 9534)
+* numbered items, specifying counter: \usecounter. (line 7239)
+* numerals, old-style: Font styles. (line 1326)
+* oblique font: Font styles. (line 1287)
* oe ligature: Additional Latin letters.
- (line 12340)
-* ogonek: Accents. (line 12275)
-* old-style numerals: Font styles. (line 1422)
-* one-column output: \onecolumn. (line 1618)
+ (line 12491)
+* ogonek: Accents. (line 12426)
+* old-style numerals: Font styles. (line 1326)
+* one-column output: \onecolumn. (line 1522)
* onecolumn option: Document class options.
- (line 835)
+ (line 736)
* oneside option: Document class options.
- (line 835)
+ (line 736)
* openany option: Document class options.
- (line 835)
+ (line 736)
* openbib option: Document class options.
- (line 806)
-* opening quote: Text symbols. (line 12056)
+ (line 707)
+* opening quote: Text symbols. (line 12207)
* openright option: Document class options.
- (line 835)
-* OpenType fonts: TeX engines. (line 468)
+ (line 736)
+* OpenType fonts: TeX engines. (line 477)
* options, class: Class and package commands.
- (line 1005)
+ (line 909)
* options, color package: Color package options.
- (line 10942)
+ (line 11092)
* options, command line: Command line options.
- (line 13765)
+ (line 13914)
* options, document class: Document class options.
- (line 763)
+ (line 664)
* options, document class <1>: Class and package structure.
- (line 901)
+ (line 802)
* options, global: Additional packages.
- (line 871)
+ (line 772)
* options, graphics package: Graphics package options.
- (line 11220)
+ (line 11370)
* options, package: Class and package structure.
- (line 901)
+ (line 802)
* options, package <1>: Class and package commands.
- (line 1005)
-* ordinals, feminine and masculine: Text symbols. (line 12159)
+ (line 909)
+* ordinals, feminine and masculine: Text symbols. (line 12310)
* oslash: Additional Latin letters.
- (line 12336)
-* outer paragraph mode: Modes. (line 9485)
-* overbar accent: Accents. (line 12238)
-* overdot accent, math: Math accents. (line 9198)
+ (line 12487)
+* outer paragraph mode: Modes. (line 9636)
+* overbar accent: Accents. (line 12389)
+* overdot accent, math: Math accents. (line 9237)
* overlining: Over- and Underlining.
- (line 9227)
-* overview of LaTeX: Overview. (line 364)
+ (line 9266)
+* overview of LaTeX: Overview. (line 373)
* package file layout: Class and package structure.
- (line 901)
+ (line 802)
* package options: Class and package structure.
- (line 901)
+ (line 802)
* package options <1>: Class and package commands.
- (line 1005)
-* package, algorithm2e: tabbing. (line 4942)
-* package, amsfonts: Math formulas. (line 7927)
-* package, amsmath: array. (line 3010)
-* package, amsmath <1>: array. (line 3021)
-* package, amsmath <2>: displaymath. (line 3202)
-* package, amsmath <3>: equation. (line 3405)
-* package, amsmath <4>: theorem. (line 5592)
-* package, amsmath <5>: Math formulas. (line 7927)
-* package, amsmath <6>: Dots. (line 9038)
-* package, amsmath <7>: Math functions. (line 9167)
-* package, amsmath <8>: Colon character & \colon.
- (line 9344)
+ (line 909)
+* package, algorithm2e: tabbing. (line 4845)
+* package, amsfonts: Math formulas. (line 7966)
+* package, amsmath: array. (line 2914)
+* package, amsmath <1>: array. (line 2925)
+* package, amsmath <2>: displaymath. (line 3106)
+* package, amsmath <3>: equation. (line 3309)
+* package, amsmath <4>: theorem. (line 5496)
+* package, amsmath <5>: Math formulas. (line 7966)
+* package, amsmath <6>: Dots. (line 9077)
+* package, amsmath <7>: Math functions. (line 9206)
+* package, amsmath <8>: \phantom & \vphantom & \hphantom.
+ (line 9467)
* package, amsmath <9>: Colon character & \colon.
- (line 9348)
-* package, amsthm: theorem. (line 5592)
-* package, amsthm <1>: \rule. (line 12367)
-* package, appendix: \appendix. (line 2510)
-* package, array (package): array. (line 3032)
-* package, Asymptote: \line. (line 4494)
-* package, Asymptote <1>: \strut. (line 10390)
-* package, Asymptote <2>: \mbox & \makebox. (line 10622)
-* package, babel: \chapter. (line 2250)
-* package, babel <1>: thebibliography. (line 5384)
-* package, babel <2>: Accents. (line 12210)
-* package, babel <3>: \today. (line 12397)
+ (line 9495)
+* package, amsmath <10>: Colon character & \colon.
+ (line 9499)
+* package, amsthm: theorem. (line 5496)
+* package, amsthm <1>: \rule. (line 12518)
+* package, appendix: \appendix. (line 2414)
+* package, array (package): array. (line 2936)
+* package, Asymptote: \line. (line 4397)
+* package, Asymptote <1>: \strut. (line 10540)
+* package, Asymptote <2>: \mbox & \makebox. (line 10772)
+* package, babel: \chapter. (line 2154)
+* package, babel <1>: thebibliography. (line 5286)
+* package, babel <2>: Accents. (line 12361)
+* package, babel <3>: \today. (line 12548)
* package, babel <4>: Table of contents etc..
- (line 12724)
-* package, babel <5>: \index. (line 12970)
+ (line 12875)
+* package, babel <5>: \index. (line 13121)
* package, bigfoot: Footnotes of footnotes.
- (line 6469)
+ (line 6373)
* package, bm: \boldmath & \unboldmath.
- (line 8993)
-* package, cleveref: Cross references. (line 2779)
-* package, cleveref <1>: \ref. (line 2892)
-* package, cleveref <2>: \footnotemark. (line 6350)
-* package, cprotect: verbatim. (line 5659)
-* package, cprotect <1>: \verb. (line 5717)
-* package, datetime: \today. (line 12411)
-* package, dcolumn: array. (line 3032)
-* package, enumitem: list. (line 3976)
-* package, envlab: \makelabels. (line 13553)
+ (line 9032)
+* package, cleveref: Cross references. (line 2683)
+* package, cleveref <1>: \ref. (line 2796)
+* package, cleveref <2>: \footnotemark. (line 6254)
+* package, cprotect: verbatim. (line 5563)
+* package, cprotect <1>: \verb. (line 5621)
+* package, datetime: \today. (line 12562)
+* package, dcolumn: array. (line 2936)
+* package, enumitem: list. (line 3880)
+* package, envlab: \makelabels. (line 13702)
* package, etoolbox: Class and package commands.
- (line 1049)
-* package, eurosym: Text symbols. (line 12140)
-* package, fancyhdr: Page styles. (line 9524)
-* package, fancyhdr <1>: \pagestyle. (line 9667)
-* package, fancyvrb: tabbing. (line 4942)
-* package, fancyvrb <1>: verbatim. (line 5670)
-* package, flafter: Floats. (line 1978)
-* package, float: Floats. (line 1948)
+ (line 953)
+* package, eurosym: Text symbols. (line 12291)
+* package, fancyhdr: Page styles. (line 9675)
+* package, fancyhdr <1>: \pagestyle. (line 9817)
+* package, fancyvrb: tabbing. (line 4845)
+* package, fancyvrb <1>: verbatim. (line 5574)
+* package, flafter: Floats. (line 1882)
+* package, float: Floats. (line 1852)
* package, geometry: Document class options.
- (line 797)
+ (line 698)
* package, geometry <1>: Document class options.
- (line 801)
-* package, hyperref: \footnotemark. (line 6350)
-* package, hyperref <1>: \footnotemark. (line 6359)
-* package, hyperref <2>: \pagenumbering. (line 9641)
+ (line 702)
+* package, hyperref: \footnotemark. (line 6254)
+* package, hyperref <1>: \footnotemark. (line 6263)
+* package, hyperref <2>: \pagenumbering. (line 9791)
* package, hyperref <3>: Command line input.
- (line 13852)
-* package, indentfirst: \part. (line 2175)
-* package, indentfirst <1>: \chapter. (line 2237)
-* package, indentfirst <2>: \section. (line 2332)
-* package, indentfirst <3>: \subsection. (line 2398)
+ (line 14001)
+* package, indentfirst: \part. (line 2079)
+* package, indentfirst <1>: \chapter. (line 2141)
+* package, indentfirst <2>: \section. (line 2236)
+* package, indentfirst <3>: \subsection. (line 2302)
* package, indentfirst <4>: \subsubsection & \paragraph & \subparagraph.
- (line 2475)
+ (line 2379)
* package, indentfirst <5>: \indent & \noindent.
- (line 7764)
-* package, index: \index. (line 13015)
-* package, listings: tabbing. (line 4942)
-* package, listings <1>: verbatim. (line 5664)
-* package, listings <2>: \verb. (line 5714)
+ (line 7803)
+* package, index: \index. (line 13166)
+* package, listings: tabbing. (line 4845)
+* package, listings <1>: verbatim. (line 5568)
+* package, listings <2>: \verb. (line 5618)
* package, macros2e: \makeatletter & \makeatother.
- (line 627)
-* package, mathtools: Math formulas. (line 7927)
+ (line 6584)
+* package, mathtools: Math formulas. (line 7966)
* package, mathtools <1>: Over- and Underlining.
- (line 9266)
-* package, MetaPost: \line. (line 4494)
+ (line 9305)
+* package, mathtools <2>: \smash. (line 9423)
+* package, mathtools <3>: \phantom & \vphantom & \hphantom.
+ (line 9459)
+* package, MetaPost: \line. (line 4397)
* package, mfirstuc: Upper and lower case.
- (line 12003)
+ (line 12154)
* package, mhchem: Subscripts & superscripts.
- (line 7994)
-* package, minted: tabbing. (line 4942)
-* package, minted <1>: verbatim. (line 5664)
-* package, minted <2>: \verb. (line 5714)
-* package, multind: Indexes. (line 12910)
-* package, pict2e: \line. (line 4494)
-* package, polyglossia: Accents. (line 12210)
-* package, polyglossia <1>: \today. (line 12397)
+ (line 8033)
+* package, minted: tabbing. (line 4845)
+* package, minted <1>: verbatim. (line 5568)
+* package, minted <2>: \verb. (line 5618)
+* package, multind: Indexes. (line 13061)
+* package, pict2e: \line. (line 4397)
+* package, polyglossia: Accents. (line 12361)
+* package, polyglossia <1>: \today. (line 12548)
* package, polyglossia <2>: Table of contents etc..
- (line 12724)
-* package, polyglossia <3>: \index. (line 12970)
-* package, PSTricks: \line. (line 4494)
+ (line 12875)
+* package, polyglossia <3>: \index. (line 13121)
+* package, PSTricks: \line. (line 4397)
* package, sagetex: Command line options.
- (line 13821)
+ (line 13970)
* package, setspace: Low-level font commands.
- (line 1583)
-* package, showidx: Indexes. (line 12910)
-* package, siunitx: ~. (line 10120)
-* package, symbols: Math symbols. (line 8001)
+ (line 1487)
+* package, showidx: Indexes. (line 13061)
+* package, siunitx: ~. (line 10270)
+* package, symbols: Math symbols. (line 8040)
* package, textcase: Upper and lower case.
- (line 12000)
-* package, textcomp: Font styles. (line 1422)
-* package, TikZ: \line. (line 4494)
-* package, TikZ <1>: \strut. (line 10390)
-* package, TikZ <2>: \mbox & \makebox. (line 10621)
-* package, titlesec: \part. (line 2179)
-* package, titlesec <1>: \chapter. (line 2258)
-* package, titlesec <2>: \section. (line 2336)
-* package, titlesec <3>: \subsection. (line 2402)
+ (line 12151)
+* package, textcomp: Font styles. (line 1326)
+* package, TikZ: \line. (line 4397)
+* package, TikZ <1>: \strut. (line 10540)
+* package, TikZ <2>: \mbox & \makebox. (line 10771)
+* package, titlesec: \part. (line 2083)
+* package, titlesec <1>: \chapter. (line 2162)
+* package, titlesec <2>: \section. (line 2240)
+* package, titlesec <3>: \subsection. (line 2306)
* package, titlesec <4>: \subsubsection & \paragraph & \subparagraph.
- (line 2479)
+ (line 2383)
* package, tocbibbind: Table of contents etc..
- (line 12735)
+ (line 12886)
* package, tocloft: Table of contents etc..
- (line 12735)
+ (line 12886)
* package, ulem: Over- and Underlining.
- (line 9236)
-* package, url: \verb. (line 5710)
-* package, verbatimbox: verbatim. (line 5670)
+ (line 9275)
+* package, url: \verb. (line 5614)
+* package, verbatimbox: verbatim. (line 5574)
* packages, loading additional: Additional packages.
- (line 862)
+ (line 763)
* page break, forcing: \pagebreak & \nopagebreak.
- (line 6182)
+ (line 6086)
* page break, preventing: \pagebreak & \nopagebreak.
- (line 6182)
-* page breaking: Page breaking. (line 6052)
+ (line 6086)
+* page breaking: Page breaking. (line 5956)
* page layout parameters: Page layout parameters.
- (line 1769)
-* page number, cross referencing: \pageref. (line 2845)
-* page numbering style: \pagenumbering. (line 9602)
-* page style, this page: \thispagestyle. (line 9744)
-* page styles: Page styles. (line 9518)
-* page, colored: Colored pages. (line 11162)
-* page_precedence: makeindex. (line 13173)
-* paired delimiters: \left & \right. (line 9383)
-* paragraph: Sectioning. (line 2052)
+ (line 1673)
+* page number, cross referencing: \pageref. (line 2749)
+* page numbering style: \pagenumbering. (line 9752)
+* page style, this page: \thispagestyle. (line 9894)
+* page styles: Page styles. (line 9669)
+* page, colored: Colored pages. (line 11312)
+* page_precedence: makeindex. (line 13323)
+* paired delimiters: \left & \right. (line 9534)
+* paragraph: Sectioning. (line 1956)
* paragraph <1>: \subsubsection & \paragraph & \subparagraph.
- (line 2420)
+ (line 2324)
* paragraph indentation: \parindent & \parskip.
- (line 7771)
-* paragraph indentation, in minipage: minipage. (line 4186)
-* paragraph indentations in quoted text: quotation & quote. (line 4772)
+ (line 7810)
+* paragraph indentation, in minipage: minipage. (line 4089)
+* paragraph indentations in quoted text: quotation & quote. (line 4675)
* paragraph indentations in quoted text, omitting: quotation & quote.
- (line 4772)
-* paragraph mode: Modes. (line 9450)
-* paragraph mode <1>: \parbox. (line 10711)
-* paragraph symbol: Text symbols. (line 12060)
-* paragraph, ending: \par. (line 7671)
-* paragraph, in a box: \parbox. (line 10711)
-* paragraphs: Making paragraphs. (line 7631)
-* parameters, for footnotes: \footnote. (line 6270)
+ (line 4675)
+* paragraph mode: Modes. (line 9601)
+* paragraph mode <1>: \parbox. (line 10861)
+* paragraph symbol: Text symbols. (line 12211)
+* paragraph, ending: \par. (line 7708)
+* paragraph, in a box: \parbox. (line 10861)
+* paragraphs: Making paragraphs. (line 7664)
+* parameters, for footnotes: \footnote. (line 6174)
* parameters, page layout: Page layout parameters.
- (line 1769)
-* part: Sectioning. (line 2052)
-* part <1>: \part. (line 2131)
-* pc: Units of length. (line 7470)
+ (line 1673)
+* part: Sectioning. (line 1956)
+* part <1>: \part. (line 2035)
+* pc: Units of length. (line 7493)
* PDF graphic files: Graphics package configuration.
- (line 11284)
-* PDF graphic files <1>: \includegraphics. (line 11477)
-* pdflatex command: Output files. (line 436)
-* pdfTeX: Output files. (line 436)
-* pdfTeX engine: TeX engines. (line 475)
-* period, abbreviation-ending: \@. (line 9977)
-* period, centered, in text: Text symbols. (line 12162)
-* period, sentence-ending: \@. (line 9977)
-* period, spacing after: \@. (line 9977)
-* pica: Units of length. (line 7470)
-* pict2e package: \line. (line 4494)
-* pict2e package <1>: \line. (line 4494)
-* picture environment: picture. (line 4240)
-* pictures, creating: picture. (line 4240)
-* pilcrow: Text symbols. (line 12060)
-* placement of floats: Floats. (line 1927)
-* plural: \newglossaryentry. (line 13301)
+ (line 11434)
+* PDF graphic files <1>: \includegraphics. (line 11627)
+* pdflatex command: Output files. (line 445)
+* pdfTeX: Output files. (line 445)
+* pdfTeX engine: TeX engines. (line 484)
+* period, abbreviation-ending: \@. (line 10127)
+* period, centered, in text: Text symbols. (line 12313)
+* period, sentence-ending: \@. (line 10127)
+* period, spacing after: \@. (line 10127)
+* pica: Units of length. (line 7493)
+* pict2e package: \line. (line 4397)
+* pict2e package <1>: \line. (line 4397)
+* picture environment: picture. (line 4143)
+* pictures, creating: picture. (line 4143)
+* pilcrow: Text symbols. (line 12211)
+* placement of floats: Floats. (line 1831)
+* plural: \newglossaryentry. (line 13450)
* PNG files: Graphics package configuration.
- (line 11284)
-* PNG files <1>: \includegraphics. (line 11477)
-* poetry, an environment for: verse. (line 5725)
-* Point: Units of length. (line 7466)
+ (line 11434)
+* PNG files <1>: \includegraphics. (line 11627)
+* poetry, an environment for: verse. (line 5629)
+* Point: Units of length. (line 7489)
* polish l: Additional Latin letters.
- (line 12328)
-* polyglossia package: Accents. (line 12210)
-* polyglossia package <1>: \today. (line 12397)
+ (line 12479)
+* polyglossia package: Accents. (line 12361)
+* polyglossia package <1>: \today. (line 12548)
* polyglossia package <2>: Table of contents etc..
- (line 12724)
-* polyglossia package <3>: \index. (line 12970)
+ (line 12875)
+* polyglossia package <3>: \index. (line 13121)
* portrait orientation: Document class options.
- (line 817)
-* position, in picture: picture. (line 4311)
+ (line 718)
+* position, in picture: picture. (line 4214)
* positional parameter: \newcommand & \renewcommand.
- (line 6536)
-* postamble: makeindex. (line 13084)
-* postscript, in letters: \ps. (line 13583)
-* pounds symbol: Text symbols. (line 12064)
-* preamble: makeindex. (line 13080)
+ (line 6440)
+* postamble: makeindex. (line 13234)
+* postscript, in letters: \ps. (line 13732)
+* pounds symbol: Text symbols. (line 12215)
+* preamble: makeindex. (line 13230)
* preamble, defined: Starting and ending.
- (line 406)
+ (line 415)
* prompt, *: Recovering from errors.
- (line 13911)
-* pronunciation: Overview. (line 382)
-* PSTricks package: \line. (line 4494)
-* pt: Units of length. (line 7466)
+ (line 14060)
+* pronunciation: Overview. (line 391)
+* PSTricks package: \line. (line 4397)
+* pt: Units of length. (line 7489)
* quad: Spacing in math mode.
- (line 9317)
-* question mark, upside-down: Text symbols. (line 12165)
-* quotation environment: quotation & quote. (line 4772)
-* quotation marks, French: Text symbols. (line 12046)
-* quote environment: quotation & quote. (line 4772)
-* quote, single straight: Text symbols. (line 12180)
-* quote, straight base: Text symbols. (line 12184)
+ (line 9356)
+* question mark, upside-down: Text symbols. (line 12316)
+* quotation environment: quotation & quote. (line 4675)
+* quotation marks, French: Text symbols. (line 12197)
+* quote environment: quotation & quote. (line 4675)
+* quote, single straight: Text symbols. (line 12331)
+* quote, straight base: Text symbols. (line 12335)
* quoted text with paragraph indentation, displaying: quotation & quote.
- (line 4772)
+ (line 4675)
* quoted text without paragraph indentation, displaying: quotation & quote.
- (line 4772)
-* radical: \sqrt. (line 9418)
-* ragged left text: \raggedleft. (line 3599)
-* ragged left text, environment for: flushright. (line 3581)
-* ragged right text: \raggedright. (line 3548)
-* ragged right text, environment for: flushleft. (line 3520)
+ (line 4675)
+* radical: \sqrt. (line 9569)
+* ragged left text: \raggedleft. (line 3503)
+* ragged left text, environment for: flushright. (line 3485)
+* ragged right text: \raggedright. (line 3452)
+* ragged right text, environment for: flushleft. (line 3424)
* redefining environments: \newenvironment & \renewenvironment.
- (line 6733)
-* reference, forward: Cross references. (line 2768)
-* references, resolving forward: Output files. (line 449)
-* registered symbol: Text symbols. (line 12187)
-* relation, text above: \stackrel. (line 9434)
-* remarks in the margin: Marginal notes. (line 7798)
-* report class: Document classes. (line 734)
+ (line 6750)
+* reference, forward: Cross references. (line 2672)
+* references, resolving forward: Output files. (line 458)
+* registered symbol: Text symbols. (line 12338)
+* relation, text above: \stackrel. (line 9585)
+* remarks in the margin: Marginal notes. (line 7837)
+* report class: Document classes. (line 635)
* reporting bugs: About this document.
- (line 335)
+ (line 344)
* reserved characters: Reserved characters.
- (line 11932)
-* resizing: \scalebox. (line 11866)
-* resizing <1>: \resizebox. (line 11897)
-* right angle quotation marks: Text symbols. (line 12046)
-* right arrow, in text: Text symbols. (line 12190)
-* right brace, in text: Text symbols. (line 12105)
-* right quote: Text symbols. (line 12071)
-* right quote, double: Text symbols. (line 12171)
-* right quote, single: Text symbols. (line 12177)
+ (line 12083)
+* resizing: \scalebox. (line 12017)
+* resizing <1>: \resizebox. (line 12048)
+* right angle quotation marks: Text symbols. (line 12197)
+* right arrow, in text: Text symbols. (line 12341)
+* right brace, in text: Text symbols. (line 12256)
+* right quote: Text symbols. (line 12222)
+* right quote, double: Text symbols. (line 12322)
+* right quote, single: Text symbols. (line 12328)
* right-hand equation numbers: Document class options.
- (line 820)
-* right-justifying text: \raggedleft. (line 3599)
-* right-justifying text, environment for: flushright. (line 3581)
-* ring accent: Accents. (line 12279)
-* ring accent, math: Math accents. (line 9207)
-* robust commands: \protect. (line 7011)
-* roman font: Font styles. (line 1374)
+ (line 721)
+* right-justifying text: \raggedleft. (line 3503)
+* right-justifying text, environment for: flushright. (line 3485)
+* ring accent: Accents. (line 12430)
+* ring accent, math: Math accents. (line 9246)
+* robust commands: \protect. (line 7028)
+* roman font: Font styles. (line 1278)
* root file: Splitting the input.
- (line 12425)
-* roots: \sqrt. (line 9418)
-* rotating graphics: \rotatebox. (line 11799)
-* rotating text: \rotatebox. (line 11799)
-* rotation: \rotatebox. (line 11799)
-* row, tabbing: tabbing. (line 4842)
-* rubber lengths, defining new: \newlength. (line 6684)
+ (line 12576)
+* roots: \sqrt. (line 9569)
+* rotating graphics: \rotatebox. (line 11949)
+* rotating text: \rotatebox. (line 11949)
+* rotation: \rotatebox. (line 11949)
+* row, tabbing: tabbing. (line 4745)
+* rubber lengths, defining new: \newlength. (line 6700)
* running header and footer: Page layout parameters.
- (line 1769)
-* running header and footer style: \pagestyle. (line 9660)
+ (line 1673)
+* running header and footer style: \pagestyle. (line 9810)
* sagetex package: Command line options.
- (line 13821)
-* sans serif font: Font styles. (line 1380)
-* Scaled point: Units of length. (line 7492)
-* scaling: \scalebox. (line 11866)
-* scaling <1>: \resizebox. (line 11897)
-* script fonts: Calligraphic. (line 8949)
-* script letters for math: Font styles. (line 1368)
-* secnumdepth: Sectioning. (line 2108)
-* secnumdepth counter: Sectioning. (line 2109)
-* section: Sectioning. (line 2052)
-* section <1>: \section. (line 2278)
-* section number, cross referencing: \ref. (line 2869)
-* section numbers, printing: Sectioning. (line 2109)
-* section symbol: Text symbols. (line 12075)
-* section, redefining: \@startsection. (line 2548)
-* sectioning commands: Sectioning. (line 2052)
-* sectioning, part: \part. (line 2131)
+ (line 13970)
+* sans serif font: Font styles. (line 1284)
+* Scaled point: Units of length. (line 7515)
+* scaling: \scalebox. (line 12017)
+* scaling <1>: \resizebox. (line 12048)
+* script fonts: Calligraphic. (line 8988)
+* script letters for math: Font styles. (line 1272)
+* secnumdepth: Sectioning. (line 2012)
+* secnumdepth counter: Sectioning. (line 2013)
+* section: Sectioning. (line 1956)
+* section <1>: \section. (line 2182)
+* section number, cross referencing: \ref. (line 2773)
+* section numbers, printing: Sectioning. (line 2013)
+* section symbol: Text symbols. (line 12226)
+* section, redefining: \@startsection. (line 2452)
+* sectioning commands: Sectioning. (line 1956)
+* sectioning, part: \part. (line 2035)
* series, of fonts: Low-level font commands.
- (line 1513)
+ (line 1417)
* setspace package: Low-level font commands.
- (line 1583)
-* setting counters: \setcounter. (line 7281)
+ (line 1487)
+* setting counters: \setcounter. (line 7298)
* shapes, of fonts: Low-level font commands.
- (line 1553)
+ (line 1457)
* sharp S letters: Additional Latin letters.
- (line 12344)
-* showidx package: Indexes. (line 12910)
-* simulating typed text: verbatim. (line 5639)
-* single angle quotation marks: Text symbols. (line 12046)
-* single guillemets: Text symbols. (line 12046)
-* single left quote: Text symbols. (line 12174)
-* single low-9 quotation mark: Text symbols. (line 12068)
-* single quote, straight: Text symbols. (line 12180)
-* single right quote: Text symbols. (line 12177)
-* siunitx package: ~. (line 10120)
-* sizes of text: Font sizes. (line 1436)
-* skip register, plain TeX: \newlength. (line 6684)
-* slanted font: Font styles. (line 1383)
-* slides class: Document classes. (line 734)
-* sloppypar: sloppypar. (line 5975)
-* sloppypar environment: sloppypar. (line 5975)
-* small caps font: Font styles. (line 1377)
-* sort: \newglossaryentry. (line 13305)
-* sp: Units of length. (line 7492)
-* space, hard: ~. (line 10094)
-* space, inserting horizontal: \hss. (line 9890)
-* space, inserting vertical: \addvspace. (line 10499)
+ (line 12495)
+* showidx package: Indexes. (line 13061)
+* simulating typed text: verbatim. (line 5543)
+* single angle quotation marks: Text symbols. (line 12197)
+* single guillemets: Text symbols. (line 12197)
+* single left quote: Text symbols. (line 12325)
+* single low-9 quotation mark: Text symbols. (line 12219)
+* single quote, straight: Text symbols. (line 12331)
+* single right quote: Text symbols. (line 12328)
+* siunitx package: ~. (line 10270)
+* sizes of text: Font sizes. (line 1340)
+* skip register, plain TeX: \newlength. (line 6700)
+* slanted font: Font styles. (line 1287)
+* slides class: Document classes. (line 635)
+* sloppypar: sloppypar. (line 5879)
+* sloppypar environment: sloppypar. (line 5879)
+* small caps font: Font styles. (line 1281)
+* sort: \newglossaryentry. (line 13454)
+* sp: Units of length. (line 7515)
+* space, hard: ~. (line 10244)
+* space, inserting horizontal: \hss. (line 10040)
+* space, inserting vertical: \addvspace. (line 10649)
* space, negative thin: \thinspace & \negthinspace.
- (line 10150)
+ (line 10300)
* space, thin: \thinspace & \negthinspace.
- (line 10150)
-* space, unbreakable: ~. (line 10094)
-* space, vertical: \vspace. (line 10419)
-* spaces: Spaces. (line 9772)
+ (line 10300)
+* space, unbreakable: ~. (line 10244)
+* space, vertical: \vspace. (line 10569)
+* spaces: Spaces. (line 9922)
* spaces, ignore around commands: \ignorespaces & \ignorespacesafterend.
- (line 7063)
+ (line 7080)
* spacing within math mode: Spacing in math mode.
- (line 9272)
-* spacing, inter-sentence: \frenchspacing. (line 10023)
-* spacing, inter-sentence <1>: \normalsfcodes. (line 10043)
-* Spanish ordinals, feminine and masculine: Text symbols. (line 12159)
+ (line 9311)
+* spacing, inter-sentence: \frenchspacing. (line 10173)
+* spacing, inter-sentence <1>: \normalsfcodes. (line 10193)
+* spacing, math mode: \phantom & \vphantom & \hphantom.
+ (line 9429)
+* Spanish ordinals, feminine and masculine: Text symbols. (line 12310)
* special characters: Reserved characters.
- (line 11932)
+ (line 12083)
* special characters <1>: Additional Latin letters.
- (line 12298)
+ (line 12449)
* special insertions: Special insertions.
- (line 11926)
-* specifier, float placement: Floats. (line 1927)
+ (line 12077)
+* specifier, float placement: Floats. (line 1831)
* splitting the input file: Splitting the input.
- (line 12421)
-* square root: \sqrt. (line 9418)
-* stack math: \stackrel. (line 9434)
-* star-variants, commands: \@ifstar. (line 642)
+ (line 12572)
+* square root: \sqrt. (line 9569)
+* stack math: \stackrel. (line 9585)
+* star-variants, commands: \@ifstar. (line 6598)
* starred form, defining new commands: \newcommand & \renewcommand.
- (line 6509)
-* starting a new page: \newpage. (line 6124)
+ (line 6413)
+* starting a new page: \newpage. (line 6028)
* starting a new page and clearing floats: \clearpage & \cleardoublepage.
- (line 6083)
+ (line 5987)
* starting and ending: Starting and ending.
- (line 390)
+ (line 399)
* starting on a right-hand page: \clearpage & \cleardoublepage.
- (line 6083)
-* sterling symbol: Text symbols. (line 12064)
-* straight double quote, base: Text symbols. (line 12184)
-* straight quote, base: Text symbols. (line 12184)
-* straight single quote: Text symbols. (line 12180)
-* stretch, infinite horizontal: \hfill. (line 9857)
-* stretch, infinite vertical: \vfill. (line 10470)
-* stretch, omitting vertical: \raggedbottom. (line 1758)
-* strut: \strut. (line 10334)
-* styles of text: Font styles. (line 1296)
-* styles, page: Page styles. (line 9518)
-* subparagraph: Sectioning. (line 2052)
+ (line 5987)
+* sterling symbol: Text symbols. (line 12215)
+* straight double quote, base: Text symbols. (line 12335)
+* straight quote, base: Text symbols. (line 12335)
+* straight single quote: Text symbols. (line 12331)
+* stretch, infinite horizontal: \hfill. (line 10007)
+* stretch, infinite vertical: \vfill. (line 10620)
+* stretch, omitting vertical: \raggedbottom. (line 1662)
+* strut: \strut. (line 10484)
+* styles of text: Font styles. (line 1200)
+* styles, page: Page styles. (line 9669)
+* subparagraph: Sectioning. (line 1956)
* subparagraph <1>: \subsubsection & \paragraph & \subparagraph.
- (line 2420)
+ (line 2324)
* subscript: Subscripts & superscripts.
- (line 7938)
-* subsection: Sectioning. (line 2052)
-* subsection <1>: \subsection. (line 2356)
+ (line 7977)
+* subsection: Sectioning. (line 1956)
+* subsection <1>: \subsection. (line 2260)
* subsubsection: \subsubsection & \paragraph & \subparagraph.
- (line 2420)
+ (line 2324)
* superscript: Subscripts & superscripts.
- (line 7938)
-* symbol: \newglossaryentry. (line 13309)
-* symbols package: Math symbols. (line 8001)
+ (line 7977)
+* symbol: \newglossaryentry. (line 13458)
+* symbols package: Math symbols. (line 8040)
* symbols, boldface: \boldmath & \unboldmath.
- (line 8967)
-* symbols, math: Math symbols. (line 8001)
-* symbols, text: Text symbols. (line 12021)
-* tab stops, using: tabbing. (line 4802)
-* tabbing environment: tabbing. (line 4802)
-* table environment: table. (line 4951)
+ (line 9006)
+* symbols, math: Math symbols. (line 8040)
+* symbols, text: Text symbols. (line 12172)
+* tab stops, using: tabbing. (line 4705)
+* tabbing environment: tabbing. (line 4705)
+* table environment: table. (line 4854)
* table of contents entry, manually adding: \addcontentsline.
- (line 12744)
-* table of contents file: Output files. (line 459)
+ (line 12895)
+* table of contents file: Output files. (line 468)
* table of contents, avoiding footnotes: Footnotes in section headings.
- (line 6380)
+ (line 6284)
* table of contents, creating: Table of contents etc..
- (line 12650)
+ (line 12801)
* table of contents, sectioning numbers printed: Sectioning.
- (line 2120)
-* tables, creating: table. (line 4951)
-* tabular environment: tabular. (line 5011)
-* template, article: article template. (line 13969)
-* template, beamer: beamer template. (line 13938)
-* template, book: book template. (line 13989)
+ (line 2024)
+* tables, creating: table. (line 4854)
+* tabular environment: tabular. (line 4914)
+* template, article: article template. (line 14118)
+* template, beamer: beamer template. (line 14087)
+* template, book: book template. (line 14138)
* template, book <1>: Larger book template.
- (line 14012)
-* template, TUGboat: tugboat template. (line 14062)
+ (line 14161)
+* template, TUGboat: tugboat template. (line 14211)
* templates, document: Document templates.
- (line 13931)
+ (line 14080)
* terminal input/output: Terminal input/output.
- (line 13642)
-* TeX logo: Text symbols. (line 12078)
-* text symbols: Text symbols. (line 12021)
-* text, resizing: \scalebox. (line 11866)
-* text, resizing <1>: \resizebox. (line 11897)
-* text, scaling: \scalebox. (line 11866)
-* text, scaling <1>: \resizebox. (line 11897)
+ (line 13791)
+* TeX logo: Text symbols. (line 12229)
+* text symbols: Text symbols. (line 12172)
+* text, resizing: \scalebox. (line 12017)
+* text, resizing <1>: \resizebox. (line 12048)
+* text, scaling: \scalebox. (line 12017)
+* text, scaling <1>: \resizebox. (line 12048)
* textcase package: Upper and lower case.
- (line 12000)
-* textcomp package: Font styles. (line 1422)
-* textcomp package <1>: Text symbols. (line 12021)
-* thanks, for titlepage: \maketitle. (line 9581)
-* thebibliography environment: thebibliography. (line 5337)
-* theorem environment: theorem. (line 5570)
-* theorem-like environment: \newtheorem. (line 6867)
-* theorems, defining: \newtheorem. (line 6867)
-* theorems, typesetting: theorem. (line 5570)
+ (line 12151)
+* textcomp package: Font styles. (line 1326)
+* textcomp package <1>: Text symbols. (line 12172)
+* thanks, for titlepage: \maketitle. (line 9732)
+* thebibliography environment: thebibliography. (line 5239)
+* theorem environment: theorem. (line 5474)
+* theorem-like environment: \newtheorem. (line 6884)
+* theorems, defining: \newtheorem. (line 6884)
+* theorems, typesetting: theorem. (line 5474)
* thin space: Spacing in math mode.
- (line 9298)
+ (line 9337)
* thin space <1>: \thinspace & \negthinspace.
- (line 10150)
+ (line 10300)
* thin space, negative: Spacing in math mode.
- (line 9312)
+ (line 9351)
* thin space, negative <1>: \thinspace & \negthinspace.
- (line 10150)
+ (line 10300)
* thorn, Icelandic letter: Additional Latin letters.
- (line 12348)
-* three-quarters em-dash: Text symbols. (line 12193)
-* tie: ~. (line 10094)
-* tie-after accent: Accents. (line 12285)
-* TikZ package: \line. (line 4494)
-* TikZ package <1>: \strut. (line 10390)
-* TikZ package <2>: \mbox & \makebox. (line 10621)
-* tilde accent: Accents. (line 12250)
-* tilde accent, math: Math accents. (line 9210)
-* tilde, ASCII, in text: Text symbols. (line 12084)
+ (line 12499)
+* three-quarters em-dash: Text symbols. (line 12344)
+* tie: ~. (line 10244)
+* tie-after accent: Accents. (line 12436)
+* TikZ package: \line. (line 4397)
+* TikZ package <1>: \strut. (line 10540)
+* TikZ package <2>: \mbox & \makebox. (line 10771)
+* tilde accent: Accents. (line 12401)
+* tilde accent, math: Math accents. (line 9249)
+* tilde, ASCII, in text: Text symbols. (line 12235)
* title page, separate or run-in: Document class options.
- (line 828)
-* title pages, creating: titlepage. (line 5600)
-* title, for titlepage: \maketitle. (line 9588)
-* titlepage environment: titlepage. (line 5600)
+ (line 729)
+* title pages, creating: titlepage. (line 5504)
+* title, for titlepage: \maketitle. (line 9739)
+* titlepage environment: titlepage. (line 5504)
* titlepage option: Document class options.
- (line 806)
-* titles, making: \maketitle. (line 9530)
-* titlesec package: \part. (line 2179)
-* titlesec package <1>: \chapter. (line 2258)
-* titlesec package <2>: \section. (line 2336)
-* titlesec package <3>: \subsection. (line 2402)
+ (line 707)
+* titles, making: \maketitle. (line 9681)
+* titlesec package: \part. (line 2083)
+* titlesec package <1>: \chapter. (line 2162)
+* titlesec package <2>: \section. (line 2240)
+* titlesec package <3>: \subsection. (line 2306)
* titlesec package <4>: \subsubsection & \paragraph & \subparagraph.
- (line 2479)
+ (line 2383)
* tocbibbind package: Table of contents etc..
- (line 12735)
-* tocdepth: Sectioning. (line 2119)
-* tocdepth counter: Sectioning. (line 2120)
+ (line 12886)
+* tocdepth: Sectioning. (line 2023)
+* tocdepth counter: Sectioning. (line 2024)
* tocloft package: Table of contents etc..
- (line 12735)
-* today's date: \today. (line 12390)
-* tombstone: \rule. (line 12362)
+ (line 12886)
+* today's date: \today. (line 12541)
+* tombstone: \rule. (line 12513)
* topmargin: Page layout parameters.
- (line 1888)
-* topnumber: Floats. (line 2034)
-* topnumber <1>: Floats. (line 2035)
-* totalnumber: Floats. (line 2038)
-* totalnumber <1>: Floats. (line 2039)
-* trademark symbol: Text symbols. (line 12196)
-* transcript file: Output files. (line 444)
-* TrueType fonts: TeX engines. (line 468)
-* TUGboat template: tugboat template. (line 14062)
-* two-column output: \twocolumn. (line 1630)
-* two-thirds em-dash: Text symbols. (line 12199)
+ (line 1792)
+* topnumber: Floats. (line 1938)
+* topnumber <1>: Floats. (line 1939)
+* totalnumber: Floats. (line 1942)
+* totalnumber <1>: Floats. (line 1943)
+* trademark symbol: Text symbols. (line 12347)
+* transcript file: Output files. (line 453)
+* TrueType fonts: TeX engines. (line 477)
+* TUGboat template: tugboat template. (line 14211)
+* two-column output: \twocolumn. (line 1534)
+* two-thirds em-dash: Text symbols. (line 12350)
* twocolumn option: Document class options.
- (line 835)
+ (line 736)
* twoside option: Document class options.
- (line 835)
-* type styles: Font styles. (line 1296)
-* typed text, simulating: verbatim. (line 5639)
-* typeface sizes: Font sizes. (line 1436)
-* typefaces: Fonts. (line 1290)
-* typewriter font: Font styles. (line 1386)
-* typewriter labels in lists: description. (line 3160)
+ (line 736)
+* type styles: Font styles. (line 1200)
+* typed text, simulating: verbatim. (line 5543)
+* typeface sizes: Font sizes. (line 1340)
+* typefaces: Fonts. (line 1194)
+* typewriter font: Font styles. (line 1290)
+* typewriter labels in lists: description. (line 3064)
* ulem package: Over- and Underlining.
- (line 9236)
-* umlaut accent: Accents. (line 12227)
-* underbar: Accents. (line 12255)
+ (line 9275)
+* umlaut accent: Accents. (line 12378)
+* underbar: Accents. (line 12406)
* underlining: Over- and Underlining.
- (line 9227)
-* underscore, in text: Text symbols. (line 12202)
-* Unicode input, native: TeX engines. (line 468)
-* units, of length: Units of length. (line 7462)
+ (line 9266)
+* underscore, in text: Text symbols. (line 12353)
+* Unicode input, native: TeX engines. (line 477)
+* units, of length: Units of length. (line 7485)
* unofficial nature of this manual: About this document.
- (line 331)
-* unordered lists: itemize. (line 3624)
+ (line 340)
+* unordered lists: itemize. (line 3528)
* uppercase: Upper and lower case.
- (line 11964)
-* url package: \verb. (line 5710)
-* using BibTeX: Using BibTeX. (line 5512)
+ (line 12115)
+* url package: \verb. (line 5614)
+* using BibTeX: Using BibTeX. (line 5416)
* usrguide official documentation: About this document.
- (line 350)
-* UTF-8: TeX engines. (line 468)
-* variables, a list of: Counters. (line 7138)
-* vector symbol, math: Math accents. (line 9213)
-* verbatim environment: verbatim. (line 5639)
-* verbatim text: verbatim. (line 5639)
-* verbatim text, inline: \verb. (line 5678)
-* verbatimbox package: verbatim. (line 5670)
-* verse environment: verse. (line 5725)
-* vertical bar, double, in text: Text symbols. (line 12096)
-* vertical bar, in text: Text symbols. (line 12093)
-* vertical mode: Modes. (line 9472)
-* vertical space: \vspace. (line 10419)
-* vertical space <1>: \addvspace. (line 10499)
+ (line 359)
+* UTF-8: TeX engines. (line 477)
+* variables, a list of: Counters. (line 7155)
+* vector symbol, math: Math accents. (line 9252)
+* verbatim environment: verbatim. (line 5543)
+* verbatim text: verbatim. (line 5543)
+* verbatim text, inline: \verb. (line 5582)
+* verbatimbox package: verbatim. (line 5574)
+* verse environment: verse. (line 5629)
+* vertical bar, double, in text: Text symbols. (line 12247)
+* vertical bar, in text: Text symbols. (line 12244)
+* vertical mode: Modes. (line 9623)
+* vertical space: \vspace. (line 10569)
+* vertical space <1>: \addvspace. (line 10649)
* vertical space before paragraphs: \parindent & \parskip.
- (line 7771)
-* visible space: \verb. (line 5703)
-* visible space symbol, in text: Text symbols. (line 12205)
+ (line 7810)
+* vertical spacing: \phantom & \vphantom & \hphantom.
+ (line 9429)
+* vertical spacing, math mode: \smash. (line 9368)
+* visible space: \verb. (line 5607)
+* visible space symbol, in text: Text symbols. (line 12356)
* weights, of fonts: Low-level font commands.
- (line 1523)
-* white space: Spaces. (line 9772)
-* wide hat accent, math: Math accents. (line 9216)
-* wide tilde accent, math: Math accents. (line 9219)
+ (line 1427)
+* white space: Spaces. (line 9922)
+* wide hat accent, math: Math accents. (line 9255)
+* wide tilde accent, math: Math accents. (line 9258)
* widths, of fonts: Low-level font commands.
- (line 1535)
-* writing external files: filecontents. (line 3469)
-* writing letters: Letters. (line 13345)
-* x-height: Units of length. (line 7494)
-* xdvi command: Output files. (line 426)
-* xdvipdfmx: TeX engines. (line 501)
-* xelatex command: TeX engines. (line 501)
-* XeTeX: TeX engines. (line 501)
-* xindy: makeindex. (line 13183)
-* xindy program: makeindex. (line 13183)
+ (line 1439)
+* writing external files: filecontents. (line 3373)
+* writing letters: Letters. (line 13494)
+* x-height: Units of length. (line 7517)
+* xdvi command: Output files. (line 435)
+* xdvipdfmx: TeX engines. (line 510)
+* xelatex command: TeX engines. (line 510)
+* XeTeX: TeX engines. (line 510)
+* xindy: makeindex. (line 13333)
+* xindy program: makeindex. (line 13333)