[latexrefman-commits] [SCM] latexrefman updated: r687 - trunk

jimhefferon at gnu.org.ua jimhefferon at gnu.org.ua
Sat Sep 8 12:58:07 CEST 2018


Author: jimhefferon
Date: 2018-09-08 13:58:06 +0300 (Sat, 08 Sep 2018)
New Revision: 687

Added:
   trunk/latex2elocal.css
Modified:
   trunk/ChangeLog
   trunk/latex2e.css
   trunk/latex2e.dbk
   trunk/latex2e.dvi
   trunk/latex2e.html
   trunk/latex2e.info
   trunk/latex2e.pdf
   trunk/latex2e.texi
   trunk/latex2e.txt
   trunk/latex2e.xml
Log:
Add latex2elocal.css as example for local styling

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2018-08-09 12:28:40 UTC (rev 686)
+++ trunk/ChangeLog	2018-09-08 10:58:06 UTC (rev 687)
@@ -1,5 +1,11 @@
 2018-08-09  Jim Hefferon  <jhefferon at smcvt.edu>
 
+	* latex2e.texi Correct wording in a couple of spots.
+	* latex2elocal.css  Add for hosts to put in local styling.
+	* latex.css  Move optional stylings to prior file.
+
+2018-08-09  Jim Hefferon  <jhefferon at smcvt.edu>
+
 	* latex2e.texi (\cite) Add reference to bibliographic styles.
 	(\rotatebox) Correct displayed command, adjust wording.
 

Modified: trunk/latex2e.css
===================================================================
--- trunk/latex2e.css	2018-08-09 12:28:40 UTC (rev 686)
+++ trunk/latex2e.css	2018-09-08 10:58:06 UTC (rev 687)
@@ -2,6 +2,10 @@
    Minor css for latexrefman. Public domain.
    Originally written by Jim Hefferon and Karl Berry, 2018. */
 
+/* So you can style for yourself */
+ at import url(latex2elocal.css);
+
+
 BODY {
   margin-top: 1em;
   margin-left: 1em; /* auto results in two-digit <ol> lost off left */
@@ -16,11 +20,5 @@
    and Texinfo won't fix it. */
 code {font-style:normal; font-family:monospace; }
 
-/* Make the navigation header less obtrusive. */
-.header {font-size:small; }
-
-/* A little bit of color for fun. */
-h3 {color:#007849; }
-
 /* We put a link to our own home page at the bottom. */
 div.referenceinfo {font-size:small;}

Modified: trunk/latex2e.dbk
===================================================================
--- trunk/latex2e.dbk	2018-08-09 12:28:40 UTC (rev 686)
+++ trunk/latex2e.dbk	2018-09-08 10:58:06 UTC (rev 687)
@@ -233,7 +233,7 @@
 <sect1 label="2.1" id="Starting-and-ending">
 <title>Starting and ending</title>
 
-<anchor id="Starting-_0026-ending"/><!-- old name -->
+<!-- 2018-Sep-02 JH redundant on URL scheme @anchor{Starting & ending}@c old name -->
 <indexterm role="cp"><primary>starting and ending</primary></indexterm>
 <indexterm role="cp"><primary>ending and starting</primary></indexterm>
 <indexterm role="cp"><primary>hello, world</primary></indexterm>
@@ -8066,15 +8066,16 @@
 
 <para>Synopsis:
 </para>
-<screen>\newsavebox{<replaceable>cmd</replaceable>}
+<screen>\newsavebox{\<replaceable>cmd</replaceable>}
 </screen>
-<para>Define <literal>\<replaceable>cmd</replaceable></literal> 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 (see <link linkend="Boxes">Boxes</link>).  The required bin name
-<literal><replaceable>cmd</replaceable></literal> must start with a backslash, <literal>\</literal>, and must not
-already be defined.  This command is fragile (see <link linkend="_005cprotect">\protect</link>).
+<para>Define \<replaceable>cmd</replaceable>, the string consisting of a backslash followed by
+<replaceable>cmd</replaceable>, 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 (see <link linkend="Boxes">Boxes</link>).  The bin name \<replaceable>cmd</replaceable> is required, must
+start with a backslash, \, and must not already be a defined command.
+This command is fragile (see <link linkend="_005cprotect">\protect</link>).
 </para>
-<para>The first line here sets you up to save the material for later use. 
+<para>This allocates a bin and then puts typeset material into it.
 </para>
 <screen>\newsavebox{\logobox}
 \savebox{\logobox}{LoGo}
@@ -8944,7 +8945,7 @@
 <variablelist><varlistentry><term><literal>pt</literal>
 </term><listitem><indexterm role="fn"><primary>pt</primary></indexterm>
 <indexterm role="cp"><primary>Point</primary></indexterm>
-<anchor id="units-of-length-pt"/><para>Point 1/72.27 inch.  The conversion to metric units, to two decimal
+<anchor id="units-of-length-pt"/><para>Point, 1/72.27 inch.  The conversion to metric units, to two decimal
 places, is 1point = 2.85mm = 28.45cm. 
 </para>
 </listitem></varlistentry><varlistentry><term><literal>pc</literal>
@@ -9066,8 +9067,8 @@
 </para>
 <para>Below, if <literal>\parskip</literal> starts with the value <literal>0pt plus 1pt</literal> 
 </para>
-<screen>\addtolength{\parskip}{1pt}
-Doctor: how is the boy who swallowed the silver dollar?
+<screen>Doctor: how is the boy who swallowed the silver dollar?
+\addtolength{\parskip}{1pt}
 
 Nurse: no change.
 </screen>
@@ -16693,7 +16694,7 @@
 </screen>
 <para>Compiling this document <filename>book.tex</filename> with the command line
 <literal>pdflatex book</literal> will give the ‘<literal>CTAN</literal>’ link in blue.  But
-compiling it with <literal>pdflatex "\def\paperversion{}\input test.tex"</literal>
+compiling it with <literal>pdflatex "\def\paperversion{}\input book.tex"</literal>
 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.)
@@ -16715,7 +16716,7 @@
 <screen>pdflatex -jobname=aa "\RequirePackage[draft]{graphicx}\input{aa.tex}"
 </screen>
 <para>so the graphic files are read for their size information but not
-incorporated into the PDF.  (The <literal>jobname</literal> option is needed because
+incorporated into the PDF.  (The <literal>jobname</literal> option is there because
 otherwise the output file would be <filename>graphicx.pdf</filename>, as
 <literal>\RequirePackage</literal> does an <literal>\input</literal> of its own.)
 </para>

Modified: trunk/latex2e.dvi
===================================================================
(Binary files differ)

Modified: trunk/latex2e.html
===================================================================
--- trunk/latex2e.html	2018-08-09 12:28:40 UTC (rev 686)
+++ trunk/latex2e.html	2018-09-08 10:58:06 UTC (rev 687)
@@ -56,7 +56,11 @@
    Minor css for latexrefman. Public domain.
    Originally written by Jim Hefferon and Karl Berry, 2018. */
 
+/* So you can style for yourself */
+ at import url(latex2elocal.css);
 
+
+
 a.summary-letter {text-decoration: none}
 blockquote.indentedblock {margin-right: 0em}
 blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
@@ -95,10 +99,10 @@
 code {font-style:normal; font-family:monospace; }
 
 /* Make the navigation header less obtrusive. */
-.header {font-size:small; }
+/* .header {font-size:small; } */
 
 /* A little bit of color for fun. */
-h3 {color:#007849; }
+/* h3 {color:#007849; }  */
 
 /* We put a link to our own home page at the bottom. */
 div.referenceinfo {font-size:small;}
@@ -757,7 +761,7 @@
 <a name="Starting-and-ending-1"></a>
 <h3 class="section">2.1 Starting and ending</h3>
 
-<a name="Starting-_0026-ending"></a><a name="index-starting-and-ending"></a>
+<a name="index-starting-and-ending"></a>
 <a name="index-ending-and-starting"></a>
 <a name="index-hello_002c-world"></a>
 
@@ -10378,16 +10382,17 @@
 <p>Synopsis:
 </p>
 <div class="example">
-<pre class="example">\newsavebox{<var>cmd</var>}
+<pre class="example">\newsavebox{\<var>cmd</var>}
 </pre></div>
 
-<p>Define <code>\<var>cmd</var></code> 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 (see <a href="#Boxes">Boxes</a>).  The required bin name
-<code><var>cmd</var></code> must start with a backslash, <code>\</code>, and must not
-already be defined.  This command is fragile (see <a href="#g_t_005cprotect">\protect</a>).
+<p>Define \<var>cmd</var>, the string consisting of a backslash followed by
+<var>cmd</var>, 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 (see <a href="#Boxes">Boxes</a>).  The bin name \<var>cmd</var> is required, must
+start with a backslash, \, and must not already be a defined command.
+This command is fragile (see <a href="#g_t_005cprotect">\protect</a>).
 </p>
-<p>The first line here sets you up to save the material for later use. 
+<p>This allocates a bin and then puts typeset material into it.
 </p>
 <div class="example">
 <pre class="example">\newsavebox{\logobox}
@@ -11483,7 +11488,7 @@
 <dt><code>pt</code></dt>
 <dd><a name="index-pt"></a>
 <a name="index-Point"></a>
-<a name="units-of-length-pt"></a><p>Point 1/72.27 inch.  The conversion to metric units, to two decimal
+<a name="units-of-length-pt"></a><p>Point, 1/72.27 inch.  The conversion to metric units, to two decimal
 places, is 1point = 2.85mm = 28.45cm. 
 </p>
 </dd>
@@ -11630,8 +11635,8 @@
 <p>Below, if <code>\parskip</code> starts with the value <code>0pt plus 1pt</code> 
 </p>
 <div class="example">
-<pre class="example">\addtolength{\parskip}{1pt}
-Doctor: how is the boy who swallowed the silver dollar?
+<pre class="example">Doctor: how is the boy who swallowed the silver dollar?
+\addtolength{\parskip}{1pt}
 
 Nurse: no change.
 </pre></div>
@@ -21946,7 +21951,7 @@
 
 <p>Compiling this document <samp>book.tex</samp> with the command line
 <code>pdflatex book</code> will give the ‘<samp>CTAN</samp>’ link in blue.  But
-compiling it with <code>pdflatex "\def\paperversion{}\input test.tex"</code>
+compiling it with <code>pdflatex "\def\paperversion{}\input book.tex"</code>
 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.)
@@ -21970,7 +21975,7 @@
 </pre></div>
 
 <p>so the graphic files are read for their size information but not
-incorporated into the PDF.  (The <code>jobname</code> option is needed because
+incorporated into the PDF.  (The <code>jobname</code> option is there because
 otherwise the output file would be <samp>graphicx.pdf</samp>, as
 <code>\RequirePackage</code> does an <code>\input</code> of its own.)
 </p>

Modified: trunk/latex2e.info
===================================================================
--- trunk/latex2e.info	2018-08-09 12:28:40 UTC (rev 686)
+++ trunk/latex2e.info	2018-09-08 10:58:06 UTC (rev 687)
@@ -7037,15 +7037,16 @@
 
 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}
@@ -7864,8 +7865,8 @@
 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
@@ -7954,8 +7955,8 @@
 
    Below, if '\parskip' starts with the value '0pt plus 1pt'
 
+     Doctor: how is the boy who swallowed the silver dollar?
      \addtolength{\parskip}{1pt}
-     Doctor: how is the boy who swallowed the silver dollar?
 
      Nurse: no change.
 
@@ -14770,7 +14771,7 @@
 
 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.)
 
@@ -14789,7 +14790,7 @@
      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.)
 
@@ -17589,7 +17590,6 @@
 Node: About this document3652
 Node: Overview5504
 Node: Starting and ending7053
-Ref: Starting & ending7188
 Node: Output files8365
 Ref: output files dvi8644
 Ref: output files pdf9155
@@ -17832,257 +17832,257 @@
 Node: \newcounter267757
 Node: \newlength269484
 Node: \newsavebox270306
-Node: \newenvironment & \renewenvironment271222
-Node: \newtheorem276546
-Node: \newfont280118
-Node: \protect281349
-Node: \ignorespaces & \ignorespacesafterend283735
-Node: Counters286473
-Node: \alph \Alph \arabic \roman \Roman \fnsymbol288174
-Node: \usecounter290828
-Node: \value291687
-Node: \setcounter292740
-Node: \addtocounter293336
-Node: \refstepcounter293790
-Node: \stepcounter294459
-Node: \day & \month & \year295005
-Node: Lengths295816
-Node: Units of length300285
-Ref: units of length pt300488
-Ref: units of length pc300610
-Ref: units of length in300633
-Ref: units of length bp300659
-Ref: units of length cm300790
-Ref: units of length mm300812
-Ref: units of length dd300834
-Ref: units of length cc300866
-Ref: units of length sp300891
-Ref: Lengths/em300922
-Ref: Lengths/en300922
-Ref: Lengths/ex300922
-Ref: units of length em300922
-Ref: units of length en300922
-Ref: units of length ex300922
-Node: \setlength301778
-Node: \addtolength302835
-Node: \settodepth303875
-Node: \settoheight304735
-Node: \settowidth305601
-Node: Making paragraphs306450
-Node: \par308221
-Node: \indent & \noindent310168
-Node: \parindent & \parskip311702
-Node: Marginal notes312737
-Ref: marginal notes marginparpush314133
-Ref: marginal notes marginparsep314246
-Ref: marginal notes marginparwidth314378
-Node: Math formulas314727
-Node: Subscripts & superscripts318895
-Node: Math symbols321053
-Node: Blackboard bold347220
-Node: Calligraphic347992
-Node: \boldmath & \unboldmath348564
-Node: Dots350078
-Ref: ellipses cdots350500
-Ref: ellipses ddots350647
-Ref: ellipses ldots350736
-Ref: ellipses vdots351157
-Node: Math functions352343
-Node: Math accents353987
-Node: Over- and Underlining354886
-Node: Spacing in math mode356713
-Ref: spacing in math mode thickspace357645
-Ref: spacing in math mode medspace357737
-Ref: Spacing in math mode/\thinspace357833
-Ref: spacing in math mode thinspace357833
-Ref: spacing in math mode negthinspace358314
-Ref: spacing in math mode quad358512
-Ref: spacing in math mode qquad358768
-Node: Math miscellany358866
-Node: Colon character & \colon359425
-Node: \*360118
-Node: \frac360702
-Node: \left & \right361082
-Node: \sqrt362256
-Node: \stackrel362851
-Node: Modes363124
-Ref: modes paragraph mode363574
-Ref: modes lr mode363770
-Ref: modes math mode364376
-Ref: modes vertical mode364711
-Ref: modes internal vertical mode364882
-Ref: modes inner paragraph mode365355
-Ref: modes outer paragraph mode365355
-Node: \ensuremath365769
-Node: Page styles366474
-Node: \maketitle367237
-Node: \pagenumbering370247
-Node: \pagestyle372235
-Node: \thispagestyle375737
-Node: Spaces376691
-Node: \enspace & \quad & \qquad378132
-Node: \hspace379046
-Node: \hfill380884
-Node: \hss381948
-Node: \spacefactor382642
-Node: \@386029
-Ref: \AT386129
-Node: \frenchspacing388069
-Node: \normalsfcodes388904
-Node: \(SPACE)389151
-Node: ~390786
-Node: \thinspace & \negthinspace393256
-Node: \/394199
-Node: \hrulefill & \dotfill395505
-Node: \bigskip & \medskip & \smallskip396861
-Ref: bigskip397679
-Ref: medskip397883
-Ref: smallskip398092
-Node: \bigbreak & \medbreak & \smallbreak398753
-Node: \strut399739
-Node: \vspace402933
-Node: \vfill404496
-Node: \addvspace405424
-Node: Boxes407422
-Node: \mbox & \makebox408128
-Ref: mbox makebox depth409340
-Ref: mbox makebox height409340
-Ref: mbox makebox width409340
-Ref: mbox makebox totalheight409340
-Node: \fbox & \framebox411434
-Ref: fbox framebox fboxrule412747
-Ref: fbox framebox fboxsep412937
-Node: \parbox414026
-Node: \raisebox416330
-Ref: raisebox depth417293
-Ref: raisebox height417293
-Ref: raisebox width417293
-Ref: raisebox totalheight417293
-Node: \sbox & \savebox418007
-Node: lrbox420973
-Node: \usebox421795
-Node: Color422201
-Node: Color package options423000
-Node: Color models424646
-Ref: color models cmyk425443
-Ref: color models gray425806
-Ref: color models rgb425955
-Ref: color models RGB426292
-Ref: color models named426667
-Node: Commands for color426955
-Node: Define colors427370
-Node: Colored text428095
-Node: Colored boxes430493
-Node: Colored pages431882
-Node: Graphics432575
-Node: Graphics package options434702
-Node: Graphics package configuration437455
-Node: \graphicspath438257
-Node: \DeclareGraphicsExtensions441148
-Node: \DeclareGraphicsRule442916
-Node: Commands for graphics446098
-Node: \includegraphics446603
-Ref: includegraphics width451653
-Ref: includegraphics height452184
-Ref: includegraphics totalheght452590
-Ref: includegraphics keepaspectratio452854
-Ref: includegraphics viewport454540
-Ref: includegraphics trim454910
-Ref: includegraphics clip455366
-Ref: includegraphics page455626
-Ref: includegraphics pagebox455717
-Ref: includegraphics interpolate456582
-Ref: includegraphics quiet456787
-Ref: includegraphics draft456948
-Ref: includegraphics bb457753
-Ref: includegraphics bbllx458151
-Ref: includegraphics bblly458151
-Ref: includegraphics bburx458151
-Ref: includegraphics bbury458151
-Ref: includegraphics natwidth458293
-Ref: includegraphics natheight458293
-Ref: includegraphics hiresbb458479
-Ref: includegraphics type459241
-Ref: includegraphics ext459281
-Ref: includegraphics read459384
-Ref: includegraphics command459501
-Node: \rotatebox459746
-Node: \scalebox462600
-Node: \resizebox463656
-Node: Special insertions464848
-Node: Reserved characters465650
-Node: Upper and lower case466852
-Node: Symbols by font position468767
-Node: Text symbols469387
-Node: Accents473388
-Node: Additional Latin letters475403
-Ref: Non-English characters475574
-Node: \rule476591
-Node: \today477763
-Node: Splitting the input478699
-Node: \endinput480440
-Node: \include & \includeonly481707
-Node: \input485929
-Node: Front/back matter487144
-Node: Table of contents etc.487477
-Node: \addcontentsline491213
-Node: \addtocontents494055
-Node: \nofiles495646
-Node: Indexes496378
-Node: \index498006
-Node: makeindex503115
-Ref: makeindex preamble504783
-Ref: makeindex postamble504923
-Ref: makeindex group skip505008
-Ref: makeindex letheadflag505328
-Ref: makeindex lethead prefix505789
-Ref: makeindex lethead suffix505941
-Ref: makeindex item 0506089
-Ref: makeindex item 1506169
-Ref: makeindex item 2506244
-Ref: makeindex item 01506322
-Ref: makeindex item x1506427
-Ref: makeindex item 12506632
-Ref: makeindex item x2506740
-Ref: makeindex delim 0506900
-Ref: makeindex delim 1507030
-Ref: makeindex delim 2507160
-Ref: makeindex delim n507286
-Ref: makeindex delim r507421
-Ref: makeindex line max507529
-Ref: makeindex indent space507664
-Ref: makeindex indent length507759
-Ref: makeindex page precedence507944
-Node: \printindex508818
-Node: Glossaries509290
-Node: \newglossaryentry511257
-Node: \gls512726
-Node: Letters513520
-Node: \address517147
-Node: \cc517958
-Node: \closing518400
-Node: \encl518714
-Node: \location519128
-Node: \makelabels519392
-Node: \name521709
-Node: \opening521950
-Node: \ps522231
-Node: \signature522520
-Node: \telephone523748
-Node: Terminal input/output524113
-Node: \typein524378
-Node: \typeout525627
-Node: Command line526671
-Node: Command line options528729
-Node: Command line input532288
-Node: Recovering from errors534152
-Node: Document templates535498
-Node: beamer template535943
-Node: article template536597
-Node: book template537024
-Node: Larger book template537505
-Node: tugboat template538991
-Node: Index541362
-Ref: Command Index541448
+Node: \newenvironment & \renewenvironment271285
+Node: \newtheorem276609
+Node: \newfont280181
+Node: \protect281412
+Node: \ignorespaces & \ignorespacesafterend283798
+Node: Counters286536
+Node: \alph \Alph \arabic \roman \Roman \fnsymbol288237
+Node: \usecounter290891
+Node: \value291750
+Node: \setcounter292803
+Node: \addtocounter293399
+Node: \refstepcounter293853
+Node: \stepcounter294522
+Node: \day & \month & \year295068
+Node: Lengths295879
+Node: Units of length300348
+Ref: units of length pt300551
+Ref: units of length pc300674
+Ref: units of length in300697
+Ref: units of length bp300723
+Ref: units of length cm300854
+Ref: units of length mm300876
+Ref: units of length dd300898
+Ref: units of length cc300930
+Ref: units of length sp300955
+Ref: Lengths/em300986
+Ref: Lengths/en300986
+Ref: Lengths/ex300986
+Ref: units of length em300986
+Ref: units of length en300986
+Ref: units of length ex300986
+Node: \setlength301842
+Node: \addtolength302899
+Node: \settodepth303939
+Node: \settoheight304799
+Node: \settowidth305665
+Node: Making paragraphs306514
+Node: \par308285
+Node: \indent & \noindent310232
+Node: \parindent & \parskip311766
+Node: Marginal notes312801
+Ref: marginal notes marginparpush314197
+Ref: marginal notes marginparsep314310
+Ref: marginal notes marginparwidth314442
+Node: Math formulas314791
+Node: Subscripts & superscripts318959
+Node: Math symbols321117
+Node: Blackboard bold347284
+Node: Calligraphic348056
+Node: \boldmath & \unboldmath348628
+Node: Dots350142
+Ref: ellipses cdots350564
+Ref: ellipses ddots350711
+Ref: ellipses ldots350800
+Ref: ellipses vdots351221
+Node: Math functions352407
+Node: Math accents354051
+Node: Over- and Underlining354950
+Node: Spacing in math mode356777
+Ref: spacing in math mode thickspace357709
+Ref: spacing in math mode medspace357801
+Ref: Spacing in math mode/\thinspace357897
+Ref: spacing in math mode thinspace357897
+Ref: spacing in math mode negthinspace358378
+Ref: spacing in math mode quad358576
+Ref: spacing in math mode qquad358832
+Node: Math miscellany358930
+Node: Colon character & \colon359489
+Node: \*360182
+Node: \frac360766
+Node: \left & \right361146
+Node: \sqrt362320
+Node: \stackrel362915
+Node: Modes363188
+Ref: modes paragraph mode363638
+Ref: modes lr mode363834
+Ref: modes math mode364440
+Ref: modes vertical mode364775
+Ref: modes internal vertical mode364946
+Ref: modes inner paragraph mode365419
+Ref: modes outer paragraph mode365419
+Node: \ensuremath365833
+Node: Page styles366538
+Node: \maketitle367301
+Node: \pagenumbering370311
+Node: \pagestyle372299
+Node: \thispagestyle375801
+Node: Spaces376755
+Node: \enspace & \quad & \qquad378196
+Node: \hspace379110
+Node: \hfill380948
+Node: \hss382012
+Node: \spacefactor382706
+Node: \@386093
+Ref: \AT386193
+Node: \frenchspacing388133
+Node: \normalsfcodes388968
+Node: \(SPACE)389215
+Node: ~390850
+Node: \thinspace & \negthinspace393320
+Node: \/394263
+Node: \hrulefill & \dotfill395569
+Node: \bigskip & \medskip & \smallskip396925
+Ref: bigskip397743
+Ref: medskip397947
+Ref: smallskip398156
+Node: \bigbreak & \medbreak & \smallbreak398817
+Node: \strut399803
+Node: \vspace402997
+Node: \vfill404560
+Node: \addvspace405488
+Node: Boxes407486
+Node: \mbox & \makebox408192
+Ref: mbox makebox depth409404
+Ref: mbox makebox height409404
+Ref: mbox makebox width409404
+Ref: mbox makebox totalheight409404
+Node: \fbox & \framebox411498
+Ref: fbox framebox fboxrule412811
+Ref: fbox framebox fboxsep413001
+Node: \parbox414090
+Node: \raisebox416394
+Ref: raisebox depth417357
+Ref: raisebox height417357
+Ref: raisebox width417357
+Ref: raisebox totalheight417357
+Node: \sbox & \savebox418071
+Node: lrbox421037
+Node: \usebox421859
+Node: Color422265
+Node: Color package options423064
+Node: Color models424710
+Ref: color models cmyk425507
+Ref: color models gray425870
+Ref: color models rgb426019
+Ref: color models RGB426356
+Ref: color models named426731
+Node: Commands for color427019
+Node: Define colors427434
+Node: Colored text428159
+Node: Colored boxes430557
+Node: Colored pages431946
+Node: Graphics432639
+Node: Graphics package options434766
+Node: Graphics package configuration437519
+Node: \graphicspath438321
+Node: \DeclareGraphicsExtensions441212
+Node: \DeclareGraphicsRule442980
+Node: Commands for graphics446162
+Node: \includegraphics446667
+Ref: includegraphics width451717
+Ref: includegraphics height452248
+Ref: includegraphics totalheght452654
+Ref: includegraphics keepaspectratio452918
+Ref: includegraphics viewport454604
+Ref: includegraphics trim454974
+Ref: includegraphics clip455430
+Ref: includegraphics page455690
+Ref: includegraphics pagebox455781
+Ref: includegraphics interpolate456646
+Ref: includegraphics quiet456851
+Ref: includegraphics draft457012
+Ref: includegraphics bb457817
+Ref: includegraphics bbllx458215
+Ref: includegraphics bblly458215
+Ref: includegraphics bburx458215
+Ref: includegraphics bbury458215
+Ref: includegraphics natwidth458357
+Ref: includegraphics natheight458357
+Ref: includegraphics hiresbb458543
+Ref: includegraphics type459305
+Ref: includegraphics ext459345
+Ref: includegraphics read459448
+Ref: includegraphics command459565
+Node: \rotatebox459810
+Node: \scalebox462664
+Node: \resizebox463720
+Node: Special insertions464912
+Node: Reserved characters465714
+Node: Upper and lower case466916
+Node: Symbols by font position468831
+Node: Text symbols469451
+Node: Accents473452
+Node: Additional Latin letters475467
+Ref: Non-English characters475638
+Node: \rule476655
+Node: \today477827
+Node: Splitting the input478763
+Node: \endinput480504
+Node: \include & \includeonly481771
+Node: \input485993
+Node: Front/back matter487208
+Node: Table of contents etc.487541
+Node: \addcontentsline491277
+Node: \addtocontents494119
+Node: \nofiles495710
+Node: Indexes496442
+Node: \index498070
+Node: makeindex503179
+Ref: makeindex preamble504847
+Ref: makeindex postamble504987
+Ref: makeindex group skip505072
+Ref: makeindex letheadflag505392
+Ref: makeindex lethead prefix505853
+Ref: makeindex lethead suffix506005
+Ref: makeindex item 0506153
+Ref: makeindex item 1506233
+Ref: makeindex item 2506308
+Ref: makeindex item 01506386
+Ref: makeindex item x1506491
+Ref: makeindex item 12506696
+Ref: makeindex item x2506804
+Ref: makeindex delim 0506964
+Ref: makeindex delim 1507094
+Ref: makeindex delim 2507224
+Ref: makeindex delim n507350
+Ref: makeindex delim r507485
+Ref: makeindex line max507593
+Ref: makeindex indent space507728
+Ref: makeindex indent length507823
+Ref: makeindex page precedence508008
+Node: \printindex508882
+Node: Glossaries509354
+Node: \newglossaryentry511321
+Node: \gls512790
+Node: Letters513584
+Node: \address517211
+Node: \cc518022
+Node: \closing518464
+Node: \encl518778
+Node: \location519192
+Node: \makelabels519456
+Node: \name521773
+Node: \opening522014
+Node: \ps522295
+Node: \signature522584
+Node: \telephone523812
+Node: Terminal input/output524177
+Node: \typein524442
+Node: \typeout525691
+Node: Command line526735
+Node: Command line options528793
+Node: Command line input532352
+Node: Recovering from errors534215
+Node: Document templates535561
+Node: beamer template536006
+Node: article template536660
+Node: book template537087
+Node: Larger book template537568
+Node: tugboat template539054
+Node: Index541425
+Ref: Command Index541511
 
 End Tag Table

Modified: trunk/latex2e.pdf
===================================================================
(Binary files differ)

Modified: trunk/latex2e.texi
===================================================================
--- trunk/latex2e.texi	2018-08-09 12:28:40 UTC (rev 686)
+++ trunk/latex2e.texi	2018-09-08 10:58:06 UTC (rev 687)
@@ -282,7 +282,7 @@
 @node Starting and ending
 @section Starting and ending
 
- at anchor{Starting & ending}@c old name
+ at c 2018-Sep-02 JH redundant on URL scheme @anchor{Starting & ending}@c old name
 @cindex starting and ending
 @cindex ending and starting
 @cindex hello, world
@@ -8813,16 +8813,17 @@
 Synopsis:
 
 @example
-\newsavebox@{@var{cmd}@}
+\newsavebox@{\@var{cmd}@}
 @end example
 
-Define @code{\@var{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 (@pxref{Boxes}).  The required bin name
- at code{@var{cmd}} must start with a backslash, @code{\}, and must not
-already be defined.  This command is fragile (@pxref{\protect}).
+Define \@var{cmd}, the string consisting of a backslash followed by
+ at var{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 (@pxref{Boxes}).  The bin name \@var{cmd} is required, must
+start with a backslash, \, and must not already be a defined command.
+This command is fragile (@pxref{\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.
 
 @example
 \newsavebox@{\logobox@}
@@ -9810,7 +9811,7 @@
 @findex pt
 @cindex Point
 @anchor{units of length pt}
-Point 1/72.27 inch.  The conversion to metric units, to two decimal
+Point, 1/72.27 inch.  The conversion to metric units, to two decimal
 places, is 1 at dmn{point} = 2.85 at dmn{mm} = 28.45 at dmn{cm}. 
 
 @item pc
@@ -9952,8 +9953,8 @@
 Below, if @code{\parskip} starts with the value @code{0pt plus 1pt} 
 
 @example
+Doctor: how is the boy who swallowed the silver dollar?
 \addtolength@{\parskip@}@{1pt@}
-Doctor: how is the boy who swallowed the silver dollar?
 
 Nurse: no change.
 @end example
@@ -18504,7 +18505,7 @@
 @noindent
 Compiling this document @file{book.tex} with the command line
 @code{pdflatex book} will give the @samp{CTAN} link in blue.  But
-compiling it with @code{pdflatex "\def\paperversion@{@}\input test.tex"}
+compiling it with @code{pdflatex "\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.)
@@ -18532,7 +18533,7 @@
 
 @noindent
 so the graphic files are read for their size information but not
-incorporated into the PDF.  (The @code{jobname} option is needed because
+incorporated into the PDF.  (The @code{jobname} option is there because
 otherwise the output file would be @file{graphicx.pdf}, as
 @code{\RequirePackage} does an @code{\input} of its own.)
 

Modified: trunk/latex2e.txt
===================================================================
--- trunk/latex2e.txt	2018-08-09 12:28:40 UTC (rev 686)
+++ trunk/latex2e.txt	2018-09-08 10:58:06 UTC (rev 687)
@@ -6686,15 +6686,16 @@
 
 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}
@@ -7445,8 +7446,8 @@
 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
@@ -7529,8 +7530,8 @@
 
    Below, if '\parskip' starts with the value '0pt plus 1pt'
 
+     Doctor: how is the boy who swallowed the silver dollar?
      \addtolength{\parskip}{1pt}
-     Doctor: how is the boy who swallowed the silver dollar?
 
      Nurse: no change.
 
@@ -13797,7 +13798,7 @@
 
 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.)
 
@@ -13816,7 +13817,7 @@
      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.)
 
@@ -14081,55 +14082,55 @@
 
 * &:                                     tabular.           (line  5036)
 * * prompt:                              Recovering from errors.
-                                                            (line 13930)
+                                                            (line 13931)
 * *-form of environment commands:        \newenvironment & \renewenvironment.
-                                                            (line  6754)
+                                                            (line  6755)
 * *-form of sectioning commands:         Sectioning.        (line  2077)
 * *-form, defining new commands:         \newcommand & \renewcommand.
                                                             (line  6509)
 * --disable-write18 command-line option: Command line options.
-                                                            (line 13832)
+                                                            (line 13833)
 * --enable-write18 command-line option:  Command line options.
-                                                            (line 13832)
+                                                            (line 13833)
 * --file-line-error command-line option: Command line options.
-                                                            (line 13859)
+                                                            (line 13860)
 * --halt-on-error command-line option:   Command line options.
-                                                            (line 13856)
+                                                            (line 13857)
 * --help command-line option:            Command line options.
-                                                            (line 13797)
+                                                            (line 13798)
 * --interaction command-line option:     Command line options.
-                                                            (line 13800)
+                                                            (line 13801)
 * --jobname command-line option:         Command line options.
-                                                            (line 13817)
+                                                            (line 13818)
 * --no-file-line-error command-line option: Command line options.
-                                                            (line 13859)
+                                                            (line 13860)
 * --no-shell-escape command-line option: Command line options.
-                                                            (line 13832)
+                                                            (line 13833)
 * --output-directory command-line option: Command line options.
-                                                            (line 13829)
+                                                            (line 13830)
 * --shell-escape command-line option:    Command line options.
-                                                            (line 13832)
+                                                            (line 13833)
 * --version command-line option:         Command line options.
-                                                            (line 13792)
+                                                            (line 13793)
 * .aux file:                             Output files.      (line   449)
 * .dvi file:                             Output files.      (line   426)
-* .glo file:                             Glossaries.        (line 13264)
-* .idx file:                             Indexes.           (line 12905)
-* .idx file <1>:                         makeindex.         (line 13056)
-* .ind file:                             makeindex.         (line 13056)
-* .isty file:                            makeindex.         (line 13068)
+* .glo file:                             Glossaries.        (line 13265)
+* .idx file:                             Indexes.           (line 12906)
+* .idx file <1>:                         makeindex.         (line 13057)
+* .ind file:                             makeindex.         (line 13057)
+* .isty file:                            makeindex.         (line 13069)
 * .lof file:                             Output files.      (line   459)
 * .lof file <1>:                         Table of contents etc..
-                                                            (line 12671)
+                                                            (line 12672)
 * .log file:                             Output files.      (line   444)
 * .lot file:                             Output files.      (line   459)
 * .lot file <1>:                         Table of contents etc..
-                                                            (line 12671)
+                                                            (line 12672)
 * .pdf file:                             Output files.      (line   436)
-* .tex, default extension:               Command line.      (line 13754)
+* .tex, default extension:               Command line.      (line 13755)
 * .toc file:                             Output files.      (line   459)
 * .toc file <1>:                         Table of contents etc..
-                                                            (line 12671)
+                                                            (line 12672)
 * .xdv file:                             TeX engines.       (line   501)
 * 10pt option:                           Document class options.
                                                             (line   771)
@@ -14138,46 +14139,46 @@
 * 12pt option:                           Document class options.
                                                             (line   771)
 * ::                                     Colon character & \colon.
-                                                            (line  9355)
+                                                            (line  9356)
 * : <1>:                                 Colon character & \colon.
-                                                            (line  9355)
+                                                            (line  9356)
 * [...] for optional arguments:          LaTeX command syntax.
                                                             (line   520)
 * \ character starting commands:         LaTeX command syntax.
                                                             (line   520)
 * \!:                                    Spacing in math mode.
-                                                            (line  9332)
-* \" (umlaut accent):                    Accents.           (line 12248)
+                                                            (line  9333)
+* \" (umlaut accent):                    Accents.           (line 12249)
 * \#:                                    Reserved characters.
-                                                            (line 11960)
+                                                            (line 11961)
 * \$:                                    Reserved characters.
-                                                            (line 11960)
+                                                            (line 11961)
 * \%:                                    Reserved characters.
-                                                            (line 11960)
+                                                            (line 11961)
 * \&:                                    Reserved characters.
-                                                            (line 11960)
-* \' (acute accent):                     Accents.           (line 12252)
+                                                            (line 11961)
+* \' (acute accent):                     Accents.           (line 12253)
 * \' (tabbing):                          tabbing.           (line  4882)
-* \*:                                    \*.                (line  9375)
+* \*:                                    \*.                (line  9376)
 * \+:                                    tabbing.           (line  4874)
 * \,:                                    Spacing in math mode.
-                                                            (line  9318)
+                                                            (line  9319)
 * \-:                                    tabbing.           (line  4878)
 * \- (hyphenation):                      \- (hyphenation).  (line  5904)
-* \. (dot-over accent):                  Accents.           (line 12255)
-* \/:                                    \/.                (line 10194)
+* \. (dot-over accent):                  Accents.           (line 12256)
+* \/:                                    \/.                (line 10195)
 * \::                                    Spacing in math mode.
-                                                            (line  9314)
+                                                            (line  9315)
 * \;:                                    Spacing in math mode.
-                                                            (line  9309)
+                                                            (line  9310)
 * \<:                                    tabbing.           (line  4870)
-* \= (macron accent):                    Accents.           (line 12259)
+* \= (macron accent):                    Accents.           (line 12260)
 * \= (tabbing):                          tabbing.           (line  4864)
 * \>:                                    tabbing.           (line  4868)
 * \> <1>:                                Spacing in math mode.
-                                                            (line  9314)
+                                                            (line  9315)
 * \> (tabbing):                          tabbing.           (line  4867)
-* \@:                                    \@.                (line  9997)
+* \@:                                    \@.                (line  9998)
 * \@beginparpenalty:                     list.              (line  3964)
 * \@endparpenalty:                       list.              (line  3972)
 * \@fnsymbol:                            \footnote.         (line  6260)
@@ -14188,44 +14189,44 @@
 * \a' (acute accent in tabbing):         tabbing.           (line  4898)
 * \a= (macron accent in tabbing):        tabbing.           (line  4898)
 * \aa (aa):                              Additional Latin letters.
-                                                            (line 12325)
+                                                            (line 12326)
 * \AA (AA):                              Additional Latin letters.
-                                                            (line 12325)
-* \acute:                                Math accents.      (line  9202)
-* \addcontentsline:                      \addcontentsline.  (line 12765)
-* \address:                              \address.          (line 13443)
-* \addtocontents{EXT}{TEXT}:             \addtocontents.    (line 12840)
-* \addtocounter:                         \addtocounter.     (line  7299)
-* \addtolength:                          \addtolength.      (line  7545)
-* \addvspace:                            \addvspace.        (line 10519)
+                                                            (line 12326)
+* \acute:                                Math accents.      (line  9203)
+* \addcontentsline:                      \addcontentsline.  (line 12766)
+* \address:                              \address.          (line 13444)
+* \addtocontents{EXT}{TEXT}:             \addtocontents.    (line 12841)
+* \addtocounter:                         \addtocounter.     (line  7300)
+* \addtolength:                          \addtolength.      (line  7546)
+* \addvspace:                            \addvspace.        (line 10520)
 * \ae (ae):                              Additional Latin letters.
-                                                            (line 12329)
+                                                            (line 12330)
 * \AE (AE):                              Additional Latin letters.
-                                                            (line 12329)
-* \aleph:                                Math symbols.      (line  8036)
+                                                            (line 12330)
+* \aleph:                                Math symbols.      (line  8037)
 * \Alph example:                         enumerate.         (line  3323)
-* \alpha:                                Math symbols.      (line  8039)
+* \alpha:                                Math symbols.      (line  8040)
 * \alph{COUNTER}:                        \alph \Alph \arabic \roman \Roman \fnsymbol.
-                                                            (line  7174)
+                                                            (line  7175)
 * \Alph{COUNTER}:                        \alph \Alph \arabic \roman \Roman \fnsymbol.
-                                                            (line  7179)
-* \alsoname:                             \index.            (line 12991)
-* \amalg:                                Math symbols.      (line  8042)
-* \and for \author:                      \maketitle.        (line  9587)
-* \angle:                                Math symbols.      (line  8045)
+                                                            (line  7180)
+* \alsoname:                             \index.            (line 12992)
+* \amalg:                                Math symbols.      (line  8043)
+* \and for \author:                      \maketitle.        (line  9588)
+* \angle:                                Math symbols.      (line  8046)
 * \appendix:                             \appendix.         (line  2487)
-* \approx:                               Math symbols.      (line  8050)
+* \approx:                               Math symbols.      (line  8051)
 * \arabic{COUNTER}:                      \alph \Alph \arabic \roman \Roman \fnsymbol.
-                                                            (line  7184)
-* \arccos:                               Math functions.    (line  9085)
-* \arcsin:                               Math functions.    (line  9088)
-* \arctan:                               Math functions.    (line  9091)
-* \arg:                                  Math functions.    (line  9094)
+                                                            (line  7185)
+* \arccos:                               Math functions.    (line  9086)
+* \arcsin:                               Math functions.    (line  9089)
+* \arctan:                               Math functions.    (line  9092)
+* \arg:                                  Math functions.    (line  9095)
 * \arraycolsep:                          array.             (line  3006)
 * \arrayrulewidth:                       tabular.           (line  5161)
 * \arraystretch:                         tabular.           (line  5167)
-* \ast:                                  Math symbols.      (line  8053)
-* \asymp:                                Math symbols.      (line  8062)
+* \ast:                                  Math symbols.      (line  8054)
+* \asymp:                                Math symbols.      (line  8063)
 * \AtBeginDocument:                      \AtBeginDocument.  (line  3236)
 * \AtBeginDvi:                           Class and package commands.
                                                             (line   948)
@@ -14234,85 +14235,85 @@
                                                             (line   953)
 * \AtEndOfPackage:                       Class and package commands.
                                                             (line   953)
-* \author{NAME1 \and NAME2 \and ...}:    \maketitle.        (line  9586)
+* \author{NAME1 \and NAME2 \and ...}:    \maketitle.        (line  9587)
 * \a` (grave accent in tabbing):         tabbing.           (line  4898)
-* \b (bar-under accent):                 Accents.           (line 12274)
+* \b (bar-under accent):                 Accents.           (line 12275)
 * \backmatter:                           \frontmatter & \mainmatter & \backmatter.
                                                             (line  2520)
-* \backslash:                            Math symbols.      (line  8065)
-* \bar:                                  Math accents.      (line  9205)
+* \backslash:                            Math symbols.      (line  8066)
+* \bar:                                  Math accents.      (line  9206)
 * \baselineskip:                         Low-level font commands.
                                                             (line  1566)
 * \baselinestretch:                      Low-level font commands.
                                                             (line  1576)
 * \begin:                                Environments.      (line  2898)
-* \beta:                                 Math symbols.      (line  8069)
+* \beta:                                 Math symbols.      (line  8070)
 * \bf:                                   Font styles.       (line  1364)
 * \bfseries:                             Font styles.       (line  1329)
 * \bibitem:                              \bibitem.          (line  5388)
 * \bibliography:                         Using BibTeX.      (line  5512)
 * \bibliographystyle:                    Using BibTeX.      (line  5512)
-* \bigcap:                               Math symbols.      (line  8072)
-* \bigcirc:                              Math symbols.      (line  8076)
-* \bigcup:                               Math symbols.      (line  8080)
-* \bigodot:                              Math symbols.      (line  8084)
-* \bigoplus:                             Math symbols.      (line  8087)
-* \bigotimes:                            Math symbols.      (line  8090)
+* \bigcap:                               Math symbols.      (line  8073)
+* \bigcirc:                              Math symbols.      (line  8077)
+* \bigcup:                               Math symbols.      (line  8081)
+* \bigodot:                              Math symbols.      (line  8085)
+* \bigoplus:                             Math symbols.      (line  8088)
+* \bigotimes:                            Math symbols.      (line  8091)
 * \bigskip:                              \bigskip & \medskip & \smallskip.
-                                                            (line 10300)
+                                                            (line 10301)
 * \bigskipamount:                        \bigskip & \medskip & \smallskip.
-                                                            (line 10301)
-* \bigsqcup:                             Math symbols.      (line  8101)
-* \bigtriangledown:                      Math symbols.      (line  8093)
-* \bigtriangleup:                        Math symbols.      (line  8097)
-* \biguplus:                             Math symbols.      (line  8104)
-* \bigvee:                               Math symbols.      (line  8108)
-* \bigwedge:                             Math symbols.      (line  8111)
-* \bmod:                                 Math functions.    (line  9097)
+                                                            (line 10302)
+* \bigsqcup:                             Math symbols.      (line  8102)
+* \bigtriangledown:                      Math symbols.      (line  8094)
+* \bigtriangleup:                        Math symbols.      (line  8098)
+* \biguplus:                             Math symbols.      (line  8105)
+* \bigvee:                               Math symbols.      (line  8109)
+* \bigwedge:                             Math symbols.      (line  8112)
+* \bmod:                                 Math functions.    (line  9098)
 * \boldmath:                             \boldmath & \unboldmath.
-                                                            (line  8987)
+                                                            (line  8988)
 * \boldmath <1>:                         \boldmath & \unboldmath.
-                                                            (line  8995)
-* \bot:                                  Math symbols.      (line  8114)
+                                                            (line  8996)
+* \bot:                                  Math symbols.      (line  8115)
 * \bottomfraction:                       Floats.            (line  1990)
 * \bottomfraction <1>:                   Floats.            (line  1991)
-* \bowtie:                               Math symbols.      (line  8119)
-* \Box:                                  Math symbols.      (line  8122)
-* \breve:                                Math accents.      (line  9208)
-* \bullet:                               Math symbols.      (line  8127)
-* \c (cedilla accent):                   Accents.           (line 12284)
+* \bowtie:                               Math symbols.      (line  8120)
+* \Box:                                  Math symbols.      (line  8123)
+* \breve:                                Math accents.      (line  9209)
+* \bullet:                               Math symbols.      (line  8128)
+* \c (cedilla accent):                   Accents.           (line 12285)
 * \cal:                                  Font styles.       (line  1367)
-* \cap:                                  Math symbols.      (line  8130)
-* \capitalacute:                         Accents.           (line 12252)
-* \capitalbreve:                         Accents.           (line 12310)
-* \capitalcaron:                         Accents.           (line 12314)
-* \capitalcedilla:                       Accents.           (line 12284)
-* \capitalcircumflex:                    Accents.           (line 12263)
-* \capitaldieresis:                      Accents.           (line 12248)
-* \capitaldotaccent:                     Accents.           (line 12288)
-* \capitalgrave:                         Accents.           (line 12267)
-* \capitalhungarumlaut:                  Accents.           (line 12292)
-* \capitalmacron:                        Accents.           (line 12259)
-* \capitalnewtie:                        Accents.           (line 12306)
-* \capitalogonek:                        Accents.           (line 12296)
-* \capitalring:                          Accents.           (line 12300)
-* \capitaltie:                           Accents.           (line 12306)
-* \capitaltilde:                         Accents.           (line 12271)
+* \cap:                                  Math symbols.      (line  8131)
+* \capitalacute:                         Accents.           (line 12253)
+* \capitalbreve:                         Accents.           (line 12311)
+* \capitalcaron:                         Accents.           (line 12315)
+* \capitalcedilla:                       Accents.           (line 12285)
+* \capitalcircumflex:                    Accents.           (line 12264)
+* \capitaldieresis:                      Accents.           (line 12249)
+* \capitaldotaccent:                     Accents.           (line 12289)
+* \capitalgrave:                         Accents.           (line 12268)
+* \capitalhungarumlaut:                  Accents.           (line 12293)
+* \capitalmacron:                        Accents.           (line 12260)
+* \capitalnewtie:                        Accents.           (line 12307)
+* \capitalogonek:                        Accents.           (line 12297)
+* \capitalring:                          Accents.           (line 12301)
+* \capitaltie:                           Accents.           (line 12307)
+* \capitaltilde:                         Accents.           (line 12272)
 * \caption:                              figure.            (line  3449)
 * \caption <1>:                          table.             (line  4988)
-* \cc:                                   \cc.               (line 13469)
-* \cdot:                                 Math symbols.      (line  8135)
-* \cdots:                                Dots.              (line  9038)
+* \cc:                                   \cc.               (line 13470)
+* \cdot:                                 Math symbols.      (line  8136)
+* \cdots:                                Dots.              (line  9039)
 * \centering:                            \centering.        (line  3088)
 * \chapter:                              Sectioning.        (line  2052)
 * \chapter <1>:                          \chapter.          (line  2185)
-* \check:                                Math accents.      (line  9211)
+* \check:                                Math accents.      (line  9212)
 * \CheckCommand:                         Class and package commands.
                                                             (line   960)
 * \CheckCommand*:                        Class and package commands.
                                                             (line   960)
-* \chi:                                  Math symbols.      (line  8138)
-* \circ:                                 Math symbols.      (line  8141)
+* \chi:                                  Math symbols.      (line  8139)
+* \circ:                                 Math symbols.      (line  8142)
 * \circle:                               \circle.           (line  4535)
 * \cite:                                 \cite.             (line  5447)
 * \ClassError:                           Class and package commands.
@@ -14330,10 +14331,10 @@
 * \clearpage:                            \clearpage & \cleardoublepage.
                                                             (line  6083)
 * \cline:                                \cline.            (line  5295)
-* \closing:                              \closing.          (line 13485)
-* \clubsuit:                             Math symbols.      (line  8146)
+* \closing:                              \closing.          (line 13486)
+* \clubsuit:                             Math symbols.      (line  8147)
 * \colon:                                Colon character & \colon.
-                                                            (line  9355)
+                                                            (line  9356)
 * \columnsep:                            \twocolumn.        (line  1644)
 * \columnsep <1>:                        Page layout parameters.
                                                             (line  1769)
@@ -14349,40 +14350,40 @@
                                                             (line  1771)
 * \columnwidth <2>:                      Page layout parameters.
                                                             (line  1772)
-* \complement:                           Math symbols.      (line  8149)
-* \cong:                                 Math symbols.      (line  8155)
-* \contentsline:                         \addcontentsline.  (line 12769)
-* \coprod:                               Math symbols.      (line  8158)
-* \copyright:                            Text symbols.      (line 12047)
-* \cos:                                  Math functions.    (line  9100)
-* \cosh:                                 Math functions.    (line  9103)
-* \cot:                                  Math functions.    (line  9106)
-* \coth:                                 Math functions.    (line  9109)
-* \csc:                                  Math functions.    (line  9112)
-* \cup:                                  Math symbols.      (line  8161)
+* \complement:                           Math symbols.      (line  8150)
+* \cong:                                 Math symbols.      (line  8156)
+* \contentsline:                         \addcontentsline.  (line 12770)
+* \coprod:                               Math symbols.      (line  8159)
+* \copyright:                            Text symbols.      (line 12048)
+* \cos:                                  Math functions.    (line  9101)
+* \cosh:                                 Math functions.    (line  9104)
+* \cot:                                  Math functions.    (line  9107)
+* \coth:                                 Math functions.    (line  9110)
+* \csc:                                  Math functions.    (line  9113)
+* \cup:                                  Math symbols.      (line  8162)
 * \CurrentOption:                        Class and package commands.
                                                             (line   999)
-* \d (dot-under accent):                 Accents.           (line 12288)
-* \dag:                                  Text symbols.      (line 12051)
-* \dagger:                               Math symbols.      (line  8166)
+* \d (dot-under accent):                 Accents.           (line 12289)
+* \dag:                                  Text symbols.      (line 12052)
+* \dagger:                               Math symbols.      (line  8167)
 * \dashbox:                              \dashbox.          (line  4741)
-* \dashv:                                Math symbols.      (line  8169)
-* \date{TEXT}:                           \maketitle.        (line  9594)
+* \dashv:                                Math symbols.      (line  8170)
+* \date{TEXT}:                           \maketitle.        (line  9595)
 * \day:                                  \day & \month & \year.
-                                                            (line  7349)
+                                                            (line  7350)
 * \dblfloatpagefraction:                 \twocolumn.        (line  1690)
 * \dblfloatsep:                          \twocolumn.        (line  1696)
 * \dbltextfloatsep:                      \twocolumn.        (line  1703)
 * \dbltopfraction:                       \twocolumn.        (line  1669)
 * \dbltopnumber:                         \twocolumn.        (line  1708)
-* \ddag:                                 Text symbols.      (line 12054)
-* \ddagger:                              Math symbols.      (line  8173)
-* \ddot:                                 Math accents.      (line  9214)
-* \ddots:                                Dots.              (line  9042)
+* \ddag:                                 Text symbols.      (line 12055)
+* \ddagger:                              Math symbols.      (line  8174)
+* \ddot:                                 Math accents.      (line  9215)
+* \ddots:                                Dots.              (line  9043)
 * \DeclareGraphicsExtensions:            \DeclareGraphicsExtensions.
-                                                            (line 11378)
+                                                            (line 11379)
 * \DeclareGraphicsRule:                  \DeclareGraphicsRule.
-                                                            (line 11418)
+                                                            (line 11419)
 * \DeclareOption:                        Class and package commands.
                                                             (line  1005)
 * \DeclareOption*:                       Class and package commands.
@@ -14391,49 +14392,49 @@
                                                             (line  1035)
 * \DeclareRobustCommand*:                Class and package commands.
                                                             (line  1035)
-* \deg:                                  Math functions.    (line  9115)
-* \Delta:                                Math symbols.      (line  8176)
-* \delta:                                Math symbols.      (line  8179)
-* \det:                                  Math functions.    (line  9118)
+* \deg:                                  Math functions.    (line  9116)
+* \Delta:                                Math symbols.      (line  8177)
+* \delta:                                Math symbols.      (line  8180)
+* \det:                                  Math functions.    (line  9119)
 * \dh (d):                               Additional Latin letters.
-                                                            (line 12333)
+                                                            (line 12334)
 * \DH (D):                               Additional Latin letters.
-                                                            (line 12333)
-* \Diamond:                              Math symbols.      (line  8182)
-* \diamond:                              Math symbols.      (line  8186)
-* \diamondsuit:                          Math symbols.      (line  8190)
-* \dim:                                  Math functions.    (line  9121)
-* \displaystyle:                         Math formulas.     (line  7922)
-* \div:                                  Math symbols.      (line  8193)
+                                                            (line 12334)
+* \Diamond:                              Math symbols.      (line  8183)
+* \diamond:                              Math symbols.      (line  8187)
+* \diamondsuit:                          Math symbols.      (line  8191)
+* \dim:                                  Math functions.    (line  9122)
+* \displaystyle:                         Math formulas.     (line  7923)
+* \div:                                  Math symbols.      (line  8194)
 * \dj:                                   Additional Latin letters.
-                                                            (line 12339)
+                                                            (line 12340)
 * \DJ:                                   Additional Latin letters.
-                                                            (line 12339)
+                                                            (line 12340)
 * \documentclass:                        Document classes.  (line   729)
-* \dot:                                  Math accents.      (line  9217)
-* \doteq:                                Math symbols.      (line  8196)
+* \dot:                                  Math accents.      (line  9218)
+* \doteq:                                Math symbols.      (line  8197)
 * \dotfill:                              \hrulefill & \dotfill.
-                                                            (line 10229)
-* \dots:                                 Text symbols.      (line 12071)
+                                                            (line 10230)
+* \dots:                                 Text symbols.      (line 12072)
 * \doublerulesep:                        tabular.           (line  5172)
-* \downarrow:                            Math symbols.      (line  8200)
-* \Downarrow:                            Math symbols.      (line  8204)
-* \ell:                                  Math symbols.      (line  8208)
+* \downarrow:                            Math symbols.      (line  8201)
+* \Downarrow:                            Math symbols.      (line  8205)
+* \ell:                                  Math symbols.      (line  8209)
 * \emph:                                 Font styles.       (line  1349)
-* \emptyset:                             Math symbols.      (line  8211)
-* \encl:                                 \encl.             (line 13498)
+* \emptyset:                             Math symbols.      (line  8212)
+* \encl:                                 \encl.             (line 13499)
 * \end:                                  Environments.      (line  2898)
-* \endinput:                             \endinput.         (line 12485)
+* \endinput:                             \endinput.         (line 12486)
 * \enlargethispage:                      \enlargethispage.  (line  6157)
 * \enspace:                              \enspace & \quad & \qquad.
-                                                            (line  9802)
+                                                            (line  9803)
 * \enumi:                                enumerate.         (line  3309)
 * \enumii:                               enumerate.         (line  3309)
 * \enumiii:                              enumerate.         (line  3309)
 * \enumiv:                               enumerate.         (line  3309)
-* \epsilon:                              Math symbols.      (line  8215)
-* \equiv:                                Math symbols.      (line  8221)
-* \eta:                                  Math symbols.      (line  8224)
+* \epsilon:                              Math symbols.      (line  8216)
+* \equiv:                                Math symbols.      (line  8222)
+* \eta:                                  Math symbols.      (line  8225)
 * \evensidemargin:                       Document class options.
                                                             (line   841)
 * \evensidemargin <1>:                   Page layout parameters.
@@ -14442,20 +14443,20 @@
                                                             (line  1831)
 * \ExecuteOptions:                       Class and package commands.
                                                             (line  1111)
-* \exists:                               Math symbols.      (line  8227)
-* \exp:                                  Math functions.    (line  9124)
+* \exists:                               Math symbols.      (line  8228)
+* \exp:                                  Math functions.    (line  9125)
 * \extracolsep:                          tabular.           (line  5112)
-* \fbox:                                 \fbox & \framebox. (line 10664)
+* \fbox:                                 \fbox & \framebox. (line 10665)
 * \fboxrule:                             \framebox (picture).
                                                             (line  4718)
-* \fboxrule <1>:                         \fbox & \framebox. (line 10697)
-* \fboxrule <2>:                         \fbox & \framebox. (line 10696)
+* \fboxrule <1>:                         \fbox & \framebox. (line 10698)
+* \fboxrule <2>:                         \fbox & \framebox. (line 10697)
 * \fboxsep:                              \framebox (picture).
                                                             (line  4718)
-* \fboxsep <1>:                          \fbox & \framebox. (line 10702)
-* \fboxsep <2>:                          \fbox & \framebox. (line 10701)
-* \fill:                                 \hfill.            (line  9889)
-* \flat:                                 Math symbols.      (line  8230)
+* \fboxsep <1>:                          \fbox & \framebox. (line 10703)
+* \fboxsep <2>:                          \fbox & \framebox. (line 10702)
+* \fill:                                 \hfill.            (line  9890)
+* \flat:                                 Math symbols.      (line  8231)
 * \floatpagefraction:                    Floats.            (line  1994)
 * \floatpagefraction <1>:                Floats.            (line  1995)
 * \floatsep:                             Floats.            (line  2010)
@@ -14463,7 +14464,7 @@
 * \flushbottom:                          \flushbottom.      (line  1737)
 * \fnsymbol, and footnotes:              \footnote.         (line  6260)
 * \fnsymbol{COUNTER}:                    \alph \Alph \arabic \roman \Roman \fnsymbol.
-                                                            (line  7197)
+                                                            (line  7198)
 * \fontencoding:                         Low-level font commands.
                                                             (line  1476)
 * \fontfamily:                           Low-level font commands.
@@ -14484,35 +14485,35 @@
                                                             (line  1789)
 * \footskip <1>:                         Page layout parameters.
                                                             (line  1790)
-* \forall:                               Math symbols.      (line  8233)
-* \frac:                                 \frac.             (line  9391)
+* \forall:                               Math symbols.      (line  8234)
+* \frac:                                 \frac.             (line  9392)
 * \frame:                                \frame.            (line  4729)
 * \framebox:                             \framebox (picture).
                                                             (line  4693)
-* \framebox <1>:                         \fbox & \framebox. (line 10664)
-* \frenchspacing:                        \frenchspacing.    (line 10043)
+* \framebox <1>:                         \fbox & \framebox. (line 10665)
+* \frenchspacing:                        \frenchspacing.    (line 10044)
 * \frontmatter:                          \frontmatter & \mainmatter & \backmatter.
                                                             (line  2520)
-* \frown:                                Math symbols.      (line  8236)
+* \frown:                                Math symbols.      (line  8237)
 * \fussy:                                \fussy & \sloppy.  (line  5962)
-* \Gamma:                                Math symbols.      (line  8239)
-* \gamma:                                Math symbols.      (line  8242)
-* \gcd:                                  Math functions.    (line  9127)
-* \ge:                                   Math symbols.      (line  8245)
-* \geq:                                  Math symbols.      (line  8249)
-* \gets:                                 Math symbols.      (line  8253)
-* \gg:                                   Math symbols.      (line  8256)
-* \gls:                                  \gls.              (line 13334)
-* \graphicspath:                         \graphicspath.     (line 11316)
+* \Gamma:                                Math symbols.      (line  8240)
+* \gamma:                                Math symbols.      (line  8243)
+* \gcd:                                  Math functions.    (line  9128)
+* \ge:                                   Math symbols.      (line  8246)
+* \geq:                                  Math symbols.      (line  8250)
+* \gets:                                 Math symbols.      (line  8254)
+* \gg:                                   Math symbols.      (line  8257)
+* \gls:                                  \gls.              (line 13335)
+* \graphicspath:                         \graphicspath.     (line 11317)
 * \graphpaper:                           \graphpaper.       (line  4439)
-* \grave:                                Math accents.      (line  9220)
-* \guillemotleft (<<):                   Text symbols.      (line 12063)
-* \guillemotright (>>):                  Text symbols.      (line 12064)
-* \guilsinglleft (<):                    Text symbols.      (line 12065)
-* \guilsinglright (>):                   Text symbols.      (line 12066)
-* \H (Hungarian umlaut accent):          Accents.           (line 12292)
-* \hat:                                  Math accents.      (line  9223)
-* \hbar:                                 Math symbols.      (line  8260)
+* \grave:                                Math accents.      (line  9221)
+* \guillemotleft (<<):                   Text symbols.      (line 12064)
+* \guillemotright (>>):                  Text symbols.      (line 12065)
+* \guilsinglleft (<):                    Text symbols.      (line 12066)
+* \guilsinglright (>):                   Text symbols.      (line 12067)
+* \H (Hungarian umlaut accent):          Accents.           (line 12293)
+* \hat:                                  Math accents.      (line  9224)
+* \hbar:                                 Math symbols.      (line  8261)
 * \headheight:                           Page layout parameters.
                                                             (line  1777)
 * \headheight <1>:                       Page layout parameters.
@@ -14521,58 +14522,58 @@
                                                             (line  1782)
 * \headsep <1>:                          Page layout parameters.
                                                             (line  1783)
-* \heartsuit:                            Math symbols.      (line  8263)
-* \hfill:                                \hfill.            (line  9877)
+* \heartsuit:                            Math symbols.      (line  8264)
+* \hfill:                                \hfill.            (line  9878)
 * \hline:                                \hline.            (line  5318)
-* \hom:                                  Math functions.    (line  9130)
-* \hookleftarrow:                        Math symbols.      (line  8266)
-* \hookrightarrow:                       Math symbols.      (line  8269)
+* \hom:                                  Math functions.    (line  9131)
+* \hookleftarrow:                        Math symbols.      (line  8267)
+* \hookrightarrow:                       Math symbols.      (line  8270)
 * \hrulefill:                            \hrulefill & \dotfill.
-                                                            (line 10229)
+                                                            (line 10230)
 * \hsize:                                Page layout parameters.
                                                             (line  1882)
 * \hsize <1>:                            Page layout parameters.
                                                             (line  1882)
-* \hspace:                               \hspace.           (line  9830)
-* \hss:                                  \hss.              (line  9910)
+* \hspace:                               \hspace.           (line  9831)
+* \hss:                                  \hss.              (line  9911)
 * \huge:                                 Font sizes.        (line  1441)
 * \Huge:                                 Font sizes.        (line  1441)
 * \hyphenation:                          \hyphenation.      (line  6003)
-* \i (dotless i):                        Accents.           (line 12242)
-* \iff:                                  Math symbols.      (line  8272)
+* \i (dotless i):                        Accents.           (line 12243)
+* \iff:                                  Math symbols.      (line  8273)
 * \IfFileExists:                         Class and package commands.
                                                             (line  1067)
 * \ignorespaces:                         \ignorespaces & \ignorespacesafterend.
-                                                            (line  7063)
+                                                            (line  7064)
 * \ignorespacesafterend:                 \ignorespaces & \ignorespacesafterend.
-                                                            (line  7063)
+                                                            (line  7064)
 * \ij (ij):                              Additional Latin letters.
-                                                            (line 12345)
+                                                            (line 12346)
 * \IJ (IJ):                              Additional Latin letters.
-                                                            (line 12345)
-* \Im:                                   Math symbols.      (line  8276)
-* \imath:                                Math symbols.      (line  8279)
-* \in:                                   Math symbols.      (line  8283)
+                                                            (line 12346)
+* \Im:                                   Math symbols.      (line  8277)
+* \imath:                                Math symbols.      (line  8280)
+* \in:                                   Math symbols.      (line  8284)
 * \include:                              \include & \includeonly.
-                                                            (line 12516)
-* \includegraphics:                      \includegraphics.  (line 11497)
+                                                            (line 12517)
+* \includegraphics:                      \includegraphics.  (line 11498)
 * \includeonly:                          \include & \includeonly.
-                                                            (line 12516)
+                                                            (line 12517)
 * \indent:                               \indent & \noindent.
-                                                            (line  7742)
-* \index:                                Indexes.           (line 12905)
-* \index <1>:                            \index.            (line 12941)
-* \indexentry:                           \index.            (line 13041)
-* \indexspace:                           makeindex.         (line 13108)
-* \inf:                                  Math functions.    (line  9133)
-* \infty:                                Math symbols.      (line  8288)
-* \input:                                \input.            (line 12633)
+                                                            (line  7743)
+* \index:                                Indexes.           (line 12906)
+* \index <1>:                            \index.            (line 12942)
+* \indexentry:                           \index.            (line 13042)
+* \indexspace:                           makeindex.         (line 13109)
+* \inf:                                  Math functions.    (line  9134)
+* \infty:                                Math symbols.      (line  8289)
+* \input:                                \input.            (line 12634)
 * \InputIfFileExists:                    Class and package commands.
                                                             (line  1067)
-* \int:                                  Math symbols.      (line  8291)
+* \int:                                  Math symbols.      (line  8292)
 * \intextsep:                            Floats.            (line  2014)
 * \intextsep <1>:                        Floats.            (line  2015)
-* \iota:                                 Math symbols.      (line  8294)
+* \iota:                                 Math symbols.      (line  8295)
 * \it:                                   Font styles.       (line  1370)
 * \item:                                 description.       (line  3155)
 * \item <1>:                             enumerate.         (line  3291)
@@ -14581,17 +14582,17 @@
 * \itemindent:                           list.              (line  3789)
 * \itemsep:                              list.              (line  3793)
 * \itshape:                              Font styles.       (line  1323)
-* \j (dotless j):                        Accents.           (line 12242)
-* \jmath:                                Math symbols.      (line  8301)
-* \Join:                                 Math symbols.      (line  8297)
-* \k (ogonek):                           Accents.           (line 12296)
-* \kappa:                                Math symbols.      (line  8305)
-* \ker:                                  Math functions.    (line  9136)
+* \j (dotless j):                        Accents.           (line 12243)
+* \jmath:                                Math symbols.      (line  8302)
+* \Join:                                 Math symbols.      (line  8298)
+* \k (ogonek):                           Accents.           (line 12297)
+* \kappa:                                Math symbols.      (line  8306)
+* \ker:                                  Math functions.    (line  9137)
 * \kill:                                 tabbing.           (line  4902)
 * \l (/l):                               Additional Latin letters.
-                                                            (line 12349)
+                                                            (line 12350)
 * \L (/L):                               Additional Latin letters.
-                                                            (line 12349)
+                                                            (line 12350)
 * \label:                                \label.            (line  2787)
 * \labelenumi:                           enumerate.         (line  3318)
 * \labelenumii:                          enumerate.         (line  3318)
@@ -14603,28 +14604,28 @@
 * \labelitemiv:                          itemize.           (line  3653)
 * \labelsep:                             list.              (line  3805)
 * \labelwidth:                           list.              (line  3810)
-* \Lambda:                               Math symbols.      (line  8308)
-* \lambda:                               Math symbols.      (line  8311)
-* \land:                                 Math symbols.      (line  8314)
-* \langle:                               Math symbols.      (line  8319)
+* \Lambda:                               Math symbols.      (line  8309)
+* \lambda:                               Math symbols.      (line  8312)
+* \land:                                 Math symbols.      (line  8315)
+* \langle:                               Math symbols.      (line  8320)
 * \large:                                Font sizes.        (line  1441)
 * \Large:                                Font sizes.        (line  1441)
 * \LARGE:                                Font sizes.        (line  1441)
-* \LaTeX:                                Text symbols.      (line 12057)
-* \LaTeXe:                               Text symbols.      (line 12060)
-* \lbrace:                               Math symbols.      (line  8324)
-* \lbrack:                               Math symbols.      (line  8328)
-* \lceil:                                Math symbols.      (line  8332)
-* \ldots:                                Dots.              (line  9046)
-* \ldots <1>:                            Text symbols.      (line 12070)
-* \le:                                   Math symbols.      (line  8336)
-* \leadsto:                              Math symbols.      (line  8340)
-* \left:                                 \left & \right.    (line  9403)
-* \Leftarrow:                            Math symbols.      (line  8347)
-* \leftarrow:                            Math symbols.      (line  8352)
+* \LaTeX:                                Text symbols.      (line 12058)
+* \LaTeXe:                               Text symbols.      (line 12061)
+* \lbrace:                               Math symbols.      (line  8325)
+* \lbrack:                               Math symbols.      (line  8329)
+* \lceil:                                Math symbols.      (line  8333)
+* \ldots:                                Dots.              (line  9047)
+* \ldots <1>:                            Text symbols.      (line 12071)
+* \le:                                   Math symbols.      (line  8337)
+* \leadsto:                              Math symbols.      (line  8341)
+* \left:                                 \left & \right.    (line  9404)
+* \Leftarrow:                            Math symbols.      (line  8348)
+* \leftarrow:                            Math symbols.      (line  8353)
 * \lefteqn:                              eqnarray.          (line  3375)
-* \leftharpoondown:                      Math symbols.      (line  8356)
-* \leftharpoonup:                        Math symbols.      (line  8359)
+* \leftharpoondown:                      Math symbols.      (line  8357)
+* \leftharpoonup:                        Math symbols.      (line  8360)
 * \leftmargin:                           itemize.           (line  3672)
 * \leftmargin <1>:                       list.              (line  3830)
 * \leftmargini:                          itemize.           (line  3672)
@@ -14633,15 +14634,15 @@
 * \leftmarginiv:                         itemize.           (line  3672)
 * \leftmarginv:                          itemize.           (line  3672)
 * \leftmarginvi:                         itemize.           (line  3672)
-* \Leftrightarrow:                       Math symbols.      (line  8362)
-* \leftrightarrow:                       Math symbols.      (line  8367)
-* \leq:                                  Math symbols.      (line  8372)
-* \lfloor:                               Math symbols.      (line  8376)
-* \lg:                                   Math functions.    (line  9139)
-* \lhd:                                  Math symbols.      (line  8379)
-* \lim:                                  Math functions.    (line  9142)
-* \liminf:                               Math functions.    (line  9145)
-* \limsup:                               Math functions.    (line  9148)
+* \Leftrightarrow:                       Math symbols.      (line  8363)
+* \leftrightarrow:                       Math symbols.      (line  8368)
+* \leq:                                  Math symbols.      (line  8373)
+* \lfloor:                               Math symbols.      (line  8377)
+* \lg:                                   Math functions.    (line  9140)
+* \lhd:                                  Math symbols.      (line  8380)
+* \lim:                                  Math functions.    (line  9143)
+* \liminf:                               Math functions.    (line  9146)
+* \limsup:                               Math functions.    (line  9149)
 * \line:                                 \line.             (line  4463)
 * \linebreak:                            \linebreak & \nolinebreak.
                                                             (line  6021)
@@ -14653,143 +14654,143 @@
 * \linewidth <1>:                        Page layout parameters.
                                                             (line  1797)
 * \listoffigures:                        Table of contents etc..
-                                                            (line 12671)
+                                                            (line 12672)
 * \listoftables:                         Table of contents etc..
-                                                            (line 12671)
+                                                            (line 12672)
 * \listparindent:                        list.              (line  3847)
-* \ll:                                   Math symbols.      (line  8387)
-* \ln:                                   Math functions.    (line  9151)
-* \lnot:                                 Math symbols.      (line  8391)
+* \ll:                                   Math symbols.      (line  8388)
+* \ln:                                   Math functions.    (line  9152)
+* \lnot:                                 Math symbols.      (line  8392)
 * \LoadClass:                            Class and package commands.
                                                             (line  1087)
 * \LoadClassWithOptions:                 Class and package commands.
                                                             (line  1087)
-* \location:                             \location.         (line 13513)
-* \log:                                  Math functions.    (line  9154)
-* \longleftarrow:                        Math symbols.      (line  8394)
-* \longleftrightarrow:                   Math symbols.      (line  8399)
-* \longmapsto:                           Math symbols.      (line  8403)
-* \longrightarrow:                       Math symbols.      (line  8408)
-* \lor:                                  Math symbols.      (line  8413)
-* \lq:                                   Text symbols.      (line 12076)
+* \location:                             \location.         (line 13514)
+* \log:                                  Math functions.    (line  9155)
+* \longleftarrow:                        Math symbols.      (line  8395)
+* \longleftrightarrow:                   Math symbols.      (line  8400)
+* \longmapsto:                           Math symbols.      (line  8404)
+* \longrightarrow:                       Math symbols.      (line  8409)
+* \lor:                                  Math symbols.      (line  8414)
+* \lq:                                   Text symbols.      (line 12077)
 * \mainmatter:                           \frontmatter & \mainmatter & \backmatter.
                                                             (line  2520)
-* \makebox:                              \mbox & \makebox.  (line 10575)
+* \makebox:                              \mbox & \makebox.  (line 10576)
 * \makebox (for picture):                \makebox (picture).
                                                             (line  4655)
-* \makeglossary:                         Glossaries.        (line 13227)
-* \makeglossary <1>:                     Glossaries.        (line 13264)
-* \makeindex:                            Indexes.           (line 12905)
+* \makeglossary:                         Glossaries.        (line 13228)
+* \makeglossary <1>:                     Glossaries.        (line 13265)
+* \makeindex:                            Indexes.           (line 12906)
 * \makelabel:                            list.              (line  3766)
-* \makelabels:                           \makelabels.       (line 13523)
-* \maketitle:                            \maketitle.        (line  9550)
-* \mapsto:                               Math symbols.      (line  8416)
-* \marginpar:                            Marginal notes.    (line  7818)
+* \makelabels:                           \makelabels.       (line 13524)
+* \maketitle:                            \maketitle.        (line  9551)
+* \mapsto:                               Math symbols.      (line  8417)
+* \marginpar:                            Marginal notes.    (line  7819)
 * \marginparpush:                        Page layout parameters.
                                                             (line  1803)
 * \marginparpush <1>:                    Page layout parameters.
                                                             (line  1806)
-* \marginparpush <2>:                    Marginal notes.    (line  7847)
-* \marginparsep:                         Marginal notes.    (line  7851)
+* \marginparpush <2>:                    Marginal notes.    (line  7848)
+* \marginparsep:                         Marginal notes.    (line  7852)
 * \marginparwidth:                       Page layout parameters.
                                                             (line  1805)
 * \marginparwidth <1>:                   Page layout parameters.
                                                             (line  1806)
-* \marginparwidth <2>:                   Marginal notes.    (line  7855)
+* \marginparwidth <2>:                   Marginal notes.    (line  7856)
 * \marginsep:                            Page layout parameters.
                                                             (line  1804)
 * \marginsep <1>:                        Page layout parameters.
                                                             (line  1806)
-* \markboth{LEFT-HEAD}{RIGHT-HEAD}:      \pagestyle.        (line  9749)
-* \markright{RIGHT}:                     \pagestyle.        (line  9758)
+* \markboth{LEFT-HEAD}{RIGHT-HEAD}:      \pagestyle.        (line  9750)
+* \markright{RIGHT}:                     \pagestyle.        (line  9759)
 * \mathbf:                               Font styles.       (line  1400)
 * \mathcal:                              Font styles.       (line  1416)
-* \mathdollar:                           Math symbols.      (line  8925)
+* \mathdollar:                           Math symbols.      (line  8926)
 * \mathnormal:                           Font styles.       (line  1413)
-* \mathparagraph:                        Math symbols.      (line  8928)
-* \mathring:                             Math accents.      (line  9226)
+* \mathparagraph:                        Math symbols.      (line  8929)
+* \mathring:                             Math accents.      (line  9227)
 * \mathrm:                               Font styles.       (line  1397)
-* \mathsection:                          Math symbols.      (line  8931)
+* \mathsection:                          Math symbols.      (line  8932)
 * \mathsf:                               Font styles.       (line  1403)
-* \mathsterling:                         Math symbols.      (line  8934)
+* \mathsterling:                         Math symbols.      (line  8935)
 * \mathtt:                               Font styles.       (line  1406)
-* \mathunderscore:                       Math symbols.      (line  8937)
+* \mathunderscore:                       Math symbols.      (line  8938)
 * \mathversion:                          Font styles.       (line  1418)
-* \max:                                  Math functions.    (line  9157)
-* \mbox:                                 \mbox & \makebox.  (line 10575)
+* \max:                                  Math functions.    (line  9158)
+* \mbox:                                 \mbox & \makebox.  (line 10576)
 * \mdseries:                             Font styles.       (line  1326)
 * \medskip:                              \bigskip & \medskip & \smallskip.
-                                                            (line 10305)
+                                                            (line 10306)
 * \medskipamount:                        \bigskip & \medskip & \smallskip.
-                                                            (line 10306)
+                                                            (line 10307)
 * \medspace:                             Spacing in math mode.
-                                                            (line  9314)
-* \mho:                                  Math symbols.      (line  8420)
-* \mid:                                  Math symbols.      (line  8425)
-* \min:                                  Math functions.    (line  9160)
-* \models:                               Math symbols.      (line  8435)
+                                                            (line  9315)
+* \mho:                                  Math symbols.      (line  8421)
+* \mid:                                  Math symbols.      (line  8426)
+* \min:                                  Math functions.    (line  9161)
+* \models:                               Math symbols.      (line  8436)
 * \month:                                \day & \month & \year.
-                                                            (line  7349)
-* \mp:                                   Math symbols.      (line  8440)
-* \mu:                                   Math symbols.      (line  8443)
+                                                            (line  7350)
+* \mp:                                   Math symbols.      (line  8441)
+* \mu:                                   Math symbols.      (line  8444)
 * \multicolumn:                          \multicolumn.      (line  5187)
 * \multiput:                             \multiput.         (line  4391)
-* \nabla:                                Math symbols.      (line  8446)
-* \name:                                 \name.             (line 13580)
-* \natural:                              Math symbols.      (line  8449)
-* \ne:                                   Math symbols.      (line  8452)
-* \nearrow:                              Math symbols.      (line  8455)
+* \nabla:                                Math symbols.      (line  8447)
+* \name:                                 \name.             (line 13581)
+* \natural:                              Math symbols.      (line  8450)
+* \ne:                                   Math symbols.      (line  8453)
+* \nearrow:                              Math symbols.      (line  8456)
 * \NeedsTeXFormat:                       Class and package commands.
                                                             (line  1121)
-* \neg:                                  Math symbols.      (line  8458)
+* \neg:                                  Math symbols.      (line  8459)
 * \negthinspace:                         Spacing in math mode.
-                                                            (line  9332)
+                                                            (line  9333)
 * \negthinspace <1>:                     \thinspace & \negthinspace.
-                                                            (line 10170)
-* \neq:                                  Math symbols.      (line  8462)
+                                                            (line 10171)
+* \neq:                                  Math symbols.      (line  8463)
 * \newcommand:                           \newcommand & \renewcommand.
                                                             (line  6490)
 * \newcounter:                           \newcounter.       (line  6643)
 * \newenvironment:                       \newenvironment & \renewenvironment.
-                                                            (line  6733)
-* \newfont:                              \newfont.          (line  6979)
-* \newglossaryentry:                     \newglossaryentry. (line 13275)
+                                                            (line  6734)
+* \newfont:                              \newfont.          (line  6980)
+* \newglossaryentry:                     \newglossaryentry. (line 13276)
 * \newlength:                            \newlength.        (line  6684)
 * \newline:                              \newline.          (line  5880)
-* \NEWLINE:                              \(SPACE).          (line 10073)
+* \NEWLINE:                              \(SPACE).          (line 10074)
 * \newpage:                              \newpage.          (line  6124)
 * \newsavebox:                           \newsavebox.       (line  6706)
-* \newtheorem:                           \newtheorem.       (line  6867)
-* \newtie:                               Accents.           (line 12306)
+* \newtheorem:                           \newtheorem.       (line  6868)
+* \newtie:                               Accents.           (line 12307)
 * \ng:                                   Additional Latin letters.
-                                                            (line 12353)
+                                                            (line 12354)
 * \NG:                                   Additional Latin letters.
-                                                            (line 12353)
-* \ni:                                   Math symbols.      (line  8465)
+                                                            (line 12354)
+* \ni:                                   Math symbols.      (line  8466)
 * \nocite:                               \nocite.           (line  5497)
 * \nocorr:                               Font styles.       (line  1311)
 * \nocorrlist:                           Font styles.       (line  1311)
-* \nofiles:                              \nofiles.          (line 12880)
+* \nofiles:                              \nofiles.          (line 12881)
 * \noindent:                             \indent & \noindent.
-                                                            (line  7742)
+                                                            (line  7743)
 * \nolinebreak:                          \linebreak & \nolinebreak.
                                                             (line  6021)
-* \nonfrenchspacing:                     \frenchspacing.    (line 10043)
+* \nonfrenchspacing:                     \frenchspacing.    (line 10044)
 * \nonumber:                             eqnarray.          (line  3370)
 * \nopagebreak:                          \pagebreak & \nopagebreak.
                                                             (line  6182)
 * \normalfont:                           Font styles.       (line  1347)
-* \normalmarginpar:                      Marginal notes.    (line  7834)
-* \normalsfcodes:                        \normalsfcodes.    (line 10063)
+* \normalmarginpar:                      Marginal notes.    (line  7835)
+* \normalsfcodes:                        \normalsfcodes.    (line 10064)
 * \normalsize:                           Font sizes.        (line  1441)
-* \not:                                  Math symbols.      (line  8470)
-* \notin:                                Math symbols.      (line  8478)
-* \nu:                                   Math symbols.      (line  8482)
-* \nwarrow:                              Math symbols.      (line  8485)
+* \not:                                  Math symbols.      (line  8471)
+* \notin:                                Math symbols.      (line  8479)
+* \nu:                                   Math symbols.      (line  8483)
+* \nwarrow:                              Math symbols.      (line  8486)
 * \o (/o):                               Additional Latin letters.
-                                                            (line 12357)
+                                                            (line 12358)
 * \O (/O):                               Additional Latin letters.
-                                                            (line 12357)
+                                                            (line 12358)
 * \obeycr:                               \obeycr & \restorecr.
                                                             (line  5840)
 * \oddsidemargin:                        Document class options.
@@ -14798,30 +14799,30 @@
                                                             (line  1829)
 * \oddsidemargin <2>:                    Page layout parameters.
                                                             (line  1831)
-* \odot:                                 Math symbols.      (line  8488)
+* \odot:                                 Math symbols.      (line  8489)
 * \oe (oe):                              Additional Latin letters.
-                                                            (line 12361)
+                                                            (line 12362)
 * \OE (OE):                              Additional Latin letters.
-                                                            (line 12361)
-* \oint:                                 Math symbols.      (line  8493)
+                                                            (line 12362)
+* \oint:                                 Math symbols.      (line  8494)
 * \oldstylenums:                         Font styles.       (line  1422)
-* \Omega:                                Math symbols.      (line  8497)
-* \omega:                                Math symbols.      (line  8500)
-* \ominus:                               Math symbols.      (line  8503)
+* \Omega:                                Math symbols.      (line  8498)
+* \omega:                                Math symbols.      (line  8501)
+* \ominus:                               Math symbols.      (line  8504)
 * \onecolumn:                            \onecolumn.        (line  1618)
-* \opening:                              \opening.          (line 13590)
-* \oplus:                                Math symbols.      (line  8506)
+* \opening:                              \opening.          (line 13591)
+* \oplus:                                Math symbols.      (line  8507)
 * \OptionNotUsed:                        Class and package commands.
                                                             (line  1139)
-* \oslash:                               Math symbols.      (line  8510)
-* \otimes:                               Math symbols.      (line  8513)
+* \oslash:                               Math symbols.      (line  8511)
+* \otimes:                               Math symbols.      (line  8514)
 * \oval:                                 \oval.             (line  4554)
 * \overbrace{MATH}:                      Over- and Underlining.
-                                                            (line  9281)
+                                                            (line  9282)
 * \overline{TEXT}:                       Over- and Underlining.
-                                                            (line  9262)
-* \owns:                                 Math symbols.      (line  8518)
-* \P:                                    Text symbols.      (line 12079)
+                                                            (line  9263)
+* \owns:                                 Math symbols.      (line  8519)
+* \P:                                    Text symbols.      (line 12080)
 * \PackageError:                         Class and package commands.
                                                             (line   980)
 * \PackageInfo:                          Class and package commands.
@@ -14834,9 +14835,9 @@
                                                             (line   980)
 * \pagebreak:                            \pagebreak & \nopagebreak.
                                                             (line  6182)
-* \pagenumbering:                        \pagenumbering.    (line  9622)
+* \pagenumbering:                        \pagenumbering.    (line  9623)
 * \pageref:                              \pageref.          (line  2845)
-* \pagestyle:                            \pagestyle.        (line  9680)
+* \pagestyle:                            \pagestyle.        (line  9681)
 * \paperheight:                          Page layout parameters.
                                                             (line  1842)
 * \paperheight <1>:                      Page layout parameters.
@@ -14845,24 +14846,24 @@
                                                             (line  1848)
 * \paperwidth <1>:                       Page layout parameters.
                                                             (line  1849)
-* \par:                                  \par.              (line  7689)
+* \par:                                  \par.              (line  7690)
 * \paragraph:                            Sectioning.        (line  2052)
 * \paragraph <1>:                        \subsubsection & \paragraph & \subparagraph.
                                                             (line  2420)
-* \parallel:                             Math symbols.      (line  8523)
-* \parbox:                               \parbox.           (line 10731)
+* \parallel:                             Math symbols.      (line  8524)
+* \parbox:                               \parbox.           (line 10732)
 * \parindent:                            minipage.          (line  4185)
 * \parindent <1>:                        \indent & \noindent.
-                                                            (line  7742)
+                                                            (line  7743)
 * \parindent <2>:                        \parindent & \parskip.
-                                                            (line  7791)
+                                                            (line  7792)
 * \parsep:                               list.              (line  3853)
 * \parskip:                              \parindent & \parskip.
-                                                            (line  7791)
+                                                            (line  7792)
 * \parskip example:                      itemize.           (line  3691)
 * \part:                                 Sectioning.        (line  2052)
 * \part <1>:                             \part.             (line  2131)
-* \partial:                              Math symbols.      (line  8526)
+* \partial:                              Math symbols.      (line  8527)
 * \partopsep:                            list.              (line  3862)
 * \PassOptionsToClass:                   Class and package commands.
                                                             (line  1145)
@@ -14872,30 +14873,30 @@
                                                             (line   797)
 * \pdfpagewidth:                         Document class options.
                                                             (line   797)
-* \perp:                                 Math symbols.      (line  8529)
-* \phi:                                  Math symbols.      (line  8534)
-* \Pi:                                   Math symbols.      (line  8538)
-* \pi:                                   Math symbols.      (line  8541)
-* \pm:                                   Math symbols.      (line  8545)
-* \pmod:                                 Math functions.    (line  9163)
+* \perp:                                 Math symbols.      (line  8530)
+* \phi:                                  Math symbols.      (line  8535)
+* \Pi:                                   Math symbols.      (line  8539)
+* \pi:                                   Math symbols.      (line  8542)
+* \pm:                                   Math symbols.      (line  8546)
+* \pmod:                                 Math functions.    (line  9164)
 * \poptabs:                              tabbing.           (line  4908)
 * \poptabs <1>:                          tabbing.           (line  4909)
-* \pounds:                               Text symbols.      (line 12083)
-* \Pr:                                   Math functions.    (line  9166)
-* \prec:                                 Math symbols.      (line  8548)
-* \preceq:                               Math symbols.      (line  8551)
-* \prime:                                Math symbols.      (line  8556)
-* \printglossaries:                      Glossaries.        (line 13227)
-* \printglossaries <1>:                  Glossaries.        (line 13264)
-* \printindex:                           \printindex.       (line 13212)
-* \printindex <1>:                       \printindex.       (line 13216)
+* \pounds:                               Text symbols.      (line 12084)
+* \Pr:                                   Math functions.    (line  9167)
+* \prec:                                 Math symbols.      (line  8549)
+* \preceq:                               Math symbols.      (line  8552)
+* \prime:                                Math symbols.      (line  8557)
+* \printglossaries:                      Glossaries.        (line 13228)
+* \printglossaries <1>:                  Glossaries.        (line 13265)
+* \printindex:                           \printindex.       (line 13213)
+* \printindex <1>:                       \printindex.       (line 13217)
 * \ProcessOptions:                       Class and package commands.
                                                             (line  1182)
 * \ProcessOptions*:                      Class and package commands.
                                                             (line  1182)
-* \prod:                                 Math symbols.      (line  8565)
-* \propto:                               Math symbols.      (line  8568)
-* \protect:                              \protect.          (line  7011)
+* \prod:                                 Math symbols.      (line  8566)
+* \propto:                               Math symbols.      (line  8569)
+* \protect:                              \protect.          (line  7012)
 * \providecommand:                       \providecommand.   (line  6615)
 * \ProvidesClass:                        Class and package commands.
                                                             (line  1220)
@@ -14903,251 +14904,251 @@
                                                             (line  1253)
 * \ProvidesPackage:                      Class and package commands.
                                                             (line  1220)
-* \ps:                                   \ps.               (line 13602)
-* \Psi:                                  Math symbols.      (line  8571)
-* \psi:                                  Math symbols.      (line  8574)
+* \ps:                                   \ps.               (line 13603)
+* \Psi:                                  Math symbols.      (line  8572)
+* \psi:                                  Math symbols.      (line  8575)
 * \pushtabs:                             tabbing.           (line  4911)
 * \put:                                  \put.              (line  4373)
 * \qbezier:                              \qbezier.          (line  4414)
 * \qquad:                                Spacing in math mode.
-                                                            (line  9343)
+                                                            (line  9344)
 * \qquad <1>:                            \enspace & \quad & \qquad.
-                                                            (line  9802)
+                                                            (line  9803)
 * \quad:                                 Spacing in math mode.
-                                                            (line  9337)
+                                                            (line  9338)
 * \quad <1>:                             \enspace & \quad & \qquad.
-                                                            (line  9802)
-* \quotedblbase (,,):                    Text symbols.      (line 12087)
-* \quotesinglbase (,):                   Text symbols.      (line 12088)
-* \r (ring accent):                      Accents.           (line 12300)
+                                                            (line  9803)
+* \quotedblbase (,,):                    Text symbols.      (line 12088)
+* \quotesinglbase (,):                   Text symbols.      (line 12089)
+* \r (ring accent):                      Accents.           (line 12301)
 * \raggedbottom:                         \raggedbottom.     (line  1758)
 * \raggedleft:                           \raggedleft.       (line  3599)
 * \raggedright:                          \raggedright.      (line  3548)
-* \raisebox:                             \raisebox.         (line 10783)
-* \rangle:                               Math symbols.      (line  8577)
-* \rbrace:                               Math symbols.      (line  8582)
-* \rbrack:                               Math symbols.      (line  8586)
-* \rceil:                                Math symbols.      (line  8590)
-* \Re:                                   Math symbols.      (line  8593)
+* \raisebox:                             \raisebox.         (line 10784)
+* \rangle:                               Math symbols.      (line  8578)
+* \rbrace:                               Math symbols.      (line  8583)
+* \rbrack:                               Math symbols.      (line  8587)
+* \rceil:                                Math symbols.      (line  8591)
+* \Re:                                   Math symbols.      (line  8594)
 * \ref:                                  \ref.              (line  2869)
-* \reflectbox:                           \scalebox.         (line 11887)
-* \refstepcounter:                       \refstepcounter.   (line  7315)
+* \reflectbox:                           \scalebox.         (line 11888)
+* \refstepcounter:                       \refstepcounter.   (line  7316)
 * \renewenvironment:                     \newenvironment & \renewenvironment.
-                                                            (line  6733)
+                                                            (line  6734)
 * \RequirePackage:                       Class and package commands.
                                                             (line  1262)
 * \RequirePackageWithOptions:            Class and package commands.
                                                             (line  1262)
-* \resizebox:                            \resizebox.        (line 11918)
+* \resizebox:                            \resizebox.        (line 11919)
 * \restorecr:                            \obeycr & \restorecr.
                                                             (line  5840)
-* \restriction:                          Math symbols.      (line  8598)
-* \revemptyset:                          Math symbols.      (line  8603)
-* \reversemarginpar:                     Marginal notes.    (line  7834)
-* \rfloor:                               Math symbols.      (line  8608)
-* \rhd:                                  Math symbols.      (line  8612)
-* \rho:                                  Math symbols.      (line  8619)
-* \right:                                \left & \right.    (line  9403)
-* \Rightarrow:                           Math symbols.      (line  8623)
-* \rightarrow:                           Math symbols.      (line  8628)
-* \rightharpoondown:                     Math symbols.      (line  8632)
-* \rightharpoonup:                       Math symbols.      (line  8635)
-* \rightleftharpoons:                    Math symbols.      (line  8638)
+* \restriction:                          Math symbols.      (line  8599)
+* \revemptyset:                          Math symbols.      (line  8604)
+* \reversemarginpar:                     Marginal notes.    (line  7835)
+* \rfloor:                               Math symbols.      (line  8609)
+* \rhd:                                  Math symbols.      (line  8613)
+* \rho:                                  Math symbols.      (line  8620)
+* \right:                                \left & \right.    (line  9404)
+* \Rightarrow:                           Math symbols.      (line  8624)
+* \rightarrow:                           Math symbols.      (line  8629)
+* \rightharpoondown:                     Math symbols.      (line  8633)
+* \rightharpoonup:                       Math symbols.      (line  8636)
+* \rightleftharpoons:                    Math symbols.      (line  8639)
 * \rightmargin:                          list.              (line  3877)
 * \rm:                                   Font styles.       (line  1373)
 * \rmfamily:                             Font styles.       (line  1320)
 * \roman{COUNTER}:                       \alph \Alph \arabic \roman \Roman \fnsymbol.
-                                                            (line  7187)
+                                                            (line  7188)
 * \Roman{COUNTER}:                       \alph \Alph \arabic \roman \Roman \fnsymbol.
-                                                            (line  7192)
-* \rotatebox:                            \rotatebox.        (line 11819)
-* \rq:                                   Text symbols.      (line 12091)
-* \rule:                                 \rule.             (line 12376)
-* \S:                                    Text symbols.      (line 12094)
-* \savebox:                              \sbox & \savebox.  (line 10829)
-* \sbox:                                 \sbox & \savebox.  (line 10829)
+                                                            (line  7193)
+* \rotatebox:                            \rotatebox.        (line 11820)
+* \rq:                                   Text symbols.      (line 12092)
+* \rule:                                 \rule.             (line 12377)
+* \S:                                    Text symbols.      (line 12095)
+* \savebox:                              \sbox & \savebox.  (line 10830)
+* \sbox:                                 \sbox & \savebox.  (line 10830)
 * \sc:                                   Font styles.       (line  1376)
-* \scalebox:                             \scalebox.         (line 11887)
+* \scalebox:                             \scalebox.         (line 11888)
 * \scriptsize:                           Font sizes.        (line  1441)
 * \scshape:                              Font styles.       (line  1341)
-* \searrow:                              Math symbols.      (line  8641)
-* \sec:                                  Math functions.    (line  9169)
+* \searrow:                              Math symbols.      (line  8642)
+* \sec:                                  Math functions.    (line  9170)
 * \section:                              Sectioning.        (line  2052)
 * \section <1>:                          \section.          (line  2278)
-* \seename:                              \index.            (line 12991)
+* \seename:                              \index.            (line 12992)
 * \selectfont:                           Low-level font commands.
                                                             (line  1596)
-* \setcounter:                           \setcounter.       (line  7281)
-* \setlength:                            \setlength.        (line  7518)
-* \setminus:                             Math symbols.      (line  8644)
-* \settodepth:                           \settodepth.       (line  7573)
-* \settoheight:                          \settoheight.      (line  7597)
-* \settowidth:                           \settowidth.       (line  7621)
+* \setcounter:                           \setcounter.       (line  7282)
+* \setlength:                            \setlength.        (line  7519)
+* \setminus:                             Math symbols.      (line  8645)
+* \settodepth:                           \settodepth.       (line  7574)
+* \settoheight:                          \settoheight.      (line  7598)
+* \settowidth:                           \settowidth.       (line  7622)
 * \sf:                                   Font styles.       (line  1379)
 * \sffamily:                             Font styles.       (line  1338)
-* \sharp:                                Math symbols.      (line  8650)
+* \sharp:                                Math symbols.      (line  8651)
 * \shortstack:                           \shortstack.       (line  4590)
-* \Sigma:                                Math symbols.      (line  8653)
-* \sigma:                                Math symbols.      (line  8656)
-* \signature:                            \signature.        (line 13619)
-* \sim:                                  Math symbols.      (line  8660)
-* \simeq:                                Math symbols.      (line  8663)
-* \sin:                                  Math functions.    (line  9172)
-* \sinh:                                 Math functions.    (line  9175)
+* \Sigma:                                Math symbols.      (line  8654)
+* \sigma:                                Math symbols.      (line  8657)
+* \signature:                            \signature.        (line 13620)
+* \sim:                                  Math symbols.      (line  8661)
+* \simeq:                                Math symbols.      (line  8664)
+* \sin:                                  Math functions.    (line  9173)
+* \sinh:                                 Math functions.    (line  9176)
 * \sl:                                   Font styles.       (line  1382)
 * \sloppy:                               \fussy & \sloppy.  (line  5962)
 * \slshape:                              Font styles.       (line  1335)
 * \small:                                Font sizes.        (line  1441)
-* \smallint:                             Math symbols.      (line  8666)
+* \smallint:                             Math symbols.      (line  8667)
 * \smallskip:                            \bigskip & \medskip & \smallskip.
-                                                            (line 10310)
+                                                            (line 10311)
 * \smallskipamount:                      \bigskip & \medskip & \smallskip.
-                                                            (line 10311)
-* \smile:                                Math symbols.      (line  8670)
-* \SPACE:                                \(SPACE).          (line 10073)
-* \spacefactor:                          \spacefactor.      (line  9936)
-* \spadesuit:                            Math symbols.      (line  8673)
-* \sqcap:                                Math symbols.      (line  8676)
-* \sqcup:                                Math symbols.      (line  8680)
-* \sqrt:                                 \sqrt.             (line  9438)
-* \sqsubset:                             Math symbols.      (line  8684)
-* \sqsubseteq:                           Math symbols.      (line  8689)
-* \sqsupset:                             Math symbols.      (line  8694)
-* \sqsupseteq:                           Math symbols.      (line  8699)
+                                                            (line 10312)
+* \smile:                                Math symbols.      (line  8671)
+* \SPACE:                                \(SPACE).          (line 10074)
+* \spacefactor:                          \spacefactor.      (line  9937)
+* \spadesuit:                            Math symbols.      (line  8674)
+* \sqcap:                                Math symbols.      (line  8677)
+* \sqcup:                                Math symbols.      (line  8681)
+* \sqrt:                                 \sqrt.             (line  9439)
+* \sqsubset:                             Math symbols.      (line  8685)
+* \sqsubseteq:                           Math symbols.      (line  8690)
+* \sqsupset:                             Math symbols.      (line  8695)
+* \sqsupseteq:                           Math symbols.      (line  8700)
 * \ss (ss):                              Additional Latin letters.
-                                                            (line 12365)
+                                                            (line 12366)
 * \SS (SS):                              Additional Latin letters.
-                                                            (line 12365)
-* \stackrel:                             \stackrel.         (line  9454)
-* \star:                                 Math symbols.      (line  8704)
-* \stepcounter:                          \stepcounter.      (line  7333)
+                                                            (line 12366)
+* \stackrel:                             \stackrel.         (line  9455)
+* \star:                                 Math symbols.      (line  8705)
+* \stepcounter:                          \stepcounter.      (line  7334)
 * \stop:                                 Recovering from errors.
-                                                            (line 13930)
-* \strut:                                \strut.            (line 10354)
+                                                            (line 13931)
+* \strut:                                \strut.            (line 10355)
 * \subparagraph:                         Sectioning.        (line  2052)
 * \subparagraph <1>:                     \subsubsection & \paragraph & \subparagraph.
                                                             (line  2420)
 * \subsection:                           Sectioning.        (line  2052)
 * \subsection <1>:                       \subsection.       (line  2356)
-* \subset:                               Math symbols.      (line  8712)
-* \subseteq:                             Math symbols.      (line  8715)
+* \subset:                               Math symbols.      (line  8713)
+* \subseteq:                             Math symbols.      (line  8716)
 * \subsubsection:                        \subsubsection & \paragraph & \subparagraph.
                                                             (line  2420)
-* \succ:                                 Math symbols.      (line  8718)
-* \succeq:                               Math symbols.      (line  8722)
-* \sum:                                  Math symbols.      (line  8727)
-* \sup:                                  Math functions.    (line  9178)
+* \succ:                                 Math symbols.      (line  8719)
+* \succeq:                               Math symbols.      (line  8723)
+* \sum:                                  Math symbols.      (line  8728)
+* \sup:                                  Math functions.    (line  9179)
 * \suppressfloats:                       Floats.            (line  1983)
-* \supset:                               Math symbols.      (line  8731)
-* \supseteq:                             Math symbols.      (line  8734)
-* \surd:                                 Math symbols.      (line  8737)
-* \swarrow:                              Math symbols.      (line  8742)
+* \supset:                               Math symbols.      (line  8732)
+* \supseteq:                             Math symbols.      (line  8735)
+* \surd:                                 Math symbols.      (line  8738)
+* \swarrow:                              Math symbols.      (line  8743)
 * \symbol:                               Symbols by font position.
-                                                            (line 12030)
-* \t (tie-after accent):                 Accents.           (line 12306)
-* \TAB:                                  \(SPACE).          (line 10073)
+                                                            (line 12031)
+* \t (tie-after accent):                 Accents.           (line 12307)
+* \TAB:                                  \(SPACE).          (line 10074)
 * \tabbingsep:                           tabbing.           (line  4916)
 * \tabcolsep:                            tabular.           (line  5176)
 * \tableofcontents:                      Table of contents etc..
-                                                            (line 12671)
-* \tan:                                  Math functions.    (line  9181)
-* \tanh:                                 Math functions.    (line  9184)
-* \tau:                                  Math symbols.      (line  8745)
-* \telephone:                            \telephone.        (line 13649)
-* \TeX:                                  Text symbols.      (line 12098)
-* \textascendercompwordmark:             Text symbols.      (line 12136)
-* \textasciicircum:                      Text symbols.      (line 12101)
-* \textasciitilde:                       Text symbols.      (line 12104)
-* \textasteriskcentered:                 Text symbols.      (line 12107)
+                                                            (line 12672)
+* \tan:                                  Math functions.    (line  9182)
+* \tanh:                                 Math functions.    (line  9185)
+* \tau:                                  Math symbols.      (line  8746)
+* \telephone:                            \telephone.        (line 13650)
+* \TeX:                                  Text symbols.      (line 12099)
+* \textascendercompwordmark:             Text symbols.      (line 12137)
+* \textasciicircum:                      Text symbols.      (line 12102)
+* \textasciitilde:                       Text symbols.      (line 12105)
+* \textasteriskcentered:                 Text symbols.      (line 12108)
 * \textbackslash:                        Reserved characters.
-                                                            (line 11967)
-* \textbackslash <1>:                    Text symbols.      (line 12110)
-* \textbar:                              Text symbols.      (line 12113)
-* \textbardbl:                           Text symbols.      (line 12116)
+                                                            (line 11968)
+* \textbackslash <1>:                    Text symbols.      (line 12111)
+* \textbar:                              Text symbols.      (line 12114)
+* \textbardbl:                           Text symbols.      (line 12117)
 * \textbf:                               Font styles.       (line  1329)
-* \textbigcircle:                        Text symbols.      (line 12119)
-* \textbraceleft:                        Text symbols.      (line 12122)
-* \textbraceright:                       Text symbols.      (line 12125)
-* \textbullet:                           Text symbols.      (line 12128)
-* \textcapitalcompwordmark:              Text symbols.      (line 12135)
-* \textcircled{LETTER}:                  Text symbols.      (line 12131)
-* \textcompwordmark:                     Text symbols.      (line 12134)
-* \textcopyright:                        Text symbols.      (line 12048)
-* \textdagger:                           Text symbols.      (line 12143)
-* \textdaggerdbl:                        Text symbols.      (line 12146)
-* \textdollar (or \$):                   Text symbols.      (line 12149)
-* \textellipsis:                         Text symbols.      (line 12072)
-* \textemdash (or ---):                  Text symbols.      (line 12152)
-* \textendash (or --):                   Text symbols.      (line 12157)
-* \texteuro:                             Text symbols.      (line 12160)
-* \textexclamdown (or !`):               Text symbols.      (line 12166)
+* \textbigcircle:                        Text symbols.      (line 12120)
+* \textbraceleft:                        Text symbols.      (line 12123)
+* \textbraceright:                       Text symbols.      (line 12126)
+* \textbullet:                           Text symbols.      (line 12129)
+* \textcapitalcompwordmark:              Text symbols.      (line 12136)
+* \textcircled{LETTER}:                  Text symbols.      (line 12132)
+* \textcompwordmark:                     Text symbols.      (line 12135)
+* \textcopyright:                        Text symbols.      (line 12049)
+* \textdagger:                           Text symbols.      (line 12144)
+* \textdaggerdbl:                        Text symbols.      (line 12147)
+* \textdollar (or \$):                   Text symbols.      (line 12150)
+* \textellipsis:                         Text symbols.      (line 12073)
+* \textemdash (or ---):                  Text symbols.      (line 12153)
+* \textendash (or --):                   Text symbols.      (line 12158)
+* \texteuro:                             Text symbols.      (line 12161)
+* \textexclamdown (or !`):               Text symbols.      (line 12167)
 * \textfloatsep:                         Floats.            (line  2019)
 * \textfloatsep <1>:                     Floats.            (line  2020)
 * \textfraction:                         Floats.            (line  1998)
 * \textfraction <1>:                     Floats.            (line  1999)
-* \textgreater:                          Text symbols.      (line 12169)
+* \textgreater:                          Text symbols.      (line 12170)
 * \textheight:                           Page layout parameters.
                                                             (line  1854)
 * \textheight <1>:                       Page layout parameters.
                                                             (line  1855)
 * \textit:                               Font styles.       (line  1323)
-* \textleftarrow:                        Text symbols.      (line 12175)
-* \textless:                             Text symbols.      (line 12172)
+* \textleftarrow:                        Text symbols.      (line 12176)
+* \textless:                             Text symbols.      (line 12173)
 * \textmd:                               Font styles.       (line  1326)
 * \textnormal:                           Font styles.       (line  1347)
-* \textordfeminine:                      Text symbols.      (line 12178)
-* \textordmasculine:                     Text symbols.      (line 12179)
-* \textparagraph:                        Text symbols.      (line 12080)
-* \textperiodcentered:                   Text symbols.      (line 12182)
-* \textquestiondown (or ?`):             Text symbols.      (line 12185)
-* \textquotedblleft (or ``):             Text symbols.      (line 12188)
-* \textquotedblright (or ''):            Text symbols.      (line 12191)
-* \textquoteleft (or `):                 Text symbols.      (line 12194)
-* \textquoteright (or '):                Text symbols.      (line 12197)
-* \textquotesingle:                      Text symbols.      (line 12200)
-* \textquotestraightbase:                Text symbols.      (line 12203)
-* \textquotestraightdblbase:             Text symbols.      (line 12204)
-* \textregistered:                       Text symbols.      (line 12207)
-* \textrightarrow:                       Text symbols.      (line 12210)
+* \textordfeminine:                      Text symbols.      (line 12179)
+* \textordmasculine:                     Text symbols.      (line 12180)
+* \textparagraph:                        Text symbols.      (line 12081)
+* \textperiodcentered:                   Text symbols.      (line 12183)
+* \textquestiondown (or ?`):             Text symbols.      (line 12186)
+* \textquotedblleft (or ``):             Text symbols.      (line 12189)
+* \textquotedblright (or ''):            Text symbols.      (line 12192)
+* \textquoteleft (or `):                 Text symbols.      (line 12195)
+* \textquoteright (or '):                Text symbols.      (line 12198)
+* \textquotesingle:                      Text symbols.      (line 12201)
+* \textquotestraightbase:                Text symbols.      (line 12204)
+* \textquotestraightdblbase:             Text symbols.      (line 12205)
+* \textregistered:                       Text symbols.      (line 12208)
+* \textrightarrow:                       Text symbols.      (line 12211)
 * \textrm:                               Font styles.       (line  1320)
 * \textsc:                               Font styles.       (line  1341)
-* \textsection:                          Text symbols.      (line 12095)
+* \textsection:                          Text symbols.      (line 12096)
 * \textsf:                               Font styles.       (line  1338)
 * \textsl:                               Font styles.       (line  1335)
-* \textsterling:                         Text symbols.      (line 12084)
-* \textthreequartersemdash:              Text symbols.      (line 12213)
-* \texttrademark:                        Text symbols.      (line 12216)
+* \textsterling:                         Text symbols.      (line 12085)
+* \textthreequartersemdash:              Text symbols.      (line 12214)
+* \texttrademark:                        Text symbols.      (line 12217)
 * \texttt:                               Font styles.       (line  1344)
-* \texttwelveudash:                      Text symbols.      (line 12219)
-* \textunderscore:                       Text symbols.      (line 12222)
+* \texttwelveudash:                      Text symbols.      (line 12220)
+* \textunderscore:                       Text symbols.      (line 12223)
 * \textup:                               Font styles.       (line  1332)
-* \textvisiblespace:                     Text symbols.      (line 12225)
+* \textvisiblespace:                     Text symbols.      (line 12226)
 * \textwidth:                            Page layout parameters.
                                                             (line  1862)
 * \textwidth <1>:                        Page layout parameters.
                                                             (line  1863)
 * \th (th):                              Additional Latin letters.
-                                                            (line 12369)
+                                                            (line 12370)
 * \TH (TH):                              Additional Latin letters.
-                                                            (line 12369)
-* \thanks{TEXT}:                         \maketitle.        (line  9600)
-* \theta:                                Math symbols.      (line  8748)
+                                                            (line 12370)
+* \thanks{TEXT}:                         \maketitle.        (line  9601)
+* \theta:                                Math symbols.      (line  8749)
 * \thicklines:                           \thicklines.       (line  4527)
 * \thickspace:                           Spacing in math mode.
-                                                            (line  9309)
+                                                            (line  9310)
 * \thinlines:                            \thinlines.        (line  4519)
 * \thinspace:                            Spacing in math mode.
-                                                            (line  9318)
+                                                            (line  9319)
 * \thinspace <1>:                        \thinspace & \negthinspace.
-                                                            (line 10170)
-* \thispagestyle:                        \thispagestyle.    (line  9764)
-* \tilde:                                Math accents.      (line  9229)
-* \times:                                Math symbols.      (line  8752)
+                                                            (line 10171)
+* \thispagestyle:                        \thispagestyle.    (line  9765)
+* \tilde:                                Math accents.      (line  9230)
+* \times:                                Math symbols.      (line  8753)
 * \tiny:                                 Font sizes.        (line  1441)
-* \title{TEXT}:                          \maketitle.        (line  9607)
-* \to:                                   Math symbols.      (line  8756)
-* \today:                                \today.            (line 12411)
-* \top:                                  Math symbols.      (line  8760)
+* \title{TEXT}:                          \maketitle.        (line  9608)
+* \to:                                   Math symbols.      (line  8757)
+* \today:                                \today.            (line 12412)
+* \top:                                  Math symbols.      (line  8761)
 * \topfraction:                          Floats.            (line  2003)
 * \topfraction <1>:                      Floats.            (line  2004)
 * \topmargin:                            Page layout parameters.
@@ -15157,205 +15158,205 @@
                                                             (line  1894)
 * \topskip <1>:                          Page layout parameters.
                                                             (line  1895)
-* \triangle:                             Math symbols.      (line  8765)
-* \triangleleft:                         Math symbols.      (line  8768)
-* \triangleright:                        Math symbols.      (line  8774)
+* \triangle:                             Math symbols.      (line  8766)
+* \triangleleft:                         Math symbols.      (line  8769)
+* \triangleright:                        Math symbols.      (line  8775)
 * \tt:                                   Font styles.       (line  1385)
 * \ttfamily:                             Font styles.       (line  1344)
 * \twocolumn:                            \twocolumn.        (line  1630)
-* \typein:                               \typein.           (line 13664)
-* \typeout:                              \typeout.          (line 13709)
-* \u (breve accent):                     Accents.           (line 12310)
+* \typein:                               \typein.           (line 13665)
+* \typeout:                              \typeout.          (line 13710)
+* \u (breve accent):                     Accents.           (line 12311)
 * \unboldmath:                           \boldmath & \unboldmath.
-                                                            (line  8987)
+                                                            (line  8988)
 * \unboldmath <1>:                       \boldmath & \unboldmath.
-                                                            (line  8995)
-* \underbar:                             Accents.           (line 12276)
+                                                            (line  8996)
+* \underbar:                             Accents.           (line 12277)
 * \underbrace{MATH}:                     Over- and Underlining.
-                                                            (line  9267)
+                                                            (line  9268)
 * \underline{TEXT}:                      Over- and Underlining.
-                                                            (line  9250)
+                                                            (line  9251)
 * \unitlength:                           picture.           (line  4258)
-* \unlhd:                                Math symbols.      (line  8780)
-* \unrhd:                                Math symbols.      (line  8787)
-* \Uparrow:                              Math symbols.      (line  8794)
-* \uparrow:                              Math symbols.      (line  8798)
-* \Updownarrow:                          Math symbols.      (line  8802)
-* \updownarrow:                          Math symbols.      (line  8807)
-* \upharpoonright:                       Math symbols.      (line  8812)
-* \uplus:                                Math symbols.      (line  8817)
+* \unlhd:                                Math symbols.      (line  8781)
+* \unrhd:                                Math symbols.      (line  8788)
+* \Uparrow:                              Math symbols.      (line  8795)
+* \uparrow:                              Math symbols.      (line  8799)
+* \Updownarrow:                          Math symbols.      (line  8803)
+* \updownarrow:                          Math symbols.      (line  8808)
+* \upharpoonright:                       Math symbols.      (line  8813)
+* \uplus:                                Math symbols.      (line  8818)
 * \upshape:                              Font styles.       (line  1332)
-* \Upsilon:                              Math symbols.      (line  8824)
-* \upsilon:                              Math symbols.      (line  8827)
-* \usebox:                               \usebox.           (line 10935)
-* \usecounter:                           \usecounter.       (line  7222)
+* \Upsilon:                              Math symbols.      (line  8825)
+* \upsilon:                              Math symbols.      (line  8828)
+* \usebox:                               \usebox.           (line 10936)
+* \usecounter:                           \usecounter.       (line  7223)
 * \usefont:                              Low-level font commands.
                                                             (line  1604)
 * \usepackage:                           Additional packages.
                                                             (line   862)
-* \v (breve accent):                     Accents.           (line 12314)
-* \value:                                \value.            (line  7248)
-* \vanothing:                            Math symbols.      (line  8835)
-* \varepsilon:                           Math symbols.      (line  8830)
-* \varphi:                               Math symbols.      (line  8840)
-* \varpi:                                Math symbols.      (line  8844)
-* \varrho:                               Math symbols.      (line  8848)
-* \varsigma:                             Math symbols.      (line  8852)
-* \vartheta:                             Math symbols.      (line  8856)
-* \vdash:                                Math symbols.      (line  8860)
-* \vdots:                                Dots.              (line  9055)
-* \vec:                                  Math accents.      (line  9232)
+* \v (breve accent):                     Accents.           (line 12315)
+* \value:                                \value.            (line  7249)
+* \vanothing:                            Math symbols.      (line  8836)
+* \varepsilon:                           Math symbols.      (line  8831)
+* \varphi:                               Math symbols.      (line  8841)
+* \varpi:                                Math symbols.      (line  8845)
+* \varrho:                               Math symbols.      (line  8849)
+* \varsigma:                             Math symbols.      (line  8853)
+* \vartheta:                             Math symbols.      (line  8857)
+* \vdash:                                Math symbols.      (line  8861)
+* \vdots:                                Dots.              (line  9056)
+* \vec:                                  Math accents.      (line  9233)
 * \vector:                               \vector.           (line  4632)
-* \vee:                                  Math symbols.      (line  8864)
+* \vee:                                  Math symbols.      (line  8865)
 * \verb:                                 \verb.             (line  5678)
-* \Vert:                                 Math symbols.      (line  8869)
-* \vert:                                 Math symbols.      (line  8885)
-* \vfill:                                \vfill.            (line 10490)
+* \Vert:                                 Math symbols.      (line  8870)
+* \vert:                                 Math symbols.      (line  8886)
+* \vfill:                                \vfill.            (line 10491)
 * \vline:                                \vline.            (line  5269)
-* \vspace:                               \vspace.           (line 10439)
-* \wedge:                                Math symbols.      (line  8903)
-* \widehat:                              Math accents.      (line  9235)
-* \widetilde:                            Math accents.      (line  9238)
-* \wp:                                   Math symbols.      (line  8907)
-* \wr:                                   Math symbols.      (line  8910)
-* \Xi:                                   Math symbols.      (line  8913)
-* \xi:                                   Math symbols.      (line  8916)
+* \vspace:                               \vspace.           (line 10440)
+* \wedge:                                Math symbols.      (line  8904)
+* \widehat:                              Math accents.      (line  9236)
+* \widetilde:                            Math accents.      (line  9239)
+* \wp:                                   Math symbols.      (line  8908)
+* \wr:                                   Math symbols.      (line  8911)
+* \Xi:                                   Math symbols.      (line  8914)
+* \xi:                                   Math symbols.      (line  8917)
 * \year:                                 \day & \month & \year.
-                                                            (line  7349)
-* \zeta:                                 Math symbols.      (line  8919)
+                                                            (line  7350)
+* \zeta:                                 Math symbols.      (line  8920)
 * \\ (for center):                       center.            (line  3050)
 * \\ (for eqnarray):                     eqnarray.          (line  3358)
 * \\ (for flushright):                   flushright.        (line  3587)
 * \\ (for \shortstack objects):          \shortstack.       (line  4616)
 * \\ (tabbing):                          tabbing.           (line  4861)
 * \\ for flushleft:                      flushleft.         (line  3528)
-* \\ for letters:                        Letters.           (line 13407)
+* \\ for letters:                        Letters.           (line 13408)
 * \\ for tabular:                        tabular.           (line  5039)
 * \\ for verse:                          verse.             (line  5740)
-* \\ for \author:                        \maketitle.        (line  9587)
-* \\ for \title:                         \maketitle.        (line  9608)
+* \\ for \author:                        \maketitle.        (line  9588)
+* \\ for \title:                         \maketitle.        (line  9609)
 * \\ force line break:                   \\.                (line  5778)
 * \\* (for eqnarray):                    eqnarray.          (line  3366)
 * \^:                                    Reserved characters.
-                                                            (line 11967)
-* \^ (circumflex accent):                Accents.           (line 12263)
+                                                            (line 11968)
+* \^ (circumflex accent):                Accents.           (line 12264)
 * \_:                                    Reserved characters.
-                                                            (line 11960)
-* \` (grave accent):                     Accents.           (line 12267)
+                                                            (line 11961)
+* \` (grave accent):                     Accents.           (line 12268)
 * \` (tabbing):                          tabbing.           (line  4888)
 * \{:                                    Reserved characters.
-                                                            (line 11960)
-* \|:                                    Math symbols.      (line  8033)
+                                                            (line 11961)
+* \|:                                    Math symbols.      (line  8034)
 * \}:                                    Reserved characters.
-                                                            (line 11960)
+                                                            (line 11961)
 * \~:                                    Reserved characters.
-                                                            (line 11967)
-* \~ (tilde accent):                     Accents.           (line 12271)
+                                                            (line 11968)
+* \~ (tilde accent):                     Accents.           (line 12272)
 * ^:                                     Subscripts & superscripts.
-                                                            (line  7958)
+                                                            (line  7959)
 * _:                                     Subscripts & superscripts.
-                                                            (line  7958)
-* 'see' and 'see also' index entries:    \index.            (line 12991)
+                                                            (line  7959)
+* 'see' and 'see also' index entries:    \index.            (line 12992)
 * {...} for required arguments:          LaTeX command syntax.
                                                             (line   520)
-* ~:                                     ~.                 (line 10114)
+* ~:                                     ~.                 (line 10115)
 * a4paper option:                        Document class options.
                                                             (line   776)
 * a5paper option:                        Document class options.
                                                             (line   776)
 * abstract environment:                  abstract.          (line  2915)
 * abstracts:                             abstract.          (line  2915)
-* accents:                               Accents.           (line 12231)
-* accents, mathematical:                 Math accents.      (line  9198)
+* accents:                               Accents.           (line 12232)
+* accents, mathematical:                 Math accents.      (line  9199)
 * accessing any character of a font:     Symbols by font position.
-                                                            (line 12030)
-* acronyms, list of:                     Glossaries.        (line 13227)
-* acute accent:                          Accents.           (line 12252)
-* acute accent, math:                    Math accents.      (line  9203)
+                                                            (line 12031)
+* acronyms, list of:                     Glossaries.        (line 13228)
+* acute accent:                          Accents.           (line 12253)
+* acute accent, math:                    Math accents.      (line  9204)
 * additional packages, loading:          Additional packages.
                                                             (line   862)
 * ae ligature:                           Additional Latin letters.
-                                                            (line 12329)
+                                                            (line 12330)
 * algorithm2e package:                   tabbing.           (line  4941)
 * align environment, from amsmath:       eqnarray.          (line  3335)
 * aligning equations:                    eqnarray.          (line  3335)
 * alignment via tabbing:                 tabbing.           (line  4801)
-* amsfonts package:                      Math formulas.     (line  7947)
+* amsfonts package:                      Math formulas.     (line  7948)
 * 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  7947)
-* amsmath package <6>:                   Dots.              (line  9058)
-* amsmath package <7>:                   Math functions.    (line  9187)
+* amsmath package <5>:                   Math formulas.     (line  7948)
+* amsmath package <6>:                   Dots.              (line  9059)
+* amsmath package <7>:                   Math functions.    (line  9188)
 * amsmath package <8>:                   Colon character & \colon.
-                                                            (line  9364)
+                                                            (line  9365)
 * amsmath package <9>:                   Colon character & \colon.
-                                                            (line  9368)
+                                                            (line  9369)
 * amsmath package, replacing eqnarray:   eqnarray.          (line  3335)
 * amsthm package:                        theorem.           (line  5592)
-* amsthm package <1>:                    \rule.             (line 12388)
+* amsthm package <1>:                    \rule.             (line 12389)
 * appendices:                            \appendix.         (line  2487)
 * appendix:                              \appendix.         (line  2487)
 * appendix package:                      \appendix.         (line  2510)
 * aring:                                 Additional Latin letters.
-                                                            (line 12325)
+                                                            (line 12326)
 * array (package) package:               array.             (line  3032)
 * array environment:                     array.             (line  2961)
 * arrays, math:                          array.             (line  2961)
-* arrow, left, in text:                  Text symbols.      (line 12176)
-* arrow, right, in text:                 Text symbols.      (line 12211)
+* arrow, left, in text:                  Text symbols.      (line 12177)
+* arrow, right, in text:                 Text symbols.      (line 12212)
 * article class:                         Document classes.  (line   734)
-* ascender height:                       Text symbols.      (line 12137)
-* ASCII circumflex, in text:             Text symbols.      (line 12102)
-* ASCII tilde, in text:                  Text symbols.      (line 12105)
-* asterisk, centered, in text:           Text symbols.      (line 12108)
+* ascender height:                       Text symbols.      (line 12138)
+* ASCII circumflex, in text:             Text symbols.      (line 12103)
+* ASCII tilde, in text:                  Text symbols.      (line 12106)
+* asterisk, centered, in text:           Text symbols.      (line 12109)
 * Asymptote package:                     \line.             (line  4493)
-* Asymptote package <1>:                 \strut.            (line 10410)
-* Asymptote package <2>:                 \mbox & \makebox.  (line 10642)
-* at clause, in font definitions:        \newfont.          (line  6992)
-* at-sign:                               \@.                (line  9997)
-* author, for titlepage:                 \maketitle.        (line  9587)
+* Asymptote package <1>:                 \strut.            (line 10411)
+* Asymptote package <2>:                 \mbox & \makebox.  (line 10643)
+* at clause, in font definitions:        \newfont.          (line  6993)
+* at-sign:                               \@.                (line  9998)
+* author, for titlepage:                 \maketitle.        (line  9588)
 * auxiliary file:                        Output files.      (line   449)
 * b5paper option:                        Document class options.
                                                             (line   776)
 * babel package:                         \chapter.          (line  2250)
 * babel package <1>:                     thebibliography.   (line  5382)
-* babel package <2>:                     Accents.           (line 12231)
-* babel package <3>:                     \today.            (line 12418)
+* babel package <2>:                     Accents.           (line 12232)
+* babel package <3>:                     \today.            (line 12419)
 * babel package <4>:                     Table of contents etc..
-                                                            (line 12745)
-* babel package <5>:                     \index.            (line 12991)
-* background, colored:                   Colored pages.     (line 11182)
-* backslash, in text:                    Text symbols.      (line 12111)
-* bar, double vertical, in text:         Text symbols.      (line 12117)
-* bar, vertical, in text:                Text symbols.      (line 12114)
-* bar-over accent:                       Accents.           (line 12259)
-* bar-over accent, math:                 Math accents.      (line  9206)
-* bar-under accent:                      Accents.           (line 12274)
+                                                            (line 12746)
+* babel package <5>:                     \index.            (line 12992)
+* background, colored:                   Colored pages.     (line 11183)
+* backslash, in text:                    Text symbols.      (line 12112)
+* bar, double vertical, in text:         Text symbols.      (line 12118)
+* bar, vertical, in text:                Text symbols.      (line 12115)
+* bar-over accent:                       Accents.           (line 12260)
+* bar-over accent, math:                 Math accents.      (line  9207)
+* bar-under accent:                      Accents.           (line 12275)
 * basics of LaTeX:                       Overview.          (line   364)
-* beamer template and class:             beamer template.   (line 13957)
+* beamer template and class:             beamer template.   (line 13958)
 * beginning of document hook:            \AtBeginDocument.  (line  3236)
 * bibliography format, open:             Document class options.
                                                             (line   824)
 * bibliography, creating (automatically): Using BibTeX.     (line  5512)
 * bibliography, creating (manually):     thebibliography.   (line  5335)
 * bibTeX, using:                         Using BibTeX.      (line  5512)
-* big circle symbols, in text:           Text symbols.      (line 12120)
-* Big point:                             Units of length.   (line  7482)
+* big circle symbols, in text:           Text symbols.      (line 12121)
+* Big point:                             Units of length.   (line  7483)
 * bigfoot package:                       Footnotes of footnotes.
                                                             (line  6469)
 * black boxes, omitting:                 Document class options.
                                                             (line   810)
-* blackboard bold:                       Blackboard bold.   (line  8943)
+* blackboard bold:                       Blackboard bold.   (line  8944)
 * bm package:                            \boldmath & \unboldmath.
-                                                            (line  9013)
+                                                            (line  9014)
 * bold font:                             Font styles.       (line  1365)
 * bold math:                             Font styles.       (line  1418)
 * bold typewriter, avoiding:             description.       (line  3160)
 * boldface mathematics:                  \boldmath & \unboldmath.
-                                                            (line  8987)
+                                                            (line  8988)
 * book class:                            Document classes.  (line   734)
 * book, back matter:                     \frontmatter & \mainmatter & \backmatter.
                                                             (line  2520)
@@ -15367,66 +15368,66 @@
                                                             (line  2520)
 * bottomnumber:                          Floats.            (line  2026)
 * bottomnumber <1>:                      Floats.            (line  2027)
-* box:                                   \mbox & \makebox.  (line 10575)
+* box:                                   \mbox & \makebox.  (line 10576)
 * box, allocating new:                   \newsavebox.       (line  6706)
-* box, colored:                          Colored boxes.     (line 11145)
-* box, save:                             \sbox & \savebox.  (line 10829)
-* box, use saved box:                    \usebox.           (line 10935)
-* boxes:                                 Boxes.             (line 10566)
-* bp:                                    Units of length.   (line  7482)
-* brace, left, in text:                  Text symbols.      (line 12123)
-* brace, right, in text:                 Text symbols.      (line 12126)
+* box, colored:                          Colored boxes.     (line 11146)
+* box, save:                             \sbox & \savebox.  (line 10830)
+* box, use saved box:                    \usebox.           (line 10936)
+* boxes:                                 Boxes.             (line 10567)
+* bp:                                    Units of length.   (line  7483)
+* brace, left, in text:                  Text symbols.      (line 12124)
+* brace, right, in text:                 Text symbols.      (line 12127)
 * breaking lines:                        Line breaking.     (line  5761)
 * breaking pages:                        Page breaking.     (line  6052)
-* breaks, multiplication discretionary:  \*.                (line  9375)
-* breve accent:                          Accents.           (line 12310)
-* breve accent, math:                    Math accents.      (line  9209)
+* breaks, multiplication discretionary:  \*.                (line  9376)
+* breve accent:                          Accents.           (line 12311)
+* breve accent, math:                    Math accents.      (line  9210)
 * bug reporting:                         About this document.
                                                             (line   335)
 * bullet lists:                          itemize.           (line  3624)
-* bullet symbol:                         Math symbols.      (line  8128)
-* bullet, in text:                       Text symbols.      (line 12129)
+* bullet symbol:                         Math symbols.      (line  8129)
+* bullet, in text:                       Text symbols.      (line 12130)
 * bulleted lists:                        itemize.           (line  3624)
-* calligraphic fonts:                    Calligraphic.      (line  8969)
+* calligraphic fonts:                    Calligraphic.      (line  8970)
 * calligraphic letters for math:         Font styles.       (line  1368)
-* cap height:                            Text symbols.      (line 12137)
-* caron accent:                          Accents.           (line 12314)
+* cap height:                            Text symbols.      (line 12138)
+* caron accent:                          Accents.           (line 12315)
 * catcode:                               \makeatletter & \makeatother.
                                                             (line   606)
 * category code, character:              \makeatletter & \makeatother.
                                                             (line   606)
-* cc:                                    Units of length.   (line  7495)
-* cc list, in letters:                   \cc.               (line 13469)
-* cedilla accent:                        Accents.           (line 12284)
+* cc:                                    Units of length.   (line  7496)
+* cc list, in letters:                   \cc.               (line 13470)
+* cedilla accent:                        Accents.           (line 12285)
 * center environment:                    center.            (line  3040)
-* centered asterisk, in text:            Text symbols.      (line 12108)
+* centered asterisk, in text:            Text symbols.      (line 12109)
 * centered equations:                    Document class options.
                                                             (line   814)
-* centered period, in text:              Text symbols.      (line 12183)
+* centered period, in text:              Text symbols.      (line 12184)
 * centering text, declaration for:       \centering.        (line  3088)
 * centering text, environment for:       center.            (line  3040)
-* Centimeter:                            Units of length.   (line  7486)
+* Centimeter:                            Units of length.   (line  7487)
 * chapter:                               Sectioning.        (line  2052)
 * chapter <1>:                           \chapter.          (line  2185)
 * character category code:               \makeatletter & \makeatother.
                                                             (line   606)
-* characters, accented:                  Accents.           (line 12231)
+* characters, accented:                  Accents.           (line 12232)
 * characters, case of:                   Upper and lower case.
-                                                            (line 11985)
+                                                            (line 11986)
 * characters, non-English:               Additional Latin letters.
-                                                            (line 12319)
+                                                            (line 12320)
 * characters, reserved:                  Reserved characters.
-                                                            (line 11953)
+                                                            (line 11954)
 * characters, special:                   Reserved characters.
-                                                            (line 11953)
-* check accent:                          Accents.           (line 12314)
-* check accent, math:                    Math accents.      (line  9212)
-* Cicero:                                Units of length.   (line  7495)
-* circle symbol, big, in text:           Text symbols.      (line 12120)
-* circled letter, in text:               Text symbols.      (line 12132)
-* circumflex accent:                     Accents.           (line 12263)
-* circumflex accent, math:               Math accents.      (line  9224)
-* circumflex, ASCII, in text:            Text symbols.      (line 12102)
+                                                            (line 11954)
+* check accent:                          Accents.           (line 12315)
+* check accent, math:                    Math accents.      (line  9213)
+* Cicero:                                Units of length.   (line  7496)
+* circle symbol, big, in text:           Text symbols.      (line 12121)
+* circled letter, in text:               Text symbols.      (line 12133)
+* circumflex accent:                     Accents.           (line 12264)
+* circumflex accent, math:               Math accents.      (line  9225)
+* circumflex, ASCII, in text:            Text symbols.      (line 12103)
 * citation key:                          \bibitem.          (line  5397)
 * class and package commands:            Class and package commands.
                                                             (line   945)
@@ -15450,27 +15451,27 @@
 * cleveref package <2>:                  \footnotemark.     (line  6350)
 * clock option to slides class:          Document class options.
                                                             (line   856)
-* closing letters:                       \closing.          (line 13485)
-* closing quote:                         Text symbols.      (line 12092)
-* cm:                                    Units of length.   (line  7486)
+* closing letters:                       \closing.          (line 13486)
+* closing quote:                         Text symbols.      (line 12093)
+* cm:                                    Units of length.   (line  7487)
 * code, typesetting:                     verbatim.          (line  5639)
 * colon character:                       Colon character & \colon.
-                                                            (line  9355)
-* color:                                 Color.             (line 10947)
-* color <1>:                             Define colors.     (line 11052)
-* color <2>:                             Colored text.      (line 11074)
-* color <3>:                             Colored boxes.     (line 11145)
-* color <4>:                             Colored pages.     (line 11182)
-* color models:                          Color models.      (line 11000)
+                                                            (line  9356)
+* color:                                 Color.             (line 10948)
+* color <1>:                             Define colors.     (line 11053)
+* color <2>:                             Colored text.      (line 11075)
+* color <3>:                             Colored boxes.     (line 11146)
+* color <4>:                             Colored pages.     (line 11183)
+* color models:                          Color models.      (line 11001)
 * color package commands:                Commands for color.
-                                                            (line 11047)
+                                                            (line 11048)
 * color package options:                 Color package options.
-                                                            (line 10962)
-* color, define:                         Define colors.     (line 11052)
-* colored boxes:                         Colored boxes.     (line 11145)
-* colored page:                          Colored pages.     (line 11182)
-* colored text:                          Colored text.      (line 11074)
-* command line:                          Command line.      (line 13742)
+                                                            (line 10963)
+* color, define:                         Define colors.     (line 11053)
+* colored boxes:                         Colored boxes.     (line 11146)
+* colored page:                          Colored pages.     (line 11183)
+* colored text:                          Colored text.      (line 11075)
+* command line:                          Command line.      (line 13743)
 * command syntax:                        LaTeX command syntax.
                                                             (line   520)
 * commands, class and package:           Class and package commands.
@@ -15481,79 +15482,79 @@
 * commands, document class:              Class and package construction.
                                                             (line   878)
 * commands, graphics package:            Commands for graphics.
-                                                            (line 11491)
+                                                            (line 11492)
 * commands, ignore spaces:               \ignorespaces & \ignorespacesafterend.
-                                                            (line  7063)
+                                                            (line  7064)
 * commands, redefining:                  \newcommand & \renewcommand.
                                                             (line  6490)
 * commands, star-variants:               \@ifstar.          (line   642)
-* composite word mark, in text:          Text symbols.      (line 12137)
+* composite word mark, in text:          Text symbols.      (line 12138)
 * computer programs, typesetting:        verbatim.          (line  5639)
 * configuration, graphics package:       Graphics package configuration.
-                                                            (line 11304)
+                                                            (line 11305)
 * contents file:                         Output files.      (line   459)
-* copyright symbol:                      Text symbols.      (line 12049)
-* counters, a list of:                   Counters.          (line  7138)
+* copyright symbol:                      Text symbols.      (line 12050)
+* counters, a list of:                   Counters.          (line  7139)
 * counters, defining new:                \newcounter.       (line  6643)
-* counters, getting value of:            \value.            (line  7248)
+* counters, getting value of:            \value.            (line  7249)
 * counters, printing:                    \alph \Alph \arabic \roman \Roman \fnsymbol.
-                                                            (line  7166)
-* counters, setting:                     \setcounter.       (line  7281)
+                                                            (line  7167)
+* counters, setting:                     \setcounter.       (line  7282)
 * cprotect package:                      verbatim.          (line  5659)
 * cprotect package <1>:                  \verb.             (line  5717)
 * creating pictures:                     picture.           (line  4239)
 * creating tables:                       table.             (line  4950)
-* credit footnote:                       \maketitle.        (line  9601)
+* credit footnote:                       \maketitle.        (line  9602)
 * 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 12150)
-* currency, euro:                        Text symbols.      (line 12161)
-* dagger, double, in text:               Text symbols.      (line 12147)
-* dagger, in text:                       Text symbols.      (line 12052)
-* dagger, in text <1>:                   Text symbols.      (line 12144)
+* currency, dollar:                      Text symbols.      (line 12151)
+* currency, euro:                        Text symbols.      (line 12162)
+* dagger, double, in text:               Text symbols.      (line 12148)
+* dagger, in text:                       Text symbols.      (line 12053)
+* dagger, in text <1>:                   Text symbols.      (line 12145)
 * DANTE e.V.:                            CTAN.              (line   717)
-* date, for titlepage:                   \maketitle.        (line  9595)
-* date, today's:                         \today.            (line 12411)
-* datetime package:                      \today.            (line 12432)
+* date, for titlepage:                   \maketitle.        (line  9596)
+* date, today's:                         \today.            (line 12412)
+* datetime package:                      \today.            (line 12433)
 * dbltopnumber:                          Floats.            (line  2030)
 * dbltopnumber <1>:                      Floats.            (line  2031)
 * dcolumn package:                       array.             (line  3032)
-* dd:                                    Units of length.   (line  7492)
-* define color:                          Define colors.     (line 11052)
+* dd:                                    Units of length.   (line  7493)
+* define color:                          Define colors.     (line 11053)
 * defining a new command:                \newcommand & \renewcommand.
                                                             (line  6490)
 * defining a new command <1>:            \providecommand.   (line  6615)
 * defining new environments:             \newenvironment & \renewenvironment.
-                                                            (line  6733)
-* defining new fonts:                    \newfont.          (line  6979)
-* defining new theorems:                 \newtheorem.       (line  6867)
+                                                            (line  6734)
+* defining new fonts:                    \newfont.          (line  6980)
+* defining new theorems:                 \newtheorem.       (line  6868)
 * definitions:                           Definitions.       (line  6485)
-* delimiters, paired:                    \left & \right.    (line  9403)
-* delim_0:                               makeindex.         (line 13160)
-* delim_1:                               makeindex.         (line 13164)
-* delim_2:                               makeindex.         (line 13168)
-* delim_n:                               makeindex.         (line 13172)
-* delim_r:                               makeindex.         (line 13176)
-* description:                           \newglossaryentry. (line 13315)
+* delimiters, paired:                    \left & \right.    (line  9404)
+* delim_0:                               makeindex.         (line 13161)
+* delim_1:                               makeindex.         (line 13165)
+* delim_2:                               makeindex.         (line 13169)
+* delim_n:                               makeindex.         (line 13173)
+* delim_r:                               makeindex.         (line 13177)
+* description:                           \newglossaryentry. (line 13316)
 * 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  7492)
-* dieresis accent:                       Accents.           (line 12248)
+* design size, in font definitions:      \newfont.          (line  6993)
+* Didot point:                           Units of length.   (line  7493)
+* dieresis accent:                       Accents.           (line 12249)
 * difference between class and package:  Class and package construction.
                                                             (line   887)
-* discretionary breaks, multiplication:  \*.                (line  9375)
+* discretionary breaks, multiplication:  \*.                (line  9376)
 * discretionary hyphenation:             \discretionary.    (line  5939)
-* display math mode:                     Modes.             (line  9487)
+* display math mode:                     Modes.             (line  9488)
 * displaying quoted text with paragraph indentation: quotation & quote.
                                                             (line  4771)
 * displaying quoted text without paragraph indentation: quotation & quote.
                                                             (line  4771)
 * displaymath environment:               displaymath.       (line  3186)
-* displaymath environment <1>:           Math formulas.     (line  7867)
+* displaymath environment <1>:           Math formulas.     (line  7868)
 * document class commands:               Class and package construction.
                                                             (line   878)
 * document class options:                Document class options.
@@ -15563,46 +15564,46 @@
 * document classes:                      Document classes.  (line   729)
 * document environment:                  document.          (line  3230)
 * document templates:                    Document templates.
-                                                            (line 13950)
-* dollar sign:                           Text symbols.      (line 12150)
-* dot accent:                            Accents.           (line 12255)
-* dot over accent, math:                 Math accents.      (line  9218)
-* dot-over accent:                       Accents.           (line 12255)
-* dot-under accent:                      Accents.           (line 12288)
-* dotless i:                             Accents.           (line 12242)
-* dotless i, math:                       Math symbols.      (line  8280)
-* dotless j:                             Accents.           (line 12242)
-* dotless j, math:                       Math symbols.      (line  8302)
-* dots:                                  Dots.              (line  9027)
-* double angle quotation marks:          Text symbols.      (line 12067)
-* double dagger, in text:                Text symbols.      (line 12055)
-* double dagger, in text <1>:            Text symbols.      (line 12147)
-* double dot accent, math:               Math accents.      (line  9215)
-* double guillemets:                     Text symbols.      (line 12067)
-* double left quote:                     Text symbols.      (line 12189)
-* double low-9 quotation mark:           Text symbols.      (line 12089)
-* double quote, straight base:           Text symbols.      (line 12205)
-* double right quote:                    Text symbols.      (line 12192)
+                                                            (line 13951)
+* dollar sign:                           Text symbols.      (line 12151)
+* dot accent:                            Accents.           (line 12256)
+* dot over accent, math:                 Math accents.      (line  9219)
+* dot-over accent:                       Accents.           (line 12256)
+* dot-under accent:                      Accents.           (line 12289)
+* dotless i:                             Accents.           (line 12243)
+* dotless i, math:                       Math symbols.      (line  8281)
+* dotless j:                             Accents.           (line 12243)
+* dotless j, math:                       Math symbols.      (line  8303)
+* dots:                                  Dots.              (line  9028)
+* double angle quotation marks:          Text symbols.      (line 12068)
+* double dagger, in text:                Text symbols.      (line 12056)
+* double dagger, in text <1>:            Text symbols.      (line 12148)
+* double dot accent, math:               Math accents.      (line  9216)
+* double guillemets:                     Text symbols.      (line 12068)
+* double left quote:                     Text symbols.      (line 12190)
+* double low-9 quotation mark:           Text symbols.      (line 12090)
+* double quote, straight base:           Text symbols.      (line 12206)
+* double right quote:                    Text symbols.      (line 12193)
 * double spacing:                        Low-level font commands.
                                                             (line  1583)
-* double vertical bar, in text:          Text symbols.      (line 12117)
-* doublestruck:                          Blackboard bold.   (line  8943)
+* double vertical bar, in text:          Text symbols.      (line 12118)
+* doublestruck:                          Blackboard bold.   (line  8944)
 * 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 12158)
+* e-dash:                                Text symbols.      (line 12159)
 * e-TeX:                                 TeX engines.       (line   475)
-* ellipses:                              Dots.              (line  9027)
-* ellipsis:                              Text symbols.      (line 12073)
-* em:                                    Units of length.   (line  7500)
-* em <1>:                                Units of length.   (line  7500)
-* em-dash:                               Text symbols.      (line 12153)
-* em-dash, three-quarters:               Text symbols.      (line 12214)
-* em-dash, two-thirds:                   Text symbols.      (line 12220)
+* ellipses:                              Dots.              (line  9028)
+* ellipsis:                              Text symbols.      (line 12074)
+* em:                                    Units of length.   (line  7501)
+* em <1>:                                Units of length.   (line  7501)
+* em-dash:                               Text symbols.      (line 12154)
+* em-dash, three-quarters:               Text symbols.      (line 12215)
+* em-dash, two-thirds:                   Text symbols.      (line 12221)
 * emphasis:                              Font styles.       (line  1349)
-* enclosure list:                        \encl.             (line 13498)
+* enclosure list:                        \encl.             (line 13499)
 * end of document hook:                  \AtEndDocument.    (line  3252)
 * ending and starting:                   Starting and ending.
                                                             (line   390)
@@ -15617,12 +15618,12 @@
 * environment, center:                   center.            (line  3040)
 * environment, description:              description.       (line  3130)
 * environment, displaymath:              displaymath.       (line  3186)
-* environment, displaymath <1>:          Math formulas.     (line  7867)
+* environment, displaymath <1>:          Math formulas.     (line  7868)
 * 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  7867)
+* environment, equation <1>:             Math formulas.     (line  7868)
 * environment, figure:                   figure.            (line  3411)
 * environment, filecontents:             filecontents.      (line  3469)
 * environment, filecontents*:            filecontents.      (line  3469)
@@ -15632,7 +15633,7 @@
 * environment, letter:                   letter.            (line  3707)
 * environment, list:                     list.              (line  3712)
 * environment, math:                     math.              (line  4076)
-* environment, math <1>:                 Math formulas.     (line  7867)
+* environment, math <1>:                 Math formulas.     (line  7868)
 * environment, minipage:                 minipage.          (line  4088)
 * environment, picture:                  picture.           (line  4239)
 * environment, quotation:                quotation & quote. (line  4771)
@@ -15642,20 +15643,20 @@
 * environment, tabular:                  tabular.           (line  5010)
 * environment, thebibliography:          thebibliography.   (line  5335)
 * environment, theorem:                  theorem.           (line  5570)
-* environment, theorem-like:             \newtheorem.       (line  6867)
+* environment, theorem-like:             \newtheorem.       (line  6868)
 * environment, titlepage:                titlepage.         (line  5600)
 * environment, verbatim:                 verbatim.          (line  5639)
 * environment, verse:                    verse.             (line  5725)
 * environments:                          Environments.      (line  2898)
 * environments, defining:                \newenvironment & \renewenvironment.
-                                                            (line  6733)
-* envlab package:                        \makelabels.       (line 13572)
+                                                            (line  6734)
+* envlab package:                        \makelabels.       (line 13573)
 * EPS files:                             Graphics package configuration.
-                                                            (line 11304)
-* EPS files <1>:                         \includegraphics.  (line 11497)
+                                                            (line 11305)
+* EPS files <1>:                         \includegraphics.  (line 11498)
 * eqnarray environment:                  eqnarray.          (line  3335)
 * equation environment:                  equation.          (line  3391)
-* equation environment <1>:              Math formulas.     (line  7867)
+* equation environment <1>:              Math formulas.     (line  7868)
 * equation number, cross referencing:    \ref.              (line  2869)
 * equation numbers, left vs. right:      Document class options.
                                                             (line   820)
@@ -15665,37 +15666,37 @@
 * equations, flush left vs. centered:    Document class options.
                                                             (line   814)
 * es-zet German letter:                  Additional Latin letters.
-                                                            (line 12365)
+                                                            (line 12366)
 * etex command:                          TeX engines.       (line   475)
 * eth, Icelandic letter:                 Additional Latin letters.
-                                                            (line 12333)
+                                                            (line 12334)
 * etoolbox package:                      Class and package commands.
                                                             (line  1049)
-* euro symbol:                           Text symbols.      (line 12161)
-* eurosym package:                       Text symbols.      (line 12161)
-* ex:                                    Units of length.   (line  7500)
-* ex <1>:                                Units of length.   (line  7500)
-* exclamation point, upside-down:        Text symbols.      (line 12167)
+* euro symbol:                           Text symbols.      (line 12162)
+* eurosym package:                       Text symbols.      (line 12162)
+* ex:                                    Units of length.   (line  7501)
+* ex <1>:                                Units of length.   (line  7501)
+* exclamation point, upside-down:        Text symbols.      (line 12168)
 * executivepaper option:                 Document class options.
                                                             (line   776)
 * exponent:                              Subscripts & superscripts.
-                                                            (line  7958)
+                                                            (line  7959)
 * extended Latin:                        Additional Latin letters.
-                                                            (line 12319)
+                                                            (line 12320)
 * external files, writing:               filecontents.      (line  3469)
 * families, of fonts:                    Low-level font commands.
                                                             (line  1486)
-* fancyhdr package:                      Page styles.       (line  9544)
-* fancyhdr package <1>:                  \pagestyle.        (line  9687)
+* fancyhdr package:                      Page styles.       (line  9545)
+* fancyhdr package <1>:                  \pagestyle.        (line  9688)
 * fancyvrb package:                      tabbing.           (line  4941)
 * fancyvrb package <1>:                  verbatim.          (line  5670)
-* feminine ordinal symbol:               Text symbols.      (line 12180)
+* feminine ordinal symbol:               Text symbols.      (line 12181)
 * figure environment:                    figure.            (line  3411)
 * figure number, cross referencing:      \ref.              (line  2869)
 * figures, footnotes in:                 minipage.          (line  4189)
 * figures, inserting:                    figure.            (line  3411)
 * file, root:                            Splitting the input.
-                                                            (line 12446)
+                                                            (line 12447)
 * filecontents environment:              filecontents.      (line  3469)
 * filecontents* environment:             filecontents.      (line  3469)
 * final option:                          Document class options.
@@ -15723,11 +15724,11 @@
 * font sizes:                            Font sizes.        (line  1436)
 * font styles:                           Font styles.       (line  1296)
 * font symbols, by number:               Symbols by font position.
-                                                            (line 12030)
+                                                            (line 12031)
 * fonts:                                 Fonts.             (line  1290)
-* fonts, new commands for:               \newfont.          (line  6979)
-* fonts, script:                         Calligraphic.      (line  8969)
-* footer style:                          \pagestyle.        (line  9680)
+* fonts, new commands for:               \newfont.          (line  6980)
+* fonts, script:                         Calligraphic.      (line  8970)
+* footer style:                          \pagestyle.        (line  9681)
 * footer, parameters for:                Page layout parameters.
                                                             (line  1769)
 * footnote number, cross referencing:    \ref.              (line  2869)
@@ -15743,16 +15744,16 @@
 * 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  7867)
+* formulas, math:                        Math formulas.     (line  7868)
 * forward reference:                     Cross references.  (line  2768)
 * forward references, resolving:         Output files.      (line   449)
-* fraction:                              \frac.             (line  9391)
-* fragile commands:                      \protect.          (line  7011)
-* frame rule width:                      \fbox & \framebox. (line 10697)
-* frame, line width:                     \fbox & \framebox. (line 10697)
-* frame, separation from contents:       \fbox & \framebox. (line 10702)
-* French quotation marks:                Text symbols.      (line 12067)
-* functions, math:                       Math functions.    (line  9082)
+* fraction:                              \frac.             (line  9392)
+* fragile commands:                      \protect.          (line  7012)
+* frame rule width:                      \fbox & \framebox. (line 10698)
+* frame, line width:                     \fbox & \framebox. (line 10698)
+* frame, separation from contents:       \fbox & \framebox. (line 10703)
+* French quotation marks:                Text symbols.      (line 12068)
+* functions, math:                       Math functions.    (line  9083)
 * geometry package:                      Document class options.
                                                             (line   797)
 * geometry package <1>:                  Document class options.
@@ -15761,40 +15762,40 @@
                                                             (line   763)
 * global options <1>:                    Additional packages.
                                                             (line   871)
-* glossaries:                            Glossaries.        (line 13227)
-* glossary:                              Glossaries.        (line 13227)
-* glossary, entries:                     \newglossaryentry. (line 13275)
-* glossary, entry reference:             \gls.              (line 13334)
+* glossaries:                            Glossaries.        (line 13228)
+* glossary:                              Glossaries.        (line 13228)
+* glossary, entries:                     \newglossaryentry. (line 13276)
+* glossary, entry reference:             \gls.              (line 13335)
 * glue register, plain TeX:              \newlength.        (line  6684)
-* graphics:                              Graphics.          (line 11203)
+* graphics:                              Graphics.          (line 11204)
 * graphics <1>:                          Graphics package configuration.
-                                                            (line 11304)
-* graphics <2>:                          \includegraphics.  (line 11497)
-* graphics package:                      Graphics.          (line 11203)
+                                                            (line 11305)
+* graphics <2>:                          \includegraphics.  (line 11498)
+* graphics package:                      Graphics.          (line 11204)
 * graphics package <1>:                  Graphics package configuration.
-                                                            (line 11304)
-* graphics package <2>:                  \includegraphics.  (line 11497)
+                                                            (line 11305)
+* graphics package <2>:                  \includegraphics.  (line 11498)
 * graphics package commands:             Commands for graphics.
-                                                            (line 11491)
+                                                            (line 11492)
 * graphics package options:              Graphics package options.
-                                                            (line 11240)
+                                                            (line 11241)
 * graphics packages:                     \line.             (line  4493)
-* graphics, resizing:                    \scalebox.         (line 11887)
-* graphics, resizing <1>:                \resizebox.        (line 11918)
-* graphics, scaling:                     \scalebox.         (line 11887)
-* graphics, scaling <1>:                 \resizebox.        (line 11918)
-* grave accent:                          Accents.           (line 12267)
-* grave accent, math:                    Math accents.      (line  9221)
-* greater than symbol, in text:          Text symbols.      (line 12170)
-* greek letters:                         Math symbols.      (line  8021)
+* graphics, resizing:                    \scalebox.         (line 11888)
+* graphics, resizing <1>:                \resizebox.        (line 11919)
+* graphics, scaling:                     \scalebox.         (line 11888)
+* graphics, scaling <1>:                 \resizebox.        (line 11919)
+* grave accent:                          Accents.           (line 12268)
+* grave accent, math:                    Math accents.      (line  9222)
+* greater than symbol, in text:          Text symbols.      (line 12171)
+* greek letters:                         Math symbols.      (line  8022)
 * group, and environments:               Environments.      (line  2910)
-* group_skip:                            makeindex.         (line 13107)
-* ha'c<ek accent, math:                  Math accents.      (line  9212)
-* hacek accent:                          Accents.           (line 12314)
-* Halmos symbol:                         \rule.             (line 12383)
-* hat accent:                            Accents.           (line 12263)
-* hat accent, math:                      Math accents.      (line  9224)
-* header style:                          \pagestyle.        (line  9680)
+* group_skip:                            makeindex.         (line 13108)
+* ha'c<ek accent, math:                  Math accents.      (line  9213)
+* hacek accent:                          Accents.           (line 12315)
+* Halmos symbol:                         \rule.             (line 12384)
+* hat accent:                            Accents.           (line 12264)
+* hat accent, math:                      Math accents.      (line  9225)
+* header style:                          \pagestyle.        (line  9681)
 * header, parameters for:                Page layout parameters.
                                                             (line  1769)
 * hello, world:                          Starting and ending.
@@ -15802,33 +15803,33 @@
 * here, putting floats:                  Floats.            (line  1948)
 * home page for manual:                  About this document.
                                                             (line   320)
-* horizontal space:                      \hss.              (line  9910)
-* horizontal space, stretchable:         \hss.              (line  9910)
-* hungarian umlaut accent:               Accents.           (line 12292)
+* horizontal space:                      \hss.              (line  9911)
+* horizontal space, stretchable:         \hss.              (line  9911)
+* hungarian umlaut accent:               Accents.           (line 12293)
 * hyperref package:                      \footnotemark.     (line  6350)
 * hyperref package <1>:                  \footnotemark.     (line  6359)
-* hyperref package <2>:                  \pagenumbering.    (line  9661)
+* hyperref package <2>:                  \pagenumbering.    (line  9662)
 * hyperref package <3>:                  Command line input.
-                                                            (line 13871)
+                                                            (line 13872)
 * hyphenation, defining:                 \hyphenation.      (line  6003)
 * hyphenation, discretionary:            \discretionary.    (line  5939)
 * hyphenation, forcing:                  \- (hyphenation).  (line  5904)
-* hyphenation, preventing:               \mbox & \makebox.  (line 10575)
+* hyphenation, preventing:               \mbox & \makebox.  (line 10576)
 * Icelandic eth:                         Additional Latin letters.
-                                                            (line 12333)
+                                                            (line 12334)
 * Icelandic thorn:                       Additional Latin letters.
-                                                            (line 12369)
-* idx file:                              \index.            (line 13041)
+                                                            (line 12370)
+* idx file:                              \index.            (line 13042)
 * ij letter, Dutch:                      Additional Latin letters.
-                                                            (line 12345)
+                                                            (line 12346)
 * implementations of TeX:                TeX engines.       (line   468)
-* importing graphics:                    \includegraphics.  (line 11497)
-* in:                                    Units of length.   (line  7479)
+* importing graphics:                    \includegraphics.  (line 11498)
+* in:                                    Units of length.   (line  7480)
 * in-line formulas:                      math.              (line  4076)
-* inch:                                  Units of length.   (line  7479)
-* including graphics:                    \includegraphics.  (line 11497)
+* inch:                                  Units of length.   (line  7480)
+* including graphics:                    \includegraphics.  (line 11498)
 * indent, forcing:                       \indent & \noindent.
-                                                            (line  7742)
+                                                            (line  7743)
 * indentation of paragraphs, in minipage: minipage.         (line  4185)
 * indentfirst package:                   \part.             (line  2175)
 * indentfirst package <1>:               \chapter.          (line  2237)
@@ -15837,46 +15838,46 @@
 * indentfirst package <4>:               \subsubsection & \paragraph & \subparagraph.
                                                             (line  2475)
 * indentfirst package <5>:               \indent & \noindent.
-                                                            (line  7784)
-* indent_length:                         makeindex.         (line 13188)
-* indent_space:                          makeindex.         (line 13184)
-* index entries, 'see' and 'see also':   \index.            (line 12991)
-* index entry:                           \index.            (line 12941)
-* index package:                         \index.            (line 13036)
-* index, page range:                     \index.            (line 12975)
-* index, printing:                       \printindex.       (line 13212)
-* index, processing:                     makeindex.         (line 13056)
-* index, style file:                     makeindex.         (line 13068)
-* indexes:                               Indexes.           (line 12905)
-* infinite horizontal stretch:           \hfill.            (line  9877)
-* infinite vertical stretch:             \vfill.            (line 10490)
-* inner paragraph mode:                  Modes.             (line  9505)
+                                                            (line  7785)
+* indent_length:                         makeindex.         (line 13189)
+* indent_space:                          makeindex.         (line 13185)
+* index entries, 'see' and 'see also':   \index.            (line 12992)
+* index entry:                           \index.            (line 12942)
+* index package:                         \index.            (line 13037)
+* index, page range:                     \index.            (line 12976)
+* index, printing:                       \printindex.       (line 13213)
+* index, processing:                     makeindex.         (line 13057)
+* index, style file:                     makeindex.         (line 13069)
+* indexes:                               Indexes.           (line 12906)
+* infinite horizontal stretch:           \hfill.            (line  9878)
+* infinite vertical stretch:             \vfill.            (line 10491)
+* inner paragraph mode:                  Modes.             (line  9506)
 * input file:                            Splitting the input.
-                                                            (line 12442)
+                                                            (line 12443)
 * input, on command line:                Command line input.
-                                                            (line 13867)
+                                                            (line 13868)
 * input/output, to terminal:             Terminal input/output.
-                                                            (line 13661)
+                                                            (line 13662)
 * inserting figures:                     figure.            (line  3411)
 * insertions of special characters:      Special insertions.
-                                                            (line 11947)
-* internal vertical mode:                Modes.             (line  9496)
-* italic correction:                     \/.                (line 10194)
+                                                            (line 11948)
+* internal vertical mode:                Modes.             (line  9497)
+* italic correction:                     \/.                (line 10195)
 * italic font:                           Font styles.       (line  1371)
 * itemize environment:                   itemize.           (line  3624)
-* item_0:                                makeindex.         (line 13131)
-* item_01:                               makeindex.         (line 13140)
-* item_1:                                makeindex.         (line 13134)
-* item_12:                               makeindex.         (line 13150)
-* item_2:                                makeindex.         (line 13137)
-* item_x1:                               makeindex.         (line 13144)
-* item_x2:                               makeindex.         (line 13154)
+* item_0:                                makeindex.         (line 13132)
+* item_01:                               makeindex.         (line 13141)
+* item_1:                                makeindex.         (line 13135)
+* item_12:                               makeindex.         (line 13151)
+* item_2:                                makeindex.         (line 13138)
+* item_x1:                               makeindex.         (line 13145)
+* item_x2:                               makeindex.         (line 13155)
 * JPEG files:                            Graphics package configuration.
-                                                            (line 11304)
-* JPEG files <1>:                        \includegraphics.  (line 11497)
+                                                            (line 11305)
+* JPEG files <1>:                        \includegraphics.  (line 11498)
 * JPG files:                             Graphics package configuration.
-                                                            (line 11304)
-* JPG files <1>:                         \includegraphics.  (line 11497)
+                                                            (line 11305)
+* JPG files <1>:                         \includegraphics.  (line 11498)
 * justification, ragged left:            \raggedleft.       (line  3599)
 * justification, ragged right:           \raggedright.      (line  3548)
 * Knuth, Donald E.:                      Overview.          (line   364)
@@ -15889,7 +15890,7 @@
 * landscape orientation:                 Document class options.
                                                             (line   817)
 * latex command:                         Output files.      (line   426)
-* LaTeX logo:                            Text symbols.      (line 12058)
+* LaTeX logo:                            Text symbols.      (line 12059)
 * LaTeX overview:                        Overview.          (line   364)
 * LaTeX Project team:                    About this document.
                                                             (line   331)
@@ -15897,62 +15898,62 @@
                                                             (line   327)
 * latex-doc-ptr document:                About this document.
                                                             (line   344)
-* LaTeX2e logo:                          Text symbols.      (line 12061)
+* LaTeX2e logo:                          Text symbols.      (line 12062)
 * <latexrefman at tug.org> email address:   About this document.
                                                             (line   331)
 * Latin letters, additional:             Additional Latin letters.
-                                                            (line 12319)
+                                                            (line 12320)
 * layout commands:                       Layout.            (line  1613)
 * layout, page parameters for:           Page layout parameters.
                                                             (line  1769)
-* left angle quotation marks:            Text symbols.      (line 12067)
-* left arrow, in text:                   Text symbols.      (line 12176)
-* left brace, in text:                   Text symbols.      (line 12123)
-* left quote:                            Text symbols.      (line 12077)
-* left quote, double:                    Text symbols.      (line 12189)
-* left quote, single:                    Text symbols.      (line 12195)
+* left angle quotation marks:            Text symbols.      (line 12068)
+* left arrow, in text:                   Text symbols.      (line 12177)
+* left brace, in text:                   Text symbols.      (line 12124)
+* left quote:                            Text symbols.      (line 12078)
+* left quote, double:                    Text symbols.      (line 12190)
+* left quote, single:                    Text symbols.      (line 12196)
 * 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  9474)
+* left-to-right mode:                    Modes.             (line  9475)
 * legalpaper option:                     Document class options.
                                                             (line   776)
-* lengths, adding to:                    \addtolength.      (line  7545)
+* lengths, adding to:                    \addtolength.      (line  7546)
 * lengths, allocating new:               \newlength.        (line  6684)
-* lengths, defining and using:           Lengths.           (line  7368)
-* lengths, setting:                      \setlength.        (line  7518)
+* lengths, defining and using:           Lengths.           (line  7369)
+* lengths, setting:                      \setlength.        (line  7519)
 * leqno option:                          Document class options.
                                                             (line   806)
-* less than symbol, in text:             Text symbols.      (line 12173)
-* lethead_flag:                          makeindex.         (line 13114)
-* lethead_prefix:                        makeindex.         (line 13123)
-* lethead_suffix:                        makeindex.         (line 13127)
+* less than symbol, in text:             Text symbols.      (line 12174)
+* lethead_flag:                          makeindex.         (line 13115)
+* lethead_prefix:                        makeindex.         (line 13124)
+* lethead_suffix:                        makeindex.         (line 13128)
 * letter class:                          Document classes.  (line   734)
 * letter environment:                    letter.            (line  3707)
 * letterpaper option:                    Document class options.
                                                             (line   776)
-* letters, accented:                     Accents.           (line 12231)
+* letters, accented:                     Accents.           (line 12232)
 * letters, additional Latin:             Additional Latin letters.
-                                                            (line 12319)
-* letters, ending:                       \closing.          (line 13485)
-* letters, starting:                     \opening.          (line 13590)
-* letters, writing:                      Letters.           (line 13364)
+                                                            (line 12320)
+* letters, ending:                       \closing.          (line 13486)
+* letters, starting:                     \opening.          (line 13591)
+* letters, writing:                      Letters.           (line 13365)
 * line break, forcing:                   \\.                (line  5778)
 * line breaking:                         Line breaking.     (line  5761)
 * line breaks, changing:                 \fussy & \sloppy.  (line  5962)
 * line breaks, forcing:                  \linebreak & \nolinebreak.
                                                             (line  6021)
-* line breaks, multiplication discretionary: \*.            (line  9375)
+* line breaks, multiplication discretionary: \*.            (line  9376)
 * line breaks, preventing:               \linebreak & \nolinebreak.
                                                             (line  6021)
 * lines in tables:                       tabular.           (line  5010)
-* line_max:                              makeindex.         (line 13180)
+* line_max:                              makeindex.         (line 13181)
 * lining numerals:                       Font styles.       (line  1422)
 * lining text up in tables:              tabular.           (line  5010)
 * lining text up using tab stops:        tabbing.           (line  4801)
 * list environment:                      list.              (line  3712)
-* list items, specifying counter:        \usecounter.       (line  7222)
+* list items, specifying counter:        \usecounter.       (line  7223)
 * list of figures file:                  Output files.      (line   459)
 * list of tables file:                   Output files.      (line   459)
 * listings package:                      tabbing.           (line  4941)
@@ -15964,83 +15965,83 @@
 * loading additional packages:           Additional packages.
                                                             (line   862)
 * log file:                              Output files.      (line   444)
-* logo, LaTeX:                           Text symbols.      (line 12058)
-* logo, LaTeX2e:                         Text symbols.      (line 12061)
-* logo, TeX:                             Text symbols.      (line 12099)
+* logo, LaTeX:                           Text symbols.      (line 12059)
+* logo, LaTeX2e:                         Text symbols.      (line 12062)
+* logo, TeX:                             Text symbols.      (line 12100)
 * long command:                          Class and package commands.
                                                             (line   962)
-* low-9 quotation marks, single and double: Text symbols.   (line 12089)
+* low-9 quotation marks, single and double: Text symbols.   (line 12090)
 * low-level font commands:               Low-level font commands.
                                                             (line  1471)
 * lowercase:                             Upper and lower case.
-                                                            (line 11985)
+                                                            (line 11986)
 * LR box:                                picture.           (line  4336)
-* LR mode:                               Modes.             (line  9474)
-* lrbox:                                 lrbox.             (line 10907)
+* LR mode:                               Modes.             (line  9475)
+* lrbox:                                 lrbox.             (line 10908)
 * lshort document:                       About this document.
                                                             (line   355)
-* ltugboat class:                        tugboat template.  (line 14081)
+* ltugboat class:                        tugboat template.  (line 14082)
 * lualatex command:                      TeX engines.       (line   492)
 * LuaTeX:                                TeX engines.       (line   492)
-* m-width:                               Units of length.   (line  7500)
+* m-width:                               Units of length.   (line  7501)
 * macro package, LaTeX as:               Overview.          (line   369)
-* macron accent:                         Accents.           (line 12259)
-* macron accent, math:                   Math accents.      (line  9206)
+* macron accent:                         Accents.           (line 12260)
+* macron accent, math:                   Math accents.      (line  9207)
 * macros2e package:                      \makeatletter & \makeatother.
                                                             (line   627)
 * Madsen, Lars:                          eqnarray.          (line  3335)
-* make a box:                            \mbox & \makebox.  (line 10575)
-* makeindex:                             makeindex.         (line 13056)
-* makeindex program:                     makeindex.         (line 13056)
-* makeindex, style file:                 makeindex.         (line 13068)
+* make a box:                            \mbox & \makebox.  (line 10576)
+* makeindex:                             makeindex.         (line 13057)
+* makeindex program:                     makeindex.         (line 13057)
+* makeindex, style file:                 makeindex.         (line 13069)
 * making a title page:                   titlepage.         (line  5600)
-* making paragraphs:                     Making paragraphs. (line  7645)
-* marginal notes:                        Marginal notes.    (line  7818)
-* masculine ordinal symbol:              Text symbols.      (line 12180)
-* matching brackets:                     \left & \right.    (line  9403)
-* matching parentheses:                  \left & \right.    (line  9403)
-* math accents:                          Math accents.      (line  9198)
+* making paragraphs:                     Making paragraphs. (line  7646)
+* marginal notes:                        Marginal notes.    (line  7819)
+* masculine ordinal symbol:              Text symbols.      (line 12181)
+* matching brackets:                     \left & \right.    (line  9404)
+* matching parentheses:                  \left & \right.    (line  9404)
+* math accents:                          Math accents.      (line  9199)
 * math environment:                      math.              (line  4076)
-* math environment <1>:                  Math formulas.     (line  7867)
-* math formulas:                         Math formulas.     (line  7867)
-* math functions:                        Math functions.    (line  9082)
-* math miscellany:                       Math miscellany.   (line  9349)
-* math mode:                             Modes.             (line  9484)
-* math mode, entering:                   Math formulas.     (line  7867)
+* math environment <1>:                  Math formulas.     (line  7868)
+* math formulas:                         Math formulas.     (line  7868)
+* math functions:                        Math functions.    (line  9083)
+* math miscellany:                       Math miscellany.   (line  9350)
+* math mode:                             Modes.             (line  9485)
+* math mode, entering:                   Math formulas.     (line  7868)
 * math mode, spacing:                    Spacing in math mode.
-                                                            (line  9292)
-* math symbols:                          Math symbols.      (line  8021)
+                                                            (line  9293)
+* math symbols:                          Math symbols.      (line  8022)
 * math, bold:                            Font styles.       (line  1418)
-* mathtools package:                     Math formulas.     (line  7947)
+* mathtools package:                     Math formulas.     (line  7948)
 * mathtools package <1>:                 Over- and Underlining.
-                                                            (line  9286)
+                                                            (line  9287)
 * MetaPost package:                      \line.             (line  4493)
 * mfirstuc package:                      Upper and lower case.
-                                                            (line 12024)
+                                                            (line 12025)
 * mhchem package:                        Subscripts & superscripts.
-                                                            (line  8014)
-* Millimeter:                            Units of length.   (line  7489)
+                                                            (line  8015)
+* Millimeter:                            Units of length.   (line  7490)
 * minipage environment:                  minipage.          (line  4088)
 * minipage, creating a:                  minipage.          (line  4088)
 * minted package:                        tabbing.           (line  4941)
 * minted package <1>:                    verbatim.          (line  5664)
 * minted package <2>:                    \verb.             (line  5714)
 * mirrors of CTAN:                       CTAN.              (line   717)
-* mm:                                    Units of length.   (line  7489)
-* modes:                                 Modes.             (line  9464)
+* mm:                                    Units of length.   (line  7490)
+* modes:                                 Modes.             (line  9465)
 * monospace font:                        Font styles.       (line  1386)
-* moving arguments:                      \protect.          (line  7024)
+* moving arguments:                      \protect.          (line  7025)
 * mpfootnote counter:                    \footnote.         (line  6298)
-* mu:                                    Units of length.   (line  7511)
-* mu, math unit:                         Units of length.   (line  7511)
+* mu:                                    Units of length.   (line  7512)
+* mu, math unit:                         Units of length.   (line  7512)
 * multicolumn text:                      \twocolumn.        (line  1630)
-* multilingual support:                  Accents.           (line 12231)
-* multind package:                       Indexes.           (line 12931)
-* multiplication, discretionary:         \*.                (line  9375)
-* name:                                  \newglossaryentry. (line 13312)
-* NBSP:                                  ~.                 (line 10114)
+* multilingual support:                  Accents.           (line 12232)
+* multind package:                       Indexes.           (line 12932)
+* multiplication, discretionary:         \*.                (line  9376)
+* name:                                  \newglossaryentry. (line 13313)
+* NBSP:                                  ~.                 (line 10115)
 * nested \include, not allowed:          \include & \includeonly.
-                                                            (line 12614)
+                                                            (line 12615)
 * new class commands:                    Class and package construction.
                                                             (line   878)
 * new command, check:                    Class and package commands.
@@ -16056,17 +16057,17 @@
 * new line, starting (paragraph mode):   \newline.          (line  5880)
 * new page, starting:                    \newpage.          (line  6124)
 * non-English characters:                Additional Latin letters.
-                                                            (line 12319)
-* notes in the margin:                   Marginal notes.    (line  7818)
+                                                            (line 12320)
+* notes in the margin:                   Marginal notes.    (line  7819)
 * notitlepage option:                    Document class options.
                                                             (line   806)
-* null delimiter:                        \left & \right.    (line  9403)
-* numbered items, specifying counter:    \usecounter.       (line  7222)
+* null delimiter:                        \left & \right.    (line  9404)
+* numbered items, specifying counter:    \usecounter.       (line  7223)
 * numerals, old-style:                   Font styles.       (line  1422)
 * oblique font:                          Font styles.       (line  1383)
 * oe ligature:                           Additional Latin letters.
-                                                            (line 12361)
-* ogonek:                                Accents.           (line 12296)
+                                                            (line 12362)
+* ogonek:                                Accents.           (line 12297)
 * old-style numerals:                    Font styles.       (line  1422)
 * one-column output:                     \onecolumn.        (line  1618)
 * onecolumn option:                      Document class options.
@@ -16077,16 +16078,16 @@
                                                             (line   835)
 * openbib option:                        Document class options.
                                                             (line   806)
-* opening quote:                         Text symbols.      (line 12077)
+* opening quote:                         Text symbols.      (line 12078)
 * openright option:                      Document class options.
                                                             (line   835)
 * OpenType fonts:                        TeX engines.       (line   468)
 * options, class:                        Class and package commands.
                                                             (line  1005)
 * options, color package:                Color package options.
-                                                            (line 10962)
+                                                            (line 10963)
 * options, command line:                 Command line options.
-                                                            (line 13784)
+                                                            (line 13785)
 * options, document class:               Document class options.
                                                             (line   763)
 * options, document class <1>:           Class and package structure.
@@ -16094,19 +16095,19 @@
 * options, global:                       Additional packages.
                                                             (line   871)
 * options, graphics package:             Graphics package options.
-                                                            (line 11240)
+                                                            (line 11241)
 * options, package:                      Class and package structure.
                                                             (line   901)
 * options, package <1>:                  Class and package commands.
                                                             (line  1005)
-* ordinals, feminine and masculine:      Text symbols.      (line 12180)
+* ordinals, feminine and masculine:      Text symbols.      (line 12181)
 * oslash:                                Additional Latin letters.
-                                                            (line 12357)
-* outer paragraph mode:                  Modes.             (line  9505)
-* overbar accent:                        Accents.           (line 12259)
-* overdot accent, math:                  Math accents.      (line  9218)
+                                                            (line 12358)
+* outer paragraph mode:                  Modes.             (line  9506)
+* overbar accent:                        Accents.           (line 12260)
+* overdot accent, math:                  Math accents.      (line  9219)
 * overlining:                            Over- and Underlining.
-                                                            (line  9247)
+                                                            (line  9248)
 * overview of LaTeX:                     Overview.          (line   364)
 * package file layout:                   Class and package structure.
                                                             (line   901)
@@ -16115,51 +16116,51 @@
 * package options <1>:                   Class and package commands.
                                                             (line  1005)
 * package, algorithm2e:                  tabbing.           (line  4941)
-* package, amsfonts:                     Math formulas.     (line  7947)
+* package, amsfonts:                     Math formulas.     (line  7948)
 * 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  7947)
-* package, amsmath <6>:                  Dots.              (line  9058)
-* package, amsmath <7>:                  Math functions.    (line  9187)
+* package, amsmath <5>:                  Math formulas.     (line  7948)
+* package, amsmath <6>:                  Dots.              (line  9059)
+* package, amsmath <7>:                  Math functions.    (line  9188)
 * package, amsmath <8>:                  Colon character & \colon.
-                                                            (line  9364)
+                                                            (line  9365)
 * package, amsmath <9>:                  Colon character & \colon.
-                                                            (line  9368)
+                                                            (line  9369)
 * package, amsthm:                       theorem.           (line  5592)
-* package, amsthm <1>:                   \rule.             (line 12388)
+* package, amsthm <1>:                   \rule.             (line 12389)
 * package, appendix:                     \appendix.         (line  2510)
 * package, array (package):              array.             (line  3032)
 * package, Asymptote:                    \line.             (line  4493)
-* package, Asymptote <1>:                \strut.            (line 10410)
-* package, Asymptote <2>:                \mbox & \makebox.  (line 10642)
+* package, Asymptote <1>:                \strut.            (line 10411)
+* package, Asymptote <2>:                \mbox & \makebox.  (line 10643)
 * package, babel:                        \chapter.          (line  2250)
 * package, babel <1>:                    thebibliography.   (line  5382)
-* package, babel <2>:                    Accents.           (line 12231)
-* package, babel <3>:                    \today.            (line 12418)
+* package, babel <2>:                    Accents.           (line 12232)
+* package, babel <3>:                    \today.            (line 12419)
 * package, babel <4>:                    Table of contents etc..
-                                                            (line 12745)
-* package, babel <5>:                    \index.            (line 12991)
+                                                            (line 12746)
+* package, babel <5>:                    \index.            (line 12992)
 * package, bigfoot:                      Footnotes of footnotes.
                                                             (line  6469)
 * package, bm:                           \boldmath & \unboldmath.
-                                                            (line  9013)
+                                                            (line  9014)
 * 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 12432)
+* package, datetime:                     \today.            (line 12433)
 * package, dcolumn:                      array.             (line  3032)
 * package, enumitem:                     list.              (line  3976)
-* package, envlab:                       \makelabels.       (line 13572)
+* package, envlab:                       \makelabels.       (line 13573)
 * package, etoolbox:                     Class and package commands.
                                                             (line  1049)
-* package, eurosym:                      Text symbols.      (line 12161)
-* package, fancyhdr:                     Page styles.       (line  9544)
-* package, fancyhdr <1>:                 \pagestyle.        (line  9687)
+* package, eurosym:                      Text symbols.      (line 12162)
+* package, fancyhdr:                     Page styles.       (line  9545)
+* package, fancyhdr <1>:                 \pagestyle.        (line  9688)
 * package, fancyvrb:                     tabbing.           (line  4941)
 * package, fancyvrb <1>:                 verbatim.          (line  5670)
 * package, flafter:                      Floats.            (line  1978)
@@ -16170,9 +16171,9 @@
                                                             (line   801)
 * package, hyperref:                     \footnotemark.     (line  6350)
 * package, hyperref <1>:                 \footnotemark.     (line  6359)
-* package, hyperref <2>:                 \pagenumbering.    (line  9661)
+* package, hyperref <2>:                 \pagenumbering.    (line  9662)
 * package, hyperref <3>:                 Command line input.
-                                                            (line 13871)
+                                                            (line 13872)
 * package, indentfirst:                  \part.             (line  2175)
 * package, indentfirst <1>:              \chapter.          (line  2237)
 * package, indentfirst <2>:              \section.          (line  2332)
@@ -16180,45 +16181,45 @@
 * package, indentfirst <4>:              \subsubsection & \paragraph & \subparagraph.
                                                             (line  2475)
 * package, indentfirst <5>:              \indent & \noindent.
-                                                            (line  7784)
-* package, index:                        \index.            (line 13036)
+                                                            (line  7785)
+* package, index:                        \index.            (line 13037)
 * package, listings:                     tabbing.           (line  4941)
 * package, listings <1>:                 verbatim.          (line  5664)
 * package, listings <2>:                 \verb.             (line  5714)
 * package, macros2e:                     \makeatletter & \makeatother.
                                                             (line   627)
-* package, mathtools:                    Math formulas.     (line  7947)
+* package, mathtools:                    Math formulas.     (line  7948)
 * package, mathtools <1>:                Over- and Underlining.
-                                                            (line  9286)
+                                                            (line  9287)
 * package, MetaPost:                     \line.             (line  4493)
 * package, mfirstuc:                     Upper and lower case.
-                                                            (line 12024)
+                                                            (line 12025)
 * package, mhchem:                       Subscripts & superscripts.
-                                                            (line  8014)
+                                                            (line  8015)
 * package, minted:                       tabbing.           (line  4941)
 * package, minted <1>:                   verbatim.          (line  5664)
 * package, minted <2>:                   \verb.             (line  5714)
-* package, multind:                      Indexes.           (line 12931)
+* package, multind:                      Indexes.           (line 12932)
 * package, pict2e:                       \line.             (line  4493)
-* package, polyglossia:                  Accents.           (line 12231)
-* package, polyglossia <1>:              \today.            (line 12418)
+* package, polyglossia:                  Accents.           (line 12232)
+* package, polyglossia <1>:              \today.            (line 12419)
 * package, polyglossia <2>:              Table of contents etc..
-                                                            (line 12745)
-* package, polyglossia <3>:              \index.            (line 12991)
+                                                            (line 12746)
+* package, polyglossia <3>:              \index.            (line 12992)
 * package, PSTricks:                     \line.             (line  4493)
 * package, sagetex:                      Command line options.
-                                                            (line 13840)
+                                                            (line 13841)
 * package, setspace:                     Low-level font commands.
                                                             (line  1583)
-* package, showidx:                      Indexes.           (line 12931)
-* package, siunitx:                      ~.                 (line 10140)
-* package, symbols:                      Math symbols.      (line  8021)
+* package, showidx:                      Indexes.           (line 12932)
+* package, siunitx:                      ~.                 (line 10141)
+* package, symbols:                      Math symbols.      (line  8022)
 * package, textcase:                     Upper and lower case.
-                                                            (line 12021)
+                                                            (line 12022)
 * package, textcomp:                     Font styles.       (line  1422)
 * package, TikZ:                         \line.             (line  4493)
-* package, TikZ <1>:                     \strut.            (line 10410)
-* package, TikZ <2>:                     \mbox & \makebox.  (line 10641)
+* package, TikZ <1>:                     \strut.            (line 10411)
+* package, TikZ <2>:                     \mbox & \makebox.  (line 10642)
 * package, titlesec:                     \part.             (line  2179)
 * package, titlesec <1>:                 \chapter.          (line  2258)
 * package, titlesec <2>:                 \section.          (line  2336)
@@ -16226,11 +16227,11 @@
 * package, titlesec <4>:                 \subsubsection & \paragraph & \subparagraph.
                                                             (line  2479)
 * package, tocbibbind:                   Table of contents etc..
-                                                            (line 12756)
+                                                            (line 12757)
 * package, tocloft:                      Table of contents etc..
-                                                            (line 12756)
+                                                            (line 12757)
 * package, ulem:                         Over- and Underlining.
-                                                            (line  9256)
+                                                            (line  9257)
 * package, url:                          \verb.             (line  5710)
 * package, verbatimbox:                  verbatim.          (line  5670)
 * packages, loading additional:          Additional packages.
@@ -16243,142 +16244,142 @@
 * page layout parameters:                Page layout parameters.
                                                             (line  1769)
 * page number, cross referencing:        \pageref.          (line  2845)
-* page numbering style:                  \pagenumbering.    (line  9622)
-* page style, this page:                 \thispagestyle.    (line  9764)
-* page styles:                           Page styles.       (line  9538)
-* page, colored:                         Colored pages.     (line 11182)
-* page_precedence:                       makeindex.         (line 13193)
-* paired delimiters:                     \left & \right.    (line  9403)
+* page numbering style:                  \pagenumbering.    (line  9623)
+* page style, this page:                 \thispagestyle.    (line  9765)
+* page styles:                           Page styles.       (line  9539)
+* page, colored:                         Colored pages.     (line 11183)
+* page_precedence:                       makeindex.         (line 13194)
+* paired delimiters:                     \left & \right.    (line  9404)
 * paragraph:                             Sectioning.        (line  2052)
 * paragraph <1>:                         \subsubsection & \paragraph & \subparagraph.
                                                             (line  2420)
 * paragraph indentation:                 \parindent & \parskip.
-                                                            (line  7791)
+                                                            (line  7792)
 * paragraph indentation, in minipage:    minipage.          (line  4185)
 * paragraph indentations in quoted text: quotation & quote. (line  4771)
 * paragraph indentations in quoted text, omitting: quotation & quote.
                                                             (line  4771)
-* paragraph mode:                        Modes.             (line  9470)
-* paragraph mode <1>:                    \parbox.           (line 10731)
-* paragraph symbol:                      Text symbols.      (line 12081)
-* paragraph, ending:                     \par.              (line  7689)
-* paragraph, in a box:                   \parbox.           (line 10731)
-* paragraphs:                            Making paragraphs. (line  7645)
+* paragraph mode:                        Modes.             (line  9471)
+* paragraph mode <1>:                    \parbox.           (line 10732)
+* paragraph symbol:                      Text symbols.      (line 12082)
+* paragraph, ending:                     \par.              (line  7690)
+* paragraph, in a box:                   \parbox.           (line 10732)
+* paragraphs:                            Making paragraphs. (line  7646)
 * parameters, for footnotes:             \footnote.         (line  6270)
 * parameters, page layout:               Page layout parameters.
                                                             (line  1769)
 * part:                                  Sectioning.        (line  2052)
 * part <1>:                              \part.             (line  2131)
-* pc:                                    Units of length.   (line  7476)
+* pc:                                    Units of length.   (line  7477)
 * PDF graphic files:                     Graphics package configuration.
-                                                            (line 11304)
-* PDF graphic files <1>:                 \includegraphics.  (line 11497)
+                                                            (line 11305)
+* PDF graphic files <1>:                 \includegraphics.  (line 11498)
 * pdflatex command:                      Output files.      (line   436)
 * pdfTeX:                                Output files.      (line   436)
 * pdfTeX engine:                         TeX engines.       (line   475)
-* period, abbreviation-ending:           \@.                (line  9997)
-* period, centered, in text:             Text symbols.      (line 12183)
-* period, sentence-ending:               \@.                (line  9997)
-* period, spacing after:                 \@.                (line  9997)
-* pica:                                  Units of length.   (line  7476)
+* period, abbreviation-ending:           \@.                (line  9998)
+* period, centered, in text:             Text symbols.      (line 12184)
+* period, sentence-ending:               \@.                (line  9998)
+* period, spacing after:                 \@.                (line  9998)
+* pica:                                  Units of length.   (line  7477)
 * pict2e package:                        \line.             (line  4493)
 * pict2e package <1>:                    \line.             (line  4493)
 * picture environment:                   picture.           (line  4239)
 * pictures, creating:                    picture.           (line  4239)
-* pilcrow:                               Text symbols.      (line 12081)
+* pilcrow:                               Text symbols.      (line 12082)
 * placement of floats:                   Floats.            (line  1927)
-* plural:                                \newglossaryentry. (line 13320)
+* plural:                                \newglossaryentry. (line 13321)
 * PNG files:                             Graphics package configuration.
-                                                            (line 11304)
-* PNG files <1>:                         \includegraphics.  (line 11497)
+                                                            (line 11305)
+* PNG files <1>:                         \includegraphics.  (line 11498)
 * poetry, an environment for:            verse.             (line  5725)
-* Point:                                 Units of length.   (line  7472)
+* Point:                                 Units of length.   (line  7473)
 * polish l:                              Additional Latin letters.
-                                                            (line 12349)
-* polyglossia package:                   Accents.           (line 12231)
-* polyglossia package <1>:               \today.            (line 12418)
+                                                            (line 12350)
+* polyglossia package:                   Accents.           (line 12232)
+* polyglossia package <1>:               \today.            (line 12419)
 * polyglossia package <2>:               Table of contents etc..
-                                                            (line 12745)
-* polyglossia package <3>:               \index.            (line 12991)
+                                                            (line 12746)
+* polyglossia package <3>:               \index.            (line 12992)
 * portrait orientation:                  Document class options.
                                                             (line   817)
 * position, in picture:                  picture.           (line  4310)
 * positional parameter:                  \newcommand & \renewcommand.
                                                             (line  6536)
-* postamble:                             makeindex.         (line 13104)
-* postscript, in letters:                \ps.               (line 13602)
-* pounds symbol:                         Text symbols.      (line 12085)
-* preamble:                              makeindex.         (line 13100)
+* postamble:                             makeindex.         (line 13105)
+* postscript, in letters:                \ps.               (line 13603)
+* pounds symbol:                         Text symbols.      (line 12086)
+* preamble:                              makeindex.         (line 13101)
 * preamble, defined:                     Starting and ending.
                                                             (line   406)
 * prompt, *:                             Recovering from errors.
-                                                            (line 13930)
+                                                            (line 13931)
 * pronunciation:                         Overview.          (line   382)
 * PSTricks package:                      \line.             (line  4493)
-* pt:                                    Units of length.   (line  7472)
+* pt:                                    Units of length.   (line  7473)
 * quad:                                  Spacing in math mode.
-                                                            (line  9337)
-* question mark, upside-down:            Text symbols.      (line 12186)
+                                                            (line  9338)
+* question mark, upside-down:            Text symbols.      (line 12187)
 * quotation environment:                 quotation & quote. (line  4771)
-* quotation marks, French:               Text symbols.      (line 12067)
+* quotation marks, French:               Text symbols.      (line 12068)
 * quote environment:                     quotation & quote. (line  4771)
-* quote, single straight:                Text symbols.      (line 12201)
-* quote, straight base:                  Text symbols.      (line 12205)
+* quote, single straight:                Text symbols.      (line 12202)
+* quote, straight base:                  Text symbols.      (line 12206)
 * quoted text with paragraph indentation, displaying: quotation & quote.
                                                             (line  4771)
 * quoted text without paragraph indentation, displaying: quotation & quote.
                                                             (line  4771)
-* radical:                               \sqrt.             (line  9438)
+* radical:                               \sqrt.             (line  9439)
 * 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)
 * redefining environments:               \newenvironment & \renewenvironment.
-                                                            (line  6733)
+                                                            (line  6734)
 * reference, forward:                    Cross references.  (line  2768)
 * references, resolving forward:         Output files.      (line   449)
-* registered symbol:                     Text symbols.      (line 12208)
-* relation, text above:                  \stackrel.         (line  9454)
-* remarks in the margin:                 Marginal notes.    (line  7818)
+* registered symbol:                     Text symbols.      (line 12209)
+* relation, text above:                  \stackrel.         (line  9455)
+* remarks in the margin:                 Marginal notes.    (line  7819)
 * report class:                          Document classes.  (line   734)
 * reporting bugs:                        About this document.
                                                             (line   335)
 * reserved characters:                   Reserved characters.
-                                                            (line 11953)
-* resizing:                              \scalebox.         (line 11887)
-* resizing <1>:                          \resizebox.        (line 11918)
-* right angle quotation marks:           Text symbols.      (line 12067)
-* right arrow, in text:                  Text symbols.      (line 12211)
-* right brace, in text:                  Text symbols.      (line 12126)
-* right quote:                           Text symbols.      (line 12092)
-* right quote, double:                   Text symbols.      (line 12192)
-* right quote, single:                   Text symbols.      (line 12198)
+                                                            (line 11954)
+* resizing:                              \scalebox.         (line 11888)
+* resizing <1>:                          \resizebox.        (line 11919)
+* right angle quotation marks:           Text symbols.      (line 12068)
+* right arrow, in text:                  Text symbols.      (line 12212)
+* right brace, in text:                  Text symbols.      (line 12127)
+* right quote:                           Text symbols.      (line 12093)
+* right quote, double:                   Text symbols.      (line 12193)
+* right quote, single:                   Text symbols.      (line 12199)
 * 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 12300)
-* ring accent, math:                     Math accents.      (line  9227)
-* robust commands:                       \protect.          (line  7011)
+* ring accent:                           Accents.           (line 12301)
+* ring accent, math:                     Math accents.      (line  9228)
+* robust commands:                       \protect.          (line  7012)
 * roman font:                            Font styles.       (line  1374)
 * root file:                             Splitting the input.
-                                                            (line 12446)
-* roots:                                 \sqrt.             (line  9438)
-* rotating graphics:                     \rotatebox.        (line 11819)
-* rotating text:                         \rotatebox.        (line 11819)
-* rotation:                              \rotatebox.        (line 11819)
+                                                            (line 12447)
+* roots:                                 \sqrt.             (line  9439)
+* rotating graphics:                     \rotatebox.        (line 11820)
+* rotating text:                         \rotatebox.        (line 11820)
+* rotation:                              \rotatebox.        (line 11820)
 * row, tabbing:                          tabbing.           (line  4841)
 * rubber lengths, defining new:          \newlength.        (line  6684)
 * running header and footer:             Page layout parameters.
                                                             (line  1769)
-* running header and footer style:       \pagestyle.        (line  9680)
+* running header and footer style:       \pagestyle.        (line  9681)
 * sagetex package:                       Command line options.
-                                                            (line 13840)
+                                                            (line 13841)
 * sans serif font:                       Font styles.       (line  1380)
-* Scaled point:                          Units of length.   (line  7498)
-* scaling:                               \scalebox.         (line 11887)
-* scaling <1>:                           \resizebox.        (line 11918)
-* script fonts:                          Calligraphic.      (line  8969)
+* Scaled point:                          Units of length.   (line  7499)
+* scaling:                               \scalebox.         (line 11888)
+* scaling <1>:                           \resizebox.        (line 11919)
+* script fonts:                          Calligraphic.      (line  8970)
 * script letters for math:               Font styles.       (line  1368)
 * secnumdepth:                           Sectioning.        (line  2108)
 * secnumdepth counter:                   Sectioning.        (line  2109)
@@ -16386,7 +16387,7 @@
 * section <1>:                           \section.          (line  2278)
 * section number, cross referencing:     \ref.              (line  2869)
 * section numbers, printing:             Sectioning.        (line  2109)
-* section symbol:                        Text symbols.      (line 12096)
+* section symbol:                        Text symbols.      (line 12097)
 * section, redefining:                   \@startsection.    (line  2548)
 * sectioning commands:                   Sectioning.        (line  2052)
 * sectioning, part:                      \part.             (line  2131)
@@ -16394,20 +16395,20 @@
                                                             (line  1513)
 * setspace package:                      Low-level font commands.
                                                             (line  1583)
-* setting counters:                      \setcounter.       (line  7281)
+* setting counters:                      \setcounter.       (line  7282)
 * shapes, of fonts:                      Low-level font commands.
                                                             (line  1553)
 * sharp S letters:                       Additional Latin letters.
-                                                            (line 12365)
-* showidx package:                       Indexes.           (line 12931)
+                                                            (line 12366)
+* showidx package:                       Indexes.           (line 12932)
 * simulating typed text:                 verbatim.          (line  5639)
-* single angle quotation marks:          Text symbols.      (line 12067)
-* single guillemets:                     Text symbols.      (line 12067)
-* single left quote:                     Text symbols.      (line 12195)
-* single low-9 quotation mark:           Text symbols.      (line 12089)
-* single quote, straight:                Text symbols.      (line 12201)
-* single right quote:                    Text symbols.      (line 12198)
-* siunitx package:                       ~.                 (line 10140)
+* single angle quotation marks:          Text symbols.      (line 12068)
+* single guillemets:                     Text symbols.      (line 12068)
+* single left quote:                     Text symbols.      (line 12196)
+* single low-9 quotation mark:           Text symbols.      (line 12090)
+* single quote, straight:                Text symbols.      (line 12202)
+* single right quote:                    Text symbols.      (line 12199)
+* siunitx package:                       ~.                 (line 10141)
 * sizes of text:                         Font sizes.        (line  1436)
 * skip register, plain TeX:              \newlength.        (line  6684)
 * slanted font:                          Font styles.       (line  1383)
@@ -16415,36 +16416,36 @@
 * sloppypar:                             sloppypar.         (line  5975)
 * sloppypar environment:                 sloppypar.         (line  5975)
 * small caps font:                       Font styles.       (line  1377)
-* sort:                                  \newglossaryentry. (line 13324)
-* sp:                                    Units of length.   (line  7498)
-* space, hard:                           ~.                 (line 10114)
-* space, inserting horizontal:           \hss.              (line  9910)
-* space, inserting vertical:             \addvspace.        (line 10519)
+* sort:                                  \newglossaryentry. (line 13325)
+* sp:                                    Units of length.   (line  7499)
+* space, hard:                           ~.                 (line 10115)
+* space, inserting horizontal:           \hss.              (line  9911)
+* space, inserting vertical:             \addvspace.        (line 10520)
 * space, negative thin:                  \thinspace & \negthinspace.
-                                                            (line 10170)
+                                                            (line 10171)
 * space, thin:                           \thinspace & \negthinspace.
-                                                            (line 10170)
-* space, unbreakable:                    ~.                 (line 10114)
-* space, vertical:                       \vspace.           (line 10439)
-* spaces:                                Spaces.            (line  9792)
+                                                            (line 10171)
+* space, unbreakable:                    ~.                 (line 10115)
+* space, vertical:                       \vspace.           (line 10440)
+* spaces:                                Spaces.            (line  9793)
 * spaces, ignore around commands:        \ignorespaces & \ignorespacesafterend.
-                                                            (line  7063)
+                                                            (line  7064)
 * spacing within math mode:              Spacing in math mode.
-                                                            (line  9292)
-* spacing, inter-sentence:               \frenchspacing.    (line 10043)
-* spacing, inter-sentence <1>:           \normalsfcodes.    (line 10063)
-* Spanish ordinals, feminine and masculine: Text symbols.   (line 12180)
+                                                            (line  9293)
+* spacing, inter-sentence:               \frenchspacing.    (line 10044)
+* spacing, inter-sentence <1>:           \normalsfcodes.    (line 10064)
+* Spanish ordinals, feminine and masculine: Text symbols.   (line 12181)
 * special characters:                    Reserved characters.
-                                                            (line 11953)
+                                                            (line 11954)
 * special characters <1>:                Additional Latin letters.
-                                                            (line 12319)
+                                                            (line 12320)
 * special insertions:                    Special insertions.
-                                                            (line 11947)
+                                                            (line 11948)
 * specifier, float placement:            Floats.            (line  1927)
 * splitting the input file:              Splitting the input.
-                                                            (line 12442)
-* square root:                           \sqrt.             (line  9438)
-* stack math:                            \stackrel.         (line  9454)
+                                                            (line 12443)
+* square root:                           \sqrt.             (line  9439)
+* stack math:                            \stackrel.         (line  9455)
 * star-variants, commands:               \@ifstar.          (line   642)
 * starred form, defining new commands:   \newcommand & \renewcommand.
                                                             (line  6509)
@@ -16455,100 +16456,100 @@
                                                             (line   390)
 * starting on a right-hand page:         \clearpage & \cleardoublepage.
                                                             (line  6083)
-* sterling symbol:                       Text symbols.      (line 12085)
-* straight double quote, base:           Text symbols.      (line 12205)
-* straight quote, base:                  Text symbols.      (line 12205)
-* straight single quote:                 Text symbols.      (line 12201)
-* stretch, infinite horizontal:          \hfill.            (line  9877)
-* stretch, infinite vertical:            \vfill.            (line 10490)
+* sterling symbol:                       Text symbols.      (line 12086)
+* straight double quote, base:           Text symbols.      (line 12206)
+* straight quote, base:                  Text symbols.      (line 12206)
+* straight single quote:                 Text symbols.      (line 12202)
+* stretch, infinite horizontal:          \hfill.            (line  9878)
+* stretch, infinite vertical:            \vfill.            (line 10491)
 * stretch, omitting vertical:            \raggedbottom.     (line  1758)
-* strut:                                 \strut.            (line 10354)
+* strut:                                 \strut.            (line 10355)
 * styles of text:                        Font styles.       (line  1296)
-* styles, page:                          Page styles.       (line  9538)
+* styles, page:                          Page styles.       (line  9539)
 * subparagraph:                          Sectioning.        (line  2052)
 * subparagraph <1>:                      \subsubsection & \paragraph & \subparagraph.
                                                             (line  2420)
 * subscript:                             Subscripts & superscripts.
-                                                            (line  7958)
+                                                            (line  7959)
 * subsection:                            Sectioning.        (line  2052)
 * subsection <1>:                        \subsection.       (line  2356)
 * subsubsection:                         \subsubsection & \paragraph & \subparagraph.
                                                             (line  2420)
 * superscript:                           Subscripts & superscripts.
-                                                            (line  7958)
-* symbol:                                \newglossaryentry. (line 13328)
-* symbols package:                       Math symbols.      (line  8021)
+                                                            (line  7959)
+* symbol:                                \newglossaryentry. (line 13329)
+* symbols package:                       Math symbols.      (line  8022)
 * symbols, boldface:                     \boldmath & \unboldmath.
-                                                            (line  8987)
-* symbols, math:                         Math symbols.      (line  8021)
-* symbols, text:                         Text symbols.      (line 12042)
+                                                            (line  8988)
+* symbols, math:                         Math symbols.      (line  8022)
+* symbols, text:                         Text symbols.      (line 12043)
 * tab stops, using:                      tabbing.           (line  4801)
 * tabbing environment:                   tabbing.           (line  4801)
 * table environment:                     table.             (line  4950)
 * table of contents entry, manually adding: \addcontentsline.
-                                                            (line 12765)
+                                                            (line 12766)
 * table of contents file:                Output files.      (line   459)
 * table of contents, avoiding footnotes: Footnotes in section headings.
                                                             (line  6380)
 * table of contents, creating:           Table of contents etc..
-                                                            (line 12671)
+                                                            (line 12672)
 * table of contents, sectioning numbers printed: Sectioning.
                                                             (line  2120)
 * tables, creating:                      table.             (line  4950)
 * tabular environment:                   tabular.           (line  5010)
-* template, article:                     article template.  (line 13988)
-* template, beamer:                      beamer template.   (line 13957)
-* template, book:                        book template.     (line 14008)
+* template, article:                     article template.  (line 13989)
+* template, beamer:                      beamer template.   (line 13958)
+* template, book:                        book template.     (line 14009)
 * template, book <1>:                    Larger book template.
-                                                            (line 14031)
-* template, TUGboat:                     tugboat template.  (line 14081)
+                                                            (line 14032)
+* template, TUGboat:                     tugboat template.  (line 14082)
 * templates, document:                   Document templates.
-                                                            (line 13950)
+                                                            (line 13951)
 * terminal input/output:                 Terminal input/output.
-                                                            (line 13661)
-* TeX logo:                              Text symbols.      (line 12099)
-* text symbols:                          Text symbols.      (line 12042)
-* text, resizing:                        \scalebox.         (line 11887)
-* text, resizing <1>:                    \resizebox.        (line 11918)
-* text, scaling:                         \scalebox.         (line 11887)
-* text, scaling <1>:                     \resizebox.        (line 11918)
+                                                            (line 13662)
+* TeX logo:                              Text symbols.      (line 12100)
+* text symbols:                          Text symbols.      (line 12043)
+* text, resizing:                        \scalebox.         (line 11888)
+* text, resizing <1>:                    \resizebox.        (line 11919)
+* text, scaling:                         \scalebox.         (line 11888)
+* text, scaling <1>:                     \resizebox.        (line 11919)
 * textcase package:                      Upper and lower case.
-                                                            (line 12021)
+                                                            (line 12022)
 * textcomp package:                      Font styles.       (line  1422)
-* textcomp package <1>:                  Text symbols.      (line 12042)
-* thanks, for titlepage:                 \maketitle.        (line  9601)
+* textcomp package <1>:                  Text symbols.      (line 12043)
+* thanks, for titlepage:                 \maketitle.        (line  9602)
 * thebibliography environment:           thebibliography.   (line  5335)
 * theorem environment:                   theorem.           (line  5570)
-* theorem-like environment:              \newtheorem.       (line  6867)
-* theorems, defining:                    \newtheorem.       (line  6867)
+* theorem-like environment:              \newtheorem.       (line  6868)
+* theorems, defining:                    \newtheorem.       (line  6868)
 * theorems, typesetting:                 theorem.           (line  5570)
 * thin space:                            Spacing in math mode.
-                                                            (line  9318)
+                                                            (line  9319)
 * thin space <1>:                        \thinspace & \negthinspace.
-                                                            (line 10170)
+                                                            (line 10171)
 * thin space, negative:                  Spacing in math mode.
-                                                            (line  9332)
+                                                            (line  9333)
 * thin space, negative <1>:              \thinspace & \negthinspace.
-                                                            (line 10170)
+                                                            (line 10171)
 * thorn, Icelandic letter:               Additional Latin letters.
-                                                            (line 12369)
-* three-quarters em-dash:                Text symbols.      (line 12214)
-* tie:                                   ~.                 (line 10114)
-* tie-after accent:                      Accents.           (line 12306)
+                                                            (line 12370)
+* three-quarters em-dash:                Text symbols.      (line 12215)
+* tie:                                   ~.                 (line 10115)
+* tie-after accent:                      Accents.           (line 12307)
 * TikZ package:                          \line.             (line  4493)
-* TikZ package <1>:                      \strut.            (line 10410)
-* TikZ package <2>:                      \mbox & \makebox.  (line 10641)
-* tilde accent:                          Accents.           (line 12271)
-* tilde accent, math:                    Math accents.      (line  9230)
-* tilde, ASCII, in text:                 Text symbols.      (line 12105)
+* TikZ package <1>:                      \strut.            (line 10411)
+* TikZ package <2>:                      \mbox & \makebox.  (line 10642)
+* tilde accent:                          Accents.           (line 12272)
+* tilde accent, math:                    Math accents.      (line  9231)
+* tilde, ASCII, in text:                 Text symbols.      (line 12106)
 * title page, separate or run-in:        Document class options.
                                                             (line   828)
 * title pages, creating:                 titlepage.         (line  5600)
-* title, for titlepage:                  \maketitle.        (line  9608)
+* title, for titlepage:                  \maketitle.        (line  9609)
 * titlepage environment:                 titlepage.         (line  5600)
 * titlepage option:                      Document class options.
                                                             (line   806)
-* titles, making:                        \maketitle.        (line  9550)
+* titles, making:                        \maketitle.        (line  9551)
 * titlesec package:                      \part.             (line  2179)
 * titlesec package <1>:                  \chapter.          (line  2258)
 * titlesec package <2>:                  \section.          (line  2336)
@@ -16556,25 +16557,25 @@
 * titlesec package <4>:                  \subsubsection & \paragraph & \subparagraph.
                                                             (line  2479)
 * tocbibbind package:                    Table of contents etc..
-                                                            (line 12756)
+                                                            (line 12757)
 * tocdepth:                              Sectioning.        (line  2119)
 * tocdepth counter:                      Sectioning.        (line  2120)
 * tocloft package:                       Table of contents etc..
-                                                            (line 12756)
-* today's date:                          \today.            (line 12411)
-* tombstone:                             \rule.             (line 12383)
+                                                            (line 12757)
+* today's date:                          \today.            (line 12412)
+* tombstone:                             \rule.             (line 12384)
 * 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 12217)
+* trademark symbol:                      Text symbols.      (line 12218)
 * transcript file:                       Output files.      (line   444)
 * TrueType fonts:                        TeX engines.       (line   468)
-* TUGboat template:                      tugboat template.  (line 14081)
+* TUGboat template:                      tugboat template.  (line 14082)
 * two-column output:                     \twocolumn.        (line  1630)
-* two-thirds em-dash:                    Text symbols.      (line 12220)
+* two-thirds em-dash:                    Text symbols.      (line 12221)
 * twocolumn option:                      Document class options.
                                                             (line   835)
 * twoside option:                        Document class options.
@@ -16586,54 +16587,54 @@
 * typewriter font:                       Font styles.       (line  1386)
 * typewriter labels in lists:            description.       (line  3160)
 * ulem package:                          Over- and Underlining.
-                                                            (line  9256)
-* umlaut accent:                         Accents.           (line 12248)
-* underbar:                              Accents.           (line 12276)
+                                                            (line  9257)
+* umlaut accent:                         Accents.           (line 12249)
+* underbar:                              Accents.           (line 12277)
 * underlining:                           Over- and Underlining.
-                                                            (line  9247)
-* underscore, in text:                   Text symbols.      (line 12223)
+                                                            (line  9248)
+* underscore, in text:                   Text symbols.      (line 12224)
 * Unicode input, native:                 TeX engines.       (line   468)
-* units, of length:                      Units of length.   (line  7468)
+* units, of length:                      Units of length.   (line  7469)
 * unofficial nature of this manual:      About this document.
                                                             (line   331)
 * unordered lists:                       itemize.           (line  3624)
 * uppercase:                             Upper and lower case.
-                                                            (line 11985)
+                                                            (line 11986)
 * url package:                           \verb.             (line  5710)
 * using BibTeX:                          Using BibTeX.      (line  5512)
 * 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  9233)
+* variables, a list of:                  Counters.          (line  7139)
+* vector symbol, math:                   Math accents.      (line  9234)
 * 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 12117)
-* vertical bar, in text:                 Text symbols.      (line 12114)
-* vertical mode:                         Modes.             (line  9492)
-* vertical space:                        \vspace.           (line 10439)
-* vertical space <1>:                    \addvspace.        (line 10519)
+* vertical bar, double, in text:         Text symbols.      (line 12118)
+* vertical bar, in text:                 Text symbols.      (line 12115)
+* vertical mode:                         Modes.             (line  9493)
+* vertical space:                        \vspace.           (line 10440)
+* vertical space <1>:                    \addvspace.        (line 10520)
 * vertical space before paragraphs:      \parindent & \parskip.
-                                                            (line  7791)
+                                                            (line  7792)
 * visible space:                         \verb.             (line  5703)
-* visible space symbol, in text:         Text symbols.      (line 12226)
+* visible space symbol, in text:         Text symbols.      (line 12227)
 * weights, of fonts:                     Low-level font commands.
                                                             (line  1523)
-* white space:                           Spaces.            (line  9792)
-* wide hat accent, math:                 Math accents.      (line  9236)
-* wide tilde accent, math:               Math accents.      (line  9239)
+* white space:                           Spaces.            (line  9793)
+* wide hat accent, math:                 Math accents.      (line  9237)
+* wide tilde accent, math:               Math accents.      (line  9240)
 * widths, of fonts:                      Low-level font commands.
                                                             (line  1535)
 * writing external files:                filecontents.      (line  3469)
-* writing letters:                       Letters.           (line 13364)
-* x-height:                              Units of length.   (line  7500)
+* writing letters:                       Letters.           (line 13365)
+* x-height:                              Units of length.   (line  7501)
 * 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 13203)
-* xindy program:                         makeindex.         (line 13203)
+* xindy:                                 makeindex.         (line 13204)
+* xindy program:                         makeindex.         (line 13204)
 

Modified: trunk/latex2e.xml
===================================================================
--- trunk/latex2e.xml	2018-08-09 12:28:40 UTC (rev 686)
+++ trunk/latex2e.xml	2018-09-08 10:58:06 UTC (rev 687)
@@ -3,7 +3,7 @@
 <texinfo xml:lang="en">
 <filename file="latex2e.xml"></filename>
 <preamble>\input texinfo
-</preamble><!-- c $Id: latex2e.texi 684 2018-07-25 14:57:02Z jimhefferon $ -->
+</preamble><!-- c $Id: latex2e.texi 686 2018-08-09 12:28:40Z jimhefferon $ -->
 <!-- comment %**start of header (This is for running Texinfo on a region.) -->
 <setfilename file="latex2e.info" spaces=" ">latex2e.info</setfilename>
 <set name="UPDATED" line=" UPDATED July 2018">July 2018</set>
@@ -281,7 +281,7 @@
 <node name="Starting-and-ending" spaces=" "><nodename>Starting and ending</nodename><nodenext automatic="on">Output files</nodenext><nodeup automatic="on">Overview</nodeup></node>
 <section spaces=" "><sectiontitle>Starting and ending</sectiontitle>
 
-<anchor name="Starting-_0026-ending">Starting & ending</anchor><!-- c old name -->
+<!-- c 2018-Sep-02 JH redundant on URL scheme @anchor{Starting & ending}@c old name -->
 <cindex index="cp" spaces=" "><indexterm index="cp" number="15">starting and ending</indexterm></cindex>
 <cindex index="cp" spaces=" "><indexterm index="cp" number="16">ending and starting</indexterm></cindex>
 <cindex index="cp" spaces=" "><indexterm index="cp" number="17">hello, world</indexterm></cindex>
@@ -9101,16 +9101,17 @@
 <para>Synopsis:
 </para>
 <example endspaces=" ">
-<pre xml:space="preserve">\newsavebox{<var>cmd</var>}
+<pre xml:space="preserve">\newsavebox{\<var>cmd</var>}
 </pre></example>
 
-<para>Define <code>\<var>cmd</var></code> to refer to a new &textldquo;bin&textrdquo; for storing boxes.
-Such a box is for holding typeset material, to use multiple times or to
-measure or manipulate (<pxref label="Boxes"><xrefnodename>Boxes</xrefnodename></pxref>).  The required bin name
-<code><var>cmd</var></code> must start with a backslash, <code>\</code>, and must not
-already be defined.  This command is fragile (<pxref label="_005cprotect"><xrefnodename>\protect</xrefnodename></pxref>).
+<para>Define \<var>cmd</var>, the string consisting of a backslash followed by
+<var>cmd</var>, 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 (<pxref label="Boxes"><xrefnodename>Boxes</xrefnodename></pxref>).  The bin name \<var>cmd</var> is required, must
+start with a backslash, \, and must not already be a defined command.
+This command is fragile (<pxref label="_005cprotect"><xrefnodename>\protect</xrefnodename></pxref>).
 </para>
-<para>The first line here sets you up to save the material for later use. 
+<para>This allocates a bin and then puts typeset material into it.
 </para>
 <example endspaces=" ">
 <pre xml:space="preserve">\newsavebox{\logobox}
@@ -10113,7 +10114,7 @@
 </tableterm><tableitem><findex index="fn" spaces=" "><indexterm index="fn" number="481" mergedindex="cp">pt</indexterm></findex>
 <cindex index="cp" spaces=" "><indexterm index="cp" number="449">Point</indexterm></cindex>
 <anchor name="units-of-length-pt">units of length pt</anchor>
-<para>Point 1/72.27 inch.  The conversion to metric units, to two decimal
+<para>Point, 1/72.27 inch.  The conversion to metric units, to two decimal
 places, is 1<dmn>point</dmn> = 2.85<dmn>mm</dmn> = 28.45<dmn>cm</dmn>. 
 </para>
 </tableitem></tableentry><tableentry><tableterm><item spaces=" "><itemformat command="code">pc</itemformat></item>
@@ -10257,8 +10258,8 @@
 <para>Below, if <code>\parskip</code> starts with the value <code>0pt plus 1pt</code> 
 </para>
 <example endspaces=" ">
-<pre xml:space="preserve">\addtolength{\parskip}{1pt}
-Doctor: how is the boy who swallowed the silver dollar?
+<pre xml:space="preserve">Doctor: how is the boy who swallowed the silver dollar?
+\addtolength{\parskip}{1pt}
 
 Nurse: no change.
 </pre></example>
@@ -18862,7 +18863,7 @@
 <noindent></noindent>
 <para>Compiling this document <file>book.tex</file> with the command line
 <code>pdflatex book</code> will give the <samp>CTAN</samp> link in blue.  But
-compiling it with <code>pdflatex "\def\paperversion{}\input test.tex"</code>
+compiling it with <code>pdflatex "\def\paperversion{}\input book.tex"</code>
 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.)
@@ -18890,7 +18891,7 @@
 
 <noindent></noindent>
 <para>so the graphic files are read for their size information but not
-incorporated into the PDF.  (The <code>jobname</code> option is needed because
+incorporated into the PDF.  (The <code>jobname</code> option is there because
 otherwise the output file would be <file>graphicx.pdf</file>, as
 <code>\RequirePackage</code> does an <code>\input</code> of its own.)
 </para>



More information about the latexrefman-commits mailing list