texlive[48135] Master/texmf-dist/doc: latex2e-help-texinfo (4jul18)

commits+karl at tug.org commits+karl at tug.org
Wed Jul 4 23:26:45 CEST 2018


Revision: 48135
          http://tug.org/svn/texlive?view=revision&revision=48135
Author:   karl
Date:     2018-07-04 23:26:44 +0200 (Wed, 04 Jul 2018)
Log Message:
-----------
latex2e-help-texinfo (4jul18)

Modified Paths:
--------------
    trunk/Master/texmf-dist/doc/info/latex2e.info
    trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/ChangeLog
    trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/Makefile
    trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/NEWS
    trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/aspell.en.pws
    trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/common.texi
    trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/graphics/README
    trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/graphics/asy/list.asy
    trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e-figures/list.pdf
    trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e-figures/list.png
    trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.dbk
    trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.html
    trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.pdf
    trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.texi
    trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.txt
    trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.xml

Added Paths:
-----------
    trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e-figures/list.eps

Modified: trunk/Master/texmf-dist/doc/info/latex2e.info
===================================================================
--- trunk/Master/texmf-dist/doc/info/latex2e.info	2018-07-04 21:25:46 UTC (rev 48134)
+++ trunk/Master/texmf-dist/doc/info/latex2e.info	2018-07-04 21:26:44 UTC (rev 48135)
@@ -2,7 +2,7 @@
 latex2e.texi.
 
 This document is an unofficial reference manual for LaTeX, a document
-preparation system, version of March 2018.
+preparation system, version of July 2018.
 
    This manual was originally translated from 'LATEX.HLP' v1.0a in the
 VMS Help Library.  The pre-translation version was written by George D.
@@ -42,7 +42,7 @@
 LaTeX2e: An unofficial reference manual
 ***************************************
 
-This document is an unofficial reference manual (version of March 2018)
+This document is an unofficial reference manual (version of July 2018)
 for LaTeX2e, a document preparation system.
 
 * Menu:
@@ -52,7 +52,7 @@
 * Document classes::		Some of the various classes available.
 * Fonts::			Italic, bold, typewriter, etc.
 * Layout::			Controlling the page layout.
-* Sectioning::			How to section properly.
+* Sectioning::			Parts, Chapters, Sections, etc.
 * Cross references::		Automatic referencing.
 * Environments::		Such as enumerate & itemize.
 * Line breaking::	        Influencing line breaks.
@@ -76,8 +76,7 @@
 * Terminal input/output::	User interaction.
 * Command line::                System-independent command-line behavior.
 * Document templates::          Starter templates for various document classes.
-* Concept Index::		General index.
-* Command Index::           	Alphabetical list of LaTeX commands.
+* Index::		        General index.
 
 
 File: latex2e.info,  Node: About this document,  Next: Overview,  Prev: Top,  Up: Top
@@ -88,9 +87,9 @@
 This is an unofficial reference manual for the LaTeX2e document
 preparation system, which is a macro package for the TeX typesetting
 program (*note Overview::).  This document's home page is
-<http://puszcza.gnu.org.ua/software/latexrefman/>.  That page has links
-to the current output in various formats, sources, mailing list archives
-and subscriptions, and other infrastructure.
+<puszcza.gnu.org.ua/software/latexrefman>.  That page has links to the
+current output in various formats, sources, mailing list archives and
+subscriptions, and other infrastructure.
 
    In this document, we will mostly just use 'LaTeX' rather than
 'LaTeX2e', since the previous version of LaTeX (2.09) was frozen decades
@@ -156,10 +155,11 @@
 
 * Menu:
 
-* Starting and ending::  The standard beginning and end of a document.
-* Output files::         Files produced.
+* Starting and ending::    The standard beginning and end of a document.
+* Output files::            Files produced.
 * TeX engines::          Programs that can compile TeX and  LaTeX.
 * LaTeX command syntax:: General syntax of LaTeX commands.
+* CTAN::                    Our repository.
 
 
 File: latex2e.info,  Node: Starting and ending,  Next: Output files,  Up: Overview
@@ -168,7 +168,7 @@
 =======================
 
 LaTeX files have a simple global structure, with a standard beginning
-and ending.  Here is a "hello, world" example:
+and ending.  This is a small example.
 
      \documentclass{article}
      \begin{document}
@@ -175,19 +175,23 @@
      Hello, \LaTeX\ world.
      \end{document}
 
-Here, the 'article' is the so-called "document class", implemented in a
-file 'article.cls'.  Any document class can be used.  A few document
-classes are defined by LaTeX itself, and vast array of others are widely
-available.  *Note Document classes::.
+Every LaTeX document has a '\begin{document}' line and an
+'\end{document}' line.
 
+Here, the 'article' is the "document class".  It is implemented in a
+file 'article.cls'.  You can use any document class on your system.  A
+few document classes are defined by LaTeX itself, and vast array of
+others are widely available.  *Note Document classes::.
+
    You can include other LaTeX commands between the '\documentclass' and
 the '\begin{document}' commands.  This area is called the "preamble".
 
-   The '\begin{document} ... \end{document}' is a so-called
+   The '\begin{document}', '\end{document}' pair defines an
 "environment"; the 'document' environment (and no others) is required in
-all LaTeX documents (*note document::).  LaTeX provides many
-environments itself, and many more are defined separately.  *Note
-Environments::.
+all LaTeX documents (*note document::).  LaTeX make available to you
+many environments that are documented here (*note Environments::).  Many
+more are available to you from external packages, most importantly those
+available at CTAN (*note CTAN::).
 
    The following sections discuss how to produce PDF or other output
 from a LaTeX input file.
@@ -198,7 +202,7 @@
 2.2 Output files
 ================
 
-LaTeX produces a main output file and at least two accessory files.  The
+LaTeX produces a main output file and at least two auxiliary files.  The
 main output file's name ends in either '.dvi' or '.pdf'.
 
 '.dvi'
@@ -238,8 +242,8 @@
    LaTeX may produce yet more files, characterized by the filename
 ending.  These include a '.lof' file that is used to make a list of
 figures, a '.lot' file used to make a list of tables, and a '.toc' file
-used to make a table of contents.  A particular class may create others;
-the list is open-ended.
+used to make a table of contents (*note Table of contents etc.::).  A
+particular class may create others; the list is open-ended.
 
 
 File: latex2e.info,  Node: TeX engines,  Next: LaTeX command syntax,  Prev: Output files,  Up: Overview
@@ -249,7 +253,7 @@
 
 LaTeX is defined to be a set of commands that are run by a TeX
 implementation (*note Overview::).  This section gives a terse overview
-of the main programs.
+of the main programs (see also *note Command line::).
 
 'latex'
 'pdflatex'
@@ -296,7 +300,7 @@
 <http://ctan.org/pkg/ptex>, <http://ctan.org/pkg/uptex>).
 
 
-File: latex2e.info,  Node: LaTeX command syntax,  Prev: TeX engines,  Up: Overview
+File: latex2e.info,  Node: LaTeX command syntax,  Next: CTAN,  Prev: TeX engines,  Up: Overview
 
 2.4 LaTeX command syntax
 ========================
@@ -334,7 +338,7 @@
 
 * Environment::          Area of the source with distinct behavior.
 * Declaration::          Change the value or meaning of a command.
-* \makeatletter and \makeatother::    Change the status of the at-sign character.
+* \makeatletter & \makeatother::  Change the status of the at-sign character.
 
 
 File: latex2e.info,  Node: Environment,  Next: Declaration,  Up: LaTeX command syntax
@@ -357,7 +361,7 @@
        ...
      \end{verse}
 
-   See *note Environments:: for a list of environments.
+   *Note Environments:: for a list of environments.
 
    The ENVIRONMENT NAME at the beginning must exactly match that at the
 end.  This includes the case where ENVIRONMENT NAME ends in a
@@ -373,7 +377,7 @@
      \end{tabular}
 
 
-File: latex2e.info,  Node: Declaration,  Next: \makeatletter and \makeatother,  Prev: Environment,  Up: LaTeX command syntax
+File: latex2e.info,  Node: Declaration,  Next: \makeatletter & \makeatother,  Prev: Environment,  Up: LaTeX command syntax
 
 2.4.2 Command declarations
 --------------------------
@@ -383,10 +387,10 @@
 the setting of page numbers from roman numerals to arabic.
 
 
-File: latex2e.info,  Node: \makeatletter and \makeatother,  Prev: Declaration,  Up: LaTeX command syntax
+File: latex2e.info,  Node: \makeatletter & \makeatother,  Prev: Declaration,  Up: LaTeX command syntax
 
-2.4.3 '\makeatletter' and '\makeatother'
-----------------------------------------
+2.4.3 '\makeatletter' & '\makeatother'
+--------------------------------------
 
 Synopsis:
 
@@ -423,10 +427,9 @@
 <http://ctan.org/pkg/macros2e>.  These macros are mainly intended to
 package or class authors.
 
-   The example below is typical.  In the user's class file is a command
-'\thesis at universityname'.  The user wants to change the definition.
-These three lines should go in the preamble, before the
-'\begin{document}'.
+   In this example the class file has a command '\thesis at universityname'
+that the user wants to change.  These three lines should go in the
+preamble, before the '\begin{document}'.
 
      \makeatletter
      \renewcommand{\thesis at universityname}{Saint Michael's College}
@@ -437,7 +440,7 @@
 * \@ifstar:: Define your own commands with *-variants.
 
 
-File: latex2e.info,  Node: \@ifstar,  Up: \makeatletter and \makeatother
+File: latex2e.info,  Node: \@ifstar,  Up: \makeatletter & \makeatother
 
 2.4.3.1 '\@ifstar'
 ..................
@@ -445,8 +448,8 @@
 Synopsis:
 
      \newcommand{\mycmd}{\@ifstar{\mycmd at star}{\mycmd at nostar}}
-     \newcommand{\mycmd at nostar}[NON-STARRED COMMAND NUMBER OF ARGS]{BODY OF NON-STARRED COMMAND}
-     \newcommand{\mycmd at star}[STARRED COMMAND NUMBER OF ARGS]{BODY OF STARRED COMMAND}
+     \newcommand{\mycmd at nostar}[NOSTAR-NUM-ARGS]{NOSTAR-BODY}
+     \newcommand{\mycmd at star}[STAR-NUM-ARGS]{STAR-BODY}
 
    Many standard LaTeX environments or commands have a variant with the
 same name but ending with a star character '*', an asterisk.  Examples
@@ -465,7 +468,7 @@
 could take the same number of arguments or a different number, or no
 arguments at all.  As always, in a LaTeX document a command using
 at-sign '@' must be enclosed inside a '\makeatletter ... \makeatother'
-block (*note \makeatletter and \makeatother::).
+block (*note \makeatletter & \makeatother::).
 
    This example of '\@ifstar' defines the command '\ciel' and a variant
 '\ciel*'.  Both have one required argument.  A call to '\ciel{night}'
@@ -477,14 +480,15 @@
      \newcommand*{\ciel}{\@ifstar{\ciel at starred}{\ciel at unstarred}}
 
    In the next example, the starred variant takes a different number of
-arguments than does the unstarred one.  With this definition, Agent
-007's '``My name is \agentsecret*{Bond}, \agentsecret{James}{Bond}.'''
-is equivalent to '``My name is \textsc{Bond}, \textit{James}
-textsc{Bond}.'''
+arguments than the unstarred one.  With this definition, Agent 007's
+'``My name is \agentsecret*{Bond}, \agentsecret{James}{Bond}.''' is
+equivalent to entering the commands '``My name is \textsc{Bond},
+\textit{James} textsc{Bond}.'''
 
      \newcommand*{\agentsecret at unstarred}[2]{\textit{#1} \textsc{#2}}
      \newcommand*{\agentsecret at starred}[1]{\textsc{#1}}
-     \newcommand*{\agentsecret}{\@ifstar{\agentsecret at starred}{\agentsecret at unstarred}}
+     \newcommand*{\agentsecret}{%
+       \@ifstar{\agentsecret at starred}{\agentsecret at unstarred}}
 
    There are two sometimes more convenient ways to accomplish the work
 of '\@ifstar'.  The 'suffix' package allows the construct
@@ -498,6 +502,35 @@
        }
 
 
+File: latex2e.info,  Node: CTAN,  Prev: LaTeX command syntax,  Up: Overview
+
+2.5 CTAN: Comprehensive TeX Archive Network
+===========================================
+
+The Comprehensive TeX Archive Network, CTAN, is the TeX and LaTeX
+community's repository of free material.  It is a set of Internet sites
+around the world that offer material related to LaTeX for download.
+Visit CTAN on the web at <https://ctan.org>.
+
+   This material is organized into packages, discrete bundles that
+typically offer some coherent functionality and are maintained by one
+person or a small number of people.  For instance, many publishers have
+a package that allows authors to format papers to that publisher's
+specifications.
+
+   In addition to the massive holdings, the web site offers features
+such as search by name or by functionality.
+
+   CTAN is not a single site, but instead is a set of sites.  One of the
+sites is the core.  This site actively manages the material, for
+instance, by accepting uploads of new or updated packages.  It is hosted
+by the German TeX group DANTE e.V. Other sites around the world help out
+by mirroring, that is, automatically syncing their collections with the
+core site and then in turn making their copies publicly available.  This
+gives users close to their location better access and relieves the load
+on the core site.  The list of mirrors is at <https://ctan.org/mirrors>.
+
+
 File: latex2e.info,  Node: Document classes,  Next: Fonts,  Prev: Overview,  Up: Top
 
 3 Document classes
@@ -546,9 +579,9 @@
 3.1 Document class options
 ==========================
 
-You can specify so-called "global options" or "class options" to the
+You can specify "global options" or "class options" to the
 '\documentclass' command by enclosing them in square brackets.  To
-specify more than one OPTION, separate them with a comma, as in:
+specify more than one OPTION, separate them with a comma.
 
      \documentclass[OPTION1,OPTION2,...]{CLASS}
 
@@ -681,11 +714,11 @@
    Inside of a class or package file you can use the at-sign '@' as a
 character in command names without having to surround the code
 containing that command with '\makeatletter' and '\makeatother'.  *Note
-\makeatletter and \makeatother::.  This allow you to create commands
-that users will not accidentally redefine.  Another technique is to
-preface class- or package-specific commands with some string to prevent
-your class or package from interfering with others.  For instance, the
-class 'smcmemo' might have commands '\smc at tolist', '\smc at fromlist', etc.
+\makeatletter & \makeatother::.  This allow you to create commands that
+users will not accidentally redefine.  Another technique is to preface
+class- or package-specific commands with some string to prevent your
+class or package from interfering with others.  For instance, the class
+'smcmemo' might have commands '\smc at tolist', '\smc at fromlist', etc.
 
 * Menu:
 
@@ -729,7 +762,7 @@
      \ProcessOptions\relax
      \LoadClass{article}
 
-   It identifies itself, handles the class options via the default of
+It identifies itself, handles the class options via the default of
 passing them all to the 'article' class, and then loads the 'article'
 class to provide the basis for this class's code.
 
@@ -805,11 +838,11 @@
 
 '\DeclareOption{OPTION}{CODE}'
 '\DeclareOption*{CODE}'
-     Make an option available to a user, for invoking in their
+     Make an option available to a user to invoke in their
      '\documentclass' command.  For example, the 'smcmemo' class could
-     have an option allowing users to put the institutional logo on the
-     first page with '\documentclass[logo]{smcmemo}'.  The class file
-     must contain '\DeclareOption{logo}{CODE}' (and later,
+     have an option '\documentclass[logo]{smcmemo}' allowing users to
+     put the institutional logo on the first page.  The class file must
+     contain '\DeclareOption{logo}{CODE}' (and later,
      '\ProcessOptions').
 
      If you request an option that has not been declared, by default
@@ -849,10 +882,11 @@
      and the command is used within a moving argument, use
      '\newcommand'.
 
-     The 'etoolbox' package offers commands '\newrobustcmd',
-     '\newrobustcmd*', '\renewrobustcmd', '\renewrobustcmd*',
-     '\providerobustcmd', and '\providerobustcmd*' which are similar to
-     '\newcommand', '\newcommand*', '\renewcommand', '\renewcommand*',
+     The 'etoolbox' package offers the commands '\newrobustcmd',
+     '\newrobustcmd*', as well as the commands '\renewrobustcmd',
+     '\renewrobustcmd*', and the commands '\providerobustcmd', and
+     '\providerobustcmd*'.  These are similar to '\newcommand',
+     '\newcommand*', '\renewcommand', '\renewcommand*',
      '\providecommand', and '\providecommand*', but define a robust CMD
      with two advantages as compared to '\DeclareRobustCommand':
        1. They use the low-level e-TeX protection mechanism rather than
@@ -866,13 +900,16 @@
 
 '\IfFileExists{FILE NAME}{TRUE CODE}{FALSE CODE}'
 '\InputIfFileExists{FILE NAME}{TRUE CODE}{FALSE CODE}'
-     Execute TRUE CODE if LaTeX can find the file 'FILE NAME' and FALSE
-     CODE otherwise.  In the second case it inputs the file immediately
-     after executing TRUE CODE.  Thus
-     '\IfFileExists{img.pdf}{\includegraphics{img.pdf}}{\typeout{WARNING:
-     img.pdf not found}}' will include the graphic 'img.pdf' if it is
-     found but otherwise just give a warning.
+     Execute TRUE CODE if LaTeX finds the file 'FILE NAME' or FALSE CODE
+     otherwise.  In the first case it executing TRUE CODE and then
+     inputs the file.  Thus the command
 
+          \IfFileExists{img.pdf}{%
+            \includegraphics{img.pdf}}{\typeout{!! img.pdf not found}
+
+     will include the graphic 'img.pdf' if it is found and otherwise
+     give a warning.
+
      This command looks for the file in all search paths that LaTeX
      uses, not only in the current directory.  To look only in the
      current directory do something like '\IfFileExists{./filename}{TRUE
@@ -893,10 +930,12 @@
 
      If you request a RELEASE DATE and the date of the package installed
      on your system is earlier, then you get a warning on the screen and
-     in the log like 'You have requested, on input line 4, version
-     `2038/01/19' of document class article, but only version
-     `2014/09/29 v1.4h Standard LaTeX document class' is available.'
+     in the log like this.
 
+          You have requested, on input line 4, version `2038/01/19' of
+          document class article, but only version `2014/09/29 v1.4h
+          Standard LaTeX document class' is available.
+
      The command version '\LoadClassWithOptions' uses the list of
      options for the current class.  This means it ignores any options
      passed to it via '\PassOptionsToClass'.  This is a convenience
@@ -927,9 +966,11 @@
      features, include the optional FORMAT DATE on which those features
      were implemented.  If present it must be in the form 'YYYY/MM/DD'.
      If the format version installed on your system is earlier than
-     FORMAT DATE then you get a warning like 'You have requested release
-     `2038/01/20' of LaTeX, but only release `2016/02/01' is available.'
+     FORMAT DATE then you get a warning like this.
 
+          You have requested release `2038/01/20' of LaTeX, but only
+          release `2016/02/01' is available.
+
 '\OptionNotUsed'
      Adds the current option to the list of unused options.  Can only be
      used within the CODE argument of either '\DeclareOption' or
@@ -950,18 +991,21 @@
 
      If your own code is bringing in a package twice then you can
      collapse that to once, for example replacing the two
-     '\RequirePackage[landscape]{geometry}\RequirePackage[margins=1in]{geometry}'
-     with the single '\RequirePackage[landscape,margins=1in]{geometry}'.
-     But if you are loading a package that in turn loads another package
-     then you need to queue up the options you desire for this other
-     package.  For instance, suppose the package 'foo' loads the package
-     'geometry'.  Instead of
-     '\RequirePackage{foo}\RequirePackage[draft]{graphics}' you must
-     write '\PassOptionsToPackage{draft}{graphics}
-     \RequirePackage{foo}'.  (If 'foo.sty' loads an option in conflict
-     with what you want then you may have to look into altering its
-     source.)
+     '\RequirePackage[landscape]{geometry}' and
+     '\RequirePackage[margins=1in]{geometry}' with the single command
+     '\RequirePackage[landscape,margins=1in]{geometry}'.
 
+     However, imagine that you are loading 'firstpkg' and inside that
+     package it loads 'secondpkg', and you need the second package to be
+     loaded with option 'draft'.  Then before doing the first package
+     you must queue up the options for the second package, like this.
+
+          \PassOptionsToPackage{draft}{secondpkg}
+          \RequirePackage{firstpkg}
+
+     (If 'firstpkg.sty' loads an option in conflict with what you want
+     then you may have to alter its source.)
+
      These commands are useful for general users as well as class and
      package writers.  For instance, suppose a user wants to load the
      'graphicx' package with the option 'draft' and also wants to use a
@@ -1012,31 +1056,33 @@
      Identifies the class or package, printing a message to the screen
      and the log file.
 
-     When a user writes '\documentclass{smcmemo}' then LaTeX loads the
-     file 'smcmemo.cls'.  Similarly, a user writing '\usepackage{test}'
-     prompts LaTeX to load the file 'test.sty'.  If the name of the file
-     does not match the declared class or package name then you get a
-     warning.  Thus, if you invoke '\documentclass{smcmemo}', and the
-     file 'smcmemo.cls' has the statement '\ProvidesClass{xxx}' then you
-     get a warning like 'You have requested document class `smcmemo',
-     but the document class provides 'xxx'.' This warning does not
-     prevent LaTeX from processing the rest of the class file normally.
+     When you load a class or package, for example with
+     '\documentclass{smcmemo}' or '\usepackage{test}', LaTeX inputs a
+     file.  If the name of the file does not match the class or package
+     name declared in it then you get a warning.  Thus, if you invoke
+     '\documentclass{smcmemo}', and the file 'smcmemo.cls' has the
+     statement '\ProvidesClass{xxx}' then you get a warning like 'You
+     have requested document class `smcmemo', but the document class
+     provides 'xxx'.' This warning does not prevent LaTeX from
+     processing the rest of the class file normally.
 
-     If you include the optional argument, then you must include the
-     date, before the first space if any, and it must have the form
-     'YYYY/MM/DD'.  The rest of the optional argument is free-form,
-     although it traditionally identifies the class, and is written to
-     the screen during compilation and to the log file.  Thus, if your
-     file 'smcmemo.cls' contains the line
-     '\ProvidesClass{smcmemo}[2008/06/01 v1.0 SMC memo class]' and your
-     document's first line is '\documentclass{smcmemo}' then you will
-     see 'Document Class: smcmemo 2008/06/01 v1.0 SMC memo class'.
+     If you include the optional argument then you must include a date,
+     before any spaces, of the form 'YYYY/MM/DD'.  The rest of the
+     optional argument is free-form, although it traditionally
+     identifies the class, and is written to the screen during
+     compilation and to the log file.  Thus, if your file 'smcmemo.cls'
+     contains the line '\ProvidesClass{smcmemo}[2008/06/01 v1.0 SMC memo
+     class]' and your document's first line is '\documentclass{smcmemo}'
+     then you will see 'Document Class: smcmemo 2008/06/01 v1.0 SMC memo
+     class'.
 
      The date in the optional argument allows class and package users to
-     ask to be warned if the version of the class or package installed
-     on their system is earlier than RELEASE DATE, by using the optional
-     arguments such as '\documentclass{smcmemo}[2018/10/12]' or
-     '\usepackage{foo}[[2017/07/07]]'.  (Note that package users only
+     ask to be warned if the version of the class or package is earlier
+     than RELEASE DATE.  For instance, a user could enter
+     '\documentclass{smcmemo}[2018/10/12]' or
+     '\usepackage{foo}[[2017/07/07]]' to require a class or package with
+     certain features by specifying that it must be released no earlier
+     than the given date.  (Although, in practice package users only
      rarely include a date, and class users almost never do.)
 
 '\ProvidesFile{FILE NAME}[ADDITIONAL INFORMATION]'
@@ -1049,11 +1095,10 @@
 
 '\RequirePackage[OPTION LIST]{PACKAGE NAME}[RELEASE DATE]'
 '\RequirePackageWithOptions{PACKAGE NAME}[RELEASE DATE]'
-     Load a package, like the document author command '\usepackage'.
-     *Note Additional packages::.  An example is
-     '\RequirePackage[landscape,margin=1in]{geometry}'.  Note that the
-     LaTeX development team strongly recommends use of these commands
-     over Plain TeX's '\input'; see the Class Guide.
+     Load a package, like the command '\usepackage' (*note Additional
+     packages::).  The LaTeX development team strongly recommends use of
+     these commands over Plain TeX's '\input'; see the Class Guide.  An
+     example is '\RequirePackage[landscape,margin=1in]{geometry}'.
 
      The OPTION LIST, if present, is a comma-separated list.  The
      RELEASE DATE, if present, must have the form YYYY/MM/DD.  If the
@@ -1098,27 +1143,27 @@
 
 The following type style commands are supported by LaTeX.
 
-   This first group of commands is typically used with an argument, as
-in '\textit{TEXT}'.  In the table below, the corresponding command in
-parenthesis is the "declaration form", which takes no arguments, as in
-'{\itshape TEXT}'.  The scope of the declaration form lasts until the
-next type style command or the end of the current group.
+   In the table below the listed commands, the '\text...' commands, is
+used with an argument, as in '\textit{TEXT}'.  This is the preferred
+form.  But shown after it, in parenthesis, is the corresponding
+declaration form, which is sometimes useful.  This form takes no
+arguments, as in '{\itshape TEXT}'.  The scope of the declaration form
+lasts until the next type style command or the end of the current group.
+In addition, each has an environment form such as
+'\begin{itshape}...\end{itshape}'.
 
    These commands, in both the argument form and the declaration form,
-are cumulative; e.g., you can say either '\sffamily\bfseries' or
-'\bfseries\sffamily' to get bold sans serif.
+are cumulative; for instance you can get bold sans serif by saying
+either of '\sffamily\bfseries' or '\bfseries\sffamily'.
 
-   You can alternatively use an environment form of the declarations;
-for instance, '\begin{ttfamily}...\end{ttfamily}'.
+   One advantage of these commands is that they automatically insert
+italic corrections if needed (*note \/::).  Specifically, they insert
+the italic correction unless the following character is in the list
+'\nocorrlist', which by default consists of a period and a comma.  To
+suppress the automatic insertion of italic correction, use '\nocorr' at
+the start or end of the command argument, such as '\textit{\nocorr
+text}' or '\textsc{text \nocorr}'.
 
-   These font-switching commands automatically insert italic corrections
-if needed.  (*Note \/::, for the details of italic corrections.)
-Specifically, they insert the italic correction unless the following
-character is in the list '\nocorrlist', which by default consists of a
-period and a comma.  To suppress the automatic insertion of italic
-correction, use '\nocorr' at the start or end of the command argument,
-such as '\textit{\nocorr text}' or '\textsc{text \nocorr}'.
-
 '\textrm (\rmfamily)'
      Roman.
 
@@ -1156,10 +1201,14 @@
 but MIDDLE TEXT will be in roman.
 
    LaTeX also provides the following commands, which unconditionally
-switch to the given style, that is, are _not_ cumulative.  Also, they
-are used differently than the above commands: '{\CMD...}' instead of
-'\CMD{...}'.  These are two unrelated constructs.
+switch to the given style, that is, are _not_ cumulative.  They are used
+as declarations: '{\CMD...}' instead of '\CMD{...}'.
 
+   (The unconditional commands below are an older version of font
+switching.  The earlier commands are an improvement in most
+circumstances.  But sometimes an unconditional font switch is precisely
+what you want.)
+
 '\bf'
      Switch to bold face.
 
@@ -1186,12 +1235,6 @@
 
    The '\em' command is the unconditional version of '\emph'.
 
-   (Some people consider the unconditional font-switching commands, such
-as '\tt', obsolete and that only the cumulative commands ('\texttt')
-should be used.  Others think that both sets of commands have their
-place and sometimes an unconditional font switch is precisely what you
-want; for one example, *note 'description': description.)
-
    The following commands are for use in math mode.  They are not
 cumulative, so '\mathbf{\mathit{SYMBOL}}' does not create a boldface and
 italic SYMBOL; instead, it will just be in italics.  This is because
@@ -1246,24 +1289,33 @@
 (in points) with the '10pt', '11pt', and '12pt' document size options,
 respectively (*note Document class options::).
 
-Command                   '10pt'  '11pt'  '12pt'
---------------------------------------------------
-'\tiny'                   5       6       6
-'\scriptsize'             7       8       8
-'\footnotesize'           8       9       10
-'\small'                  9       10      10.95
-'\normalsize' (default)   10      10.95   12
-'\large'                  12      12      14.4
-'\Large'                  14.4    14.4    17.28
-'\LARGE'                  17.28   17.28   20.74
-'\huge'                   20.74   20.74   24.88
-'\Huge'                   24.88   24.88   24.88
+Command                     '10pt'    '11pt'    '12pt'
+--------------------------------------------------------
+'\tiny'                     5         6         6
+'\scriptsize'               7         8         8
+'\footnotesize'             8         9         10
+'\small'                    9         10        10.95
+'\normalsize' (default)     10        10.95     12
+'\large'                    12        12        14.4
+'\Large'                    14.4      14.4      17.28
+'\LARGE'                    17.28     17.28     20.74
+'\huge'                     20.74     20.74     24.88
+'\Huge'                     24.88     24.88     24.88
 
-   The commands as listed here are "declaration forms".  The scope of
-the declaration form lasts until the next type style command or the end
-of the current group.  You can also use the environment form of these
-commands; for instance, '\begin{tiny}...\end{tiny}'.
+   The commands are listed here in declaration forms.  You use them by
+declaring them, as with this example.
 
+     \begin{quotation} \small
+       The Tao that can be named is not the eternal Tao.
+     \end{quotation}
+
+The scope of the '\small' lasts until the end of the 'quotation'
+environment.  It would also end at the next type style command or the
+end of the current group, so you could enclose it in extra curly braces
+'{\small We are here, we are here, we are here!}'.  You can instead use
+the environment form of these commands; for instance,
+'\begin{tiny}...\end{tiny}'.
+
 
 File: latex2e.info,  Node: Low-level font commands,  Prev: Font sizes,  Up: Fonts
 
@@ -1288,7 +1340,7 @@
      Select the font family.  The web page
      <http://www.tug.dk/FontCatalogue/> provides one way to browse
      through many of the fonts easily used with LaTeX.  Here are
-     examples of some common families:
+     examples of some common families.
 
      'pag'  Avant Garde
      'fvs'  Bitstream Vera Sans
@@ -1432,12 +1484,15 @@
 5.1 '\onecolumn'
 ================
 
-Start a new page and produce single-column output.  If the document is
-given the class option 'onecolumn' then this is the default behavior
-(*note Document class options::).
+Synopsis:
 
-   This command is fragile (*note \protect::).
+     \onecolumn
 
+   Start a new page and produce single-column output.  If the document
+is given the class option 'onecolumn' then this is the default behavior
+(*note Document class options::).  This command is fragile (*note
+\protect::).
+
 
 File: latex2e.info,  Node: \twocolumn,  Next: \flushbottom,  Prev: \onecolumn,  Up: Layout
 
@@ -1451,13 +1506,11 @@
 
    Start a new page and produce two-column output.  If the document is
 given the class option 'twocolumn' then this is the default (*note
-Document class options::).
+Document class options::).  This command is fragile (*note \protect::).
 
    If the optional PRELIM ONE COLUMN TEXT argument is present, it is
 typeset in one-column mode before the two-column typesetting starts.
 
-   This command is fragile (*note \protect::).
-
    These parameters control typesetting in two-column output:
 
 '\columnsep'
@@ -1504,8 +1557,7 @@
         * Increase the value of '\dbltopfraction' to a suitably large
           number, to avoid going to float pages so soon.
 
-     You can redefine it, for instance with
-     '\renewcommand{\dbltopfraction}{0.9}'.
+     You can redefine it, as with '\renewcommand{\dbltopfraction}{0.9}'.
 
 '\dblfloatpagefraction'
      For a float page of two-column wide floats, this is the minimum
@@ -1670,13 +1722,13 @@
 
 '\paperheight'
      The height of the paper, as distinct from the height of the print
-     area.  It is normally set with a document class option, as in
+     area.  Normally set with a document class option, as in
      '\documentclass[a4paper]{article}' (*note Document class
      options::).
 
 '\paperwidth'
      The width of the paper, as distinct from the width of the print
-     area.  It is normally set with a document class option, as in
+     area.  Normally set with a document class option, as in
      '\documentclass[a4paper]{article}' (*note Document class
      options::).
 
@@ -1708,6 +1760,7 @@
      specified width, and revert to their normal values at the end of
      the 'minipage' or '\parbox'.
 
+'\hsize'
      This entry is included for completeness: '\hsize' is the TeX
      primitive parameter used when text is broken into lines.  It should
      not be used in normal LaTeX documents.
@@ -1836,7 +1889,7 @@
      floats; default '.7'.
 
    Parameters relating to vertical space around floats (change them with
-'\setlength{PARAMETER}{LENGTH EXPRESSION}'):
+a command of the form '\setlength{PARAMETER}{LENGTH EXPRESSION}'):
 
 '\floatsep'
      Space between floats at the top or bottom of a page; default '12pt
@@ -1852,7 +1905,7 @@
      default '20pt plus2pt minus4pt'.
 
    Counters relating to the number of floats on a page (change them with
-'\setcounter{CTRNAME}{NATURAL NUMBER}'):
+a command of the form '\setcounter{CTRNAME}{NATURAL NUMBER}'):
 
 'bottomnumber'
      Maximum number of floats that can appear at the bottom of a text
@@ -1883,64 +1936,533 @@
 6 Sectioning
 ************
 
-Sectioning commands provide the means to structure your text into units:
+Structure your text into divisions: parts, chapters, sections, etc.  All
+sectioning commands have the same form, one of:
 
-'\part'
-'\chapter'
-     ('report' and 'book' class only)
-'\section'
-'\subsection'
-'\subsubsection'
-'\paragraph'
-'\subparagraph'
+     SECTIONING-COMMAND{TITLE}
+     SECTIONING-COMMAND*{TITLE}
+     SECTIONING-COMMAND[TOC-TITLE]{TITLE}
 
-   All sectioning commands take the same general form, e.g.,
+For instance, declare the start of a subsection as with
+'\subsection{Motivation}'.
 
-     \chapter[TOCTITLE]{TITLE}
+   The table has each SECTIONING-COMMAND in LaTeX.  All are available in
+all of LaTeX's standard document classes 'book', 'report',
+and 'article', except that '\chapter' is not available in 'article'.
 
-   In addition to providing the heading TITLE in the main text, the
-section title can appear in two other places:
+Sectioning unit    Command            Level
+--------------------------------------------------------------------
+Part               '\part'            -1 ('book', 'report'), 0
+                                      ('article')
+Chapter            '\chapter'         0
+Section            '\section'         1
+Subsection         '\subsection'      2
+Subsubsection      '\subsubsection'   3
+Paragraph          '\paragraph'       4
+Subparagraph       '\subparagraph'    5
 
-  1. The table of contents.
-  2. The running head at the top of the page.
+   All these commands have a '*'-form that prints TITLE as usual but is
+not numbered and does not make an entry in the table of contents.  An
+example of using this is for an appendix in an 'article' .  The input
+'\appendix\section{Appendix}' gives the output 'A Appendix' (*note
+\appendix::).  You can lose the numbering 'A' by instead entering
+'\section*{Appendix}' (articles often omit a table of contents and have
+simple page headers so the other differences from the '\section' command
+may not matter).
 
-   You may not want the same text in these places as in the main text.
-To handle this, the sectioning commands have an optional argument
-TOCTITLE that, when given, specifies the text for these other places.
+   The section title TITLE provides the heading in the main text, but it
+may also appear in the table of contents and in the running head or foot
+(*note Page styles::).  You may not want the same text in these places
+as in the main text.  All of these commands have an optional argument
+TOC-TITLE for these other places.
 
-   Also, all sectioning commands have '*'-forms that print TITLE as
-usual, but do not include a number and do not make an entry in the table
-of contents.  For instance:
+   The level number in the table above determines which sectional units
+are numbered, and which appear in the table of contents.  If the
+sectioning command's LEVEL is less than or equal to the value of the
+counter 'secnumdepth' then the titles for this sectioning command will
+be numbered (*note Sectioning/secnumdepth::).  And, if LEVEL is less
+than or equal to the value of the counter 'tocdepth' then the table of
+contents will have an entry for this sectioning unit (*note
+Sectioning/tocdepth::).
 
-     \section*{Preamble}
+   LaTeX expects that before you have a '\subsection' you will have a
+'\section' and, in a book, that before a '\section' you will have a
+'\chapter'.  Otherwise you can get a something like a subsection
+numbered '3.0.1'.
 
-   The '\appendix' command changes the way following sectional units are
-numbered.  The '\appendix' command itself generates no text and does not
-affect the numbering of parts.  The normal use of this command is
-something like
+   Two counters relate to the appearance of sectioning commands.
 
-     \chapter{A Chapter}
-     ...
+'secnumdepth'
+     Controls which sectioning commands are numbered.  Suppress
+     numbering of sectioning at any depth greater than LEVEL
+     '\setcounter{secnumdepth}{LEVEL}' (*note \setcounter::).  See the
+     above table for the level numbers.  For instance, if the
+     'secnumdepth' is 1 in an 'article' then a '\section{Introduction}'
+     command will produce output like '1 Introduction' while
+     '\subsection{Discussion}' will produce output like 'Discussion',
+     without the number.  LaTeX's default 'secnumdepth' is 3 in
+     'article' class and  2 in the 'book' and 'report' classes.
+
+'tocdepth'
+     Controls which sectioning units are listed in the table of
+     contents.  The setting '\setcounter{tocdepth}{LEVEL}' makes the
+     sectioning units at LEVEL be the smallest ones listed (*note
+     \setcounter::).  See the above table for the level numbers.  For
+     instance, if 'tocdepth' is 1 then the table of contents will list
+     sections but not subsections.  LaTeX's default 'secnumdepth' is 3
+     in 'article' class and  2 in the 'book' and 'report' classes.
+
+* Menu:
+
+* \part::                                         Start a part.
+* \chapter::                                      Start a chapter.
+* \section::                                      Start a section.
+* \subsection::                                   Start a subsection.
+* \subsubsection & \paragraph & \subparagraph::   Lower divisions.
+* \appendix::                                     Start appendices.
+* \frontmatter & \mainmatter & \backmatter::      The three parts of a book.
+* \@startsection::                               Layout of sectional units.
+
+
+File: latex2e.info,  Node: \part,  Next: \chapter,  Up: Sectioning
+
+6.1 '\part'
+===========
+
+Synopsis, one of:
+
+     \part{TITLE}
+     \part*{TITLE}
+     \part[TOC-TITLE]{TITLE}
+
+   Start a document part.  The standard LaTeX classes 'book', 'report',
+and 'article', all have this command.
+
+   This produces a document part, in a book.
+
+     \part{VOLUME I \\
+            PERSONAL MEMOIRS OF  U.\ S.\ GRANT}
+     \chapter{ANCESTRY--BIRTH--BOYHOOD.}
+     My family is American, and has been for generations,
+     in all its branches, direct and collateral.
+
+   In each standard class the '\part' command outputs a part number such
+as 'Part I', alone on its line, in boldface, and in large type.  Then
+LaTeX outputs TITLE, also alone on its line, in bold and in even larger
+type.  In class 'book', the LaTeX default puts each part alone on its
+own page.  If the book is two-sided then LaTeX will skip a page if
+needed to have the new part on an odd-numbered page.  In 'report' it is
+again alone on a page, but LaTeX won't force it onto an odd-numbered
+page.  In an 'article' LaTeX does not put it on a fresh page, but
+instead outputs the part number and part title onto the main document
+page.
+
+   The '*' form shows TITLE but it does not show the part number, does
+not increment the 'part' counter, and produces no table of contents
+entry.
+
+   The optional argument TOC-TITLE will appear as the part title in the
+table of contents (*note Table of contents etc.::) and in running
+headers (*note Page styles::).  If it is not present then TITLE will be
+there.  This example puts a line break in TITLE but leaves out the break
+in the table of contents.
+
+     \part[Up from the bottom; my life]{Up from the bottom\\ my life}
+
+   For determining which sectional units are numbered and which appear
+in the table of contents, the level number of a part is -1 (*note
+Sectioning/secnumdepth:: and *note Sectioning/tocdepth::).
+
+   In the class 'article', if a paragraph immediately follows the part
+title then it is not indented.  To get an indent you can use the package
+'indentfirst'.
+
+   One package to change the behavior of '\part' is 'titlesec'.  See its
+documentation on CTAN.
+
+
+File: latex2e.info,  Node: \chapter,  Next: \section,  Prev: \part,  Up: Sectioning
+
+6.2 '\chapter'
+==============
+
+Synopsis, one of:
+
+     \chapter{TITLE}
+     \chapter*{TITLE}
+     \chapter[TOC-TITLE]{TITLE}
+
+   Start a chapter.  The standard LaTeX classes 'book' and 'report' have
+this command but 'article' does not.
+
+   This produces a chapter.
+
+     \chapter{Loomings}
+     Call me Ishmael.
+     Some years ago---never mind how long precisely---having little or no
+     money in my purse, and nothing particular to interest me on shore, I
+     thought I would sail about a little and see the watery part of
+     the world.
+
+   The LaTeX default starts each chapter on a fresh page, an
+odd-numbered page if the document is two-sided.  It produces a chapter
+number such as 'Chapter 1' in large boldface type (the size is '\huge').
+It then puts TITLE on a fresh line, in boldface type that is still
+larger (size '\Huge').  It also increments the 'chapter' counter, adds
+an entry to the table of contents (*note Table of contents etc.::), and
+sets the running header information (*note Page styles::).
+
+   The '*' form shows TITLE on a fresh line, in boldface.  But it does
+not show the chapter number, does not increment the 'chapter' counter,
+produces no table of contents entry, and does not affect the running
+header.  (If you use the page style 'headings' in a two-sided document
+then the header will be from the prior chapter.)  This example
+illustrates.
+
+     \chapter*{Preamble}
+
+   The optional argument TOC-TITLE will appear as the chapter title in
+the table of contents (*note Table of contents etc.::) and in running
+headers (*note Page styles::).  If it is not present then TITLE will be
+there.  This shows the full name in the chapter title,
+
+     \chapter[Weyl]{Hermann Klaus Hugo (Peter) Weyl (1885--1955)}
+
+but only 'Weyl' on the contents page.  This puts a line break in the
+title but that doesn't work well with running headers so it omits the
+break in the contents
+
+     \chapter[Given it all\\ my story]{Given it all\\ my story}
+
+   For determining which sectional units are numbered and which appear
+in the table of contents, the level number of a chapter is 0 (*note
+Sectioning/secnumdepth:: and *note Sectioning/tocdepth::).
+
+   The paragraph that follows the chapter title is not indented, as is a
+standard typographical practice.  To get an indent use the package
+'indentfirst'.
+
+   You can change what is shown for the chapter number.  To change it to
+something like 'Lecture 1', put in the preamble either
+'\renewcommand{\chaptername}{Lecture}' or this (*note \makeatletter &
+\makeatother::).
+
+     \makeatletter
+     \renewcommand{\@chapapp}{Lecture}
+     \makeatother
+
+To make this change because of the primary language for the document,
+see the package 'babel'.
+
+   In a two-sided document LaTeX puts a chapter on odd-numbered page, if
+necessary leaving an even-numbered page that is blank except for any
+running headers.  To make that page completely blank, see *note
+\clearpage & \cleardoublepage::.
+
+   To change the behavior of the '\chapter' command, you can copy its
+definition from the LaTeX format file and make adjustments.  But there
+are also many packages on CTAN that address this.  One is 'titlesec'.
+See its documentation, but the example below gives a sense of what it
+can do.
+
+     \usepackage{titlesec}   % in preamble
+     \titleformat{\chapter}
+       {\Huge\bfseries}  % format of title
+       {}                % label, such as 1.2 for a subsection
+       {0pt}             % length of separation between label and title
+       {}                % before-code hook
+
+This omits the chapter number 'Chapter 1' from the page but unlike
+'\chapter*' it keeps the chapter in the table of contents and the
+running headers.
+
+
+File: latex2e.info,  Node: \section,  Next: \subsection,  Prev: \chapter,  Up: Sectioning
+
+6.3 '\section'
+==============
+
+Synopsis, one of:
+
+     \section{TITLE}
+     \section*{TITLE}
+     \section[TOC-TITLE]{TITLE}
+
+   Start a section.  The standard LaTeX classes 'article', 'book', and
+'report' all have this command.
+
+   This produces a section.
+
+     In this Part we tend to be more interested in the function,
+     in the input-output behavior,
+     than in the details of implementing that behavior.
+
+     \section{Turing machines}
+     Despite this desire to downplay implementation,
+     we follow the approach of A~Turing that the
+     first step toward defining the set of computable functions
+     is to reflect on the details of what mechanisms can do.
+
+   For the standard LaTeX classes 'book' and 'report' the default output
+is like '1.2 TITLE' (for chapter 1, section 2), alone on its line and
+flush left, in boldface and a larger type (the type size is '\Large').
+The same holds in 'article' except that there are no chapters in that
+class so it looks like '2 TITLE'.
+
+   The '*' form shows TITLE.  But it does not show the section number,
+does not increment the 'section' counter, produces no table of contents
+entry, and does not affect the running header.  (If you use the page
+style 'headings' in a two-sided document then the header will be from
+the prior section.)
+
+   The optional argument TOC-TITLE will appear as the section title in
+the table of contents (*note Table of contents etc.::) and in running
+headers (*note Page styles::).  If it is not present then TITLE will be
+there.  This shows the full name in the title of the section,
+
+     \section[Elizabeth~II]{Elizabeth the Second,
+       by the Grace of God of the United Kingdom,
+       Canada and Her other Realms and Territories Queen,
+       Head of the Commonwealth, Defender of the Faith.}
+
+but only 'Elizabeth II' on the contents page and in the headers.  This
+has a line break in TITLE but that does not work with headers so it is
+omitted from the contents and headers.
+
+     \section[Truth is, I cheated; my life story]{Truth is,
+       I cheated\\my life story}
+
+   For determining which sectional units are numbered and which appear
+in the table of contents, the level number of a section is 1 (*note
+Sectioning/secnumdepth:: and *note Sectioning/tocdepth::).
+
+   The paragraph that follows the section title is not indented, as is a
+standard typographical practice.  One way to get an indent is to use the
+package 'indentfirst'.
+
+   In general, to change the behavior of the '\section' command, there
+are a number of options.  One is the '\@startsection' command (*note
+\@startsection::).  There are also many packages on CTAN that address
+this, including 'titlesec'.  See the documentation but the example below
+gives a sense of what they can do.
+
+     \usepackage{titlesec}   % in preamble
+     \titleformat{\section}
+       {\normalfont\Large\bfseries}  % format of title
+       {\makebox[1pc][r]{\thesection\hspace{1pc}}} % label
+       {0pt}                   % length of separation between label and title
+       {}                      % before-code hook
+     \titlespacing*{\section}
+       {-1pc}{18pt}{10pt}[10pc]
+
+That puts the section number in the margin.
+
+
+File: latex2e.info,  Node: \subsection,  Next: \subsubsection & \paragraph & \subparagraph,  Prev: \section,  Up: Sectioning
+
+6.4 '\subsection'
+=================
+
+Synopsis, one of:
+
+     \subsection{TITLE}
+     \subsection*{TITLE}
+     \subsection[TOC-TITLE]{TITLE}
+
+   Start a subsection.  The standard LaTeX classes 'article', 'book',
+and 'report' all have this command.
+
+   This produces a subsection.
+
+     We will show that there are more functions than Turing machines and that
+     therefore some functions have no associated machine.
+
+     \subsection{Cardinality} We will begin with two paradoxes that
+     dramatize the challenge to our intuition posed by comparing the sizes of
+     infinite sets.
+
+   For the standard LaTeX classes 'book' and 'report' the default output
+is like '1.2.3 TITLE' (for chapter 1, section 2, subsection 3), alone on
+its line and flush left, in boldface and a larger type (the type size is
+'\large').  The same holds in 'article' except that there are no
+chapters in that class so it looks like '2.3 TITLE'.
+
+   The '*' form shows TITLE.  But it does not show the section number,
+does not increment the 'section' counter, and produces no table of
+contents entry.
+
+   The optional argument TOC-TITLE will appear as the section title in
+the table of contents (*note Table of contents etc.::).  If it is not
+present then TITLE will be there.  This shows the full name in the title
+of the section,
+
+     \subsection[$\alpha,\beta,\gamma$ paper]{\textit{The Origin of
+       Chemical Elements} by R.A.~Alpher, H.~Bethe, and G.~Gamow}
+
+but only 'U+03B1,U+03B2,U+03B3 paper' on the contents page.
+
+   For determining which sectional units are numbered and which appear
+in the table of contents, the level number of a subsection is 2 (*note
+Sectioning/secnumdepth:: and *note Sectioning/tocdepth::).
+
+   The paragraph that follows the subsection title is not indented, as
+is a standard typographical practice.  One way to get an indent is to
+use the package 'indentfirst'.
+
+   There are a number of ways to change the behavior of the
+'\subsection' command.  One is the '\@startsection' command (*note
+\@startsection::).  There are also many packages on CTAN that address
+this, including 'titlesec'.  See the documentation but the example below
+gives a sense of what they can do.
+
+     \usepackage{titlesec}   % in preamble
+     \titleformat{\subsection}[runin]
+       {\normalfont\normalsize\bfseries}  % format of the title
+       {\thesubsection}                   % label
+       {0.6em}                            % space between label and title
+       {}                                 % before-code hook
+
+That puts the subsection number and TITLE in the first line of text.
+
+
+File: latex2e.info,  Node: \subsubsection & \paragraph & \subparagraph,  Next: \appendix,  Prev: \subsection,  Up: Sectioning
+
+6.5 '\subsubsection', '\paragraph', '\subparagraph'
+===================================================
+
+Synopsis, one of:
+
+     \subsubsection{TITLE}
+     \subsubsection*{TITLE}
+     \subsubsection[TOC-TITLE]{TITLE}
+
+or one of:
+
+     \paragraph{TITLE}
+     \paragraph*{TITLE}
+     \paragraph[TOC-TITLE]{TITLE}
+
+or one of:
+
+     \subparagraph{TITLE}
+     \subparagraph*{TITLE}
+     \subparagraph[TOC-TITLE]{TITLE}
+
+   Start a subsubsection, paragraph, or subparagraph.  The standard
+LaTeX classes 'article', 'book', and 'report' all have these commands,
+although they are not commonly used.
+
+   This produces a subsubsection.
+
+     \subsubsection{Piston ring compressors: structural performance}
+     Provide exterior/interior wall cladding assemblies
+     capable of withstanding the effects of load and stresses from
+     consumer-grade gasoline engine piston rings.
+
+   The default output of each of the three does not change over the
+standard LaTeX classes 'article', 'book', and 'report'.  For
+'\subsubsection' the TITLE is alone on its line, in boldface and normal
+size type.  For '\paragraph' the TITLE is inline with the text, not
+indented, in boldface and normal size type.  For '\subparagraph' the
+TITLE is inline with the text, with a paragraph indent, in boldface and
+normal size type (Because an 'article' has no chapters its
+subsubsections are numbered and so it looks like '1.2.3 TITLE', for
+section 1, subsection 2, and subsubsection 3.  The other two divisions
+are not numbered.)
+
+   The '*' form shows TITLE.  But it does not increment the associated
+counter and produces no table of contents entry (and does not show the
+number for '\subsubsection').
+
+   The optional argument TOC-TITLE will appear as the division title in
+the table of contents (*note Table of contents etc.::).  If it is not
+present then TITLE will be there.
+
+   For determining which sectional units are numbered and which appear
+in the table of contents, the level number of a subsubsection is 3, of a
+paragraph is 4, and of a subparagraph is 5 (*note
+Sectioning/secnumdepth:: and *note Sectioning/tocdepth::).
+
+   The paragraph that follows the subsubsection title is not indented,
+as is a standard typographical practice.  One way to get an indent is to
+use the package 'indentfirst'.
+
+   There are a number of ways to change the behavior of the these
+commands.  One is the '\@startsection' command (*note \@startsection::).
+There are also many packages on CTAN that address this, including
+'titlesec'.  See the documentation on CTAN.
+
+
+File: latex2e.info,  Node: \appendix,  Next: \frontmatter & \mainmatter & \backmatter,  Prev: \subsubsection & \paragraph & \subparagraph,  Up: Sectioning
+
+6.6 '\appendix'
+===============
+
+Synopsis:
+
      \appendix
-     \chapter{The First Appendix}
 
-   The 'secnumdepth' counter controls printing of section numbers.  The
-setting
+   This does not directly produce any output.  But in a book or report
+it declares that subsequent '\chapter' commands start an appendix.  In
+an article it does the same, for '\section' commands.  It also resets
+the 'chapter' and 'section' counters to 0 in a book or report, and in an
+article resets the 'section' and 'subsection' counters.
 
-     \setcounter{secnumdepth}{LEVEL}
+   In this book
 
-suppresses heading numbers at any depth > LEVEL, where 'chapter' is
-level zero.  The default 'secnumdepth' is 3 in LaTeX's 'article' class
-and 2 in the 'book' and 'report' classes.  (*Note \setcounter::.)
+     \chapter{One}  ...
+     \chapter{Two}  ...
+      ...
+     \appendix
+     \chapter{Three}  ...
+     \chapter{Four}  ...
 
-* Menu:
+the first two will generate output numbered 'Chapter 1' and 'Chapter 2'.
+After the '\appendix' the numbering will be 'Appendix A' and 'Appendix
+B'.  *Note Larger book template:: for another example.
 
-* \@startsection:: Redefine layout of start of sections, subsections, etc.
+   The 'appendix' package adds the command '\appendixpage' to put a
+separate 'Appendices' in the document body before the first appendix,
+and the command '\addappheadtotoc' to do the same in the table of
+contents.  You can reset the name 'Appendix' with a command like
+'\renewcommand{\appendixname}{Specification}', as well as a number of
+other features.  See the documentation on CTAN.
 
 
-File: latex2e.info,  Node: \@startsection,  Up: Sectioning
+File: latex2e.info,  Node: \frontmatter & \mainmatter & \backmatter,  Next: \@startsection,  Prev: \appendix,  Up: Sectioning
 
-6.1 '\@startsection'
+6.7 '\frontmatter', '\mainmatter', '\backmatter'
+================================================
+
+Synopsis, one of:
+
+     \frontmatter
+     \mainmatter
+     \backmatter
+
+   Format a 'book' class document differently according to which part of
+the document is being produced.  All three commands are optional.
+
+   Traditionally, a book's front matter contains such things as the
+title page, an abstract, a table of contents, a preface, a list of
+notations, a list of figures, and a list of tables.  (Some of these
+front matter pages, such as the title page, are traditionally not
+numbered.)  The back matter may contain such things as a glossary,
+notes, a bibliography, and an index.
+
+   The '\frontmatter' declaration makes the pages numbered in lowercase
+roman, and makes chapters not numbered, although each chapter's title
+appears in the table of contents; if you use other sectioning commands
+here, use the '*'-version (*note Sectioning::).  The '\mainmatter'
+changes the behavior back to the expected version, and resets the page
+number.  The '\backmatter' leaves the page numbering alone but switches
+the chapters back to being not numbered.  *Note Larger book template::
+for an example using the three.
+
+
+File: latex2e.info,  Node: \@startsection,  Prev: \frontmatter & \mainmatter & \backmatter,  Up: Sectioning
+
+6.8 '\@startsection'
 ====================
 
 Synopsis:
@@ -1958,9 +2480,23 @@
 may want to use the '\secdef' command.
 
    Technically, '\@startsection' has the form
-     \@startsection{NAME}{LEVEL}{INDENT}{BEFORESKIP}{AFTERSKIP}{STYLE}*[TOCTITLE]{TITLE}
-(the star '*' is optional), so that issuing
-     \renewcommand{\section}{\@startsection{NAME}{LEVEL}{INDENT}{BEFORESKIP}{AFTERSKIP}{STYLE}}
+
+     \@startsection{NAME}
+       {LEVEL}
+       {INDENT}
+       {BEFORESKIP}
+       {AFTERSKIP}
+       {STYLE}*[TOCTITLE]{TITLE}
+
+so that issuing
+
+     \renewcommand{\section}{\@startsection{NAME}
+       {LEVEL}
+       {INDENT}
+       {BEFORESKIP}
+       {AFTERSKIP}
+       {STYLE}}
+
 redefines '\section' to have the form '\section*[TOCTITLE]{TITLE}' (here
 too, the star '*' is optional).  *Note Sectioning::.  This implies that
 when you write a command like '\renewcommand{section}{...}', the
@@ -1970,33 +2506,30 @@
 NAME
      Name of the counter used to number the sectioning header.  This
      counter must be defined separately.  Most commonly this is either
-     'section', 'subsection', or 'paragraph'.  Although in those three
-     cases the counter name is the same as the sectioning command
-     itself, using the same name is not required.
+     'section', 'subsection', or 'paragraph'.  Although in those cases
+     the counter name is the same as the sectioning command itself, you
+     don't have to use the same name.
 
      Then '\the'NAME displays the title number and '\'NAME'mark' is for
      the page headers.  See the third example below.
 
 LEVEL
-     An integer giving the depth of the sectioning command: 0 for
-     'chapter' (only applies to the standard 'book' and 'report'
-     classes), 1 for 'section', 2 for 'subsection', 3 for
-     'subsubsection', 4 for 'paragraph', and 5 for 'subparagraph'.  In
-     the 'book' and 'report' classes 'part' has level -1, while in the
-     'article' class 'part' has level 0.
+     An integer giving the depth of the sectioning command.  *Note
+     Sectioning:: for the list of standard level numbers.
 
-     If LEVEL is less than or equal to the value of 'secnumdepth' then
-     the titles for this sectioning command will be numbered.  For
-     instance, in an 'article', if 'secnumdepth' is 1 then a
-     '\section{Introduction}' command will produce output like "1
-     Introduction" while '\subsection{Discussion}' will produce output
-     like "Discussion", without the number prefix.  *Note
-     Sectioning/secnumdepth::.
+     If LEVEL is less than or equal to the value of the counter
+     'secnumdepth' then titles for this sectioning command will be
+     numbered (*note Sectioning/secnumdepth::).  For instance, if
+     'secnumdepth' is 1 in an 'article' then the command
+     '\section{Introduction}' will produce output like "1 Introduction"
+     while '\subsection{Discussion}' will produce output like
+     "Discussion", without the number prefix.
 
-     If LEVEL is less than or equal to the value of TOCDEPTH then the
-     table of contents will have an entry for this sectioning unit.  For
-     instance, in an 'article', if TOCDEPTH is 1 then the table of
-     contents will list sections but not subsections.
+     If LEVEL is less than or equal to the value of the counter TOCDEPTH
+     then the table of contents will have an entry for this sectioning
+     unit (*note Sectioning/tocdepth::).  For instance, in an 'article',
+     if TOCDEPTH is 1 then the table of contents will list sections but
+     not subsections.
 
 INDENT
      A length giving the indentation of all of the title lines with
@@ -2059,31 +2592,29 @@
      Controls the styling of the title.  See the examples below.
      Typical commands to use here are '\centering', '\raggedright',
      '\normalfont', '\hrule', or '\newpage'.  The last command in STYLE
-     may be one such as '\MakeUppercase' or '\fbox' that takes one
-     argument.  The section title will be supplied as the argument to
-     this command.  For instance, setting STYLE to
-     '\bfseries\MakeUppercase' would produce titles that are bold and
-     upper case.
+     may be one that takes one argument, such as '\MakeUppercase' or
+     '\fbox' that takes one argument.  The section title will be
+     supplied as the argument to this command.  For instance, setting
+     STYLE to '\bfseries\MakeUppercase' would produce titles that are
+     bold and uppercase.
 
    These are LaTeX's defaults for the first three sectioning units that
 are defined with '\@startsection', for the 'article', 'book', and
-'report' classes.
+'report' classes.  For section, the LEVEL is 1, the INDENT is 0pt, the
+BEFORESKIP is '-3.5ex plus -1ex minus -0.2ex', the AFTERSKIP is '2.3ex
+plus 0.2ex', and the STYLE is '\normalfont\Large\bfseries'.  For
+subsection, the LEVEL is 2, the INDENT is 0pt, the BEFORESKIP is
+'-3.25ex plus -1ex minus -0.2ex', the AFTERSKIP is '1.5ex plus 0.2ex',
+and the STYLE is '\normalfont\large\bfseries'.  For subsubsection, the
+LEVEL is 3, the INDENT is 0pt, the BEFORESKIP is '-3.25ex plus -1ex
+minus -0.2ex', the AFTERSKIP is '1.5ex plus 0.2ex', and the STYLE is
+'\normalfont\normalsize\bfseries'.
 
-        'section'              'subsection'           'subsubsection'
------------------------------------------------------------------------------
-*note NAME: \@startsection/name.sectionsubsection     subsubsection
-*note LEVEL: \@startsection/level.12                  3
-*note INDENT: \@startsection/indent.'0pt''0pt'        '0pt'
-*note BEFORESKIP: \@startsection/beforeskip.'-3.5ex plus -1ex'-3.25ex plus -1ex'-3.25ex plus -1ex
-        minus -0.2ex'          minus -0.2ex'          minus -0.2ex'
-*note AFTERSKIP: \@startsection/afterskip.'2.3ex plus 0.2ex''1.5ex plus 0.2ex''1.5ex plus 0.2ex'
-*note STYLE: \@startsection/style.'\normalfont\Large\bfseries''\normalfont\large\bfseries''\normalfont\normalsize\bfseries'
-
    Here are examples.  They go either in a package or class file or in
 the preamble of a LaTeX document.  If you put them in the preamble they
 must go between a '\makeatletter' command and a '\makeatother'.
 (Probably the error message 'You can't use `\spacefactor' in vertical
-mode.' means that you forgot this.)  *Note \makeatletter and
+mode.' means that you forgot this.)  *Note \makeatletter &
 \makeatother::.
 
    This will put section titles in large boldface type, centered.  It
@@ -2136,34 +2667,43 @@
 7 Cross references
 ******************
 
-One reason for numbering things such as figures and equations is to
-refer the reader to them, as in "See Figure~3 for more details."
+We often want something like 'See Theorem~31'.  But by-hand typing the
+31 is poor practice.  Instead you should write a "label" such as
+'\label{eq:GreensThm}' and then "reference" it, as with 'See
+equation~\ref{eq:GreensThm}'.  LaTeX will automatically work out the
+number, put it into the output, and will change that number later if
+needed.
 
-   Including the figure number in the source is poor practice since if
-that number changes as the document evolves then you must remember to
-update this reference by hand.  Instead, LaTeX has you write a "label"
-like '\label{eq:GreensThm}' and refer to it with 'See
-equation~\ref{eq:GreensThm}'.
+     We will see this with Theorem~\ref{th:GreensThm}. % forward reference
+     ...
+     \begin{theorem} \label{th:GreensThm}
+       ...
+     \end{theorem}
+     ...
+     See Theorem~\ref{th:GreensThm} on page~\pageref{th:GreensThm}.
 
-   LaTeX writes the information from the labels to a file with the same
-name as the file containing the '\label{...}' but with an '.aux'
-extension.  (The information has the format
-'\newlabel{LABEL}{{CURRENTLABEL}{PAGENUMBER}}' where CURRENTLABEL is the
-current value of the macro '\@currentlabel' that is usually updated
-whenever you call '\refstepcounter{COUNTER}'.)
+   LaTeX tracks cross reference information in a file having the
+extension '.aux' and with the same base name as the file containing the
+'\label'.  So if '\label' is in 'calculus.tex' then the information is
+in 'calculus.aux'.  LaTeX puts the information in that file every time
+it runs across a '\label'.
 
-   The most common side effect of the prior paragraph happens when your
-document has a "forward reference", a '\ref{KEY}' that appears earlier
-than the associated '\label{KEY}'; see the example in the
-'\pageref{...}' description.  LaTeX gets the information for references
-from the '.aux' file.  If this is the first time you are compiling the
-document then you will get a message 'LaTeX Warning: Label(s) may have
-changed. Rerun to get cross references right.' and in the output the
-reference will appear as two question marks '??', in boldface.  Or, if
-you change some things so the references change then you get the same
-warning and the output contains the old reference information.  The
-solution in either case is just to compile the document a second time.
+   The behavior described in the prior paragraph results in a quirk that
+happens when your document has a "forward reference", a '\ref' that
+appears before the associated '\label'.  If this is the first time that
+you are compiling the document then you will get 'LaTeX Warning:
+Label(s) may have changed. Rerun to get cross references right' and in
+the output the forward reference will appear as two question marks '??',
+in boldface.  A similar thing happens if you change some things so the
+references changes; you get the same warning and the output contains the
+old reference information.  In both cases, resolve this by compiling the
+document a second time.
 
+   The 'cleveref' package enhances LaTeX's cross referencing features.
+You can arrange that if you enter
+'\begin{thm}\label{th:Nerode}...\end{thm}' then '\cref{th:Nerode}' will
+output 'Theorem 3.21', without you having to enter the "Theorem."
+
 * Menu:
 
 * \label::      Assign a symbolic name to a piece of text.
@@ -2191,28 +2731,35 @@
 as usual.
 
    A common convention is to use labels consisting of a prefix and a
-suffix separated by a colon or period.  This helps to avoid accidentally
-creating two labels with the same name, and makes your source more
-readable.  Some commonly-used prefixes:
+suffix separated by a colon or period.  Thus, '\label{fig:Post}' is a
+label for a figure with a portrait of Emil Post.  This helps to avoid
+accidentally creating two labels with the same name, and makes your
+source more readable.  Some commonly-used prefixes:
 
 'ch'
      for chapters
+
 'sec'
+'subsec'
      for lower-level sectioning commands
+
 'fig'
      for figures
+
 'tab'
      for tables
+
 'eq'
      for equations
 
-   Thus, '\label{fig:Euler}' is a label for a figure with a portrait of
-the great man.
+   In the auxiliary file the reference information is kept as the text
+of a command of the form '\newlabel{LABEL}{{CURRENTLABEL}{PAGENUMBER}}'.
+Here CURRENTLABEL is the current value of the macro '\@currentlabel'
+that is usually updated whenever you call '\refstepcounter{COUNTER}'.
 
-   In this example below the key 'sec:test' will get the number of the
-current section and the key 'fig:test' will get the number of the
-figure.  (Incidentally, put labels after captions in figures and
-tables.)
+   Below, the key 'sec:test' will get the number of the current section
+and the key 'fig:test' will get the number of the figure.
+(Incidentally, put labels after captions in figures and tables.)
 
      \section{section name}
      \label{sec:test}
@@ -2227,8 +2774,8 @@
 
 File: latex2e.info,  Node: \pageref,  Next: \ref,  Prev: \label,  Up: Cross references
 
-7.2 '\pageref{KEY}'
-===================
+7.2 '\pageref'
+==============
 
 Synopsis:
 
@@ -2237,11 +2784,14 @@
    Produce the page number of the place in the text where the
 corresponding '\label'{KEY} command appears.
 
-   In this example the '\label{eq:main}' is used both for the formula
-number and for the page number.  (Note that the two references are
-forward references, so this document would need to be compiled twice to
-resolve those.)
+   If there is no '\label{KEY}' then you get something like 'LaTeX
+Warning: Reference `th:GrensThm' on page 1 undefined on input line 11.'
 
+   Below, the '\label{eq:main}' is used both for the formula number and
+for the page number.  (Note that the two references are forward
+references so this document would need to be compiled twice to resolve
+those.)
+
      The main result is formula~\ref{eq:main} on page~\pageref{eq:main}.
        ...
      \begin{equation} \label{eq:main}
@@ -2251,8 +2801,8 @@
 
 File: latex2e.info,  Node: \ref,  Prev: \pageref,  Up: Cross references
 
-7.3 '\ref{KEY}'
-===============
+7.3 '\ref'
+==========
 
 Synopsis:
 
@@ -2263,9 +2813,13 @@
 does not produce any text, such as the word 'Section' or 'Figure', just
 the bare number itself.
 
-   In this example, the '\ref{popular}' produces '2'.  Note that it is a
-forward reference since it comes before '\label{popular}'.
+   If there is no '\label{KEY}' then you get something like 'LaTeX
+Warning: Reference `th:GrensThm' on page 1 undefined on input line 11.'
 
+   In this example the '\ref{popular}' produces '2'.  Note that it is a
+forward reference since it comes before '\label{popular}' so this
+document would have to be compiled twice.
+
      The most widely-used format is item number~\ref{popular}.
      \begin{enumerate}
      \item Plain \TeX
@@ -2273,6 +2827,9 @@
      \item Con\TeX t
      \end{enumerate}
 
+   The 'cleveref' package includes text such as 'Theorem' in the
+reference.  See the documentation on CTAN.
+
 
 File: latex2e.info,  Node: Environments,  Next: Line breaking,  Prev: Cross references,  Up: Top
 
@@ -2314,11 +2871,11 @@
 * math::                  In-line math.
 * minipage::              Miniature page.
 * picture::               Picture with text, arrows, lines and circles.
-* quotation and quote::   Include a quotation.
+* quotation & quote::     Include a quotation.
 * tabbing::               Align text arbitrarily.
 * table::                 Floating tables.
 * tabular::               Align text in columns.
-* thebibliography::       Bibliography or reference list.
+* thebibliography::      Bibliography or reference list.
 * theorem::               Theorems, lemmas, etc.
 * titlepage::             For hand crafted title pages.
 * verbatim::              Simulating typed input.
@@ -2386,7 +2943,7 @@
        ...
      \end{array}
 
-   or
+or:
 
      \begin{array}[POS]{COLS}
        COLUMN 1 ENTRY &COLUMN 2 ENTRY ... &COLUMN N ENTRY \\
@@ -2395,22 +2952,38 @@
 
    Produce a mathematical array.  This environment can only be used in
 math mode, and normally appears within a displayed mathematics
-environment such as 'equation' (*note equation::).  Column entries are
-separated by an ampersand ('&').  Rows are terminated with
-double-backslashes (*note \\::).
+environment such as 'equation' (*note equation::).  Inside of each row
+the column entries are separated by an ampersand, ('&').  Rows are
+terminated with double-backslashes (*note \\::).
 
+   This example shows a three by three array.
+
+     \begin{equation*}
+       \chi(x) =
+       \left|              % vertical bar fence
+         \begin{array}{ccc}
+           x-a  &-b  &-c  \\
+           -d   &x-e &-f  \\
+           -g   &-h  &x-i
+         \end{array}
+      \right|
+     \end{equation*}
+
    The required argument COLS describes the number of columns, their
-alignment, and the formatting of the intercolumn regions.  See *note
-tabular:: for the complete description of COLS, and of the other common
+alignment, and the formatting of the intercolumn regions.  For instance,
+'\begin{array}{rcl}...\end{array}' gives three columns: the first flush
+right, the second centered, and the third flush left.  See *note
+tabular:: for the complete description of COLS and of the other common
 features of the two environments, including the optional POS argument.
 
    There are two ways that 'array' diverges from 'tabular'.  The first
-is that 'array' entries are typeset in math mode, in textstyle (except
-if the COLS definition specifies the column with 'p{...}', which causes
-the entry to be typeset in text mode).  The second is that, instead of
-'tabular''s parameter '\tabcolsep', LaTeX's intercolumn space in an
-'array' is governed by '\arraycolsep', which gives half the width
-between columns.  The default for this is '5pt'.
+is that 'array' entries are typeset in math mode, in textstyle (*note
+Modes::) except if the COLS definition specifies the column with
+'p{...}', which causes the entry to be typeset in text mode.  The second
+is that, instead of 'tabular''s parameter '\tabcolsep', LaTeX's
+intercolumn space in an 'array' is governed by '\arraycolsep', which
+gives half the width between columns.  The default for this is '5pt' so
+that between two columns comes 10pt of space.
 
    To obtain arrays with braces the standard is to use the 'amsmath'
 package.  It comes with environments 'pmatrix' for an array surrounded
@@ -2420,24 +2993,22 @@
 bars '|...|', and 'Vmatrix' for an array surrounded by double vertical
 bars '||...||', along with a number of other array constructs.
 
-   Here is an example of an array:
+   The next example uses the 'amsmath' package.
 
-     \begin{equation}
-       \begin{array}{cr}
-         \sqrt{y}  &12.3 \\
-         x^2       &3.4
-       \end{array}
-     \end{equation}
+     \usepackage{amsmath}  % in preamble
 
-   The next example works if '\usepackage{amsmath}' is in the preamble:
-
      \begin{equation}
-       \begin{vmatrix}{cc}
+       \begin{vmatrix}{cc}  % array with vert lines
          a  &b \\
          c  &d
        \end{vmatrix}=ad-bc
      \end{equation}
 
+   There are many packages concerning arrays.  The 'array' package has
+many useful extensions, including more column types.  The 'dcolumn'
+package adds a column type to center on a decimal point.  For both see
+the documentation on CTAN.
+
 
 File: latex2e.info,  Node: center,  Next: description,  Prev: array,  Up: Environments
 
@@ -2447,15 +3018,16 @@
 Synopsis:
 
      \begin{center}
-       ... text ...
+       LINE1 \\
+       LINE2 \\
+       ...
      \end{center}
 
    Create a new paragraph consisting of a sequence of lines that are
-centered within the left and right margins on the current page.  Use
-double-backslash to get a line break at a particular spot (*note \\::).
-If some text environment body is too long to fit on a line, LaTeX will
-insert line breaks that avoid hyphenation and avoid stretching or
-shrinking any interword space.
+centered within the left and right margins.  Use double-backslash, '\\',
+to get a line break (*note \\::).  If some text is too long to fit on a
+line then LaTeX will insert line breaks that avoid hyphenation and avoid
+stretching or shrinking any interword space.
 
    This environment inserts space above and below the text body.  See
 *note \centering:: to avoid such space, for example inside a 'figure'
@@ -2482,8 +3054,12 @@
        I grew up in that belief.  --Richard Burton
      \end{center}
 
-   A double backslash after the final line is optional.
+   A double backslash after the final line is optional.  If present it
+doesn't add any vertical space.
 
+   In a two-column document the text is centered in a column, not in the
+entire page.
+
 * Menu:
 
 * \centering::          Declaration form of the 'center' environment.
@@ -2494,12 +3070,33 @@
 8.3.1 '\centering'
 ------------------
 
-A declaration that causes material in its scope to be centered.  It is
-most often used inside an environment such as 'figure', or in a
-'parbox'.
+Synopsis:
 
+     {\centering ... }
+
+or
+
+     \begin{group}
+       \centering ...
+     \end{group}
+
+   Center the material in its scope.  It is most often used inside an
+environment such as 'figure', or in a 'parbox'.
+
+   This example's '\centering' declaration causes the graphic to be
+horizontally centered.
+
+     \begin{figure}
+       \centering
+       \includegraphics[width=0.6\textwidth]{ctan_lion.png}
+       \caption{CTAN Lion}  \label{fig:CTANLion}
+     \end{figure}
+
+The scope of this '\centering' ends with the '\end{figure}'.
+
    Unlike the 'center' environment, the '\centering' command does not
-add vertical space above and below the text.
+add vertical space above and below the text.  That's its advantage in
+the above example; there is not an excess of space.
 
    It also does not start a new paragraph; it simply changes how LaTeX
 formats paragraph units.  If 'ww {\centering xx \\ yy} zz' is surrounded
@@ -2510,19 +3107,8 @@
 'table' that ends the paragraph unit.  Thus, if '{\centering xx \\
 yy\par} zz' is surrounded by blank lines then it makes a new paragraph
 with two centered lines 'xx' and 'yy', followed by a new paragraph with
-'zz' that is formatted as usual.  See also the following example.
+'zz' that is formatted as usual.
 
-   This example's '\centering' causes the graphic to be horizontally
-centered.
-
-     \begin{figure}
-       \centering
-       \includegraphics[width=0.6\textwidth]{ctan_lion.png}
-       \caption{CTAN Lion}  \label{fig:CTANLion}
-     \end{figure}
-
-   The scope of the '\centering' ends with the '\end{figure}'.
-
 
 File: latex2e.info,  Node: description,  Next: displaymath,  Prev: center,  Up: Environments
 
@@ -2532,20 +3118,19 @@
 Synopsis:
 
      \begin{description}
-     \item[LABEL OF FIRST ITEM] text of first item
-     \item[LABEL OF SECOND ITEM] text of second item
-       ...
+       \item[LABEL OF FIRST ITEM] TEXT OF FIRST ITEM
+       \item[LABEL OF SECOND ITEM] TEXT OF SECOND ITEM
+        ...
      \end{description}
 
-   Environment to make a labeled list of items.  Each item's LABEL is
-typeset in bold, and is flush left so that long labels continue into the
+   Environment to make a list of labeled items.  Each item's LABEL is
+typeset in bold and is flush left, so that long labels continue into the
 first line of the item text.  There must be at least one item; having
 none causes the LaTeX error 'Something's wrong--perhaps a missing
 \item'.
 
    This example shows the environment used for a sequence of
-definitions.  The labels 'lama' and 'llama' come out in boldface with
-their left edges aligned on the left margin.
+definitions.
 
      \begin{definition}
        \item[lama] A priest.
@@ -2552,6 +3137,9 @@
        \item[llama] A beast.
      \end{definition}
 
+The labels 'lama' and 'llama' are output in boldface, with the left edge
+on the left margin.
+
    Start list items with the '\item' command (*note \item::).  Use the
 optional labels, as in '\item[Main point]', because there is no sensible
 default.  Following the '\item' is optional text, which may contain
@@ -2561,9 +3149,10 @@
 font change given in argument style (see *note Font styles::) then it
 will come out bold.  For instance, if the label text calls for
 typewriter with '\item[\texttt{label text}]' then it will appear in bold
-typewriter, if that is available.  The simplest way to get non-bold
-typewriter is to use declarative style: '\item[{\tt label text}]'.
-Similarly, get the standard roman font with '\item[{\rm label text}]'.
+typewriter, if that is available.  The simplest way around this, in this
+example to get non-bold typewriter, is to use declarative style:
+'\item[{\tt label text}]'.  Similarly, get the standard roman font with
+'\item[{\rm label text}]'.
 
    For other major LaTeX labelled list environments, see *note itemize::
 and *note enumerate::.  Unlike those environments, nesting 'description'
@@ -2588,7 +3177,7 @@
 Synopsis:
 
      \begin{displaymath}
-     MATH TEXT
+       MATHEMATICAL TEXT
      \end{displaymath}
 
    Environment to typeset the math text on its own line, in display
@@ -2618,12 +3207,14 @@
 'fleqn' option.)
 
    The output from this example is centered and alone on its line.
+
      \begin{displaymath}
        \int_1^2 x^2\,dx=7/3
      \end{displaymath}
-   Also, the integral sign is larger than the inline version '\(
-\int_1^2 x^2\,dx=7/3 \)' produces.
 
+Also, the integral sign is larger than the inline version '\( \int_1^2
+x^2\,dx=7/3 \)' produces.
+
 
 File: latex2e.info,  Node: document,  Next: enumerate,  Prev: displaymath,  Up: Environments
 
@@ -2685,9 +3276,9 @@
 Synopsis:
 
      \begin{enumerate}
-     \item[OPTIONAL LABEL OF FIRST ITEM] text of first item
-     \item[OPTIONAL LABEL OF SECOND ITEM] text of second item
-     ...
+       \item[OPTIONAL LABEL OF FIRST ITEM] TEXT OF FIRST ITEM
+       \item[OPTIONAL LABEL OF SECOND ITEM] TEXT OF SECOND ITEM
+       ...
      \end{enumerate}
 
    Environment to produce a numbered list of items.  The format of the
@@ -2719,9 +3310,9 @@
 level.
 
   1. arabic number followed by a period: '1.', '2.', ...
-  2. lower case letter inside parentheses: '(a)', '(b)' ...
-  3. lower case roman numeral followed by a period: 'i.', 'ii.', ...
-  4. upper case letter followed by a period: 'A.', 'B.', ...
+  2. lowercase letter inside parentheses: '(a)', '(b)' ...
+  3. lowercase roman numeral followed by a period: 'i.', 'ii.', ...
+  4. uppercase letter followed by a period: 'A.', 'B.', ...
 
    The 'enumerate' environment uses the counters '\enumi' through
 '\enumiv' (*note Counters::).
@@ -2752,16 +3343,16 @@
 8.8 'eqnarray'
 ==============
 
-First, a caveat: the 'eqnarray' environment is depreciated.  It has
-infelicities that cannot be overcome, including spacing that is
-inconsistent with other mathematics elements (see the article "Avoid
-eqnarray!" by Lars Madsen
+The 'eqnarray' environment is obsolete.  It has infelicities, including
+spacing that is inconsistent with other mathematics elements.  (See
+"Avoid eqnarray!" by Lars Madsen
 <http://tug.org/TUGboat/tb33-1/tb103madsen.pdf>).  New documents should
 include the 'amsmath' package and use the displayed mathematics
-environments provided there, such as the 'align' environment.
+environments provided there, such as the 'align' environment.  We
+include a description only for completeness and for working with old
+documents.
 
-   Nevertheless, for completeness and for a reference when working with
-old documents, a synopsis:
+   Synopsis:
 
      \begin{eqnarray}
        FIRST FORMULA LEFT  &FIRST FORMULA MIDDLE  &FIRST FORMULA RIGHT \\
@@ -2768,7 +3359,7 @@
        ...
      \end{eqnarray}
 
-   or
+or
 
      \begin{eqnarray*}
        FIRST FORMULA LEFT  &FIRST FORMULA MIDDLE  &FIRST FORMULA RIGHT \\
@@ -2812,21 +3403,19 @@
 Synopsis:
 
      \begin{equation}
-       math text
+       MATHEMATICAL TEXT
      \end{equation}
 
-   Make a 'displaymath' environment (*note displaymath::) with an
-equation number in the right margin.
+   The same as a 'displaymath' environment (*note displaymath::) except
+that LaTeX puts an equation number flush to the right margin.  The
+equation number is generated using the 'equation' counter.
 
-   The equation number is generated using the 'equation' counter.
-
    You should have no blank lines between '\begin{equation}' and
 '\begin{equation}', or LaTeX will tell you that there is a missing
-dollar sign, $'$'.
+dollar sign.
 
-   Note that the 'amsmath' package has extensive displayed equation
-facilities.  Those facilities are the best approach for such output in
-new documents.
+   The package 'amsmath' package has extensive displayed equation
+facilities.  New documents should include this package.
 
 
 File: latex2e.info,  Node: figure,  Next: filecontents,  Prev: equation,  Up: Environments
@@ -2837,27 +3426,34 @@
 Synopsis:
 
      \begin{figure}[PLACEMENT]
-       figure body
-     \caption[LOFTITLE]{TITLE}
-     \label{LABEL}
+       FIGURE BODY
+       \caption[LOFTITLE]{TITLE}  % optional
+       \label{LABEL}              % optional
      \end{figure}
 
-   or
+or:
 
      \begin{figure*}[PLACEMENT]
-       figure body
-     \caption[LOFTITLE]{TITLE}
-     \label{LABEL}
+       FIGURE BODY
+       \caption[LOFTITLE]{TITLE}  % optional
+       \label{LABEL}              % optional
      \end{figure*}
 
-   A class of floats (*note Floats::).  Because they cannot be split
-across pages, they are not typeset in sequence with the normal text but
-instead are "floated" to a convenient place, such as the top of a
-following page.
+   Figures are for material that is not part of the normal text.  An
+example is material that you cannot have split between two pages, such
+as a graphic.  Because of this, LaTeX does not typeset figures in
+sequence with normal text but instead "floats" them to a convenient
+place, such as the top of a following page (*note Floats::).
 
-   For the possible values of PLACEMENT and their effect on the float
-placement algorithm, see *note Floats::.
+   The FIGURE BODY can consist of imported graphics (*note Graphics::),
+or text, LaTeX commands, etc.  It is typeset in a 'parbox' of width
+'\textwidth'.
 
+   The possible values of PLACEMENT are 'h' for 'here', 't' for 'top',
+'b' for 'bottom', and 'p' for 'on a separate page of floats'.  For the
+effect of these options on the float placement algorithm, see *note
+Floats::.
+
    The starred form 'figure*' is used when a document is in
 double-column mode (*note \twocolumn::).  It produces a figure that
 spans both columns, at the top of the page.  To add the possibility of
@@ -2864,20 +3460,18 @@
 placing at a page bottom see the discussion of PLACEMENT 'b' in *note
 Floats::.
 
-   The figure body is typeset in a 'parbox' of width '\textwidth' and so
-it can contain text, commands, etc.
-
    The label is optional; it is used for cross references (*note Cross
 references::).  The optional '\caption' command specifies caption text
 for the figure.  By default it is numbered.  If LOFTITLE is present, it
-is used in the list of figures instead of TITLE (*note Tables of
-contents::).
+is used in the list of figures instead of TITLE (*note Table of contents
+etc.::).
 
-   This example makes a figure out of a graphic.  It requires one of the
-packages 'graphics' or 'graphicx'.  The graphic, with its caption, will
-be placed at the top of a page or, if it is pushed to the end of the
-document, on a page of floats.
+   This example makes a figure out of a graphic.  LaTeX will place that
+graphic and its caption at the top of a page or, if it is pushed to the
+end of the document, on a page of floats.
 
+     \usepackage{graphicx}  % in preamble
+       ...
      \begin{figure}[t]
        \centering
        \includegraphics[width=0.5\textwidth]{CTANlion.png}
@@ -2896,7 +3490,7 @@
        TEXT
      \end{filecontents}
 
-   or
+or
 
      \begin{filecontents*}{FILENAME}
        TEXT
@@ -2930,7 +3524,7 @@
      Article by \myname.
      \end{document}
 
-   produces this file 'JH.sty'.
+produces this file 'JH.sty'.
 
      %% LaTeX2e file `JH.sty'
      %% generated by the `filecontents' environment
@@ -2944,16 +3538,31 @@
 8.12 'flushleft'
 ================
 
+Synopsis:
+
      \begin{flushleft}
-     LINE1 \\
-     LINE2 \\
-     ...
+       LINE1 \\
+       LINE2 \\
+       ...
      \end{flushleft}
 
-   The 'flushleft' environment allows you to create a paragraph
-consisting of lines that are flush to the left-hand margin and ragged
-right.  Each line must be terminated with the string '\\'.
+   An environment that creates a paragraph whose lines are flush to the
+left-hand margin, and ragged right.  If you have lines that are too long
+then LaTeX will linebreak them in a way that avoids hyphenation and
+stretching or shrinking spaces.  To force a new line use a double
+backslash, '\\'.  For the declaration form see *note \raggedright::.
 
+   This creates a box of text that is at most 3 inches wide, with the
+text flush left and ragged right.
+
+     \noindent\begin{minipage}{3in}
+     \begin{flushleft}
+       A long sentence that will be broken by \LaTeX{}
+         at a convenient spot. \\
+       And, a fresh line forced by the double backslash.
+     \end{flushleft}
+     \end{minipage}
+
 * Menu:
 
 * \raggedright::        Declaration form of the 'flushleft' environment.
@@ -2964,10 +3573,20 @@
 8.12.1 '\raggedright'
 ---------------------
 
-The '\raggedright' declaration corresponds to the 'flushleft'
-environment.  This declaration can be used inside an environment such as
-'quote' or in a 'parbox'.
+Synopses:
 
+     {\raggedright  ... }
+
+or
+
+     \begin{ENVIRONMENT} \raggedright
+       ...
+     \end{ENVIRONMENT}
+
+   A declaration which causes lines to be flush to the left margin and
+ragged right.  It can be used inside an environment such as 'quote' or
+in a 'parbox'.  For the environment form see *note flushleft::.
+
    Unlike the 'flushleft' environment, the '\raggedright' command does
 not start a new paragraph; it only changes how LaTeX formats paragraph
 units.  To affect a paragraph unit's format, the scope of the
@@ -2974,6 +3593,16 @@
 declaration must contain the blank line or '\end' command that ends the
 paragraph unit.
 
+   Here '\raggedright' in each second column keeps LaTeX from doing very
+awkward typesetting to fit the text into the narrow column.  Note that
+'\raggedright' is inside the curly braces '{...}' to delimit its effect.
+
+     \begin{tabular}{rp{2in}}
+       Team alpha  &{\raggedright This team does all the real work.} \\
+       Team beta   &{\raggedright This team ensures that the water
+                     cooler is never empty.}                         \\
+     \end{tabular}
+
 
 File: latex2e.info,  Node: flushright,  Next: itemize,  Prev: flushleft,  Up: Environments
 
@@ -2981,15 +3610,20 @@
 =================
 
      \begin{flushright}
-     LINE1 \\
-     LINE2 \\
-     ...
+       LINE1 \\
+       LINE2 \\
+       ...
      \end{flushright}
 
-   The 'flushright' environment allows you to create a paragraph
-consisting of lines that are flush to the right-hand margin and ragged
-left.  Each line must be terminated with the control sequence '\\'.
+   An environment that creates a paragraph whose lines are flush to the
+right-hand margin and ragged left.  If you have lines that are too long
+to fit the margins then LaTeX will linebreak them in a way that avoids
+hyphenation and stretching or shrinking spaces.  To force a new line use
+a double backslash, '\\'.  For the declaration form see *note
+\raggedleft::.
 
+   For an example related to this environment, see *note flushleft::.
+
 * Menu:
 
 * \raggedleft::   Declaration form of the 'flushright' environment.
@@ -3000,10 +3634,20 @@
 8.13.1 '\raggedleft'
 --------------------
 
-The '\raggedleft' declaration corresponds to the 'flushright'
-environment.  This declaration can be used inside an environment such as
-'quote' or in a 'parbox'.
+Synopses:
 
+     {\raggedleft  ... }
+
+or
+
+     \begin{ENVIRONMENT} \raggedleft
+       ...
+     \end{ENVIRONMENT}
+
+   A declaration which causes lines to be flush to the right margin and
+ragged left.  It can be used inside an environment such as 'quote' or in
+a 'parbox'.  For the environment form see *note flushright::.
+
    Unlike the 'flushright' environment, the '\raggedleft' command does
 not start a new paragraph; it only changes how LaTeX formats paragraph
 units.  To affect a paragraph unit's format, the scope of the
@@ -3010,6 +3654,8 @@
 declaration must contain the blank line or '\end' command that ends the
 paragraph unit.
 
+   For an example related to this environment, see *note \raggedright::.
+
 
 File: latex2e.info,  Node: itemize,  Next: letter,  Prev: flushright,  Up: Environments
 
@@ -3019,19 +3665,16 @@
 Synopsis:
 
      \begin{itemize}
-     \item[OPTIONAL LABEL OF FIRST ITEM] text of first item
-     \item[OPTIONAL LABEL OF SECOND ITEM] text of second item
-     ...
+       \item[OPTIONAL LABEL OF FIRST ITEM] TEXT OF FIRST ITEM
+       \item[OPTIONAL LABEL OF SECOND ITEM] TEXT OF SECOND ITEM
+       ...
      \end{itemize}
 
-   The 'itemize' environment produces an "unordered", "bulleted" list.
-The format of the label numbering depends on the nesting level of this
-environment; see below.  Each 'itemize' list environment must have at
-least one item; having none causes the LaTeX error 'Something's
-wrong--perhaps a missing \item'.
+   Produce a list that is unordered, sometimes called a bullet list.
+The environment must have at least one '\item'; having none causes the
+LaTeX error 'Something's wrong--perhaps a missing \item'.
 
-   This example gives a two-item list.  As a top-level list each label
-would come out as a bullet, *.
+   This gives a two-item list.
 
      \begin{itemize}
       \item Pencil and watercolor sketch by Cassandra
@@ -3038,6 +3681,9 @@
       \item Rice portrait
      \end{itemize}
 
+As a top-level list each label would come out as a bullet, *.  The
+format of the labeling depends on the nesting level; see below.
+
    Start list items with the '\item' command (*note \item::).  If you
 give '\item' an optional argument by following it with square brackets,
 as in '\item[Optional label]', then by default it will appear in bold
@@ -3049,7 +3695,7 @@
 deep.  They can also be nested within other paragraph-making
 environments, such as 'enumerate' (*note enumerate::).  The 'itemize'
 environment uses the commands '\labelitemi' through '\labelitemiv' to
-produce the default label (this also uses the convention of lower case
+produce the default label (this also uses the convention of lowercase
 roman numerals at the end of the command names that signify the nesting
 level).  These are the default marks at each level.
 
@@ -3067,7 +3713,7 @@
    The distance between the left margin of the enclosing environment and
 the left margin of the 'itemize' list is determined by the parameters
 '\leftmargini' through '\leftmarginvi'.  (Note the convention of using
-lower case roman numerals a the end of the command name to denote the
+lowercase roman numerals a the end of the command name to denote the
 nesting level.)  The defaults are: '2.5em' in level 1 ('2em' in
 two-column mode), '2.2em' in level 2, '1.87em' in level 3, and '1.7em'
 in level 4, with smaller values for more deeply nested levels.
@@ -3086,8 +3732,8 @@
    Especially for lists with short items, it may be desirable to elide
 space between items.  Here is an example defining an 'itemize*'
 environment with no extra spacing between items, or between paragraphs
-within a single item ('\parskip' is not list-specific, *note
-\parskip::):
+within a single item ('\parskip' is not list-specific, *note \parindent
+& \parskip::):
 
      \newenvironment{itemize*}%
        {\begin{itemize}%
@@ -3113,31 +3759,31 @@
 Synopsis:
 
      \begin{list}{LABELING}{SPACING}
-     \item[OPTIONAL LABEL OF FIRST ITEM] text of first item
-     \item[OPTIONAL LABEL OF SECOND ITEM] text of second item
-     ...
+       \item[OPTIONAL LABEL OF FIRST ITEM] TEXT OF FIRST ITEM
+       \item[OPTIONAL LABEL OF SECOND ITEM] TEXT OF SECOND ITEM
+       ...
      \end{list}
 
-   The 'list' environment is a generic environment for constructing more
-specialized lists.  It is most often used to create lists via the
-'description', 'enumerate', and 'itemize' environments (*note
-description::, *note enumerate::, and *note itemize::).
+   An environment for constructing lists.
 
-   Also, many standard LaTeX environments that are not visually lists
-are constructed using 'list', including 'quotation', 'quote', 'center',
-'verbatim', and plenty more (*note quotation and quote::, *note
-center::, *note flushright::).
+   Note that this environment does not typically appear in the document
+body.  Most lists created by LaTeX authors are the ones that come
+standard: the 'description', 'enumerate', and 'itemize' environments
+(*note description::, *note enumerate::, and *note itemize::).
 
-   The third-party package 'enumitem' is useful for customizing lists.
-Here, we describe the 'list' environment by defining a new custom
-environment.
+   Instead, the 'list' environment is most often used in macros.  For
+example, many standard LaTeX environments that do not immediately appear
+to be lists are in fact constructed using 'list', including 'quotation',
+'quote', and 'center' (*note quotation & quote::, *note center::).
 
+   This uses the 'list' environment to define a new custom environment.
+
      \newcounter{namedlistcounter}  % number the items
      \newenvironment{named}
        {\begin{list}
-          {Item~\Roman{namedlistcounter}.} % labeling argument
-          {\usecounter{namedlistcounter}   % spacing argument
-           \setlength{\leftmargin}{3.5em}} % still spacing arg
+          {Item~\Roman{namedlistcounter}.} % labeling
+          {\usecounter{namedlistcounter}   % set counter
+           \setlength{\leftmargin}{3.5em}} % set spacing
        }
        {\end{list}}
 
@@ -3147,42 +3793,45 @@
        \item Shows as ``Item~II.''
      \end{named}
 
-   The 'list' environment's mandatory first argument, LABELING,
-specifies the default labeling of list items.  It can contain text and
-LaTeX commands, as above where it contains both 'Item' and
-'\Roman{...}'.  LaTeX forms the label by putting the LABELING argument
-in a box of width '\labelwidth'.  If the label is wider than that, the
-additional material extends to the right.  When making an instance of a
-list you can override the default labeling by giving '\item' an optional
-argument by including square braces and the text, as in the above
-'\item[Special label.]'; *note \item::.
+   The mandatory first argument LABELING specifies the default labeling
+of list items.  It can contain text and LaTeX commands, as above where
+it contains both 'Item' and '\Roman{...}'.  LaTeX forms the label by
+putting the LABELING argument in a box of width '\labelwidth'.  If the
+label is wider than that, the additional material extends to the right.
+When making an instance of a list you can override the default labeling
+by giving '\item' an optional argument by including square braces and
+the text, as in the above '\item[Special label.]'; *note \item::.
 
-   The label box is constructed by the command '\makelabel'.  By default
-it positions the contents flush right.  It takes one argument, the
-label.  It typesets the contents in LR mode.  An example of changing its
-definition is that to the above example before the definition of the
-'named' environment add '\newcommand{\namedmakelabel}[1]{\textsc{#1}}',
-and between the '\setlength' command and the parenthesis that closes the
-SPACING argument also add '\let\makelabel\namedmakelabel'.  Then the
-items will be typeset in small caps.  Similarly, changing the second
-code line to '\let\makelabel\fbox' puts the labels inside a framed box.
-Another example is at the bottom of this entry.
+   The mandatory second argument SPACING has a list of commands.  This
+list can be empty.  A command that can go in here is
+'\usecounter{COUNTERNAME}' (*note \usecounter::).  Use this to tell
+LaTeX to number the items using the given counter.  The counter will be
+reset to zero each time LaTeX enters the environment, and the counter is
+incremented by one each time LaTeX encounters an '\item' that does not
+have an optional argument.
 
-   The mandatory second argument SPACING can have a list of commands to
-redefine the spacing parameters for the list, such as
-'\setlength{\labelwidth}{2em}'.  If this argument is empty, i.e., '{}',
-then the list will have the default spacing given below.  To number the
-items using a counter, put '\usecounter{COUNTERNAME}' in this argument
-(*note \usecounter::).
+   Another command that can go in SPACING is '\makelabel', which
+constructs the label box.  By default it puts the contents flush right.
+Its only argument is the label, which it typesets in LR mode (*note
+Modes::).  One example of changing its definition is that to the above
+'named' example, before the definition of the environment add
+'\newcommand{\namedmakelabel}[1]{\textsc{#1}}', and between the
+'\setlength' command and the parenthesis that closes the SPACING
+argument also add '\let\makelabel\namedmakelabel'.  Then the items will
+be typeset in small caps.  Similarly, changing the second code line to
+'\let\makelabel\fbox' puts the labels inside a framed box.  Another
+example of the '\makelabel' command is below, in the definition of the
+'redlabel' environment.
 
-   Below are the spacing parameters for list formatting.  See also the
-figure below.  Each is a length (*note Lengths::).  The vertical spaces
-are normally rubber lengths, with 'plus' and 'minus' components, to give
-TeX flexibility in setting the page.  Change each with a command such as
+   Also often in SPACING are commands to redefine the spacing for the
+list.  Below are the spacing parameters with their default values.
+(Default values for derived environments such as 'itemize' can be
+different than the values shown here.)  See also the figure that follows
+the list.  Each is a length (*note Lengths::).  The vertical spaces are
+normally rubber lengths, with 'plus' and 'minus' components, to give TeX
+flexibility in setting the page.  Change each with a command such as
 '\setlength{itemsep}{2pt plus1pt minus1pt}'.  For some effects these
-lengths should be zero or negative.  Default values for derived
-environments such as 'itemize' can be changed from the values shown here
-for the basic 'list'.
+lengths should be zero or negative.
 
 '\itemindent'
      Extra horizontal space indentation, beyond 'leftmargin', of the
@@ -3279,13 +3928,14 @@
 
 '\topsep'
      Vertical space added to both the top and bottom of the list, in
-     addition to '\parskip' (*note \parskip::).  The defaults for the
-     first three levels in LaTeX's 'article', 'book', and 'report'
-     classes at 10 point size are: '8pt plus2pt minus4pt', '4pt plus2pt
-     minus1pt', and '2pt plus1pt minus1pt'.  The defaults at 11 point
-     are: '9pt plus3pt minus5pt', '4.5pt plus2pt minus1pt', and '2pt
-     plus1pt minus1pt'.  The defaults at 12 point are: '10pt plus4pt
-     minus6pt', '5pt plus2.5pt minus1pt', and '2.5pt plus1pt minus1pt'.
+     addition to '\parskip' (*note \parindent & \parskip::).  The
+     defaults for the first three levels in LaTeX's 'article', 'book',
+     and 'report' classes at 10 point size are: '8pt plus2pt minus4pt',
+     '4pt plus2pt minus1pt', and '2pt plus1pt minus1pt'.  The defaults
+     at 11 point are: '9pt plus3pt minus5pt', '4.5pt plus2pt minus1pt',
+     and '2pt plus1pt minus1pt'.  The defaults at 12 point are: '10pt
+     plus4pt minus6pt', '5pt plus2.5pt minus1pt', and '2.5pt plus1pt
+     minus1pt'.
 
    This shows the horizontal and vertical distances.
 
@@ -3327,6 +3977,9 @@
      appears in the source above the environment; whether a blank line
      appears in the source below the environment does not matter.)
 
+H0
+     '\labelwidth'
+
 H1
      '\labelsep'
 
@@ -3368,8 +4021,11 @@
      The page breaking penalty for breaking after a list (default
      '-51').
 
+   The package 'enumitem' is useful for customizing lists.
+
    This example has the labels in red.  They are numbered, and the left
-edge of the label lines up with the left edge of the item text.
+edge of the label lines up with the left edge of the item text.  *Note
+\usecounter::.
 
      \usepackage{color}
      \newcounter{cnt}
@@ -3402,7 +4058,8 @@
 
      \item text of item
 
-   or
+or
+
      \item[OPTIONAL-LABEL] text of item
 
    An entry in a list.  The entries are prefixed by a label, whose
@@ -3493,21 +4150,108 @@
 8.18 'minipage'
 ===============
 
+Synopses:
+
+     \begin{minipage}{WIDTH}
+       CONTENTS
+     \end{minipage}
+
+or
+
      \begin{minipage}[POSITION][HEIGHT][INNER-POS]{WIDTH}
-     TEXT
+       CONTENTS
      \end{minipage}
 
-   The 'minipage' environment typesets its body TEXT in a block that
-will not be broken across pages.  This is similar to the '\parbox'
-command (*note \parbox::), but unlike '\parbox', other paragraph-making
-environments can be used inside a minipage.
+   Put CONTENTS into a box that is WIDTH wide.  This is like a small
+version of a page; it can contain its own footnotes, itemized lists,
+etc.  (There are some restrictions, including that it cannot have
+floats.)  This box will not be broken across pages.  So 'minipage' is
+similar to '\parbox' (*note \parbox::) but here you can have paragraphs.
 
-   The arguments are the same as for '\parbox' (*note \parbox::).
+   This example will be 3 inches wide, and has two paragraphs.
 
-   By default, paragraphs are not indented in the 'minipage'
-environment.  You can restore indentation with a command such as
-'\setlength{\parindent}{1pc}' command.
+     \begin{minipage}{3in}
+       Stephen Kleene was a founder of the Theory of Computation.
 
+       He was a student of Church, wrote three influential texts,
+       was President of the Association for Symbolic Logic,
+       and won the National Medal of Science.
+     \end{minipage}
+
+See below for a discussion of the paragraph indent inside a 'minipage'.
+
+   The required argument WIDTH is a rigid length (*note Lengths::).  It
+gives the width of the box into which CONTENTS are typeset.
+
+   There are three optional arguments, POSITION, HEIGHT, and INNER-POS.
+You need not include all three.  For example, get the default POSITION
+and set the HEIGHT with '\begin{minipage}[c][2.54cm] CONTENTS
+\end{minipage}'.  (Get the natural height with an empty argument, '[]'.)
+
+   The optional argument POSITION governs how the 'minipage' vertically
+aligns with the surrounding material.
+
+'c'
+     (synonym 'm') Default.  Positions the 'minipage' so its vertical
+     center lines up with the center of the adjacent text line (what
+     Plain TeX calls '\vcenter').
+
+'t'
+     Match the top line in the 'minipage' with the baseline of the
+     surrounding text (Plain TeX's '\vtop'.
+
+'b'
+     Match the bottom line in the 'minipage' with the baseline of the
+     surrounding text (Plain TeX's '\vbox'.
+
+   To see the effects of these, contrast running this
+
+     ---\begin{minipage}[c]{0.25in}
+       first\\ second\\ third
+     \end{minipage}
+
+with the results of changing 'c' to 'b' or 't'.
+
+   The optional argument HEIGHT is a rigid length (*note Lengths::).  It
+sets the height of the 'minipage'.  You can enter any value larger than,
+or equal to, or smaller than the 'minipage''s natural height and LaTeX
+will not give an error or warning.  You can also set it to a height of
+zero or a negative value.
+
+   The final optional argument INNER-POS controls the placement of
+CONTENT inside the box.  These are the possible values are (the default
+is the value of POSITION).
+
+'t'
+     Place CONTENT at the top of the box.
+
+'c'
+     Place it in the vertical center.
+
+'b'
+     Place it at the box bottom.
+
+'s'
+     Stretch CONTENTS out vertically; it must contain vertically
+     stretchable space.
+
+   The INNER-POS argument makes sense when the HEIGHT options is set to
+a value larger than the 'minipage''s natural height.  To see the effect
+of the options, run this example with the various choices in place of
+'b'.
+
+     Text before
+     \begin{center}
+       ---\begin{minipage}[c][3in][b]{0.25\textwidth}
+            first\\ second\\ third
+       \end{minipage}
+     \end{center}
+     Text after
+
+   By default paragraphs are not indented in a 'minipage'.  Change that
+with a command such as '\setlength{\parindent}{1pc}' at the start of
+CONTENTS.
+
    Footnotes in a 'minipage' environment are handled in a way that is
 particularly useful for putting footnotes in figures or tables.  A
 '\footnote' or '\footnotetext' command puts the footnote at the bottom
@@ -3515,384 +4259,681 @@
 '\mpfootnote' counter instead of the ordinary 'footnote' counter (*note
 Counters::).
 
-   However, don't put one minipage inside another if you are using
-footnotes; they may wind up at the bottom of the wrong minipage.
+   This puts the footnote at the bottom of the table, not the bottom of
+the page.
 
+     \begin{center}           % center the minipage on the line
+     \begin{minipage}{2.5in}
+       \begin{center}         % center the table inside the minipage
+         \begin{tabular}{ll}
+           \textsc{Monarch}  &\textsc{Reign}             \\ \hline
+           Elizabeth II      &63 years\footnote{to date} \\
+           Victoria          &63 years                   \\
+           George III        &59 years
+         \end{tabular}
+       \end{center}
+     \end{minipage}
+     \end{center}
+
+   If you nest minipages then there is an oddness when using footnotes.
+Footnotes appear at the bottom of the text ended by the next
+'\end{minipage}' which may not be their logical place.
+
+   This puts a table containing data side by side with a map graphic.
+They are vertically centered.
+
+     \newcommand*{\vcenteredhbox}[1]{\begin{tabular}{@{}c@{}}#1\end{tabular}}
+       ...
+     \begin{center}
+       \vcenteredhbox{\includegraphics[width=0.3\textwidth]{nyc.png}}
+       \hspace{0.1\textwidth}
+       \begin{minipage}{0.5\textwidth}
+         \begin{tabular}{r|l}
+           \multicolumn{1}{r}{Borough} &Pop (million)  \\ \hline
+           The Bronx      &$1.5$  \\
+           Brooklyn       &$2.6$  \\
+           Manhattan      &$1.6$  \\
+           Queens         &$2.3$  \\
+           Staten Island  &$0.5$
+         \end{tabular}
+       \end{minipage}
+     \end{center}
+
 
-File: latex2e.info,  Node: picture,  Next: quotation and quote,  Prev: minipage,  Up: Environments
+File: latex2e.info,  Node: picture,  Next: quotation & quote,  Prev: minipage,  Up: Environments
 
 8.19 'picture'
 ==============
 
+Synopses:
+     \begin{picture}(WIDTH,HEIGHT)
+        PICTURE COMMANDS
+     \end{picture}
+
+or
+
      \begin{picture}(WIDTH,HEIGHT)(XOFFSET,YOFFSET)
-     ... PICTURE COMMANDS ...
+       PICTURE COMMANDS
      \end{picture}
 
-   The 'picture' environment allows you to create just about any kind of
-picture you want containing text, lines, arrows and circles.  You tell
-LaTeX where to put things in the picture by specifying their
-coordinates.  A coordinate is a number that may have a decimal point and
-a minus sign--a number like '5', '0.3' or '-3.1416'.  A coordinate
-specifies a length in multiples of the unit length '\unitlength', so if
-'\unitlength' has been set to '1cm', then the coordinate 2.54 specifies
-a length of 2.54 centimeters.
+   An environment to create simple pictures containing lines, arrows,
+boxes, circles, and text.  Note that while this environment is not
+obsolete, new documents typically use much more powerful graphics
+creation systems, such as 'TikZ', 'PSTricks', 'MetaPost', or
+'Asymptote'.  These are not covered in this document; see CTAN.
 
-   You should only change the value of '\unitlength', using the
-'\setlength' command, outside of a 'picture' environment.  The default
-value is '1pt'.
+   This shows the parallelogram law for adding vectors.
 
-   The 'picture' package redefine the 'picture' environment so that
-everywhere a number is used in a PICTURE COMMANDS to specify a
-coordinate, one can use alternatively a length.  Be aware however that
-this will prevent scaling those lengths by changing '\unitlength'.
+     \setlength{\unitlength}{1cm}
+     \begin{picture}(6,6)      % picture box will be 6cm wide by 6cm tall
+       \put(0,0){\vector(2,1){4}}  % for every 2 over this vector goes 1 up
+         \put(2,1){\makebox(0,0)[l]{\ first leg}}
+       \put(4,2){\vector(1,2){2}}
+         \put(5,4){\makebox(0,0)[l]{\ second leg}}
+       \put(0,0){\line(1,1){6}}
+         \put(3,3){\makebox(0,0)[r]{sum\ }}
+     \end{picture}
 
-   A "position" is a pair of coordinates, such as '(2.4,-5)', specifying
-the point with x-coordinate '2.4' and y-coordinate '-5'.  Coordinates
-are specified in the usual way with respect to an origin, which is
-normally at the lower-left corner of the picture.  Note that when a
-position appears as an argument, it is not enclosed in braces; the
-parentheses serve to delimit the argument.
+   You can also use this environment to place arbitrary material at an
+exact location.
 
-   The 'picture' environment has one mandatory argument which is a
-position (WIDTH,HEIGHT), which specifies the size of the picture.  The
-environment produces a rectangular box with these WIDTH and HEIGHT.
+     \usepackage{color,graphicx}  % in preamble
+       ...
+     \begin{center}
+     \setlength{\unitlength}{\textwidth}
+     \begin{picture}(1,1)      % leave space, \textwidth wide and tall
+       \put(0,0){\includegraphics[width=\textwidth]{desertedisland.jpg}}
+       \put(0.25,0.35){\textcolor{red}{X Treasure here}}
+     \end{picture}
+     \end{center}
 
-   The 'picture' environment also has an optional position argument
-(XOFFSET,YOFFSET), following the size argument, that can change the
-origin.  (Unlike ordinary optional arguments, this argument is not
-contained in square brackets.)  The optional argument gives the
-coordinates of the point at the lower-left corner of the picture
-(thereby determining the origin).  For example, if '\unitlength' has
-been set to '1mm', the command
+The red X will be precisely a quarter of the '\linewidth' from the left
+margin, and '0.35\linewidth' up from the bottom.  Another example of
+this usage is to put similar code in the page header to get repeat
+material on each of a document's pages.
 
+   The 'picture' environment has one required argument, a pair of
+numbers (WIDTH,HEIGHT).  Multiply these by the value '\unitlength' to
+get the nominal size of the output, the space that LaTeX reserves on the
+output page.  This nominal size need not be how large the picture really
+is; LaTeX will draw things from the picture outside the picture's box.
+
+   This environment also has an optional argument (XOFFSET,YOFFSET).  It
+is used to shift the origin.  Unlike most optional arguments, this one
+is not contained in square brackets.  As with the required argument, it
+consists of two real numbers.  Multiply these by '\unitlength' to get
+the point at the lower-left corner of the picture.
+
+   For example, if '\unitlength' has been set to '1mm', the command
+
      \begin{picture}(100,200)(10,20)
 
-produces a picture of width 100 millimeters and height 200 millimeters,
-whose lower-left corner is the point (10,20) and whose upper-right
-corner is therefore the point (110,220).  When you first draw a picture,
-you typically omit the optional argument, leaving the origin at the
-lower-left corner.  If you then want to modify your picture by shifting
-everything, you can just add the appropriate optional argument.
+produces a box of width 100 millimeters and height 200 millimeters.  The
+picture's origin is the point (10mm,20mm) and so the lower-left corner
+is there, and the upper-right corner is at (110mm,220mm).  When you
+first draw a picture you typically omit the optional argument, leaving
+the origin at the lower-left corner.  If you then want to modify your
+picture by shifting everything, you can just add the appropriate
+optional argument.
 
-   The environment's mandatory argument determines the nominal size of
-the picture.  This need bear no relation to how large the picture really
-is; LaTeX will happily allow you to put things outside the picture, or
-even off the page.  The picture's nominal size is used by LaTeX in
-determining how much room to leave for it.
+   Each PICTURE COMMAND tells LaTeX where to put something by naming its
+position.  A "position" is a pair such as '(2.4,-5)' giving the x- and
+y-coordinates.  A "coordinate" is a not a length, it is a real number
+(it may have a decimal point or a minus sign).  It specifies a length in
+multiples of the unit length '\unitlength', so if '\unitlength' has been
+set to '1cm', then the coordinate 2.54 specifies a length of 2.54
+centimeters.
 
-   Everything that appears in a picture is drawn by the '\put' command.
-The command
+   LaTeX's default for '\unitlength' is '1pt'.  it is a rigid length
+(*note Lengths::).  Change it with the '\setlength' command (*note
+\setlength::).  Make this change only outside of a 'picture'
+environment.
 
-     \put (11.3,-.3){...}
+   Coordinates are given with respect to an origin, which is normally at
+the lower-left corner of the picture.  Note that when a position appears
+as an argument, as with '\put(1,2){...}', it is not enclosed in braces
+since the parentheses serve to delimit the argument.  Also, unlike in
+some computer graphics systems, larger y-coordinates are further up the
+page.
 
-puts the object specified by '...' in the picture, with its reference
-point at coordinates (11.3,-.3).  The reference points for various
-objects will be described below.
+   There are four ways to put things in a picture: '\put', '\multiput',
+'\qbezier', and '\graphpaper'.  The most often used is '\put'.  This
 
-   The '\put' command creates an "LR box".  You can put anything that
-can go in an '\mbox' (*note \mbox::) in the text argument of the '\put'
-command.  When you do this, the reference point will be the lower left
-corner of the box.
+     \put(11.3,-0.3){...}
 
-   The 'picture' commands are described in the following sections.
+places the object with its reference point at coordinates (11.3,-0.3).
+The reference points for various objects will be described below.  The
+'\put' command creates an "LR box" (*note Modes::).  Anything that can
+go in an '\mbox' (*note \mbox & \makebox::) can go in the text argument
+of the '\put' command.  The reference point will be the lower left
+corner of the box.  In this picture
 
+     \setlength{\unitlength}{1cm}
+     ...\begin{picture}(1,1)
+       \put(0,0){\line(1,0){1}}
+       \put(0,0){\line(1,1){1}}
+     \end{picture}
+
+the three dots are just slightly left of the point of the angle formed
+by the two lines.  (Also, '\line(1,1){1}' does not call for a line of
+length one; rather the line has a change in the x coordinate of 1.)
+
+   The '\multiput', 'qbezier', and 'graphpaper' commands are described
+below.
+
+   This draws a rectangle with a wavy top, using '\qbezier' for that
+curve.
+
+     \begin{picture}(3,1.5)
+       \put(0,0){\vector(1,0){8}}  % x axis
+       \put(0,0){\vector(0,1){4}}  % y axis
+       \put(2,0){\line(0,1){3}}       % left side rectangle
+       \put(4,0){\line(0,1){3.5}}     % right side
+       \qbezier(2,3)(2.5,2.9)(3,3.25)
+         \qbezier(3,3.25)(3.5,3.6)(4,3.5)
+       \thicklines                 % below here, lines are twice as thick
+       \put(2,3){\line(4,1){2}}
+       \put(4.5,2.5){\framebox{Trapezoidal Rule}}
+     \end{picture}
+
 * Menu:
 
+* \put::                Place an object at a specified place.
+* \multiput::           Draw multiple instances of an object.
+* \qbezier::            Draw a quadratic Bezier curve.
+* \graphpaper::         Draw graph paper.
+* \line::               Draw a straight line.
+* \linethickness::      Set thickness of horizontal and vertical lines.
+* \thinlines::          The default line thickness.
+* \thicklines::         A heavier line thickness.
 * \circle::             Draw a circle.
+* \oval::               Draw an oval.
+* \shortstack::         Make a stack of objects.
+* \vector::             Draw a line with an arrow.
 * \makebox (picture)::  Draw a box of the specified size.
 * \framebox (picture):: Draw a box with a frame around it.
+* \frame::              Draw a frame around an object.
 * \dashbox::            Draw a dashed box.
-* \frame::              Draw a frame around an object.
-* \line::               Draw a straight line.
-* \linethickness::      Set the line thickness.
-* \thicklines::         A heavier line thickness.
-* \thinlines::          The default line thickness.
-* \multiput::           Draw multiple instances of an object.
-* \oval::               Draw an ellipse.
-* \put::                Place an object at a specified place.
-* \shortstack::         Make a pile of objects.
-* \vector::             Draw a line with an arrow.
 
 
-File: latex2e.info,  Node: \circle,  Next: \makebox (picture),  Up: picture
+File: latex2e.info,  Node: \put,  Next: \multiput,  Up: picture
 
-8.19.1 '\circle'
-----------------
+8.19.1 '\put'
+-------------
 
 Synopsis:
 
-     \circle[*]{DIAMETER}
+     \put(XCOORD,YCOORD){CONTENT}
 
-   The '\circle' command produces a circle with a diameter as close to
-the specified one as possible.  The '*'-form of the command draws a
-solid circle.
+   Place CONTENT at the coordinate (XCOORD,YCOORD).  See the discussion
+of coordinates and '\unitlength' in *note picture::.  The CONTENT is
+processed in LR mode (*note Modes::) so it cannot contain line breaks.
 
-   Circles up to 40pt can be drawn.
+   This includes the text into the 'picture'.
 
+     \put(4.5,2.5){Apply the \textit{unpoke} move}
+
+   The reference point, the location (4.5,2.5), is the lower left of the
+text, at the bottom left of the 'A'.
+
 
-File: latex2e.info,  Node: \makebox (picture),  Next: \framebox (picture),  Prev: \circle,  Up: picture
+File: latex2e.info,  Node: \multiput,  Next: \qbezier,  Prev: \put,  Up: picture
 
-8.19.2 '\makebox'
------------------
+8.19.2 '\multiput'
+------------------
 
 Synopsis:
 
-     \makebox(WIDTH,HEIGHT)[POSITION]{TEXT}
+     \multiput(X,Y)(DELTA_X,DELTA_Y){NUM-COPIES}{OBJ}
 
-   The '\makebox' command for the picture environment is similar to the
-normal '\makebox' command except that you must specify a WIDTH and
-HEIGHT in multiples of '\unitlength'.
+   Copy OBJ a total of NUM-COPIES times, with an increment of
+DELTA_X,DELTA_Y.  The OBJ first appears at position (x,y), then at
+(x+\delta_x,y+\delta_y), and so on.
 
-   The optional argument, '[POSITION]', specifies the quadrant that your
-TEXT appears in.  You may select up to two of the following:
+   This draws a simple grid with every fifth line in bold (see also
+*note \graphpaper::).
 
-'t'
-     Moves the item to the top of the rectangle.
+     \begin{picture}(10,10)
+       \linethickness{0.05mm}
+       \multiput(0,0)(1,0){10}{\line(0,1){10}}
+       \multiput(0,0)(0,1){10}{\line(1,0){10}}
+       \linethickness{0.5mm}
+       \multiput(0,0)(5,0){3}{\line(0,1){10}}
+       \multiput(0,0)(0,5){3}{\line(1,0){10}}
+     \end{picture}
 
-'b'
-     Moves the item to the bottom.
+
+File: latex2e.info,  Node: \qbezier,  Next: \graphpaper,  Prev: \multiput,  Up: picture
 
-'l'
-     Moves the item to the left.
+8.19.3 '\qbezier'
+-----------------
 
-'r'
-     Moves the item to the right.
+Synopsis:
 
-   *Note \makebox::.
+     \qbezier(X1,Y1)(X2,Y2)(X3,Y3)
+     \qbezier[NUM](X1,Y1)(X2,Y2)(X3,Y3)
 
-
-File: latex2e.info,  Node: \framebox (picture),  Next: \dashbox,  Prev: \makebox (picture),  Up: picture
+   Draw a quadratic Bezier curve whose control points are given by the
+three required arguments '(X1,Y1)', '(X2,Y2)', and '(X3,Y3)'.  That is,
+the curve runs from (X1,Y1) to (X3,Y3), is quadratic, and is such that
+the tangent line at (X1,Y1) passes through (X2,Y2), as does the tangent
+line at (X3,Y3).
 
-8.19.3 '\framebox'
-------------------
+   This draws a curve from the coordinate (1,1) to (1,0).
 
-Synopsis:
+     \qbezier(1,1)(1.25,0.75)(1,0)
 
-     \framebox(WIDTH,HEIGHT)[POS]{...}
+The curve's tangent line at (1,1) contains (1.25,0.75), as does the
+curve's tangent line at (1,0).
 
-   The '\framebox' command is like '\makebox' (see previous section),
-except that it puts a frame around the outside of the box that it
-creates.
+   The optional argument NUM gives the number of calculated intermediate
+points.  The default is to draw a smooth curve whose maximum number of
+points is '\qbeziermax' (change this value with '\renewcommand').
 
-   The '\framebox' command produces a rule of thickness '\fboxrule', and
-leaves a space '\fboxsep' between the rule and the contents of the box.
-
 
-File: latex2e.info,  Node: \dashbox,  Next: \frame,  Prev: \framebox (picture),  Up: picture
+File: latex2e.info,  Node: \graphpaper,  Next: \line,  Prev: \qbezier,  Up: picture
 
-8.19.4 '\dashbox'
------------------
+8.19.4 '\graphpaper'
+--------------------
 
-Draws a box with a dashed line.  Synopsis:
+Synopsis:
 
-     \dashbox{DLEN}(RWIDTH,RHEIGHT)[POS]{TEXT}
+     \graphpaper(X_INIT,Y_INIT)(X_DIMEN,Y_DIMEN)
+     \graphpaper[SPACING](X_INIT,Y_INIT)(X_DIMEN,Y_DIMEN)
 
-   '\dashbox' creates a dashed rectangle around TEXT in a 'picture'
-environment.  Dashes are DLEN units long, and the rectangle has overall
-width RWIDTH and height RHEIGHT.  The TEXT is positioned at optional
-POS.
+   Draw a coordinate grid.  Requires the 'graphpap' package.  The grid's
+origin is '(X_INIT,Y_INIT)'.  Grid lines come every SPACING units (the
+default is 10).  The grid extends X_DIMEN units to the right and Y_DIMEN
+units up.  All arguments must be positive integers.
 
-   A dashed box looks best when the RWIDTH and RHEIGHT are multiples of
-the DLEN.
+   This make a grid with seven vertical lines and eleven horizontal
+lines.
 
+     \usepackage{graphpap}    % in preamble
+       ...
+     \begin{picture}(6,20)    % in document body
+       \graphpaper[2](0,0)(12,20)
+     \end{picture}
+
+The lines are numbered every ten units.
+
 
-File: latex2e.info,  Node: \frame,  Next: \line,  Prev: \dashbox,  Up: picture
+File: latex2e.info,  Node: \line,  Next: \linethickness,  Prev: \graphpaper,  Up: picture
 
-8.19.5 '\frame'
----------------
+8.19.5 '\line'
+--------------
 
 Synopsis:
 
-     \frame{TEXT}
+     \line(X_RUN,Y_RISE){TRAVEL}
 
-   The '\frame' command puts a rectangular frame around TEXT.  The
-reference point is the bottom left corner of the frame.  No extra space
-is put between the frame and the object.
+   Draw a line.  It slopes such that it vertically rises Y_RISE for
+every horizontal X_RUN.  The TRAVEL is the total horizontal change -- it
+is not the length of the vector, it is the change in x.  In the special
+case of vertical lines, where (X_RUN,Y_RISE)=(0,1), the TRAVEL gives the
+change in y.
 
-
-File: latex2e.info,  Node: \line,  Next: \linethickness,  Prev: \frame,  Up: picture
+   This draws a line starting at coordinates (1,3).
 
-8.19.6 '\line'
---------------
+     \put(1,3){\line(2,5){4}}
 
-Synopsis:
+For every over 2, this line will go up 5.  Because TRAVEL specifies that
+this goes over 4, it must go up 10.  Thus its endpoint is
+(1,3)+(4,10)=(5,13).  In particular, note that TRAVEL=4 is not the
+length of the line, it is the change in x.
 
-     \line(XSLOPE,YSLOPE){LENGTH}
+   The arguments X_RUN and Y_RISE are integers that can be positive,
+negative, or zero.  (If both are 0 then LaTeX treats the second as 1.)
+With '\put(X_INIT,Y_INIT){\line(X_RUN,Y_RISE){TRAVEL}}', if X_RUN is
+negative then the line's ending point has a first coordinate that is
+less than X_INIT.  If Y_RISE is negative then the line's ending point
+has a second coordinate that is less than Y_INIT.
 
-   The '\line' command draws a line with the given LENGTH and slope
-XSLOPE/YSLOPE.
+   If TRAVEL is negative then you get 'LaTeX Error: Bad \line or \vector
+argument.'
 
-   Standard LaTeX can only draw lines with SLOPE = x/y, where x and y
-have integer values from -6 through 6.  For lines of any slope, and
-plenty of other shapes, see 'pict2e' and many other packages on CTAN.
+   Standard LaTeX can only draw lines with a limited range of slopes
+because these lines are made by putting together line segments from
+pre-made fonts.  The two numbers X_RUN and Y_RISE must have integer
+values from -6 through 6.  Also, they must be relatively prime, so that
+(X_RUN,Y_RISE) can be (2,1) but not (4,2) (if you choose the latter then
+instead of lines you get sequences of arrowheads; the solution is to
+switch to the former).  To get lines of arbitrary slope and plenty of
+other shapes in a system like 'picture', see the package 'pict2e' on
+CTAN. Another solution is to use a full-featured graphics system such as
+'TikZ', or 'PSTricks', or 'MetaPost', or 'Asymptote'
 
 
-File: latex2e.info,  Node: \linethickness,  Next: \thicklines,  Prev: \line,  Up: picture
+File: latex2e.info,  Node: \linethickness,  Next: \thinlines,  Prev: \line,  Up: picture
 
-8.19.7 '\linethickness'
+8.19.6 '\linethickness'
 -----------------------
 
-The '\linethickness{DIM}' command declares the thickness of horizontal
-and vertical lines in a picture environment to be DIM, which must be a
-positive length.
+Synopsis:
 
-   '\linethickness' does not affect the thickness of slanted lines,
-circles, or the quarter circles drawn by '\oval'.
+     \linethickness{DIM}
 
+   Declares the thickness of subsequent horizontal and vertical lines in
+a picture to be DIM, which must be a positive length (*note Lengths::).
+It differs from '\thinlines' and '\thicklines' in that it does not
+affect the thickness of slanted lines, circles, or ovals.
+
 
-File: latex2e.info,  Node: \thicklines,  Next: \thinlines,  Prev: \linethickness,  Up: picture
+File: latex2e.info,  Node: \thinlines,  Next: \thicklines,  Prev: \linethickness,  Up: picture
 
-8.19.8 '\thicklines'
---------------------
+8.19.7 '\thinlines'
+-------------------
 
-The '\thicklines' command is an alternate line thickness for horizontal
-and vertical lines in a picture environment; cf. *note \linethickness::
-and *note \thinlines::.
+Declaration to set the thickness of subsequent lines, circles, and ovals
+in a picture environment to be 0.4pt.  This is the default thickness, so
+this command is unnecessary unless the thickness has been changed with
+either *note \linethickness:: or *note \thicklines::.
 
 
-File: latex2e.info,  Node: \thinlines,  Next: \multiput,  Prev: \thicklines,  Up: picture
+File: latex2e.info,  Node: \thicklines,  Next: \circle,  Prev: \thinlines,  Up: picture
 
-8.19.9 '\thinlines'
--------------------
+8.19.8 '\thicklines'
+--------------------
 
-The '\thinlines' command is the default line thickness for horizontal
-and vertical lines in a picture environment; cf. *note \linethickness::
-and *note \thicklines::.
+Declaration to set the thickness of subsequent lines, circles, and ovals
+in a picture environment to be 0.8pt.  See also *note \linethickness::
+and *note \thinlines::.  This command is illustrated in the Trapezoidal
+Rule example of *note picture::.
 
 
-File: latex2e.info,  Node: \multiput,  Next: \oval,  Prev: \thinlines,  Up: picture
+File: latex2e.info,  Node: \circle,  Next: \oval,  Prev: \thicklines,  Up: picture
 
-8.19.10 '\multiput'
--------------------
+8.19.9 '\circle'
+----------------
 
 Synopsis:
 
-     \multiput(X,Y)(DELTA_X,DELTA_Y){N}{OBJ}
+     \circle{DIAMETER}
+     \circle*{DIAMETER}
 
-   The '\multiput' command copies the object OBJ in a regular pattern
-across a picture.  OBJ is first placed at position (x,y), then at
-(x+\delta x,y+\delta y), and so on, N times.
+   Produces a circle with a diameter as close as possible to the
+specified one.  The '*' form produces a filled-in circle.
 
+   This draws a circle of radius 6, centered at '(5,7)'.
+
+     \put(5,7){\circle{6}}
+
+   The available radii for 'circle' are, in points, the even numbers
+from 2 to 20, inclusive.  For 'circle*' they are all the integers from 1
+to 15.
+
 
-File: latex2e.info,  Node: \oval,  Next: \put,  Prev: \multiput,  Up: picture
+File: latex2e.info,  Node: \oval,  Next: \shortstack,  Prev: \circle,  Up: picture
 
-8.19.11 '\oval'
+8.19.10 '\oval'
 ---------------
 
 Synopsis:
 
+     \oval(WIDTH,HEIGHT)
      \oval(WIDTH,HEIGHT)[PORTION]
 
-   The '\oval' command produces a rectangle with rounded corners.  The
-optional argument PORTION allows you to produce only half of the oval
-via the following:
+   Produce a rectangle with rounded corners.  The optional argument
+PORTION allows you to produce only half or a quarter of the oval.  For
+half an oval take PORTION to be one of these.
 
 't'
-     selects the top half;
+     top half
 'b'
-     selects the bottom half;
+     bottom half
 'r'
-     selects the right half;
+     right half
 'l'
-     selects the left half.
+     left half
 
-   It is also possible to produce only one quarter of the oval by
-setting PORTION to 'tr', 'br', 'bl', or 'tl'.
+   Produce only one quarter of the oval by setting PORTION to 'tr',
+'br', 'bl', or 'tl'.
 
-   The "corners" of the oval are made with quarter circles with a
-maximum radius of 20pt, so large "ovals" will look more like boxes with
-rounded corners.
+   This draws the top half of an oval that is 3 wide and 7 tall.
 
+     \put(5,7){\oval(3,7)[t]}
+
+The (5,7) is the center of the entire oval, not just the center of the
+top half.
+
+   These shapes are not ellipses.  They are rectangles whose corners are
+made with quarter circles.  These circles have a maximum radius of 20pt
+(*note \circle:: for the sizes).  Thus large ovals are just boxes with a
+small amount of corner rounding.
+
 
-File: latex2e.info,  Node: \put,  Next: \shortstack,  Prev: \oval,  Up: picture
+File: latex2e.info,  Node: \shortstack,  Next: \vector,  Prev: \oval,  Up: picture
 
-8.19.12 '\put'
---------------
+8.19.11 '\shortstack'
+---------------------
 
 Synopsis:
 
-     \put(XCOORD,YCOORD){ ... }
+     \shortstack[POSITION]{LINE 1 \\ ... }
 
-   The '\put' command places the material specified by the (mandatory)
-argument in braces at the given coordinate, (XCOORD,YCOORD).
+   Produce a vertical stack of objects.
 
-
-File: latex2e.info,  Node: \shortstack,  Next: \vector,  Prev: \put,  Up: picture
+   This labels the y axis.
 
-8.19.13 '\shortstack'
----------------------
+     \put(0,0){\vector(1,0){4}}   % x axis
+     \put(0,0){\vector(0,1){2}}   % y
+     \put(-0.25,2){\makebox[0][r]{\shortstack[r]{$y$\\ axis}}}
 
-Synopsis:
+For a short stack, the reference point is the lower left of the stack.
+In the above example the *note \mbox & \makebox:: puts the stack flush
+right in a zero width box so in total the short stack sits slightly to
+the left of the y axis.
 
-     \shortstack[POSITION]{...\\...\\...}
+   The valid positions are:
 
-   The '\shortstack' command produces a stack of objects.  The valid
-positions are:
-
 'r'
-     Move the objects to the right of the stack.
+     Make objects flush right
 'l'
-     Move the objects to the left of the stack
+     Make objects flush left
 'c'
-     Move the objects to the centre of the stack (default)
+     Center objects (default)
 
-   Objects are separated with '\\'.
+   Separate objects into lines with '\\'.  These stacks are short in
+that, unlike in a 'tabular' or 'array' environment, here the rows are
+not spaced out to be of even heights.  Thus, in
+'\shortstack{X\\o\\o\\X}' the first and last rows are taller than the
+middle two.  You can adjust row heights either by putting in the usual
+interline spacing with '\shortstack{X\\ \strut o\\o\\X}', or by hand,
+via an explicit zero-width box '\shortstack{X \\ \rule{0pt}{12pt}
+o\\o\\X}' or by using '\\''s optional argument '\shortstack{X\\[2pt]
+o\\o\\X}'.
 
+   The '\shortstack' command is also available outside the 'picture'
+environment.
+
 
-File: latex2e.info,  Node: \vector,  Prev: \shortstack,  Up: picture
+File: latex2e.info,  Node: \vector,  Next: \makebox (picture),  Prev: \shortstack,  Up: picture
 
-8.19.14 '\vector'
+8.19.12 '\vector'
 -----------------
 
 Synopsis:
 
-     \vector(XSLOPE,YSLOPE){LENGTH}
+     \vector(X_RUN,Y_RISE){TRAVEL}
 
-   The '\vector' command draws a line with an arrow of the specified
-length and slope.  The XSLOPE and YSLOPE values must lie between -4 and
-+4, inclusive.
+   Draw a line ending in an arrow.  The slope of that line is: it
+vertically rises Y_RISE for every horizontal X_RUN.  The TRAVEL is the
+total horizontal change -- it is not the length of the vector, it is the
+change in x.  In the special case of vertical vectors, if
+(X_RUN,Y_RISE)=(0,1), then TRAVEL gives the change in y.
 
+   For an example see *note picture::.
+
+   For elaboration on X_RUN and Y_RISE see *note \line::.  As there, the
+values of X_RUN and Y_RISE are limited.  For '\vector' you must chooses
+integers between -4 and 4, inclusive.  Also, the two you choose must be
+relatively prime.  Thus, '\vector(2,1){4}' is acceptable but
+'\vector(4,2){4}' is not (if you use the latter then you get a sequence
+of arrowheads).
+
 
-File: latex2e.info,  Node: quotation and quote,  Next: tabbing,  Prev: picture,  Up: Environments
+File: latex2e.info,  Node: \makebox (picture),  Next: \framebox (picture),  Prev: \vector,  Up: picture
 
-8.20 'quotation' and 'quote'
-============================
+8.19.13 '\makebox' (picture)
+----------------------------
 
 Synopsis:
 
+     \makebox(REC-WIDTH,REC-HEIGHT){TEXT}
+     \makebox(REC-WIDTH,REC-HEIGHT)[POSITION]{TEXT}
+
+   Make a box to hold TEXT.  This command fits with the 'picture'
+environment, although you can use it outside of there, because REC-WIDTH
+and REC-HEIGHT are numbers specifying distances in terms of the
+'\unitlength' (*note picture::).  This command is similar to the normal
+'\makebox' command (*note \mbox & \makebox::) except here that you must
+specify the width and height.  This command is fragile (*note
+\protect::).
+
+   This makes a box of length 3.5 times '\unitlength' and height 4 times
+'\unitlength'.
+
+     \put(1,2){\makebox(3.5,4){...}}
+
+   The optional argument 'POSITION' specifies where in the box the TEXT
+appears.  The default is to center it, both horizontally and vertically.
+To place it somewhere else, use a string with one or two of these
+letters.
+
+'t'
+     Puts TEXT the top of the box.
+
+'b'
+     Put TEXT at the bottom.
+
+'l'
+     Put TEXT on the left.
+
+'r'
+     Put TEXT on the right.
+
+
+File: latex2e.info,  Node: \framebox (picture),  Next: \frame,  Prev: \makebox (picture),  Up: picture
+
+8.19.14 '\framebox' (picture)
+-----------------------------
+
+Synopsis:
+
+     \framebox(REC-WIDTH,REC-HEIGHT){TEXT}
+     \framebox(REC-WIDTH,REC-HEIGHT)[POSITION]{TEXT}
+
+   This is the same as *note \makebox (picture):: except that it puts a
+frame around the outside of the box that it creates.  The reference
+point is the bottom left corner of the frame.  This command fits with
+the 'picture' environment, although you can use it outside of there,
+because lengths are numbers specifying the distance in terms of the
+'\unitlength' (*note picture::).  This command is fragile (*note
+\protect::).
+
+   This example creates a frame 2.5 inches by 3 inches and puts the text
+in the center.
+
+     \setlength{\unitlength}{1in}
+     \framebox(2.5,3){test text}
+
+   The required arguments are that the rectangle has overall width
+RECT-WIDTH units and height RECT-HEIGHT units.
+
+   The optional argument POSITION specifies the position of TEXT; see
+*note \makebox (picture):: for the values that it can take.
+
+   The rule has thickness '\fboxrule' and there is a blank space
+'\fboxsep' between the frame and the contents of the box.
+
+   For this command, you must specify the WIDTH and HEIGHT.  If you want
+to just put a frame around some contents whose dimension is determined
+in some other way then either use '\fbox' (*note \fbox & \framebox::) or
+'\frame' (*note \frame::).
+
+
+File: latex2e.info,  Node: \frame,  Next: \dashbox,  Prev: \framebox (picture),  Up: picture
+
+8.19.15 '\frame'
+----------------
+
+Synopsis:
+
+     \frame{CONTENTS}
+
+   Puts a rectangular frame around CONTENTS.  The reference point is the
+bottom left corner of the frame.  In contrast to '\framebox' (*note
+\framebox (picture)::), this command puts no extra space is put between
+the frame and the object.  It is fragile (*note \protect::).
+
+
+File: latex2e.info,  Node: \dashbox,  Prev: \frame,  Up: picture
+
+8.19.16 '\dashbox'
+------------------
+
+Synopsis:
+
+     \dashbox{DASH-LEN}(RECT-WIDTH,RECT-HEIGHT){TEXT}
+     \dashbox{DASH-LEN}(RECT-WIDTH,RECT-HEIGHT)[POSITION]{TEXT}
+
+   Create a dashed rectangle around TEXT.  This command fits with the
+'picture' environment, although you can use it outside of there, because
+lengths are numbers specifying the distance in terms of the
+'\unitlength' (*note picture::).
+
+   The required arguments are: dashes are DASH-LEN units long, with the
+same length gap, and the rectangle has overall width RECT-WIDTH units
+and height RECT-HEIGHT units.
+
+   The optional argument POSITION specifies the position of TEXT; see
+*note \makebox (picture):: for the values that it can take.
+
+   This shows that you can use non-integer value for DASH-LEN.
+
+     \put(0,0){\dashbox{0.1}(5,0.5){My hovercraft is full of eels.}}
+
+Each dash will be '0.1\unitlength' long, the box's width is
+'5\unitlength' and its height is '0.5\unitlength'.
+
+   As in that example, a dashed box looks best when RECT-WIDTH and
+RECT-HEIGHT are multiples of the DASH-LEN.
+
+
+File: latex2e.info,  Node: quotation & quote,  Next: tabbing,  Prev: picture,  Up: Environments
+
+8.20 'quotation' & 'quote'
+==========================
+
+Synopsis:
+
      \begin{quotation}
-     TEXT
+       TEXT
      \end{quotation}
 
-   or
+or
 
      \begin{quote}
-     TEXT
+       TEXT
      \end{quote}
 
-   Include a quotation.
+   Include a quotation.  Both environments indent margins on both sides
+by '\leftmargin' and the text is right-justified.
 
-   In both environments, margins are indented on both sides by
-'\leftmargin' and the text is justified at both.  As with the main text,
-leaving a blank line produces a new paragraph.
+   They differ in how they treat paragraphs.  In the 'quotation'
+environment, paragraphs are indented by 1.5em and the space between
+paragraphs is small, '0pt plus 1pt'.  In the 'quote' environment,
+paragraphs are not indented and there is vertical space between
+paragraphs (it is the rubber length '\parsep').
 
-   To compare the two: in the 'quotation' environment, paragraphs are
-indented by 1.5em and the space between paragraphs is small, '0pt plus
-1pt'.  In the 'quote' environment, paragraphs are not indented and there
-is vertical space between paragraphs (it is the rubber length
-'\parsep').  Thus, the 'quotation' environment may be more suitable for
-documents where new paragraphs are marked by an indent rather than by a
-vertical separation.  In addition, 'quote' may be more suitable for a
-short quotation or a sequence of short quotations.
-
-     \begin{quotation}
-     \it Four score and seven years ago
+     \begin{quotation} \small\it
+       Four score and seven years ago
        ... shall not perish from the earth.
-     \hspace{1em plus 1fill}---Abraham Lincoln
+       \hspace{1em plus 1fill}---Abraham Lincoln
      \end{quotation}
 
 
-File: latex2e.info,  Node: tabbing,  Next: table,  Prev: quotation and quote,  Up: Environments
+File: latex2e.info,  Node: tabbing,  Next: table,  Prev: quotation & quote,  Up: Environments
 
 8.21 'tabbing'
 ==============
@@ -3905,10 +4946,11 @@
      ...
      \end{tabbing}
 
-   The 'tabbing' environment aligns text in columns.  It works by
-setting tab stops and tabbing to them much as was done on a typewriter.
-It is best suited for cases where the width of each column is constant
-and known in advance.
+   Align text in columns, by setting tab stops and tabbing to them much
+as was done on a typewriter.  This is less often used than the
+environments 'tabular' (*note tabular::) or 'array' (*note array::)
+because in those the width of each column need not be constant and need
+not be known in advance.
 
    This example has a first line where the tab stops are set to explicit
 widths, ended by a '\kill' command (which is described below):
@@ -4026,7 +5068,8 @@
                  end;\\
      \end{tabbing}
 
-   The output looks like this:
+The output looks like this.
+
      function fact(n : integer) : integer;
               begin
                     if n > 1 then
@@ -4035,11 +5078,11 @@
                        fact := 1;
               end;
 
-   (The above example is just for illustration of the environment.  To
-actually typeset computer code in typewriter like this, a verbatim
-environment (*note verbatim::) would normally suffice.  For
-pretty-printed code, there are quite a few packages, including
-'algorithm2e', 'fancyvrb', 'listings', and 'minted'.)
+This example is just for illustration of the environment.  To actually
+typeset computer code in typewriter like this, a verbatim environment
+(*note verbatim::) would normally be best.  For pretty-printed code,
+there are quite a few packages, including 'algorithm2e', 'fancyvrb',
+'listings', and 'minted'.
 
 
 File: latex2e.info,  Node: table,  Next: tabular,  Prev: tabbing,  Up: Environments
@@ -4050,27 +5093,45 @@
 Synopsis:
 
      \begin{table}[PLACEMENT]
-       table body
-     \caption[LOFTITLE]{TITLE}
-     \label{LABEL}
+       TABLE BODY
+       \caption[LOFTITLE]{TITLE}  % optional
+       \label{LABEL}              % also optional
      \end{table}
 
-   A class of floats (*note Floats::).  Because they cannot be split
-across pages, they are not typeset in sequence with the normal text but
-instead are "floated" to a convenient place, such as the top of a
+   A class of floats (*note Floats::).  They cannot be split across
+pages and so they are not typeset in sequence with the normal text but
+instead are floated to a convenient place, such as the top of a
 following page.
 
+   This example 'table' environment contains a 'tabular'
+
+     \begin{table}
+       \centering\small
+       \begin{tabular}{ll}
+         \multicolumn{1}{c}{\textit{Author}}
+           &\multicolumn{1}{c}{\textit{Piece}}  \\ \hline
+         Bach            &Cello Suite Number 1  \\
+         Beethoven       &Cello Sonata Number 3 \\
+         Brahms          &Cello Sonata Number 1
+       \end{tabular}
+       \caption{Top cello pieces}
+       \label{tab:cello}
+     \end{table}
+
+but you can put many different kinds of content in a 'table', including
+text, LaTeX commands, etc.
+
    For the possible values of PLACEMENT and their effect on the float
 placement algorithm, see *note Floats::.
 
-   The table body is typeset in a 'parbox' of width '\textwidth' and so
-it can contain text, commands, etc.
+   The table body is typeset in a 'parbox' of width '\textwidth'.  It
+can contain text, commands, graphics, etc.
 
    The label is optional; it is used for cross references (*note Cross
-references::).  The optional '\caption' command specifies caption text
-for the table.  By default it is numbered.  If LOTTITLE is present, it
-is used in the list of tables instead of TITLE (*note Tables of
-contents::).
+references::).  The '\caption' command is also optional.  It specifies
+caption text for the table.  By default it is numbered.  If its optional
+LOTTITLE is present then that text is used in the list of tables instead
+of TITLE (*note Table of contents etc.::).
 
    In this example the table and caption will float to the bottom of a
 page, unless it is pushed to a float page at the end.
@@ -4095,7 +5156,7 @@
 Synopsis:
 
      \begin{tabular}[POS]{COLS}
-     column 1 entry &column 2 entry ... &column n entry \\
+       COLUMN 1 ENTRY  &COLUMN 2 ENTRY  ...  &COLUMN N ENTRY \\
        ...
      \end{tabular}
 
@@ -4102,13 +5163,13 @@
 or
 
      \begin{tabular*}{WIDTH}[POS]{COLS}
-     column 1 entry &column 2 entry ... &column n entry \\
+       COLUMN 1 ENTRY  &COLUMN 2 ENTRY  ...  &COLUMN N ENTRY \\
        ...
      \end{tabular*}
 
-   These environments produce a table, a box consisting of a sequence of
-horizontal rows.  Each row consists of items that are aligned vertically
-in columns.  This illustrates many of the features.
+   Produce a table, a box consisting of a sequence of horizontal rows.
+Each row consists of items that are aligned vertically in columns.  This
+illustrates many of the features.
 
      \begin{tabular}{l|l}
        \textit{Player name}  &\textit{Career home runs}  \\
@@ -4117,23 +5178,16 @@
        Babe Ruth   &714
      \end{tabular}
 
-   The vertical format of two left-aligned columns, with a vertical bar
-between them, is specified in 'tabular''s argument '{l|l}'.  Columns are
-separated with an ampersand '&'.  A horizontal rule between two rows is
-created with '\hline'.  The end of each row is marked with a double
-backslash '\\'.  This '\\' is optional after the last row unless an
-'\hline' command follows, to put a rule below the table.
+The output will have two left-aligned columns with a vertical bar
+between them.  This is specified in 'tabular''s argument '{l|l}'.  Put
+the entries into different columns by separating them with an ampersand,
+'&'.  The end of each row is marked with a double backslash, '\\'.  Put
+a horizontal rule below a row, after a double backslash, with '\hline'.
+This '\\' is optional after the last row unless an '\hline' command
+follows, to put a rule below the table.
 
    The required and optional arguments to 'tabular' consist of:
 
-WIDTH
-     Required for 'tabular*', not allowed for 'tabular'.  Specifies the
-     width of the 'tabular*' environment.  The space between columns
-     should be rubber, as with '@{\extracolsep{\fill}}', to allow the
-     table to stretch or shrink to make the specified width, or else you
-     are likely to get the 'Underfull \hbox (badness 10000) in alignment
-     ...' warning.
-
 POS
      Optional.  Specifies the table's vertical position.  The default is
      to align the table so its vertical center matches the baseline of
@@ -4163,27 +5217,29 @@
           A vertical line the full height and depth of the environment.
 
      '@{TEXT OR SPACE}'
-          This inserts TEXT OR SPACE at this location in every row.  The
-          TEXT OR SPACE material is typeset in LR mode.  This text is
-          fragile (*note \protect::).
+          Insert TEXT OR SPACE at this location in every row.  The TEXT
+          OR SPACE material is typeset in LR mode.  This text is fragile
+          (*note \protect::).
 
-          This specifier is optional: with no @-expression, LaTeX's
+          If between two columns there is no @-expression then LaTeX's
           'book', 'article', and 'report' classes will put on either
           side of each column a space of length '\tabcolsep', which by
-          default is '6pt'.  That is, by default adjacent columns are
-          separated by 12pt (so '\tabcolsep' is misleadingly-named since
-          it is not the separation between tabular columns).  By
-          implication, a space of 6pt also comes before the first column
+          default is 6pt.  That is, by default adjacent columns are
+          separated by 12pt (so '\tabcolsep' is misleadingly named since
+          it is only half of the separation between tabular columns).
+          In addition, a space of 6pt also comes before the first column
           and after the final column, unless you put a '@{...}' or '|'
           there.
 
-          If you override the default and use an @-expression then you
-          must insert any desired space yourself, as in
-          '@{\hspace{1em}}'.
+          If you override the default and use an @-expression then LaTeX
+          does not insert '\tabcolsep' so you must insert any desired
+          space yourself, as in '@{\hspace{1em}}'.
 
-          An empty expression '@{}' will eliminate the space, including
-          the space at the start or end, as in the example below where
-          the tabular lines need to lie on the left margin.
+          An empty expression '@{}' will eliminate the space.  In
+          particular, sometimes you want to eliminate the the space
+          before the first column or after the last one, as in the
+          example below where the tabular lines need to lie on the left
+          margin.
 
                \begin{flushleft}
                  \begin{tabular}{@{}l}
@@ -4191,9 +5247,9 @@
                  \end{tabular}
                \end{flushleft}
 
-          This example shows text, a decimal point, between the columns,
-          arranged so the numbers in the table are aligned on that
-          decimal point.
+          The next example shows text, a decimal point between the
+          columns, arranged so the numbers in the table are aligned on
+          it.
 
                \begin{tabular}{r@{$.$}l}
                  $3$ &$14$  \\
@@ -4203,18 +5259,16 @@
           An '\extracolsep{WD}' command in an @-expression causes an
           extra space of width WD to appear to the left of all
           subsequent columns, until countermanded by another
-          '\extracolsep' command.  Unlike ordinary intercolumn space,
-          this extra space is not suppressed by an @-expression.  An
-          '\extracolsep' command can be used only in an @-expression in
-          the 'cols' argument.  Below, LaTeX inserts the right amount of
+          '\extracolsep'.  Unlike ordinary intercolumn space, this extra
+          space is not suppressed by an @-expression.  An '\extracolsep'
+          command can be used only in an @-expression in the 'cols'
+          argument.  Below, LaTeX inserts the right amount of
           intercolumn space to make the entire table 4 inches wide.
 
-               \begin{center}
-                 \begin{tabular*}{4in}{l@{\ \ldots\extracolsep{\fill}}l}
-                   Seven times down, eight times up
-                   &such is life!
-                 \end{tabular*}
-               \end{center}
+               \begin{tabular*}{4in}{l@{\extracolsep{\fill}}l}
+                 Seven times down, eight times up \ldots
+                 &such is life!
+               \end{tabular*}
 
           To insert commands that are automatically executed before a
           given column, load the 'array' package and use the '>{...}'
@@ -4221,24 +5275,34 @@
           specifier.
 
      'p{WD}'
-          Each item in the column is typeset in a parbox of width WD.
+          Each item in the column is typeset in a parbox of width WD, as
+          if it were the argument of a '\parbox[t]{wd}{...}' command.
 
-          Note that a line break double backslash '\\' may not appear in
-          the item, except inside an environment like 'minipage',
-          'array', or 'tabular', or inside an explicit '\parbox', or in
-          the scope of a '\centering', '\raggedright', or '\raggedleft'
-          declaration (when used in a 'p'-column element these
-          declarations must appear inside braces, as with '{\centering
-          .. \\ ..}').  Otherwise LaTeX will misinterpret the double
-          backslash as ending the row.
+          A line break double backslash '\\' may not appear in the item,
+          except inside an environment like 'minipage', 'array', or
+          'tabular', or inside an explicit '\parbox', or in the scope of
+          a '\centering', '\raggedright', or '\raggedleft' declaration
+          (when used in a 'p'-column element these declarations must
+          appear inside braces, as with '{\centering .. \\ ..}').
+          Otherwise LaTeX will misinterpret the double backslash as
+          ending the row.  Instead, to get a line break in there use
+          '\newline' (*note \newline::).
 
      '*{NUM}{COLS}'
           Equivalent to NUM copies of COLS, where NUM is a positive
-          integer and COLS is a list of specifiers.  Thus
-          '\begin{tabular}{|*{3}{l|r}|}' is equivalent to
+          integer and COLS is a list of specifiers.  Thus the specifier
+          '\begin{tabular}{|*{3}{l|r}|}' is equivalent to the specifier
           '\begin{tabular}{|l|rl|rl|r|}'.  Note that COLS may contain
           another '*'-expression.
 
+WIDTH
+     Required for 'tabular*', not allowed for 'tabular'.  Specifies the
+     width of the 'tabular*' environment.  The space between columns
+     should be rubber, as with '@{\extracolsep{\fill}}', to allow the
+     table to stretch or shrink to make the specified width, or else you
+     are likely to get the 'Underfull \hbox (badness 10000) in alignment
+     ...' warning.
+
    Parameters that control formatting:
 
 '\arrayrulewidth'
@@ -4291,8 +5355,9 @@
 spanned by the single heading 'Name'.
 
      \begin{tabular}{lccl}
-       \textit{ID}       &\multicolumn{2}{c}{\textit{Name}} &\textit{Age} \\ \hline % row one
-       978-0-393-03701-2 &O'Brian &Patrick                  &55           \\        % row two
+       \textit{ID}       &\multicolumn{2}{c}{\textit{Name}} &\textit{Age} \\
+       \hline
+       978-0-393-03701-2 &O'Brian &Patrick                  &55           \\
          ...
      \end{tabular}
 
@@ -4317,12 +5382,12 @@
          &z                        % entry four
      \end{tabular}
 
-   Before the first entry the output will not have a vertical rule
-because the '\multicolumn' has the COLS specifier 'r' with no initial
-vertical bar.  Between entry one and entry two there will be a vertical
-rule; although the first COLS does not have an ending vertical bar, the
-second COLS does have a starting one.  Between entry two and entry three
-there is a single vertical rule; despite that the COLS in both of the
+Before the first entry the output will not have a vertical rule because
+the '\multicolumn' has the COLS specifier 'r' with no initial vertical
+bar.  Between entry one and entry two there will be a vertical rule;
+although the first COLS does not have an ending vertical bar, the second
+COLS does have a starting one.  Between entry two and entry three there
+is a single vertical rule; despite that the COLS in both of the
 surrounding 'multicolumn''s call for a vertical rule, you only get one
 rule.  Between entry three and entry four there is no vertical rule; the
 default calls for one but the COLS in the entry three '\multicolumn'
@@ -4350,7 +5415,7 @@
        Impressionistic  &1875           &1925
      \end{tabular}
 
-   Note that although the 'tabular' specification by default puts a
+Note that although the 'tabular' specification by default puts a
 vertical rule between the first and second columns, because there is no
 vertical bar in the COLS of either of the first row's '\multicolumn'
 commands, no rule appears in the first row.
@@ -4366,22 +5431,22 @@
 @-expression, although its synonym vertical bar '|' is more common.
 This command is rarely used in the body of a table; typically a table's
 vertical lines are specified in 'tabular''s COLS argument and overridden
-as needed with '\multicolumn'.
+as needed with '\multicolumn' (*note tabular::).
 
-   This example illustrates some pitfalls.  In the first line's second
-entry the '\hfill' moves the '\vline' to the left edge of the cell.  But
-that is different than putting it halfway between the two columns, so in
-that row between the first and second columns there are two vertical
+   The example below illustrates some pitfalls.  In the first row's
+second entry the '\hfill' moves the '\vline' to the left edge of the
+cell.  But that is different than putting it halfway between the two
+columns, so between the first and second columns there are two vertical
 rules, with the one from the '{c|cc}' specifier coming before the one
-produced by the '\vline\hfill'.  In contrast, the first line's third
+produced by the '\vline\hfill'.  In contrast, the first row's third
 entry shows the usual way to put a vertical bar between two columns.  In
-the second line, the 'ghi' is the widest entry in its column so in the
+the second row, the 'ghi' is the widest entry in its column so in the
 '\vline\hfill' the '\hfill' has no effect and the vertical line in that
 entry appears immediately next to the 'g', with no whitespace.
 
      \begin{tabular}{c|cc}
-       x   &\vline\hfill y   &\multicolumn{1}{|r}{z} \\
-       abc &def &\vline\hfill ghi
+       x   &\vline\hfill y   &\multicolumn{1}{|r}{z} \\ % row 1
+       abc &def &\vline\hfill ghi                       % row 2
      \end{tabular}
 
 
@@ -4394,10 +5459,10 @@
 
      \cline{I-J}
 
-   Draw a horizontal rule in an 'array' or 'tabular' environment
-beginning in column I and ending in column J.  The dash '-' must appear
-in the mandatory argument.  To span a single column use the number
-twice.
+   In an 'array' or 'tabular' environment, draw a horizontal rule
+beginning in column I and ending in column J.  The dash, '-', must
+appear in the mandatory argument.  To span a single column use the
+number twice, as with '\cline{2-2}'.
 
    This example puts two horizontal lines between the first and second
 rows, one line in the first column only, and the other spanning the
@@ -4415,7 +5480,7 @@
 8.23.4 '\hline'
 ---------------
 
-Draws a horizontal line the width of the enclosing 'tabular' or 'array'
+Draw a horizontal line the width of the enclosing 'tabular' or 'array'
 environment.  It's most commonly used to draw a line at the top, bottom,
 and between the rows of a table.
 
@@ -4438,34 +5503,52 @@
 Synopsis:
 
      \begin{thebibliography}{WIDEST-LABEL}
-     \bibitem[LABEL]{CITE_KEY}
-     ...
+       \bibitem[LABEL]{CITE_KEY}
+       ...
      \end{thebibliography}
 
-   The 'thebibliography' environment produces a bibliography or
-reference list.
+   Produce a bibliography or reference list.  There are two ways to
+produce bibliographic lists.  This environment is suitable when you have
+only a few references and can maintain the list by hand.  *Note Using
+BibTeX:: for a more sophisticated approach.
 
-   In the 'article' class, this reference list is labelled 'References'
-and the label is stored in macro '\refname'; in the 'report' class, it
-is labelled 'Bibliography' and the label is stored in macro '\bibname'.
+   This shows the environment with two entries.
 
-   You can change the label by redefining the command '\refname' or
-'\bibname', whichever is applicable depending on the class:
+     This work is based on \cite{latexdps}.
+     Together they are \cite{latexdps, texbook}.
+       ...
+     \begin{thebibliography}{9}
+     \bibitem{latexdps}
+       Leslie Lamport.
+       \textit{\LaTeX{}: a document preparation system}.
+       Addison-Wesley, Reading, Massachusetts, 1993.
+     \bibitem{texbook}
+       Donald Ervin Knuth.
+       \textit{The \TeX book}.
+       Addison-Wesley, Reading, Massachusetts, 1983.
+     \end{thebibliography}
 
-   * For standard classes whose top level sectioning is '\chapter' (such
-     as 'book' and 'report'), the label is in the macro '\bibname';
+This styles the first reference as '[1] Leslie ...', and so that
+'\cite{latexdps}' produces the matching '... based on [1]'.  The second
+'\cite' produces '[1, 2]'.  You must compile the document twice to
+resolve these references.
 
-   * For standard classes whose the top level sectioning is '\section'
-     (such as 'article'), the label is in macro '\refname'.
+   The mandatory argument WIDEST-LABEL is text that, when typeset, is as
+wide as the widest item label produced by the '\bibitem' commands.  The
+tradition is to use '9' for bibliographies with less than 10 references,
+'99' for ones with less than 100, etc.
 
-   Typically it is neither necessary nor desirable to directly redefine
-'\refname' or '\bibname'; language support packages like 'babel' do
-this.
+   The bibliographic list is headed by a title such as 'Bibliography'.
+To change it there are two cases.  In the 'book' and 'report' classes,
+where the top level sectioning is '\chapter' and the default title is
+'Bibliography', that title is in the macro '\bibname'.  For 'article',
+where the class's top level sectioning is '\section' and the default is
+'References', the title is in macro '\refname'.  Change it by redefining
+the command, as with '\renewcommand{\refname}{Cited references}' after
+'\begin{document}'.
 
-   The mandatory WIDEST-LABEL argument is text that, when typeset, is as
-wide as the widest item label produced by the '\bibitem' commands.  It
-is typically given as '9' for bibliographies with less than 10
-references, '99' for ones with less than 100, etc.
+   Language support packages such as 'babel' will automatically redefine
+'\refname' or '\bibname' to fit the selected language.
 
 * Menu:
 
@@ -4482,20 +5565,60 @@
 
 Synopsis:
 
+     \bibitem{CITE_KEY}
+
+or
+
      \bibitem[LABEL]{CITE_KEY}
 
-   The '\bibitem' command generates an entry labelled by LABEL.  If the
-LABEL argument is missing, a number is automatically generated using the
-'enumi' counter.  The CITE_KEY is a "citation key" consisting in any
-sequence of letters, numbers, and punctuation symbols not containing a
-comma.
+   Generate an entry labeled by LABEL.  The default is for LaTeX to
+generates a number using the 'enumi' counter.  The "citation key"
+CITE_KEY is a string of letters, numbers, and punctuation symbols (but
+not comma).
 
-   This command writes an entry to the '.aux' file containing the item's
-CITE_KEY and LABEL.  When the '.aux' file is read by the
-'\begin{document}' command, the item's LABEL is associated with
-'cite_key', causing references to CITE_KEY with a '\cite' command (*note
-\cite::) to produce the associated LABEL.
+   *Note thebibliography:: for an example.
 
+   The optional LABEL changes the default label from an integer to the
+given string.  With this
+
+     \begin{thebibliography}
+     \bibitem[Lamport 1993]{latexdps}
+       Leslie Lamport.
+       \textit{\LaTeX{}: a document preparation system}.
+       Addison-Wesley, Reading, Massachusetts, 1993.
+     \bibitem{texbook}
+       Donald Ervin Knuth.
+       \textit{The \TeX book}.
+       Addison-Wesley, Reading, Massachusetts, 1983.
+     \end{thebibliography}
+
+the first entry will be styled as '[Lamport 1993] Leslie ...' (The
+amount of horizontal space that LaTeX leaves for the label depends on
+the WIDEST-LABEL argument of the 'thebibliography' environment; see
+*note thebibliography::.)  Similarly, '... based on \cite{latexdps}'
+will produce '... based on [Lamport 1994]'.
+
+   If you mix '\bibitem' entries having a LABEL with those that do not
+then LaTeX will number the unlabelled ones sequentially.  In the example
+above the 'texbook' entry will appear as '[1] Donald ...', despite that
+it is the second entry.
+
+   If you use the same CITE_KEY twice then you get 'LaTeX Warning: There
+were multiply-defined labels'.
+
+   Under the hood, LaTeX remembers the CITE_KEY and LABEL information
+because '\bibitem' writes it to the auxiliary file 'FILENAME.aux'.  For
+instance, the above example causes '\bibcite{latexdps}{Lamport, 1993}'
+and '\bibcite{texbook}{1}' to appear in that file.  The '.aux' file is
+read by the '\begin{document}' command and then the information is
+available for '\cite' commands.  This explains why you need to run LaTeX
+twice to resolve references: once to write it out and once to read it
+in.
+
+   Because of this two-pass algorithm, when you add a '\bibitem' or
+change its CITE_KEY you may get 'LaTeX Warning: Label(s) may have
+changed. Rerun to get cross-references right'.  Fix it by recompiling.
+
 
 File: latex2e.info,  Node: \cite,  Next: \nocite,  Prev: \bibitem,  Up: thebibliography
 
@@ -4504,16 +5627,48 @@
 
 Synopsis:
 
+     \cite{KEYS}
+
+or
+
      \cite[SUBCITE]{KEYS}
 
-   The KEYS argument is a list of one or more citation keys (*note
-\bibitem::), separated by commas.  This command generates an in-text
-citation to the references associated with KEYS by entries in the '.aux'
-file.
+   Generate as output a citation to the references associated with KEYS.
+The mandatory KEYS is a citation key, or a comma-separated list of
+citation keys (*note \bibitem::).
 
-   The text of the optional SUBCITE argument appears after the citation.
-For example, '\cite[p.~314]{knuth}' might produce '[Knuth, p. 314]'.
+   This
 
+     The ultimate source is \cite{texbook}.
+       ...
+     \begin{thebibliography}
+     \bibitem{texbook}
+       Donald Ervin Knuth.
+       \textit{The \TeX book}.
+       Addison-Wesley, Reading, Massachusetts, 1983.
+     \end{thebibliography}
+
+produces the output '... source is [1]'.
+
+   The optional argument SUBCITE is appended to the citation.  For
+example, 'See 14.3 in \cite[p.~314]{texbook}' might produce 'See 14.3 in
+[1, p. 314]'.
+
+   If KEYS is not in your bibliography information then you get 'LaTeX
+Warning: There were undefined references', and in the output the
+citation shows as a boldface question mark between square brackets.
+There are two possible causes.  If you have mistyped something, as in
+'\cite{texbok}' then you need to correct the spelling.  On the other
+hand, if you have just added or modified the bibliographic information
+and so changed the '.aux' file (*note \bibitem::) then the fix may be to
+just run LaTeX again.
+
+   In addition to what appears in the output, '\cite' writes information
+to the auxiliary file 'FILENAME.aux'.  For instance, '\cite{latexdps}'
+writes '\citation{latexdps}' to that file.  This information is used by
+BibTeX to include in your reference list only those works that you have
+actually cited; see *note \nocite:: also.
+
 
 File: latex2e.info,  Node: \nocite,  Next: Using BibTeX,  Prev: \cite,  Up: thebibliography
 
@@ -4524,9 +5679,14 @@
 
      \nocite{KEYS}
 
-   The '\nocite' command produces no text, but writes KEYS, which is a
-list of one or more citation keys, to the '.aux' file.
+   Produces no output but writes KEYS to the auxiliary file
+'DOC-FILENAME.aux'.
 
+   The mandatory argument KEYS is a comma-separated list of one or more
+citation keys (*note \bibitem::).  This information is used by BibTeX to
+include these works in your reference list even though you have not
+cited them (*note \cite::).
+
 
 File: latex2e.info,  Node: Using BibTeX,  Prev: \nocite,  Up: thebibliography
 
@@ -4533,40 +5693,61 @@
 8.24.4 Using BibTeX
 -------------------
 
-If you use the BibTeX program by Oren Patashnik (highly recommended if
-you need a bibliography of more than a couple of titles) to maintain
-your bibliography, you don't use the 'thebibliography' environment
-(*note thebibliography::).  Instead, you include the lines
+As described in 'thebibliography' (*note thebibliography::), a
+sophisticated approach to managing bibliographies is provided by the
+BibTeX program.  This is only an introduction; see the full
+documentation on CTAN.
 
+   With BibTeX, you don't use 'thebibliography' (*note
+thebibliography::).  Instead, include these lines.
+
      \bibliographystyle{BIBSTYLE}
-     \bibliography{BIBFILE1,BIBFILE2}
+     \bibliography{BIBFILE1, BIBFILE2, ...}
 
-   The '\bibliographystyle' command does not produce any output of its
-own.  Rather, it defines the style in which the bibliography will be
-produced: BIBSTYLE refers to a file BIBSTYLE'.bst', which defines how
-your citations will look.  The standard BIBSTYLE names distributed with
-BibTeX are:
+The BIBSTYLE refers to a file 'BIBSTYLE.bst', which defines how your
+citations will look.  The standard BIBSTYLE's distributed with BibTeX
+are:
 
 'alpha'
-     Sorted alphabetically.  Labels are formed from name of author and
-     year of publication.
+     Labels are formed from name of author and year of publication.  The
+     bibliographic items are sorted alphabetically.
 'plain'
-     Sorted alphabetically.  Labels are numeric.
+     Labels are integers.  Sort the bibliographic items alphabetically.
 'unsrt'
      Like 'plain', but entries are in order of citation.
 'abbrv'
      Like 'plain', but more compact labels.
 
-   In addition, numerous other BibTeX style files exist tailored to the
-demands of various publications.  See
+Many, many other BibTeX style files exist, tailored to the demands of
+various publications.  See CTAN's listing
 <http://mirror.ctan.org/biblio/bibtex/contrib>.
 
    The '\bibliography' command is what actually produces the
-bibliography.  The argument to '\bibliography' refers to files named
-'BIBFILE1.bib', 'BIBFILE2.bib', ..., which should contain your database
-in BibTeX format.  Only the entries referred to via '\cite' and
-'\nocite' will be listed in the bibliography.
+bibliography.  Its argument is a comma-separated list, referring to
+files named 'BIBFILE1.bib', 'BIBFILE2.bib', ... These contain your
+database in BibTeX format.  This shows a typical couple of entries in
+that format.
 
+     @book{texbook,
+       title     = {The {{\TeX}}book},
+       author    = {D.E. Knuth},
+       isbn      = {0201134489},
+       series    = {Computers \& typesetting},
+       year      = {1983},
+       publisher = {Addison-Wesley}
+     }
+     @book{sexbook,
+         author    = {W.H. Masters and V.E. Johnson},
+         title     = {Human Sexual Response},
+         year      = {1966},
+         publisher = {Bantam Books}
+     }
+
+   Only the bibliographic entries referred to via '\cite' and '\nocite'
+will be listed in the document's bibliography.  Thus you can keep all
+your sources together in one file, or a small number of files, and rely
+on BibTeX to include in this document only those that you used.
+
 
 File: latex2e.info,  Node: theorem,  Next: titlepage,  Prev: thebibliography,  Up: Environments
 
@@ -4576,13 +5757,30 @@
 Synopsis:
 
      \begin{theorem}
-     THEOREM-TEXT
+       THEOREM BODY
      \end{theorem}
 
-   The 'theorem' environment produces "Theorem N" in boldface followed
-by THEOREM-TEXT, where the numbering possibilities for N are described
-under '\newtheorem' (*note \newtheorem::).
+   Produces 'Theorem N' in boldface followed by THEOREM BODY in italics.
+The numbering possibilities for N are described under '\newtheorem'
+(*note \newtheorem::).
 
+     \newtheorem{lem}{Lemma}      % in preamble
+     \newtheorem{thm}{Theorem}
+       ...
+     \begin{lem}                  % in  document body
+       text of lemma
+     \end{lem}
+
+     The next result follows immediately.
+     \begin{thm}[Gauss]   %  put `Gauss' in parens after theorem head
+       text of theorem
+     \end{thm}
+
+   Most new documents use the packages 'amsthm' and 'amsmath' from the
+American Mathematical Society.  Among other things these packages
+include a large number of options for theorem environments, such as
+styling options.
+
 
 File: latex2e.info,  Node: titlepage,  Next: verbatim,  Prev: theorem,  Up: Environments
 
@@ -4595,15 +5793,12 @@
        ... text and spacing ...
      \end{titlepage}
 
-   Create a title page, a page with no printed page number or heading.
-The following page will be numbered page one.
+   Create a title page, a page with no printed page number or heading
+and with succeeding pages numbered starting with page one.
 
-   To instead produce a standard title page without a 'titlepage'
-environment you can use '\maketitle' (*note \maketitle::).
+   In this example all formatting, including vertical spacing, is left
+to the author.
 
-   Notice in this example that all formatting, including vertical
-spacing, is left to the author.
-
      \begin{titlepage}
      \vspace*{\stretch{1}}
      \begin{center}
@@ -4625,6 +5820,9 @@
      \vspace{\stretch{2}}
      \end{titlepage}
 
+   To instead produce a standard title page without a 'titlepage'
+environment, use '\maketitle' (*note \maketitle::).
+
 
 File: latex2e.info,  Node: verbatim,  Next: verse,  Prev: titlepage,  Up: Environments
 
@@ -4637,15 +5835,35 @@
      LITERAL-TEXT
      \end{verbatim}
 
-   The 'verbatim' environment is a paragraph-making environment in which
-LaTeX produces exactly what you type in; for instance the '\' character
-produces a printed '\'.  It turns LaTeX into a typewriter with carriage
-returns and blanks having the same effect that they would on a
-typewriter.
+   A paragraph-making environment in which LaTeX produces as output
+exactly what you type as input.  For instance inside LITERAL-TEXT the
+backslash '\' character does not start commands, it produces a printed
+'\', and carriage returns and blanks are taken literally.  The output
+appears in a monospaced typewriter-like font ('\tt').
 
-   The 'verbatim' environment uses a monospaced typewriter-like font
-('\tt').
+     \begin{verbatim}
+     Symbol swearing: %&$#?!.
+     \end{verbatim}
 
+   The only restriction on 'literal-text' is that it cannot include the
+string '\end{verbatim}'.
+
+   You cannot use the verbatim environment in the argument to macros,
+for instance in the argument to a '\section'.  This is not the same as
+commands being fragile (*note \protect::), instead it just cannot appear
+there.  (But the 'cprotect' package can help with this.)
+
+   One common use of verbatim input is to typeset computer code.  There
+are packages that are an improvement the 'verbatim' environment.  For
+instance, one improvement is to allow the verbatim inclusion of external
+files, or parts of those files.  Such packages include 'listings', and
+'minted'.
+
+   A package that provides many more options for verbatim environments
+is 'fancyvrb'.  Another is 'verbatimbox'.
+
+   For a list of all the relevant packages, see CTAN.
+
 * Menu:
 
 * \verb::       The macro form of the 'verbatim' environment.
@@ -4658,18 +5876,48 @@
 
 Synopsis:
 
-     \verbCHARLITERAL-TEXTCHAR
-     \verb*CHARLITERAL-TEXTCHAR
+     \verb CHAR LITERAL-TEXT CHAR
+     \verb* CHAR LITERAL-TEXT CHAR
 
-   The '\verb' command typesets LITERAL-TEXT as it is input, including
-special characters and spaces, using the typewriter ('\tt') font.  No
-spaces are allowed between '\verb' or '\verb*' and the delimiter CHAR,
-which begins and ends the verbatim text.  The delimiter must not appear
-in LITERAL-TEXT.
+   Typeset LITERAL-TEXT as it is input, including special characters and
+spaces, using the typewriter ('\tt') font.
 
-   The '*'-form differs only in that spaces are printed with a "visible
-space" character.
+   This example shows two different invocations of '\verb'.
 
+     This is \verb!literally! the biggest pumpkin ever.
+     And this is the best squash, \verb+literally!+
+
+The first '\verb' has its LITERAL-TEXT surrounded with exclamation
+point, '!'.  The second instead uses plus, '+', because the exclamation
+point is part of 'literal-text'.
+
+   The single-character delimiter CHAR surrounds LITERAL-TEXT -- it must
+be the same character before and after.  No spaces come between '\verb'
+or '\verb*' and CHAR, or between CHAR and LITERAL-TEXT, or between
+LITERAL-TEXT and the second occurrence of CHAR (the synopsis shows a
+space only to distinguish one component from the other).  The delimiter
+must not appear in LITERAL-TEXT.  The LITERAL-TEXT cannot include a line
+break.
+
+   The '*'-form differs only in that spaces are printed with a visible
+space character.
+
+   The output from this will include a character showing the spaces.
+
+     The commands's first argument is \verb*!filename with extension! and ...
+
+   For typesetting Internet addresses, urls, the package 'url' provides
+an option that is better than the '\verb' command, since it allows line
+breaks.
+
+   For computer code there are many packages with advantages over
+'\verb'.  One is 'listings', another is 'minted'.
+
+   You cannot use '\verb' in the argument to a macro, for instance in
+the argument to a '\section'.  It is not a question of '\verb' being
+fragile (*note \protect::), instead it just cannot appear there.  (But
+the 'cprotect' package can help with this.)
+
 
 File: latex2e.info,  Node: verse,  Prev: verbatim,  Up: Environments
 
@@ -4679,19 +5927,36 @@
 Synopsis:
 
      \begin{verse}
-     LINE1 \\
-     LINE2 \\
-     ...
+       LINE1 \\
+       LINE2 \\
+       ...
      \end{verse}
 
-   The 'verse' environment is designed for poetry, though you may find
-other uses for it.
+   An environment for poetry.
 
-   The margins are indented on the left and the right, paragraphs are
-not indented, and the text is not justified.  Separate the lines of each
-stanza with '\\', and use one or more blank lines to separate the
-stanzas.
+   Here are two lines from Shakespeare's Romeo and Juliet.
 
+     Then plainly know my heart's dear love is set \\
+     On the fair daughter of rich Capulet.
+
+   Separate the lines of each stanza with '\\', and use one or more
+blank lines to separate the stanzas.
+
+     \begin{verse}
+     \makebox[\linewidth][c]{\textit{Shut Not Your Doors} ---Walt Whitman}
+       \\[1\baselineskip]
+     Shut not your doors to me proud libraries,                  \\
+     For that which was lacking on all your well-fill'd shelves, \\
+     \qquad yet needed most, I bring,                             \\
+     Forth from the war emerging, a book I have made,            \\
+     The words of my book nothing, the drift of it every thing,  \\
+     A book separate, not link'd with the rest nor felt by the intellect, \\
+     But you ye untold latencies will thrill to every page.
+     \end{verse}
+
+The output has margins indented on the left and the right, paragraphs
+are not indented, and the text is not right-justified.
+
 
 File: latex2e.info,  Node: Line breaking,  Next: Page breaking,  Prev: Environments,  Up: Top
 
@@ -4706,6 +5971,12 @@
    LaTeX usually does the line (and page) breaking in the text body for
 you but in some environments you manually force line breaks.
 
+   A common workflow is to get a final version of the document content
+before taking a final pass through and considering line breaks (and page
+breaks).  This differs from word processing, where you are formatting
+text as you input it.  Putting these off until the end prevents a lot of
+fiddling with breaks that will change anyway.
+
 * Menu:
 
 * \\::                         Start a new line.
@@ -4712,9 +5983,8 @@
 * \obeycr & \restorecr::       Make each input line start a new output line.
 * \newline::                   Break the line
 * \- (hyphenation)::           Insert explicit hyphenation.
-* \discretionary::             Insert explicit hyphenation with control of hyphen character.
-* \fussy::                     Be fussy about line breaking.
-* \sloppy::                    Be sloppy about line breaking.
+* \discretionary::             Explicit control of the hyphen character.
+* \fussy & \sloppy::           Be more or less particular with line breaking.
 * \hyphenation::               Tell LaTeX how to hyphenate a word.
 * \linebreak & \nolinebreak::  Forcing & avoiding line breaks.
 
@@ -4724,35 +5994,65 @@
 9.1 '\\'
 ========
 
-Synopsis:
+Synopsis, one of:
 
+     \\
      \\[MORESPACE]
 
-   or
+or one of:
 
+     \\*
      \\*[MORESPACE]
 
-   Start a new line.  The optional argument MORESPACE specifies extra
-vertical space to be insert before the next line.  This can be a
-negative length.  The text before the break is set at its normal length,
-that is, it is not stretched to fill out the line width.
+   End the current line.  The optional argument MORESPACE specifies
+extra vertical space to be inserted before the next line.  This is a
+rubber length (*note Lengths::) and can be negative.  The text before
+the line break is set at its normal length, that is, it is not stretched
+to fill out the line width.  This command is fragile (*note \protect::).
 
-   Explicit line breaks in the text body are unusual in LaTeX.  In
-particular, to start a new paragraph instead leave a blank line.  This
-command is mostly used outside of the main flow of text such as in a
-'tabular' or 'array' environment.
+   The starred form, '\\*', tells LaTeX not to start a new page between
+the two lines, by issuing a '\nobreak'.
 
-   Under ordinary circumstances (e.g., outside of a 'p{...}' column in a
-'tabular' environment) the '\newline' command is a synonym for '\\'
-(*note \newline::).
-
-   In addition to starting a new line, the starred form '\\*' tells
-LaTeX not to start a new page between the two lines, by issuing a
-'\nobreak'.
-
      \title{My story: \\[0.25in]
             a tale of woe}
 
+   Explicit line breaks in the main text body are unusual in LaTeX.  In
+particular, don't start new paragraphs with '\\'.  Instead leave a blank
+line between the two paragraphs.  And don't put in a sequence of '\\''s
+to make vertical space.  Instead use '\vspace{LENGTH}', or
+'\leavevmode\vspace{LENGTH}', or '\vspace*{LENGTH}' if you want the
+space to not be thrown out at the top of a new page (*note \vspace::).
+
+   The '\\' command is mostly used outside of the main flow of text such
+as in a 'tabular' or 'array' environment or in an equation environment.
+
+   The '\\' command is a synonym for '\newline' (*note \newline::) under
+ordinary circumstances (an example of an exception is the 'p{...}'
+column in a 'tabular' environment; *note tabular::).
+
+   The '\\' command is a macro, and its definition changes by context so
+that its definition in normal text, a 'center' environment, a
+'flushleft' environment, and a 'tabular' are all different.  In normal
+text when it forces a linebreak it is essentially a shorthand for
+'\newline'.  It does not end horizontal mode or end the paragraph, it
+just inserts some glue and penalties so that when the paragraph does end
+a linebreak will occur at that point, with the short line padded with
+white space.
+
+   You get 'LaTeX Error: There's no line here to end' if you use '\\' to
+ask for a new line, rather than to end the current line.  An example is
+if you have '\begin{document}\\' or, more likely, something like this.
+
+     \begin{center}
+       \begin{minipage}{0.5\textwidth}
+       \\
+       In that vertical space put your mark.
+       \end{minipage}
+     \end{center}
+
+Fix it by replacing the double backslash with something like
+'\vspace{\baselineskip}'.
+
 
 File: latex2e.info,  Node: \obeycr & \restorecr,  Next: \newline,  Prev: \\,  Up: Line breaking
 
@@ -4760,11 +6060,42 @@
 ============================
 
 The '\obeycr' command makes a return in the input file ('^^M',
-internally) the same as '\\' (followed by '\relax').  So each new line
-in the input will also be a new line in the output.
+internally) the same as '\\', followed by '\relax'.  So each new line in
+the input will also be a new line in the output.  The '\restorecr'
+command restores normal line-breaking behavior.
 
-   '\restorecr' restores normal line-breaking behavior.
+   This is not the way to show verbatim text or computer code.  *Note
+verbatim:: instead.
 
+   With LaTeX's usual defaults, this
+
+     aaa
+     bbb
+
+     \obeycr
+     ccc
+     ddd
+        eee
+
+     \restorecr
+     fff
+     ggg
+
+     hhh
+     iii
+
+produces output like this.
+
+       aaa bbb
+       ccc
+     ddd
+     eee
+
+     fff ggg
+       hhh iii
+
+The indents are paragraph indents.
+
 
 File: latex2e.info,  Node: \newline,  Next: \- (hyphenation),  Prev: \obeycr & \restorecr,  Up: Line breaking
 
@@ -4771,14 +6102,17 @@
 9.3 '\newline'
 ==============
 
-In ordinary text this is equivalent to double-backslash (*note \\::); it
-breaks a line, with no stretching of the text before it.
+In ordinary text, this ends a line in a way that does not right-justify
+the line, so the prior text is not stretched.  That is, in paragraph
+mode (*note Modes::), the '\newline' command is equivalent to
+double-backslash (*note \\::).  This command is fragile (*note
+\protect::).
 
-   Inside a 'tabular' or 'array' environment, in a column with a
-specifier producing a paragraph box, like typically 'p{...}', '\newline'
-will insert a line break inside of the column, that is, it does not
-break the entire row.  To break the entire row use '\\' or its
-equivalent '\tabularnewline'.
+   However, the two commands are different inside a 'tabular' or 'array'
+environment.  In a column with a specifier producing a paragraph box
+such as typically 'p{...}', '\newline' will insert a line end inside of
+the column; that is, it does not break the entire tabular row.  To break
+the entire row use '\\' or its equivalent '\tabularnewline'.
 
    This will print 'Name:' and 'Address:' as two lines in a single cell
 of the table.
@@ -4787,7 +6121,7 @@
        Name: \newline Address: &Date: \\ \hline
      \end{tabular}
 
-   The 'Date:' will be baseline-aligned with 'Name:'.
+The 'Date:' will be baseline-aligned with 'Name:'.
 
 
 File: latex2e.info,  Node: \- (hyphenation),  Next: \discretionary,  Prev: \newline,  Up: Line breaking
@@ -4795,17 +6129,40 @@
 9.4 '\-' (discretionary hyphen)
 ===============================
 
-The '\-' command tells LaTeX that it may hyphenate the word at that
-point.  LaTeX is pretty good at hyphenating, and usually finds most of
-the correct hyphenation points, while almost never using an incorrect
-one.  The '\-' command is used for the exceptional cases.
+Tell LaTeX that it may hyphenate the word at that point.  When you
+insert '\-' commands in a word, the word will only be hyphenated at
+those points and not at any of the hyphenation points that LaTeX might
+otherwise have chosen.  This command is robust (*note \protect::).
 
-   When you insert '\-' commands in a word, the word will only be
-hyphenated at those points and not at any of the hyphenation points that
-LaTeX might otherwise have chosen.
+   LaTeX is good at hyphenating and usually finds most of the correct
+hyphenation points, while almost never using an incorrect one.  The '\-'
+command is for exceptional cases.
 
+   For example, LaTeX does not ordinarily hyphenate words containing a
+hyphen.  Below, the long and hyphenated word means LaTeX has to put in
+unacceptably large spaces to set the narrow column.
+
+     \begin{tabular}{rp{1.75in}}
+       Isaac Asimov &The strain of
+                    anti-intellectualism
+                    % an\-ti-in\-tel\-lec\-tu\-al\-ism
+                    has been a constant thread winding its way through our
+                    political and cultural life, nurtured by
+                    the false notion that democracy means that
+                    `my ignorance is just as good as your knowledge'.
+     \end{tabular}
+
+Commenting out the third line and uncommenting the fourth makes a much
+better fit.
+
+   The '\-' command only allows LaTeX to break there, it does not
+require that it break there.  You can insist on a split with something
+like 'Hef-\linebreak feron'.  Of course, if you later change the text
+then this forced break may look very odd, so this approach requires
+care.
+
 
-File: latex2e.info,  Node: \discretionary,  Next: \fussy,  Prev: \- (hyphenation),  Up: Line breaking
+File: latex2e.info,  Node: \discretionary,  Next: \fussy & \sloppy,  Prev: \- (hyphenation),  Up: Line breaking
 
 9.5 '\discretionary' (generalized hyphenation point)
 ====================================================
@@ -4812,71 +6169,130 @@
 
 Synopsis:
 
-     \discretionary{PRE-BREAK-TEXT}{POST-BREAK-TEXT}{NO-BREAK-TEXT}
+     \discretionary{PRE-BREAK}{POST-BREAK}{NO-BREAK}
 
+   Handle word changes around hyphens.  This command is not often used
+in LaTeX documents.
+
+   If a line break occurs at the point where '\discretionary' appears
+then TeX puts PRE-BREAK at the end of the current line and puts
+POST-BREAK at the start of the next line.  If there is no line break
+here then TeX puts NO-BREAK
+
+   In 'difficult' the three letters 'ffi' form a ligature.  But TeX can
+nonetheless break between the two f's with this.
+
+     di\discretionary{f-}{fi}{ffi}cult
+
+   Note that users do not have to do this.  It is typically handled
+automatically by TeX's hyphenation algorithm.
+
 
-File: latex2e.info,  Node: \fussy,  Next: \sloppy,  Prev: \discretionary,  Up: Line breaking
+File: latex2e.info,  Node: \fussy & \sloppy,  Next: \hyphenation,  Prev: \discretionary,  Up: Line breaking
 
-9.6 '\fussy'
-============
+9.6 '\fussy' & '\sloppy'
+========================
 
-The declaration '\fussy' (which is the default) makes TeX picky about
-line breaking.  This usually avoids too much space between words, at the
-cost of an occasional overfull box.
+Declarations to make TeX more picky or less picky about line breaking.
+Declaring '\fussy' usually avoids too much space between words, at the
+cost of an occasional overfull box.  Conversely, '\sloppy' avoids
+overfull boxes while suffering loose interword spacing.
 
-   This command cancels the effect of a previous '\sloppy' command
-(*note \sloppy::).
+   The default is '\fussy'.  Line breaking in a paragraph is controlled
+by whichever declaration is current at the blank line, or '\par', or
+displayed equation ending that paragraph.  So to affect the line breaks,
+include that paragraph-ending material in the scope of the command.
 
+* Menu:
+
+* sloppypar::          Environment version of \sloppy command.
+
 
-File: latex2e.info,  Node: \sloppy,  Next: \hyphenation,  Prev: \fussy,  Up: Line breaking
+File: latex2e.info,  Node: sloppypar,  Up: \fussy & \sloppy
 
-9.7 '\sloppy'
-=============
+9.6.1 'sloppypar'
+-----------------
 
-The declaration '\sloppy' makes TeX less fussy about line breaking.
-This will avoid overfull boxes, at the cost of loose interword spacing.
+Synopsis:
 
-   Lasts until a '\fussy' command is issued (*note \fussy::).
+     \begin{sloppypar}
+       ... paragraphs ...
+     \end{sloppypar}
 
+   Typeset the paragraphs with '\sloppy' in effect (*note \fussy &
+\sloppy::).  Use this to locally adjust line breaking, to avoid
+'Overfull box' or 'Underfull box' errors.
+
+   The example is simple.
+
+     \begin{sloppypar}
+       Her plan for the morning thus settled, she sat quietly down to her
+       book after breakfast, resolving to remain in the same place and the
+       same employment till the clock struck one; and from habitude very
+       little incommoded by the remarks and ejaculations of Mrs.\ Allen,
+       whose vacancy of mind and incapacity for thinking were such, that
+       as she never talked a great deal, so she could never be entirely
+       silent; and, therefore, while she sat at her work, if she lost her
+       needle or broke her thread, if she heard a carriage in the street,
+       or saw a speck upon her gown, she must observe it aloud, whether
+       there were anyone at leisure to answer her or not.
+     \end{sloppypar}
+
 
-File: latex2e.info,  Node: \hyphenation,  Next: \linebreak & \nolinebreak,  Prev: \sloppy,  Up: Line breaking
+File: latex2e.info,  Node: \hyphenation,  Next: \linebreak & \nolinebreak,  Prev: \fussy & \sloppy,  Up: Line breaking
 
-9.8 '\hyphenation'
+9.7 '\hyphenation'
 ==================
 
 Synopsis:
 
-     \hyphenation{WORD-ONE WORD-TWO}
+     \hyphenation{WORD1 ...}
 
-   The '\hyphenation' command declares allowed hyphenation points with a
-'-' character in the given words.  The words are separated by spaces.
-TeX will only hyphenate if the word matches exactly, no inflections are
-tried.  Multiple '\hyphenation' commands accumulate.  Some examples (the
-default TeX hyphenation patterns misses the hyphenations in these
-words):
+   Declares allowed hyphenation points within the words in the list.
+The words in that list are separated by spaces.  Show permitted points
+for hyphenation with a dash character, '-'.
 
-     \hyphenation{ap-pen-dix col-umns data-base data-bases}
+   Here is an example:
 
+     \hyphenation{hat-er il-lit-e-ra-ti tru-th-i-ness}
+
+   Use lowercase letters.  TeX will only hyphenate if the word matches
+exactly.  Multiple '\hyphenation' commands accumulate.
+
 
 File: latex2e.info,  Node: \linebreak & \nolinebreak,  Prev: \hyphenation,  Up: Line breaking
 
-9.9 '\linebreak' & '\nolinebreak'
+9.8 '\linebreak' & '\nolinebreak'
 =================================
 
-Synopses:
+Synopses, one of:
 
-     \linebreak[PRIORITY]
-     \nolinebreak[PRIORITY]
+     \linebreak
+     \linebreak[ZERO-TO-FOUR]
 
-   By default, the '\linebreak' ('\nolinebreak') command forces
-(prevents) a line break at the current position.  For '\linebreak', the
-spaces in the line are stretched out so that it extends to the right
-margin as usual.
+or one of these.
 
-   With the optional argument PRIORITY, you can convert the command from
-a demand to a request.  The PRIORITY must be a number from 0 to 4.  The
-higher the number, the more insistent the request.
+     \nolinebreak
+     \nolinebreak[ZERO-TO-FOUR]
 
+   Encourage or discourage a line break.  The optional ZERO-TO-FOUR is
+an integer that allows you to soften the instruction.  The default is 4,
+so that without the optional argument these commands entirely force or
+prevent the break.  But for instance, '\nolinebreak[1]' is a suggestion
+that another place may be better.  The higher the number, the more
+insistent the request.  Both commands are fragile (*note \protect::).
+
+   Here we tell LaTeX that a good place to put a linebreak is after the
+standard legal text.
+
+     \boilerplatelegal{} \linebreak[2]
+     We especially encourage applications from members of traditionally
+     underrepresented groups.
+
+   When you issue '\linebreak', the spaces in the line are stretched out
+so that it extends to the right margin.  *Note \\:: and *note \newline::
+to have the spaces not stretched out.
+
 
 File: latex2e.info,  Node: Page breaking,  Next: Footnotes,  Prev: Line breaking,  Up: Top
 
@@ -4883,87 +6299,193 @@
 10 Page breaking
 ****************
 
-LaTeX starts new pages asynchronously, when enough material has
-accumulated to fill up a page.  Usually this happens automatically, but
-sometimes you may want to influence the breaks.
+Ordinarily LaTeX automatically takes care of breaking output into pages
+with its usual aplomb.  But if you are writing commands, or tweaking the
+final version of a document, then you may need to understand how to
+influence its actions.
 
+   LaTeX's algorithm for splitting a document into pages is more complex
+than just waiting until there is enough material to fill a page and
+outputting the result.  Instead, LaTeX typesets more material than would
+fit on the page and then chooses a break that is optimal in some way (it
+has the smallest badness).  An example of the advantage of this approach
+is that if the page has some vertical space that can be stretched or
+shrunk, such as with rubber lengths between paragraphs, then LaTeX can
+use that to avoid widow lines (where a new page starts with the last
+line of a paragraph; LaTeX can squeeze the extra line onto the first
+page) and orphans (where the first line of paragraph is at the end of a
+page; LaTeX can stretch the material of the first page so the extra line
+falls on the second page).  Another example is where LaTeX uses
+available vertical shrinkage to fit on a page not just the header for a
+new section but also the first two lines of that section.
+
+   But LaTeX does not optimize over the entire document's set of page
+breaks.  So it can happen that the first page break is great but the
+second one is lousy; to break the current page LaTeX doesn't look as far
+ahead as the next page break.  So occasionally you may want to influence
+page breaks while preparing a final version of a document.
+
+   *Note Layout:: for more material that is relevant to page breaking.
+
 * Menu:
 
-* \cleardoublepage::           Start a new right-hand page.
-* \clearpage::                 Start a new page.
-* \newpage::                   Start a new page.
-* \enlargethispage::           Enlarge the current page a bit.
-* \pagebreak & \nopagebreak::  Forcing & avoiding page breaks.
+* \clearpage & \cleardoublepage::   Start a new page; eject floats.
+* \newpage::                        Start a new page.
+* \enlargethispage::                Enlarge the current page a bit.
+* \pagebreak & \nopagebreak::       Forcing & avoiding page breaks.
 
 
-File: latex2e.info,  Node: \cleardoublepage,  Next: \clearpage,  Up: Page breaking
+File: latex2e.info,  Node: \clearpage & \cleardoublepage,  Next: \newpage,  Up: Page breaking
 
-10.1 '\cleardoublepage'
-=======================
+10.1 '\clearpage' & '\cleardoublepage'
+======================================
 
-The '\cleardoublepage' command ends the current page and causes all the
-pending floating figures and tables that have so far appeared in the
-input to be printed.  In a two-sided printing style, it also makes the
-next page a right-hand (odd-numbered) page, producing a blank page if
-necessary.
+Synopsis:
 
-
-File: latex2e.info,  Node: \clearpage,  Next: \newpage,  Prev: \cleardoublepage,  Up: Page breaking
+     \clearpage
 
-10.2 '\clearpage'
-=================
+or
 
-The '\clearpage' command ends the current page and causes all the
-pending floating figures and tables that have so far appeared in the
-input to be printed.
+     \cleardoublepage
 
+   End the current page and output all of the pending floating figures
+and tables (*note Floats::).  If there are too many floats to fit on the
+page then LaTeX will put in extra pages containing only floats.  In
+two-sided printing, '\cleardoublepage' also makes the next page of
+content a right-hand page, an odd-numbered page, if necessary inserting
+a blank page.  The '\clearpage' command is robust while
+'\cleardoublepage' is fragile (*note \protect::).
+
+   LaTeX's page breaks are optimized so ordinarily you only use this
+command in a document body to polish the final version, or inside
+commands.
+
+   The '\cleardoublepage' command will put in a blank page, but it will
+have the running headers and footers.  To get a really blank page, use
+this command.
+
+     \let\origdoublepage\cleardoublepage
+     \newcommand{\clearemptydoublepage}{%
+       \clearpage
+       {\pagestyle{empty}\origdoublepage}%
+     }
+
+If you want LaTeX's standard '\chapter' command to do this then add the
+line '\let\cleardoublepage\clearemptydoublepage'.
+
+   The command '\newpage' (*note \newpage::) also ends the current page,
+but without clearing pending floats.  And, if LaTeX is in two-column
+mode then '\newpage' ends the current column while '\clearpage' and
+'\cleardoublepage' end the current page.
+
 
-File: latex2e.info,  Node: \newpage,  Next: \enlargethispage,  Prev: \clearpage,  Up: Page breaking
+File: latex2e.info,  Node: \newpage,  Next: \enlargethispage,  Prev: \clearpage & \cleardoublepage,  Up: Page breaking
 
-10.3 '\newpage'
+10.2 '\newpage'
 ===============
 
-The '\newpage' command ends the current page, but does not clear floats
-(*note \clearpage::).
+Synopsis:
 
+     \newpage
+
+   End the current page.  This command is robust (*note \protect::).
+
+   LaTeX's page breaks are optimized so ordinarily you only use this
+command in a document body to polish the final version, or inside
+commands.
+
+   While the commands '\clearpage' and '\cleardoublepage' also end the
+current page, in addition they clear pending floats (*note \clearpage &
+\cleardoublepage::).  And, if LaTeX is in two-column mode then
+'\clearpage' and '\cleardoublepage' end the current page, possibly
+leaving an empty column, while '\newpage' only ends the current column.
+
+   In contrast with '\pagebreak' (*note \pagebreak & \nopagebreak::),
+the '\newpage' command will cause the new page to start right where
+requested.  This
+
+     Four score and seven years ago our fathers brought forth on this
+     continent,
+     \newpage
+     \noindent a new nation, conceived in Liberty, and dedicated to the
+     proposition that all men are created equal.
+
+makes a new page start after 'continent,' and the cut-off line is not
+right justified.  In addition, '\newpage' does not vertically stretch
+out the page, as '\pagebreak' does.
+
 
 File: latex2e.info,  Node: \enlargethispage,  Next: \pagebreak & \nopagebreak,  Prev: \newpage,  Up: Page breaking
 
-10.4 '\enlargethispage'
+10.3 '\enlargethispage'
 =======================
 
-'\enlargethispage{size}'
+Synopsis, one of:
 
-   '\enlargethispage*{size}'
+     \enlargethispage{size}
+     \enlargethispage*{size}
 
-   Enlarge the '\textheight' for the current page by the specified
-amount; e.g., '\enlargethispage{\baselineskip}' will allow one
-additional line.
+   Enlarge the '\textheight' for the current page.  The required
+argument SIZE must be a rigid length (*note Lengths::).  It may be
+positive or negative.  This command is fragile (*note \protect::).
 
-   The starred form tries to squeeze the material together on the page
-as much as possible.  This is normally used together with an explicit
-'\pagebreak'.
+   A common strategy is to wait until you have the final text of a
+document, and then pass through it tweaking line and page breaks.  This
+command allows you some page size leeway.
 
+   This will allow one extra line on the current page.
+
+     \enlargethispage{\baselineskip}
+
+   The starred form '\enlargesthispage*' tries to squeeze the material
+together on the page as much as possible, for the common use case of
+getting one more line on the page.  This is often used together with an
+explicit '\pagebreak'.
+
 
 File: latex2e.info,  Node: \pagebreak & \nopagebreak,  Prev: \enlargethispage,  Up: Page breaking
 
-10.5 '\pagebreak' & '\nopagebreak'
+10.4 '\pagebreak' & '\nopagebreak'
 ==================================
 
 Synopses:
 
-     \pagebreak[PRIORITY]
-     \nopagebreak[PRIORITY]
+     \pagebreak
+     \pagebreak[ZERO-TO-FOUR]
 
-   By default, the '\pagebreak' ('\nopagebreak') command forces
-(prevents) a page break at the current position.  With '\pagebreak', the
-vertical space on the page is stretched out where possible so that it
-extends to the normal bottom margin.
+or
 
-   With the optional argument PRIORITY, you can convert the '\pagebreak'
-command from a demand to a request.  The number must be a number from 0
-to 4.  The higher the number, the more insistent the request is.
+     \nopagebreak
+     \nopagebreak[ZERO-TO-FOUR]
 
+   Encourage or discourage a page break.  The optional ZERO-TO-FOUR is
+an integer that allows you to soften the request.  The default is 4, so
+that without the optional argument these commands entirely force or
+prevent the break.  But for instance '\nopagebreak[1]' suggests to LaTeX
+that another spot might be preferable.  The higher the number, the more
+insistent the request.  Both commands are fragile (*note \protect::).
+
+   LaTeX's page endings are optimized so ordinarily you only use this
+command in a document body to polish the final version, or inside
+commands.
+
+   If you use these inside a paragraph, they apply to the point
+following the line in which they appear.  So this
+
+     Four score and seven years ago our fathers brought forth on this
+     continent,
+     \pagebreak
+     a new nation, conceived in Liberty, and dedicated to the proposition
+     that all men are created equal.
+
+does not give a page break at 'continent,' but instead at 'nation,'
+since that is where LaTeX breaks that line.  In addition, with
+'\pagebreak' the vertical space on the page is stretched out where
+possible so that it extends to the normal bottom margin.  This can look
+strange, and if '\flushbottom' is in effect this can cause you to get
+'Underfull \vbox (badness 10000) has occurred while \output is active'.
+*Note \newpage:: for a command that does not have these effects.
+
 
 File: latex2e.info,  Node: Footnotes,  Next: Definitions,  Prev: Page breaking,  Up: Top
 
@@ -4970,20 +6492,21 @@
 11 Footnotes
 ************
 
-Place a numbered footnote at the bottom of the current page, as here.
+Place a footnote at the bottom of the current page, as here.
 
      Noe"l Coward quipped that having to read a footnote is like having
      to go downstairs to answer the door, while in the midst of making
-     love.\footnote{I wouldn't know, I don't read footnotes.}
+     love.\footnote{%
+       I wouldn't know, I don't read footnotes.}
 
-   You can place multiple footnotes on a page.  If the text becomes too
-long it will flow to the next page.
+   You can put multiple footnotes on a page.  If the footnote text
+becomes too long then it will flow to the next page.
 
    You can also produce footnotes by combining the '\footnotemark' and
 the '\footnotetext' commands, which is useful in special circumstances.
 
    To make bibliographic references come out as footnotes you need to
-include a bibliographic style with that behavior.
+include a bibliographic style with that behavior (*note Using BibTeX::).
 
 * Menu:
 
@@ -4990,11 +6513,9 @@
 * \footnote::                Insert a footnote.
 * \footnotemark::            Insert footnote mark only.
 * \footnotetext::            Insert footnote text only.
+* Footnotes in section headings::     Chapter or section titles.
 * Footnotes in a table::     Table footnotes.
-* Footnotes in section headings::     Chapter or section titles.
 * Footnotes of footnotes::   Multiple classes of footnotes.
-* Multiple reference to footnotes::   Referring to a footnote more than once.
-* Footnote parameters::      Parameters for footnote formatting.
 
 
 File: latex2e.info,  Node: \footnote,  Next: \footnotemark,  Up: Footnotes
@@ -5002,40 +6523,68 @@
 11.1 '\footnote'
 ================
 
-Synopsis:
+Synopsis, one of:
 
+     \footnote{TEXT}
      \footnote[NUMBER]{TEXT}
 
-   Place a numbered footnote TEXT at the bottom of the current page.
+   Place a footnote TEXT at the bottom of the current page.
 
      There are over a thousand footnotes in Gibbon's
-     \textit{Decline and Fall of the Roman Empire}.\footnote{After
-     reading an early version with endnotes David Hume complained,
-     ``One is also plagued with his Notes, according to the present Method
-     of printing the Book'' and suggested that they ``only to be printed
-     at the Margin or the Bottom of the Page.''}
+     \textit{Decline and Fall of the Roman Empire}.\footnote{%
+       After reading an early version with endnotes David Hume complained,
+       ``One is also plagued with his Notes, according to the present Method
+       of printing the Book'' and suggested that they ``only to be printed
+       at the Margin or the Bottom of the Page.''}
 
-   The optional argument NUMBER allows you to specify the footnote
-number.  If you use this option then the footnote number counter is not
-incremented, and if you do not use it then the counter is incremented.
+   The optional argument NUMBER allows you to specify the number of the
+footnote.  If you use this then LaTeX does not increment the 'footnote'
+counter.
 
-   Change how LaTeX shows the footnote counter with something like
+   By default, LaTeX uses arabic numbers as footnote markers.  Change
+this with something like
 '\renewcommand{\thefootnote}{\fnsymbol{footnote}}', which uses a
 sequence of symbols (*note \alph \Alph \arabic \roman \Roman
 \fnsymbol::).  To make this change global put that in the preamble.  If
 you make the change local then you may want to reset the counter with
-'\setcounter{footnote}{0}'.  By default LaTeX uses arabic numbers.
+'\setcounter{footnote}{0}'.
 
+   LaTeX determines the spacing of footnotes with two parameters.
+
+'\footnoterule'
+     Produces the rule separating the main text on a page from the
+     page's footnotes.  Default dimensions in the standard document
+     classes (except 'slides', where it does not appear) is: vertical
+     thickness of '0.4pt', and horizontal size of '0.4\columnwidth'
+     long.  Change the rule with something like this.
+
+          \renewcommand{\footnoterule}{% Kerns avoid vertical space
+            \kern -3pt                         % This -3 is negative
+            \hrule width \textwidth height 1pt % of the sum of this 1
+            \kern 2pt}                         % and this 2
+
+'\footnotesep'
+     The height of the strut placed at the beginning of the footnote
+     (*note \strut::).  By default, this is set to the normal strut for
+     '\footnotesize' fonts (*note Font sizes::), therefore there is no
+     extra space between footnotes.  This is '6.65pt' for '10pt',
+     '7.7pt' for '11pt', and '8.4pt' for '12pt'.  Change it as with
+     '\setlength{\footnotesep}{11pt}'.
+
+   The '\footnote' command is fragile (*note \protect::).
+
    LaTeX's default puts many restrictions on where you can use a
 '\footnote'; for instance, you cannot use it in an argument to a
 sectioning command such as '\chapter' (it can only be used in outer
-paragraph mode).  There are some workarounds; see following sections.
+paragraph mode; *note Modes::).  There are some workarounds; see
+following sections.
 
    In a 'minipage' environment the '\footnote' command uses the
 'mpfootnote' counter instead of the 'footnote' counter, so they are
 numbered independently.  They are shown at the bottom of the
 environment, not at the bottom of the page.  And by default they are
-shown alphabetically.  *Note minipage::.
+shown alphabetically.  *Note minipage:: and *note Footnotes in a
+table::.
 
 
 File: latex2e.info,  Node: \footnotemark,  Next: \footnotetext,  Prev: \footnote,  Up: Footnotes
@@ -5048,14 +6597,25 @@
      \footnotemark
      \footnotemark[NUMBER]
 
-   Put the current footnote number in the text.  (See *note
-\footnotetext:: for giving the text of the footnote separately.)  The
-version with the optional argument NUMBER uses that number to determine
-the mark printed.  This command can be used in inner paragraph mode.
+   Put the current footnote mark in the text.  To specify associated
+text for the footnote see *note \footnotetext::.  The optional argument
+NUMBER causes the command to use that number to determine the footnote
+mark.  This command can be used in inner paragraph mode (*note Modes::).
 
-   This example gives the same institutional affiliation to both the
-first and third authors ('\thanks' is a version of 'footnote').
+   If you use '\footnotemark' without the optional argument then it
+increments the footnote counter but if you use the optional NUMBER then
+it does not.  The next example produces several consecutive footnote
+markers referring to the same footnote.
 
+     The first theorem\footnote{Due to Gauss.}
+     and the second theorem\footnotemark[\value{footnote}]
+     and the third theorem.\footnotemark[\value{footnote}]
+
+   If there are intervening footnotes then you must remember the value
+of the common mark.  This example gives the same institutional
+affiliation to both the first and third authors ('\thanks' is a version
+of 'footnote'), by-hand giving the number of the footnote.
+
      \title{A Treatise on the Binomial Theorem}
      \author{J Moriarty\thanks{University of Leeds}
        \and A C Doyle\thanks{Durham University}
@@ -5063,17 +6623,30 @@
      \begin{document}
      \maketitle
 
-   If you use '\footnotemark' without the optional argument then it
-increments the footnote counter but if you use the optional NUMBER then
-it does not.  This produces several consecutive footnote markers
-referring to the same footnote.
+   This uses a counter to remember the footnote number.  The third
+sentence is followed by the same footnote marker as the first.
 
-     The first theorem\footnote{Due to Gauss.}
-     and the second theorem\footnotemark[\value{footnote}]
-     and the third theorem.\footnotemark[\value{footnote}]
+     \newcounter{footnoteValueSaver}
+     All babies are illogical.\footnote{%
+       Lewis Carroll.}\setcounter{footnoteValueSaver}{\value{footnote}}
+     Nobody is despised who can manage a crocodile.\footnote{%
+       Captain Hook.}
+     Illogical persons are despised.\footnotemark[\value{footnoteValueSaver}]
+     Therefore, anyone who can manage a crocodile is not a baby.
 
+   This example accomplishes the same by using the package 'cleveref'.
+
+     \usepackage{cleveref}[2012/02/15]   % in preamble
+     \crefformat{footnote}{#2\footnotemark[#1]#3}
+     ...
+     The theorem is from Evers.\footnote{\label{fn:TE}Tinker, Evers, 1994.}
+     The corollary is from Chance.\footnote{Evers, Chance, 1990.}
+     But the key lemma is from Tinker.\cref{fn:TE}
+
+   It will work with the package 'hyperref'.
+
 
-File: latex2e.info,  Node: \footnotetext,  Next: Footnotes in a table,  Prev: \footnotemark,  Up: Footnotes
+File: latex2e.info,  Node: \footnotetext,  Next: Footnotes in section headings,  Prev: \footnotemark,  Up: Footnotes
 
 11.3 '\footnotetext'
 ====================
@@ -5083,49 +6656,94 @@
      \footnotetext{TEXT}
      \footnotetext[NUMBER]{TEXT}
 
-   Place TEXT at the bottom of the page as a footnote.  This command can
-come anywhere after the '\footnotemark' command.  The optional argument
-NUMBER changes the displayed footnote number.  The '\footnotetext'
-command must appear in outer paragraph mode.
+   Place TEXT at the bottom of the page as a footnote.  It pairs with
+'\footnotemark' (*note \footnotemark::) and can come anywhere after that
+command, but must appear in outer paragraph mode (*note Modes::).  The
+optional argument NUMBER changes the number of the footnote mark.
 
+   *Note \footnotemark:: and *note Footnotes in a table:: for usage
+examples.
+
 
-File: latex2e.info,  Node: Footnotes in a table,  Next: Footnotes in section headings,  Prev: \footnotetext,  Up: Footnotes
+File: latex2e.info,  Node: Footnotes in section headings,  Next: Footnotes in a table,  Prev: \footnotetext,  Up: Footnotes
 
-11.4 Footnotes in a table
+11.4 Footnotes in section headings
+==================================
+
+Putting a footnote in a section heading, as in:
+
+     \section{Full sets\protect\footnote{This material due to ...}}
+
+causes the footnote to appear at the bottom of the page where the
+section starts, as usual, but also at the bottom of the table of
+contents, where it is not likely to be desired.  The simplest way to
+have it not appear on the table of contents is to use the optional
+argument to '\section'
+
+     \section[Please]{Please\footnote{%
+       Don't footnote in chapter and section headers!}}
+
+No '\protect' is needed in front of '\footnote' here because what gets
+moved to the table of contents is the optional argument.
+
+
+File: latex2e.info,  Node: Footnotes in a table,  Next: Footnotes of footnotes,  Prev: Footnotes in section headings,  Up: Footnotes
+
+11.5 Footnotes in a table
 =========================
 
-Inside a 'table' environment the '\footnote' command does not work.  For
-instance, if the code below appears on its own then the footnote simply
-disappears; there is a footnote mark in the table cell but nothing is
-set at the bottom of the page.
+Inside a 'tabular' or 'array' environment the '\footnote' command does
+not work; there is a footnote mark in the table cell but the footnote
+text does not appear.  The solution is to use a 'minipage' environment
+as here (*note minipage::).
 
      \begin{center}
+       \begin{minipage}{\textwidth} \centering
           \begin{tabular}{l|l}
-          \textsc{Ship}  &\textsc{Book} \\ \hline
-          \textit{HMS Sophie}     &Master and Commander  \\
-          \textit{HMS Polychrest} &Post Captain  \\
-          \textit{HMS Lively}     &Post Captain \\
-          \textit{HMS Surprise}   &A number of books\footnote{Starting with
-                                     HMS Surprise.}
+            \textsc{Ship}           &\textsc{Book} \\ \hline
+            \textit{HMS Sophie}     &Master and Commander  \\
+            \textit{HMS Polychrest} &Post Captain  \\
+            \textit{HMS Lively}     &Post Captain \\
+            \textit{HMS Surprise}   &A number of books\footnote{%
+                                       Starting with HMS Surprise.}
           \end{tabular}
+       \end{minipage}
      \end{center}
 
-   The solution is to surround the 'tabular' environment with a
-'minipage' environment, as here (*note minipage::).
+   Inside a 'minipage', footnote marks are lowercase letters.  Change
+that with something like
+'\renewcommand{\thempfootnote}{\arabic{mpfootnote}}' (*note \alph \Alph
+\arabic \roman \Roman \fnsymbol::).
 
+   The footnotes in the prior example appear at the bottom of the
+'minipage'.  To have them appear at the bottom of the main page, as part
+of the regular footnote sequence, use the '\footnotemark' and
+'\footnotetext' pair and make a new counter.
+
+     \newcounter{mpFootnoteValueSaver}
      \begin{center}
-       \begin{minipage}{.5\textwidth}
-         ... tabular material ...
-       \end{minipage}
+       \begin{minipage}{\textwidth}
+         \setcounter{mpFootnoteValueSaver}{\value{footnote}} \centering
+          \begin{tabular}{l|l}
+            \textsc{Woman}             &\textsc{Relationship} \\ \hline
+            Mona                       &Attached\footnotemark  \\
+            Diana Villiers             &Eventual wife  \\
+            Christine Hatherleigh Wood &Fiance\footnotemark
+          \end{tabular}
+       \end{minipage}%  percent sign keeps footnote text close to minipage
+       \stepcounter{mpFootnoteValueSaver}%
+         \footnotetext[\value{mpFootnoteValueSaver}]{%
+           Little is known other than her death.}%
+       \stepcounter{mpFootnoteValueSaver}%
+         \footnotetext[\value{mpFootnoteValueSaver}]{%
+           Relationship is unresolved in XXI.}
      \end{center}
 
-   The same technique will work inside a floating 'table' environment
-(*note table::).  To get the footnote at the bottom of the page use the
-'tablefootnote' package, as illustrated in this example.  If you put
-'\usepackage{tablefootnote}' in the preamble and use the code shown then
-the footnote appears at the bottom and is numbered in sequence with
-other footnotes.
+   For a floating 'table' environment (*note table::), use the
+'tablefootnote' package.
 
+     \usepackage{tablefootnote}  % in preamble
+        ...
      \begin{table}
        \centering
           \begin{tabular}{l|l}
@@ -5132,38 +6750,17 @@
           \textsc{Date}  &\textsc{Campaign} \\ \hline
           1862           &Fort Donelson \\
           1863           &Vicksburg     \\
-          1865           &Army of Northern Virginia\footnote{Ending the war.}
+          1865           &Army of Northern Virginia\tablefootnote{%
+                           Ending the war.}
           \end{tabular}
          \caption{Forces captured by US Grant}
      \end{table}
 
-
-File: latex2e.info,  Node: Footnotes in section headings,  Next: Footnotes of footnotes,  Prev: Footnotes in a table,  Up: Footnotes
+The footnote appears at the page bottom and is numbered in sequence with
+other footnotes.
 
-11.5 Footnotes in section headings
-==================================
-
-Putting a footnote in a section heading, as in:
-
-     \section{Full sets\protect\footnote{This material due to ...}}
-
-causes the footnote to appear at the bottom of the page where the
-section starts, as usual, but also at the bottom of the table of
-contents, where it is not likely to be desired.  To have it not appear
-on the table of contents use the package 'footmisc' with the 'stable'
-option.
-
-     \usepackage[stable]{footmisc}
-     ...
-     \begin{document}
-     ...
-     \section{Full sets\footnote{This material due to ...}}
-
-   Note that the '\protect' is gone; including it would cause the
-footnote to reappear on the table of contents.
-
 
-File: latex2e.info,  Node: Footnotes of footnotes,  Next: Multiple reference to footnotes,  Prev: Footnotes in section headings,  Up: Footnotes
+File: latex2e.info,  Node: Footnotes of footnotes,  Prev: Footnotes in a table,  Up: Footnotes
 
 11.6 Footnotes of footnotes
 ===========================
@@ -5173,59 +6770,15 @@
 'bigfoot' extends LaTeX's default footnote mechanism in many ways,
 including allow these two, as in this example.
 
-     \usepackage{bigfoot}
+     \usepackage{bigfoot}    % in preamble
      \DeclareNewFootnote{Default}
      \DeclareNewFootnote{from}[alph]   % create class \footnotefrom{}
       ...
-     \begin{document}
-     ...
      The third theorem is a partial converse of the
-     second.\footnotefrom{First noted in Wilson.\footnote{Second edition only.}}
-     ...
+     second.\footnotefrom{%
+       First noted in Wilson.\footnote{Second edition only.}}
 
 
-File: latex2e.info,  Node: Multiple reference to footnotes,  Next: Footnote parameters,  Prev: Footnotes of footnotes,  Up: Footnotes
-
-11.7 Multiple references to footnotes
-=====================================
-
-You can refer to a single footnote more than once.  This example uses
-the package 'cleverref'.
-
-     \usepackage{cleveref}[2012/02/15]   % this version of package or later
-     \crefformat{footnote}{#2\footnotemark[#1]#3}
-     ...
-     \begin{document}
-     ...
-     The theorem is from Evers.\footnote{\label{fn:TE}Tinker and Evers, 1994.}
-     The corollary is from Chance.\footnote{Evers and Chance, 1990.}
-     But the key lemma is from Tinker.\cref{fn:TE}
-     ...
-
-   This solution will work with the package 'hyperref'.  See *note
-\footnotemark:: for a simpler solution in the common case of multiple
-authors with the same affiliation.
-
-
-File: latex2e.info,  Node: Footnote parameters,  Prev: Multiple reference to footnotes,  Up: Footnotes
-
-11.8 Footnote parameters
-========================
-
-'\footnoterule'
-     Produces the rule separating the main text on a page from the
-     page's footnotes.  Default dimensions: '0.4pt' thick (or wide), and
-     '0.4\columnwidth' long in the standard document classes (except
-     'slides', where it does not appear).
-
-'\footnotesep'
-     The height of the strut placed at the beginning of the footnote.
-     By default, this is set to the normal strut for '\footnotesize'
-     fonts (*note Font sizes::), therefore there is no extra space
-     between footnotes.  This is '6.65pt' for '10pt', '7.7pt' for
-     '11pt', and '8.4pt' for '12pt'.
-
-
 File: latex2e.info,  Node: Definitions,  Next: Counters,  Prev: Footnotes,  Up: Top
 
 12 Definitions
@@ -5252,93 +6805,127 @@
 12.1 '\newcommand' & '\renewcommand'
 ====================================
 
-'\newcommand' and '\renewcommand' define and redefine a command,
-respectively.  Synopses:
+Synopses, one of:
 
-       \newcommand{\CMD}[NARGS][OPTARGDEFAULT]{DEFN}
-       \newcommand*{\CMD}[NARGS][OPTARGDEFAULT]{DEFN}
+     \newcommand{\CMD}{DEFN}
+     \newcommand{\CMD}[NARGS]{DEFN}
+     \newcommand{\CMD}[NARGS][OPTARGDEFAULT]{DEFN}
+     \newcommand*{\CMD}{DEFN}
+     \newcommand*{\CMD}[NARGS]{DEFN}
+     \newcommand*{\CMD}[NARGS][OPTARGDEFAULT]{DEFN}
+
+or one of these.
+
+     \renewcommand{\CMD}[NARGS]{DEFN}
+     \renewcommand{\CMD}[NARGS]{DEFN}
      \renewcommand{\CMD}[NARGS][OPTARGDEFAULT]{DEFN}
+     \renewcommand*{\CMD}{DEFN}
+     \renewcommand*{\CMD}[NARGS]{DEFN}
      \renewcommand*{\CMD}[NARGS][OPTARGDEFAULT]{DEFN}
 
-   The starred form of these two commands requires that the arguments
-not contain multiple paragraphs of text (not '\long', in plain TeX
-terms).
+   Define or redefine a command.  See also the discussion of
+'\DeclareRobustCommand' in *note Class and package commands::.  The
+starred form of these two requires that the arguments not contain
+multiple paragraphs of text (in plain TeX terms that it not be '\long').
 
+   These are the parameters:
+
 CMD
-     Required; '\CMD' is the command name.  For '\newcommand', it must
-     not be already defined and must not begin with '\end'.  For
-     '\renewcommand', it must already be defined.
 
+     Required; the command name.  It must begin with a backslash, '\',
+     and must not begin with the four letter string '\end'.  For
+     '\newcommand', it must not be already defined.  For
+     '\renewcommand', this name must already be defined.
+
 NARGS
      Optional; an integer from 0 to 9, specifying the number of
-     arguments that the command can take, including any optional
-     argument.  If this argument is not present, the default is for the
-     command to have no arguments.  When redefining a command, the new
+     arguments that the command takes, including any optional argument.
+     Omitting this argument is the same as specifying 0, meaning that
+     the command has no arguments.  If you redefine a command, the new
      version can have a different number of arguments than the old
      version.
 
 OPTARGDEFAULT
      Optional; if this argument is present then the first argument of
-     defined command '\CMD' is optional, with default value
-     OPTARGDEFAULT (which may be the empty string).  If this argument is
-     not present then '\CMD' does not take an optional argument.
+     '\CMD' is optional, with default value OPTARGDEFAULT (which may be
+     the empty string).  If this argument is not present then '\CMD'
+     does not take an optional argument.
 
-     That is, if '\CMD' is used with square brackets following, as in
-     '\CMD[MYVAL]', then within DEFN the first "positional parameter"
-     '#1' expands MYVAL.  On the other hand, if '\CMD' is called without
-     square brackets following, then within DEFN the positional
-     parameter '#1' expands to the default OPTARGDEFAULT.  In either
-     case, any required arguments will be referred to starting with
-     '#2'.
+     That is, if '\CMD' is used with square brackets, as in
+     '\CMD[OPTVAL]{...}...', then within DEFN the parameter '#1' is set
+     to the value of OPTVAL.  On the other hand, if '\CMD' is called
+     without the square brackets then within DEFN the parameter '#1' is
+     set to the value of OPTARGDEFAULT.  In either case, the required
+     arguments start with '#2'.
 
-     Omitting '[MYVAL]' in a call is different from having the square
-     brackets with no contents, as in '[]'.  The former results in '#1'
-     expanding to OPTARGDEFAULT; the latter results in '#1' expanding to
-     the empty string.
+     Omitting '[OPTARGDEFAULT]' is different from having the square
+     brackets with no contents, as in '[]'.  The former sets '#1' to the
+     value of OPTARGDEFAULT; the latter sets '#1' to the empty string.
 
 DEFN
-     The text to be substituted for every occurrence of '\CMD'; the
-     positional parameter '#N' in DEFN is replaced by the text of the
-     Nth argument.
+     Required; the text to be substituted for every occurrence of
+     '\CMD'.  The parameters '#1', '#2', ...  '#NARGS' are replaced by
+     the values that you supply when you call the command (or by the
+     default value if there is an optional argument and you don't
+     exercise the option).
 
    TeX ignores spaces in the source following an alphabetic control
 sequence, as in '\cmd '.  If you actually want a space there, one
-solution is to type '{}' after the command ('\cmd{} '; another solution
-is to use an explicit control space ('\cmd\ ').
+solution is to type '{}' after the command ('\cmd{} ', and another
+solution is to use an explicit control space ('\cmd\ ').
 
    A simple example of defining a new command: '\newcommand{\RS}{Robin
-Smith}' results in '\RS' being replaced by the longer text.
+Smith}' results in '\RS' being replaced by the longer text.  Redefining
+an existing command is similar: '\renewcommand{\qedsymbol}{{\small
+QED}}'.
 
-   Redefining an existing command is similar:
-'\renewcommand{\qedsymbol}{{\small QED}}'.
+   If you try to define a command and the name has already been used
+then you get something like 'LaTeX Error: Command \fred already defined.
+Or name \end... illegal, see p.192 of the manual'.  If you try to
+redefine a command and the name has not yet been used then you get
+something like 'LaTeX Error: \hank undefined'.
 
-   Here's a command definition with one required argument:
+   Here the first command definition has no arguments, and the second
+has one required argument.
 
+     \newcommand{\student}{Ms~O'Leary}
      \newcommand{\defref}[1]{Definition~\ref{#1}}
 
-Then, '\defref{def:basis}' expands to 'Definition~\ref{def:basis}',
-which will ultimately expand to something like 'Definition~3.14'.
+Use the first as in 'I highly recommend \student{} to you'.  The second
+has a variable, so that '\defref{def:basis}' expands to
+'Definition~\ref{def:basis}', which ultimately expands to something like
+'Definition~3.14'.
 
-   An example with two required arguments: '\newcommand{\nbym}[2]{$#1
-\times #2$}' is invoked as '\nbym{2}{k}'.
+   Similarly, but with two required arguments:
+'\newcommand{\nbym}[2]{$#1 \times #2$}' is invoked as '\nbym{2}{k}'.
 
-   An example with an optional argument:
+   This example has an optional argument.
 
      \newcommand{\salutation}[1][Sir or Madam]{Dear #1:}
 
-Then, '\salutation' gives 'Dear Sir or Madam:' while '\salutation[John]'
+Then '\salutation' gives 'Dear Sir or Madam:' while '\salutation[John]'
 gives 'Dear John:'.  And '\salutation[]' gives 'Dear :'.
 
+   This example has an optional argument and two required arguments.
+
+     \newcommand{\lawyers}[3][company]{#2, #3, and~#1}
+     I employ \lawyers[Howe]{Dewey}{Cheatem}.
+
+The output is 'I employ Dewey, Cheatem, and Howe'.  The optional
+argument, the 'Howe', is associated with '#1', while 'Dewey' and
+'Cheatem' are associated with '#2' and '#3'.  Because of the optional
+argument, '\lawyers{Dewey}{Cheatem}' will give the output 'I employ
+Dewey, Cheatem, and company'.
+
    The braces around DEFN do not define a group, that is, they do not
-delimit the scope of the result of expanding DEFN.  So
-'\newcommand{\shipname}[1]{\it #1}' is problematic; in this sentence,
+delimit the scope of the result of expanding DEFN.  For example, with
+'\newcommand{\shipname}[1]{\it #1}', in this sentence,
 
      The \shipname{Monitor} met the \shipname{Merrimac}.
 
-the words 'met the' would incorrectly be in italics.  Another pair of
-braces in the definition is needed, like this:
-'\newcommand{\shipname}[1]{{\it #1}}'.  Those braces are part of the
-definition and thus do define a group.
+the words 'met the' would incorrectly be in italics.  The solution is to
+put another pair of braces inside the definition:
+'\newcommand{\shipname}[1]{{\it #1}}'.
 
 
 File: latex2e.info,  Node: \providecommand,  Next: \newcounter,  Prev: \newcommand & \renewcommand,  Up: Definitions
@@ -5346,18 +6933,31 @@
 12.2 '\providecommand'
 ======================
 
-Defines a command, as long as no command of this name already exists.
-Synopses:
+Synopses, one of:
 
+     \providecommand{CMD}{DEFN}
+     \providecommand{CMD}[NARGS]{DEFN}
      \providecommand{CMD}[NARGS][OPTARGDEFAULT]{DEFN}
+     \providecommand*{CMD}{DEFN}
+     \providecommand*{CMD}[NARGS]{DEFN}
      \providecommand*{CMD}[NARGS][OPTARGDEFAULT]{DEFN}
 
-   If no command of this name already exists then this has the same
-effect as '\newcommand' (*note \newcommand & \renewcommand::).  If a
-command of this name already exists then this definition does nothing.
-This is particularly useful in a style file, or other file that may be
-loaded more than once.
+   Defines a command, as long as no command of this name already exists.
+If no command of this name already exists then this has the same effect
+as '\newcommand'.  If a command of this name already exists then this
+definition does nothing.  This is particularly useful in a file that may
+be loaded more than once, such as a style file.  *Note \newcommand &
+\renewcommand:: for the description of the arguments.
 
+   This example
+
+     \providecommand{\myaffiliation}{Saint Michael's College}
+     \providecommand{\myaffiliation}{Saint Michael's College}
+     From \myaffiliation.
+
+outputs 'From Saint Michael's College'.  Unlike '\newcommand', the
+repeated use of '\providecommand' does not give an error.
+
 
 File: latex2e.info,  Node: \newcounter,  Next: \newlength,  Prev: \providecommand,  Up: Definitions
 
@@ -5369,58 +6969,94 @@
      \newcounter{COUNTERNAME}
      \newcounter{COUNTERNAME}[SUPERCOUNTER]
 
-   Globally defines a new counter named COUNTERNAME and initialize the
-new counter to zero.
+   Globally defines a new counter named COUNTERNAME and initialize it to
+zero (*note Counters::).
 
-   The name COUNTERNAME must consists of letters only, and does not
-begin with a backslash.  This name must not already be in use by another
+   The name COUNTERNAME must consist of letters only.  It does not begin
+with a backslash.  This name must not already be in use by another
 counter.
 
-   When you use the optional argument '[SUPERCOUNTER]' then COUNTERNAME
-will be numbered within, or subsidiary to, the existing counter
-SUPERCOUNTER.  For example, ordinarily 'subsection' is numbered within
-'section' so that any time SUPERCOUNTER is incremented with
-'\stepcounter' (*note \stepcounter::) or '\refstepcounter' (*note
-\refstepcounter::) then COUNTERNAME is reset to zero.
+   When you use the optional argument '[SUPERCOUNTER]' then the counter
+COUNTERNAME will be reset to zero whenever SUPERCOUNTER is incremented.
+For example, ordinarily 'subsection' is numbered within 'section' so
+that any time you increment SECTION, either with '\stepcounter' (*note
+\stepcounter::) or '\refstepcounter' (*note \refstepcounter::), then
+LaTeX will reset SUBSECTION to zero.
 
-   *Note Counters::, for more information about counters.
+   This example
 
+     \newcounter{asuper}  \setcounter{asuper}{1}
+     \newcounter{asub}[asuper] \setcounter{asub}{3}   % Note `asuper'
+     The value of asuper is \arabic{asuper} and of asub is \arabic{asub}.
+     \stepcounter{asuper}
+     Now asuper is \arabic{asuper} while asub is \arabic{asub}.
+
+   produces 'The value of asuper is 1 and that of asub is 3' and 'Now
+asuper is 2 while asub is 0'.
+
+   If the counter already exists, for instance by entering 'asuper'
+twice, then you get something like 'LaTeX Error: Command \c at asuper
+already defined. Or name \end... illegal, see p.192 of the manual.'.
+
+   If you use the optional argument then the super counter must already
+exist.  Entering '\newcounter{jh}[lh]' when 'lh' is not a defined
+counter will get you 'LaTeX Error: No counter 'lh' defined.'
+
 
 File: latex2e.info,  Node: \newlength,  Next: \newsavebox,  Prev: \newcounter,  Up: Definitions
 
-12.4 '\newlength': Allocating a length
-======================================
+12.4 '\newlength'
+=================
 
-Allocate a new "length" register.  Synopsis:
+Synopsis:
 
-     \newlength{\ARG}
+     \newlength{ARG}
 
-   This command takes one required argument, which must begin with a
-backslash ('\').  It creates a new length register named '\ARG', which
-is a place to hold (rubber) lengths such as '1in plus.2in minus.1in'
-(what plain TeX calls a 'skip' register).  The register gets an initial
-value of zero.  The control sequence '\ARG' must not already be defined.
+   Allocate a new length register (*note Lengths::).  The required
+argument ARG must begin with a backslash, '\'.  The new register holds
+rubber lengths such as '72.27pt' or '1in plus.2in minus.1in' (a LaTeX
+length register is what plain TeX calls a 'skip' register).  The initial
+value is zero.  The control sequence '\ARG' must not be already defined.
 
-   *Note Lengths::, for more about lengths.
+   An example:
 
+     \newlength{\graphichgt}
+
+   If you forget the backslash then you get 'Missing control sequence
+inserted'.  If the command sequence already exists then you get
+something like 'LaTeX Error: Command \graphichgt already defined. Or
+name \end... illegal, see p.192 of the manual'.
+
 
 File: latex2e.info,  Node: \newsavebox,  Next: \newenvironment & \renewenvironment,  Prev: \newlength,  Up: Definitions
 
-12.5 '\newsavebox': Allocating a box
-====================================
+12.5 '\newsavebox'
+==================
 
-Allocate a "bin" for holding a box.  Synopsis:
+Synopsis:
 
-     \newsavebox{\CMD}
+     \newsavebox{CMD}
 
-   Defines '\CMD' to refer to a new bin for storing boxes.  Such a box
-is for holding typeset material, to use multiple times (*note Boxes::)
-or to measure or manipulate.  The name '\CMD' must start with a
-backslash ('\'), and must not be already defined.
+   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::).
 
-   The allocation of a box is global.  This command is fragile (*note
-\protect::).
+   The first line here sets you up to save the material for later use.
 
+     \newsavebox{\logobox}
+     \savebox{\logobox}{LoGo}
+     Our logo is \usebox{\logobox}.
+
+The output is 'Our logo is LoGo'.
+
+   If there is an already defined bin then you get something like 'LaTeX
+Error: Command \logobox already defined. Or name \end... illegal, see
+p.192 of the manual'.
+
+   The allocation of a box is global.
+
 
 File: latex2e.info,  Node: \newenvironment & \renewenvironment,  Next: \newtheorem,  Prev: \newsavebox,  Up: Definitions
 
@@ -5427,21 +7063,34 @@
 12.6 '\newenvironment' & '\renewenvironment'
 ============================================
 
-These commands define or redefine an environment ENV, that is,
-'\begin{ENV} BODY \end{ENV}'.  Synopses:
+Synopses, one of:
 
-        \newenvironment{ENV}[NARGS][OPTARGDEFAULT]{BEGDEFN}{ENDDEFN}
-       \newenvironment*{ENV}[NARGS][OPTARGDEFAULT]{BEGDEFN}{ENDDEFN}
-      \renewenvironment{ENV}[NARGS][OPTARGDEFAULT]{BEGDEFN}{ENDDEFN}
-     \renewenvironment*{ENV}[NARGS][OPTARGDEFAULT]{BEGDEFN}{ENDDEFN}
+     \newenvironment{ENV}{BEGDEF}{ENDDEF}
+     \newenvironment{ENV}[NARGS]{BEGDEF}{ENDDEF}
+     \newenvironment{ENV}[NARGS][OPTARGDEFAULT]{BEGDEF}{ENDDEF}
+     \newenvironment*{ENV}{BEGDEF}{ENDDEF}
+     \newenvironment*{ENV}[NARGS]{BEGDEF}{ENDDEF}
+     \newenvironment*{ENV}[NARGS][OPTARGDEFAULT]{BEGDEF}{ENDDEF}
 
+or one of these.
+
+     \renewenvironment{ENV}{BEGDEF}{ENDDEF}
+     \renewenvironment{ENV}[NARGS]{BEGDEF}{ENDDEF}
+     \renewenvironment{ENV}[NARGS][OPTARGDEFAULT]{BEGDEF}{ENDDEF}
+     \renewenvironment*{ENV}{BEGDEF}{ENDDEF}
+     \renewenvironment*{ENV}[NARGS]{BEGDEF}{ENDDEF}
+     \renewenvironment*{ENV}[NARGS][OPTARGDEFAULT]{BEGDEF}{ENDDEF}
+
+   Define or redefine the environment ENV, that is, create the construct
+'\begin{ENV} ... BODY ... \end{ENV}'.
+
    The starred form of these commands requires that the arguments not
-contain multiple paragraphs of text.  The body of these environments can
-still contain multiple paragraphs.
+contain multiple paragraphs of text.  However, the body of these
+environments can contain multiple paragraphs.
 
 ENV
      Required; the environment name.  It consists only of letters or the
-     '*' character, and thus does not begin with backslash ('\').  It
+     '*' character, and thus does not begin with backslash, '\'.  It
      must not begin with the string 'end'.  For '\newenvironment', the
      name ENV must not be the name of an already existing environment,
      and also the command '\ENV' must be undefined.  For
@@ -5450,51 +7099,57 @@
 
 NARGS
      Optional; an integer from 0 to 9 denoting the number of arguments
-     of that the environment will take.  When the environment is used
-     these arguments appear after the '\begin', as in
-     '\begin{ENV}{ARG1}...{ARGN}'.  If this argument is not present then
-     the default is for the environment to have no arguments.  When
-     redefining an environment, the new version can have a different
-     number of arguments than the old version.
+     of that the environment takes.  When you use the environment these
+     arguments appear after the '\begin', as in '\begin{ENV}{ARG1} ...
+     {ARGN}'.  Omitting this is equivalent to setting it to 0; the
+     environment will have no arguments.  When redefining an
+     environment, the new version can have a different number of
+     arguments than the old version.
 
 OPTARGDEFAULT
-     Optional; if this argument is present then the first argument of
-     the defined environment is optional, with default value
-     OPTARGDEFAULT (which may be the empty string).  If this argument is
-     not present then the environment does not take an optional
-     argument.
+     Optional; if this is present then the first argument of the defined
+     environment is optional, with default value OPTARGDEFAULT (which
+     may be the empty string).  If this is not in the definition then
+     the environment does not take an optional argument.
 
-     That is, when '[OPTARGDEFAULT]' is present in the environment
-     definition, if '\begin{ENV}' is used with square brackets
-     following, as in '\begin{ENV}[MYVAL]', then, within BEGDEFN, the
-     positional parameter '#1' expands to MYVAL.  If '\begin{ENV}' is
-     called without square brackets following, then, within within
-     BEGDEFN, the positional parameter '#1' expands to the default
-     OPTARGDEFAULT.  In either case, any required arguments will be
-     referred to starting with '#2'.
+     That is, when OPTARGDEFAULT is present in the definition of the
+     environment then you can start the environment with square
+     brackets, as in '\begin{ENV}[OPTVAL]{...} ... \end{ENV}'.  In this
+     case, within BEGDEFN the parameter '#1' is set to the value of
+     OPTVAL.  If you call '\begin{ENV}' without square brackets, then
+     within BEGDEFN the parameter '#1' is set to the value of the
+     default OPTARGDEFAULT.  In either case, any required arguments
+     start with '#2'.
 
-     Omitting '[MYVAL]' in the call is different from having the square
+     Omitting '[MYVAL]' in the call is different than having the square
      brackets with no contents, as in '[]'.  The former results in '#1'
      expanding to OPTARGDEFAULT; the latter results in '#1' expanding to
      the empty string.
 
-BEGDEFN
+BEGDEF
      Required; the text expanded at every occurrence of '\begin{ENV}'.
-     Within BEGDEF, the Nth positional parameter (i.e., '#N') is
-     replaced by the text of the Nth argument.
+     Within BEGDEF, the parameters '#1', '#2', ...  '#NARGS', are
+     replaced by the values that you supply when you call the
+     environment; see the examples below.
 
-ENDDEFN
+ENDDEF
      Required; the text expanded at every occurrence of '\end{ENV}'.
-     This may not contain any positional parameters, so '#N' cannot be
-     used here (but see the final example below).
+     This may not contain any parameters, that is, you cannot use '#1',
+     '#2', etc., here (but see the final example below).
 
-   All environments, that is to say the BEGDEFN code, the environment
-body and the ENDDEFN code, are processed within a group.  Thus, in the
+   All environments, that is to say the BEGDEF code, the environment
+body, and the ENDDEF code, are processed within a group.  Thus, in the
 first example below, the effect of the '\small' is limited to the quote
 and does not extend to material following the environment.
 
+   If you try to define an environment and the name has already been
+used then you get something like 'LaTeX Error: Command \fred already
+defined. Or name \end... illegal, see p.192 of the manual'.  If you try
+to redefine an environment and the name has not yet been used then you
+get something like 'LaTeX Error: Environment hank undefined.'.
+
    This example gives an environment like LaTeX's 'quotation' except
-that it will be set in smaller type:
+that it will be set in smaller type.
 
      \newenvironment{smallquote}{%
        \small\begin{quotation}
@@ -5502,9 +7157,17 @@
        \end{quotation}
      }
 
-   This one shows the use of arguments; it gives a quotation environment
-that cites the author:
+   This has an argument, which is set in boldface at the start of a
+paragraph.
 
+     \newenvironment{point}[1]{%
+       \noindent\textbf{#1}
+     }{%
+     }
+
+   This one shows the use of a optional argument; it gives a quotation
+environment that cites the author.
+
      \newenvironment{citequote}[1][Shakespeare]{%
        \begin{quotation}
        \noindent\textit{#1}:
@@ -5513,7 +7176,7 @@
      }
 
 The author's name is optional, and defaults to 'Shakespeare'.  In the
-document, use the environment like this:
+document, use the environment like this.
 
      \begin{citequote}[Lincoln]
        ...
@@ -5520,7 +7183,7 @@
      \end{citequote}
 
    The final example shows how to save the value of an argument to use
-in ENDDEFN, in this case in a box (*note \sbox::):
+in ENDDEF, in this case in a box (*note \sbox & \savebox::).
 
      \newsavebox{\quoteauthor}
      \newenvironment{citequote}[1][Shakespeare]{%
@@ -5537,29 +7200,28 @@
 12.7 '\newtheorem'
 ==================
 
-Define a new theorem-like environment.  Synopses:
+Synopses:
 
      \newtheorem{NAME}{TITLE}
      \newtheorem{NAME}{TITLE}[NUMBERED_WITHIN]
      \newtheorem{NAME}[NUMBERED_LIKE]{TITLE}
 
-   Using the first form, '\newtheorem{NAME}{TITLE}' creates an
-environment that will be labelled with TITLE.  See the first example
-below.
+   Define a new theorem-like environment.  You can specify one of
+NUMBERED_WITHIN and NUMBERED_LIKE, or neither, but not both.
 
-   The second form '\newtheorem{NAME}{TITLE}[NUMBERED_WITHIN]' creates
+   The first form, '\newtheorem{NAME}{TITLE}', creates an environment
+that will be labelled with TITLE; see the first example below.
+
+   The second form, '\newtheorem{NAME}{TITLE}[NUMBERED_WITHIN]', creates
 an environment whose counter is subordinate to the existing counter
-NUMBERED_WITHIN (its counter will be reset when NUMBERED_WITHIN is
-reset).
+NUMBERED_WITHIN, so this counter will be reset when NUMBERED_WITHIN is
+reset.  See the second example below.
 
    The third form '\newtheorem{NAME}[NUMBERED_LIKE]{TITLE}', with
-optional argument between the two required arguments, will create an
+optional argument between the two required arguments, creates an
 environment whose counter will share the previously defined counter
-NUMBERED_LIKE.
+NUMBERED_LIKE.  See the third example.
 
-   You can specify one of NUMBERED_WITHIN and NUMBERED_LIKE, or neither,
-but not both.
-
    This command creates a counter named NAME.  In addition, unless the
 optional argument NUMBERED_LIKE is used, inside of the theorem-like
 environment the current '\ref' value will be that of
@@ -5570,13 +7232,14 @@
    Arguments:
 
 NAME
-     The name of the environment.  It must not begin with a backslash
-     ('\').  It must not be the name of an existing environment; indeed,
-     the command name '\NAME' must not already be defined as anything.
+     The name of the environment.  It is a string of letters.  It must
+     not begin with a backslash, '\'.  It must not be the name of an
+     existing environment, and the command name '\NAME' must not already
+     be defined.
 
 TITLE
-     The text printed at the beginning of the environment, before the
-     number.  For example, 'Theorem'.
+     The text to be printed at the beginning of the environment, before
+     the number.  For example, 'Theorem'.
 
 NUMBERED_WITHIN
      Optional; the name of an already defined counter, usually a
@@ -5608,9 +7271,9 @@
        Second def
      \end{defn}
 
-   Because the next example specifies the optional argument
-NUMBERED_WITHIN to '\newtheorem' as 'section', the example, with the
-same document body, gives 'Definition 1.1' and 'Definition 2.1'.
+   This example has the same document body as the prior one.  But here
+'\newtheorem''s optional argument NUMBERED_WITHIN is given as 'section',
+so the output is like 'Definition 1.1' and 'Definition 2.1'.
 
      \newtheorem{defn}{Definition}[section]
      \begin{document}
@@ -5649,36 +7312,33 @@
 
 File: latex2e.info,  Node: \newfont,  Next: \protect,  Prev: \newtheorem,  Up: Definitions
 
-12.8 '\newfont': Define a new font (obsolete)
-=============================================
+12.8 '\newfont'
+===============
 
-'\newfont', now obsolete, defines a command that will switch fonts.
-Synopsis:
+This command is obsolete.  This description is here only to help with
+old documents.  New documents should define fonts in families through
+the New Font Selection Scheme which allows you to, for example,
+associate a boldface with a roman (*note Fonts::).
 
+   Synopsis:
+
      \newfont{\CMD}{FONT DESCRIPTION}
 
-   This defines a control sequence '\CMD' that will change the current
-font.  LaTeX will look on your system for a file named 'FONTNAME.tfm'.
-The control sequence must must not already be defined.  It must begin
-with a backslash ('\').
+   Define a command '\CMD' that will change the current font.  The
+control sequence must must not already be defined.  It must begin with a
+backslash, '\'.
 
-   This command is obsolete.  It is a low-level command for setting up
-an individual font.  Today fonts are almost always defined in families
-(which allows you to, for example, associate a boldface with a roman)
-through the so-called "New Font Selection Scheme", either by using '.fd'
-files or through the use of an engine that can access system fonts such
-as XeLaTeX (*note TeX engines::).
+   The FONT DESCRIPTION consists of a FONTNAME and an optional "at
+clause".  LaTeX will look on your system for a file named
+'FONTNAME.tfm'.  The at clause can have the form either 'at DIMEN' or
+'scaled FACTOR', where a FACTOR of '1000' means no scaling.  For LaTeX's
+purposes, all this does is scale all the character and other font
+dimensions relative to the font's design size, which is a value defined
+in the '.tfm' file.
 
-   But since it is part of LaTeX, here is an explanation: the FONT
-DESCRIPTION consists of a FONTNAME and an optional "at clause"; this can
-have the form either 'at DIMEN' or 'scaled FACTOR', where a FACTOR of
-'1000' means no scaling.  For LaTeX's purposes, all this does is scale
-all the character and other font dimensions relative to the font's
-design size, which is a value defined in the '.tfm' file.
+   This defines two equivalent fonts and typesets a few characters in
+each.
 
-   This example defines two equivalent fonts and typesets a few
-characters in each:
-
      \newfont{\testfontat}{cmb10 at 11pt}
      \newfont{\testfontscaled}{cmb10 scaled 1100}
      \testfontat abc
@@ -5749,7 +7409,7 @@
 
      \ignorespaces
 
-   or
+or
 
      \ignorespacesafterend
 
@@ -5767,12 +7427,14 @@
      \newcommand{\points}[1]{\makebox[0pt]{\makebox[10em][l]{#1~pts}}
      \begin{enumerate}
        \item\points{10}no extra space output here
-       \item\points{15} extra space output between the number and the word `extra'
+       \item\points{15} extra space between the number and the `extra'
      \end{enumerate}
 
-   The solution is to change to
-'\newcommand{\points}[1]{\makebox[0pt]{\makebox[10em][l]{#1~pts}}\ignorespaces}'.
+The solution is to change to this.
 
+     \newcommand{\points}[1]{%
+       \makebox[0pt]{\makebox[10em][l]{#1~pts}}\ignorespaces}
+
    A second example shows spaces being removed from the front of text.
 The commands below allow a user to uniformly attach a title to names.
 But, as given, if a title accidentally starts with a space then
@@ -5780,7 +7442,7 @@
 
      \makeatletter
      \newcommand{\honorific}[1]{\def\@honorific{#1}} % remember title
-     \newcommand{\fullname}[1]{\@honorific~#1}       % recall title; put before name
+     \newcommand{\fullname}[1]{\@honorific~#1}       % put title before name
      \makeatother
      \begin{tabular}{|l|}
      \honorific{Mr/Ms}  \fullname{Jones} \\  % no extra space here
@@ -5787,7 +7449,7 @@
      \honorific{ Mr/Ms} \fullname{Jones}     % extra space before title
      \end{tabular}
 
-   To fix this, change to
+To fix this, change to
 '\newcommand{\fullname}[1]{\ignorespaces\@honorific~#1}'.
 
    The '\ignorespaces' is also often used in a '\newenvironment' at the
@@ -5841,18 +7503,20 @@
 are used in the 'enumerate' environment, for up to four levels of
 nesting (*note enumerate::).
 
+   Counters can have any integer value but they are typically positive.
+
    New counters are created with '\newcounter'.  *Note \newcounter::.
 
 * Menu:
 
 * \alph \Alph \arabic \roman \Roman \fnsymbol:: Print value of a counter.
-* \usecounter::       Use a specified counter in a list environment.
-* \value::            Use the value of a counter in an expression.
-* \setcounter::       Set the value of a counter.
-* \addtocounter::     Add a quantity to a counter.
-* \refstepcounter::   Add to a counter.
-* \stepcounter::      Add to a counter, resetting subsidiary counters.
-* \day \month \year:: Numeric date values.
+* \usecounter::           Use a specified counter in a list environment.
+* \value::                Use the value of a counter in an expression.
+* \setcounter::           Set the value of a counter.
+* \addtocounter::         Add a quantity to a counter.
+* \refstepcounter::       Add to a counter.
+* \stepcounter::          Add to a counter, resetting subsidiary counters.
+* \day & \month & \year:: Numeric date values.
 
 
 File: latex2e.info,  Node: \alph \Alph \arabic \roman \Roman \fnsymbol,  Next: \usecounter,  Up: Counters
@@ -5862,7 +7526,7 @@
 
 Print the value of a counter, in a specified style.  For instance, if
 the counter COUNTER has the value 1 then a '\alph{COUNTER}' in your
-source will result in a lower case letter a appearing in the output.
+source will result in a lowercase letter a appearing in the output.
 
    All of these commands take a single counter as an argument, for
 instance, '\alph{enumi}'.  Note that the counter name does not start
@@ -5869,60 +7533,69 @@
 with a backslash.
 
 '\alph{COUNTER}'
-     Print the value of COUNTER in lowercase letters: 'a', 'b', ...
+     Print the value of COUNTER in lowercase letters: 'a', 'b', ...  If
+     the counter's value is less than 1 or more than 26 then you get
+     'LaTeX Error: Counter too large.'
 
 '\Alph{COUNTER}'
-     Print in uppercase letters: 'A', 'B', ...
+     Print in uppercase letters: 'A', 'B', ...  If the counter's value
+     is less than 1 or more than 26 then you get 'LaTeX Error: Counter
+     too large.'
 
 '\arabic{COUNTER}'
-     Print in Arabic numbers: '1', '2', ...
+     Print in Arabic numbers such as '5' or '-2'.
 
 '\roman{COUNTER}'
-     Print in lowercase roman numerals: 'i', 'ii', ...
+     Print in lowercase roman numerals: 'i', 'ii', ...  If the counter's
+     value is less than 1 then you get no warning or error but LaTeX
+     does not print anything in the output.
 
 '\Roman{COUNTER}'
-     Print in uppercase roman numerals: 'I', 'II', ...
+     Print in uppercase roman numerals: 'I', 'II', ...  If the counter's
+     value is less than 1 then you get no warning or error but LaTeX
+     does not print anything in the output.
 
 '\fnsymbol{COUNTER}'
-     Prints the value of COUNTER in a specific sequence of nine symbols
-     (conventionally used for labeling footnotes).  The value of COUNTER
-     must be between 1 and 9, inclusive.
+     Prints the value of COUNTER using a sequence of nine symbols that
+     are traditionally used for labeling footnotes.  The value of
+     COUNTER should be between 1 and 9, inclusive.  If the counter's
+     value is less than 0 or more than 9 then you get 'LaTeX Error:
+     Counter too large', while if it is 0 then you get no error or
+     warning but LaTeX does not output anything.
 
      Here are the symbols:
 
-     Name                     Command                  Equivalent Unicode
-                                                       symbol and/or numeric
-                                                       code point
-     ---------------------------------------------------------------------------
-     asterisk                 '\ast'                   *
-     dagger                   '\dagger'                U+2020
-     ddagger                  '\ddagger'               U+2021
-     section-sign             '\S'                     U+00A7
-     paragraph-sign           '\P'                     U+00B6
-     double-vert              '\parallel'              U+2016
-     double-asterisk          '\ast\ast'               **
-     double-dagger            '\dagger\dagger'         U+2020U+2020
-     double-ddagger           '\ddagger\ddagger'       U+2021U+2021
+     Number  Name                   Command                Symbol
+     -----------------------------------------------------------------------------
+     1       asterisk               '\ast'                 *
+     2       dagger                 '\dagger'              U+2020
+     3       ddagger                '\ddagger'             U+2021
+     4       section-sign           '\S'                   U+00A7
+     5       paragraph-sign         '\P'                   U+00B6
+     6       double-vert            '\parallel'            U+2016
+     7       double-asterisk        '\ast\ast'             **
+     8       double-dagger          '\dagger\dagger'       U+2020U+2020
+     9       double-ddagger         '\ddagger\ddagger'     U+2021U+2021
 
 
 File: latex2e.info,  Node: \usecounter,  Next: \value,  Prev: \alph \Alph \arabic \roman \Roman \fnsymbol,  Up: Counters
 
-13.2 '\usecounter{COUNTER}'
-===========================
+13.2 '\usecounter'
+==================
 
 Synopsis:
 
      \usecounter{COUNTER}
 
-   In the 'list' environment, when used in the second argument, this
-command sets up COUNTER to number the list items.  It initializes
-COUNTER to zero, and arranges that when '\item' is called without its
-optional argument then COUNTER is incremented by '\refstepcounter',
-making its value be the current 'ref' value.  This command is fragile
-(*note \protect::).
+   Used in the second argument of the 'list' environment (*note list::),
+this declares that list items will be numbered by COUNTER.  It
+initializes COUNTER to zero, and arranges that when '\item' is called
+without its optional argument then COUNTER is incremented by
+'\refstepcounter', making its value be the current 'ref' value (*note
+\ref::).  This command is fragile (*note \protect::).
 
-   Put in the preamble, this makes a new list environment enumerated
-with TESTCOUNTER:
+   Put in the document preamble, this example makes a new list
+environment enumerated with TESTCOUNTER:
 
      \newcounter{testcounter}
      \newenvironment{test}{%
@@ -5936,21 +7609,16 @@
 
 File: latex2e.info,  Node: \value,  Next: \setcounter,  Prev: \usecounter,  Up: Counters
 
-13.3 '\value{COUNTER}'
-======================
+13.3 '\value'
+=============
 
 Synopsis:
 
      \value{COUNTER}
 
-   This command expands to the value of COUNTER.  It is often used in
-'\setcounter' or '\addtocounter', but '\value' can be used anywhere that
-LaTeX expects a number.  It must not be preceded by '\protect' (*note
-\protect::).
+   Expands to the value of the counter COUNTER.  (Note that the name of
+a counter does not begin with a backslash.)
 
-   The '\value' command is not used for typesetting the value of the
-counter.  *Note \alph \Alph \arabic \roman \Roman \fnsymbol::.
-
    This example outputs 'Test counter is 6. Other counter is 5.'.
 
      \newcounter{test} \setcounter{test}{5}
@@ -5960,6 +7628,15 @@
      Test counter is \arabic{test}.
      Other counter is \arabic{other}.
 
+   The '\value' command is not used for typesetting the value of the
+counter.  For that, see *note \alph \Alph \arabic \roman \Roman
+\fnsymbol::.
+
+   It is often used in '\setcounter' or '\addtocounter' but '\value' can
+be used anywhere that LaTeX expects a number, such as in
+'\hspace{\value{foo}\parindent}'.  It must not be preceded by '\protect'
+(*note \protect::).
+
    This example inserts '\hspace{4\parindent}'.
 
      \setcounter{myctr}{3} \addtocounter{myctr}{1}
@@ -5968,31 +7645,37 @@
 
 File: latex2e.info,  Node: \setcounter,  Next: \addtocounter,  Prev: \value,  Up: Counters
 
-13.4 '\setcounter{COUNTER}{VALUE}'
-==================================
+13.4 '\setcounter'
+==================
 
 Synopsis:
 
      \setcounter{COUNTER}{VALUE}
 
-   The '\setcounter' command globally sets the value of COUNTER to the
-VALUE argument.  Note that the counter name does not start with a
-backslash.
+   Globally set the counter COUNTER to have the value of the VALUE
+argument, which must be an integer.  Thus, you can set a counter's value
+as '\setcounter{section}{5}'.  Note that the counter name does not start
+with a backslash.
 
-   In this example the section value appears as 'V'.
+   In this example if the counter 'theorem' has value 12 then the second
+line will print 'XII'.
 
-     \setcounter{section}{5}
-     Here it is in Roman: \Roman{section}.
+     \setcounter{exercise}{\value{theorem}}
+     Here it is in Roman: \Roman{exercise}.
 
 
 File: latex2e.info,  Node: \addtocounter,  Next: \refstepcounter,  Prev: \setcounter,  Up: Counters
 
-13.5 '\addtocounter{COUNTER}{VALUE}'
-====================================
+13.5 '\addtocounter'
+====================
 
-The '\addtocounter' command globally increments COUNTER by the amount
-specified by the VALUE argument, which may be negative.
+Synopsis:
 
+     \addtocounter{COUNTER}{VALUE 
+
+   Globally increment COUNTER by the amount specified by the VALUE
+argument, which may be negative.
+
    In this example the section value appears as 'VII'.
 
      \setcounter{section}{5}
@@ -6002,12 +7685,16 @@
 
 File: latex2e.info,  Node: \refstepcounter,  Next: \stepcounter,  Prev: \addtocounter,  Up: Counters
 
-13.6 '\refstepcounter{COUNTER}'
-===============================
+13.6 '\refstepcounter'
+======================
 
-The '\refstepcounter' command works in the same way as '\stepcounter'
-(*note \stepcounter::): it globally increments the value of COUNTER by
-one and resets the value of any counter numbered within it.  (For the
+Synopsis:
+
+     \refstepcounter{COUNTER}
+
+   Globally increments the value of COUNTER by one, as does
+'\stepcounter' (*note \stepcounter::).  The difference is that this
+command resets the value of any counter numbered within it.  (For the
 definition of "counters numbered within", *note \newcounter::.)
 
    In addition, this command also defines the current '\ref' value to be
@@ -6017,29 +7704,45 @@
 locally, i.e., inside the current group.
 
 
-File: latex2e.info,  Node: \stepcounter,  Next: \day \month \year,  Prev: \refstepcounter,  Up: Counters
+File: latex2e.info,  Node: \stepcounter,  Next: \day & \month & \year,  Prev: \refstepcounter,  Up: Counters
 
-13.7 '\stepcounter{COUNTER}'
-============================
+13.7 '\stepcounter'
+===================
 
-The '\stepcounter' command globally adds one to COUNTER and resets all
-counters numbered within it.  (For the definition of "counters numbered
-within", *note \newcounter::.)
+Synopsis:
 
+     \stepcounter{COUNTER}
+
+   Globally adds one to COUNTER and resets all counters numbered within
+it.  (For the definition of "counters numbered within", *note
+\newcounter::.)
+
+   This command differs from '\refstepcounter' in that this one does not
+influence references -- it does not define the current '\ref' value to
+be the result of '\thecounter' (*note \refstepcounter::).
+
 
-File: latex2e.info,  Node: \day \month \year,  Prev: \stepcounter,  Up: Counters
+File: latex2e.info,  Node: \day & \month & \year,  Prev: \stepcounter,  Up: Counters
 
-13.8 '\day \month \year': Predefined counters
-=============================================
+13.8 '\day' & '\month' & '\year'
+================================
 
-LaTeX defines counters for the day of the month ('\day', 1-31), month of
-the year ('\month', 1-12), and year ('\year', Common Era).  When TeX
-starts up, they are set to the current values on the system where TeX is
-running.  They are not updated as the job progresses.
+LaTeX defines the counter '\day' for the day of the month (nominally
+with value between 1 and 31), '\month' for the month of the year
+(nominally with value between 1 and 12), and year '\year'.  When TeX
+starts up, they are set from the current values on the system.  The
+related command '\today' produces a string representing the current day
+(*note \today::).
 
-   The related command '\today' produces a string representing the
-current day (*note \today::).
+   They counters are not updated as the job progresses so in principle
+they could be incorrect by the end.  In addition, TeX does no sanity
+check:
 
+     \day=-2 \month=13 \year=-4 \today
+
+gives no error or warning and results in the output '-2, -4' (the bogus
+month value produces no output).
+
 
 File: latex2e.info,  Node: Lengths,  Next: Making paragraphs,  Prev: Counters,  Up: Top
 
@@ -6049,25 +7752,89 @@
 A "length" is a measure of distance.  Many LaTeX commands take a length
 as an argument.
 
+   This shows a box of the given length.
+
+     \newcommand{\blackbar}[1]{\rule{#1}{10pt}}   % make a bar
+     \newcommand{\showhbox}[2]{\fboxsep=0pt\fbox{\hbox to #1{#2}}} % box it
+     XXX\showhbox{100pt}{\blackbar{100pt}}YYY
+
+It produces a black bar 100 points long between 'XXX' and 'YYY'.
+
    Lengths come in two types.  A "rigid length" (what Plain TeX calls a
-"dimen") such as '10pt' cannot contain a 'plus' or 'minus' component.  A
-"rubber length" (what Plain TeX calls a "skip") can contain those, as
-with '1cm plus0.05cm minus0.01cm'.  These give the ability to stretch or
-shrink; the length in the prior sentence could appear in the output as
-long as 1.05 cm or as short as 0.99 cm, depending on what TeX's
-typesetting algorithm finds optimum.
+"dimen") such as '10pt' does not contain a 'plus' or 'minus' component.
+The above example shows a rigid length.  A "rubber length" (what Plain
+TeX calls a "skip") can contain those components, as with '1cm
+plus0.05cm minus0.01cm'.  Here the '1cm' is the "natural length" while
+the other two, the 'plus' and 'minus' components, allow the length to
+stretch or shrink.
 
+   Shrinking is simpler: with '1cm minus 0.05cm', the natural length is
+1cm but if smaller is needed then TeX can shrink it down as far as
+0.95cm.  Beyond that, TeX refuses to shrink any more.  Thus, below the
+first one works fine, producing a space of 98 points between the two
+bars.
+
+     XXX\showhbox{300pt}{%
+       \blackbar{101pt}\hspace{100pt minus 2pt}\blackbar{101pt}}YYY
+
+     XXX\showhbox{300pt}{%
+       \blackbar{105pt}\hspace{100pt minus 1pt}\blackbar{105pt}}YYY
+
+But the second one gets a warning like 'Overfull \hbox (1.0pt too wide)
+detected at line 17'.  In the output the first 'Y' is overwritten by the
+end of the black bar, because the box's material is wider than the 300pt
+allocated, as TeX has refused to shrink the total to less than
+309 points.
+
+   Stretching is like shrinking except that if TeX is asked to stretch
+beyond the given amount, it won't refuse.  Here the first line is fine,
+producing a space of 110 points between the bars.
+
+     XXX\showhbox{300pt}{%
+       \blackbar{95pt}\hspace{100pt plus 10pt}\blackbar{95pt}}YYY
+
+     XXX\showhbox{300pt}{%
+       \blackbar{95pt}\hspace{100pt plus 1pt}\blackbar{95pt}}YYY
+
+In the second line TeX needs a stretch of 10 points and only 1 point was
+specified.  In this situation, TeX stretches the space to the required
+length, but it complains with a warning like 'Underfull \hbox (badness
+10000) detected at line 22'.  (We won't discuss badness; the point is
+that the system was not given as much stretch as needed.)
+
+   You can put both stretch and shrink in the same length, as in '1ex
+plus 0.05ex minus 0.02ex'.
+
+   If TeX is setting two or more rubber lengths then it allocates the
+stretch or shrink in proportion.
+
+     XXX\showhbox{300pt}{\blackbar{100pt}%  left
+       \hspace{0pt plus 50pt}\blackbar{80pt}\hspace{0pt plus 10pt}%  middle
+       \blackbar{100pt}}YYY  % right
+
+The outside bars take up 100 points, so the middle needs another 100.
+In the middle the bar takes up 80 points, so the two '\hspace''s must
+stretch 20 points.  Because the two say 'plus 50pt' and 'plus 10pt', TeX
+gets 5/6 of the stretch from the first space and 1/6 from the second.
+
    The 'plus' or 'minus' component of a rubber length can contain a
 "fill" component, as in '1in plus2fill'.  This gives the length infinite
-stretchability or shrinkability, so that the length in the prior
-sentence can be set by TeX to any distance greater than or equal to
-1 inch.  TeX actually provides three infinite glue components 'fil',
-'fill', and 'filll', such that the later ones overcome the earlier ones,
-but only the middle value is ordinarily used.  *Note \hfill::, *Note
-\vfill::.
+stretchability or shrinkability so that TeX could set it to any
+distance.  Here the two figures will be equal-spaced across the page.
 
-   Multiplying an entire rubber length by a number turns it into a rigid
-length, so that after '\setlength{\ylength}{1in plus 0.2in}' and
+     \begin{minipage}{\linewidth}
+       \hspace{0pt plus 1fill}\includegraphics{godel.png}%
+       \hspace{0pt plus 1fill}\includegraphics{einstein.png}%
+       \hspace{0pt plus 1fill}
+     \end{minipage}
+
+   TeX actually has three infinite glue components 'fil', 'fill', and
+'filll'.  The later ones are more infinite than the earlier ones.
+Ordinarily document authors only use the middle one (*note \hfill:: and
+*note \vfill::).
+
+   Multiplying a rubber length by a number turns it into a rigid length,
+so that after '\setlength{\ylength}{1in plus 0.2in}' and
 '\setlength{\zlength}{3\ylength}' then the value of '\zlength' is '3in'.
 
 * Menu:
@@ -6078,7 +7845,6 @@
 * \settodepth::         Set a length to the depth of something.
 * \settoheight::        Set a length to the height of something.
 * \settowidth::         Set a length to the width of something.
-* Predefined lengths::  Lengths that are, like, predefined.
 
 
 File: latex2e.info,  Node: Units of length,  Next: \setlength,  Up: Lengths
@@ -6120,7 +7886,7 @@
 
    Two other lengths that are often used are values set by the designer
 of the font.  The x-height of the current font "ex", traditionally the
-height of the lower case letter x, is often used for vertical lengths.
+height of the lowercase letter x, is often used for vertical lengths.
 Similarly "em", traditionally the width of the capital letter M, is
 often used for horizontal lengths (there is also '\enspace', which is
 '0.5em').  Use of these can help make a definition work better across
@@ -6141,13 +7907,24 @@
 
 Synopsis:
 
-     \setlength{\LEN}{AMOUNT}
+     \setlength{LEN}{AMOUNT}
 
-   The '\setlength' sets the value of "length command" '\LEN' to the
-VALUE argument which can be expressed in any units that LaTeX
-understands, i.e., inches ('in'), millimeters ('mm'), points ('pt'), big
-points ('bp'), etc.
+   Set the length LEN to AMOUNT.  The length name LEN must begin with a
+backslash, '\'.  The 'amount' can be a rubber length (*note Lengths::).
+It can be positive, negative or zero, and can be in any units that LaTeX
+understands (*note Units of length::).
 
+   Below, with LaTeX's defaults the first paragraph will be indented
+while the second will not.
+
+     I told the doctor I broke my leg in two places.
+
+     \setlength{\parindent}{0em}
+     He said stop going to those places.
+
+   If there is no such length LEN then you get something like 'Undefined
+control sequence. <argument> \praindent'.
+
 
 File: latex2e.info,  Node: \addtolength,  Next: \settodepth,  Prev: \setlength,  Up: Lengths
 
@@ -6156,11 +7933,28 @@
 
 Synopsis:
 
-     \addtolength{\LEN}{AMOUNT}
+     \addtolength{LEN}{AMOUNT}
 
-   The '\addtolength' command increments a length command '\LEN' by the
-amount specified in the AMOUNT argument, which may be negative.
+   Increment the length LEN by AMOUNT.  The length name LEN begins with
+a backslash, '\'.  The 'amount' is a rubber length (*note Lengths::).
+It can be positive, negative or zero, and can be in any units that LaTeX
+understands (*note Units of length::).
 
+   Below, if '\parskip' starts with the value '0pt plus 1pt'
+
+     \addtolength{\parskip}{1pt}
+     Doctor: how is the boy who swallowed the silver dollar?
+
+     Nurse: no change.
+
+then it has the value '1pt plus 1pt' for the second paragraph.
+
+   If there is no such length LEN then you get something like 'Undefined
+control sequence. <argument> \praindent'.  If you leave off the
+backslash at the start of LEN, as in '\addtolength{parindent}{1pt}',
+then you get something like 'You can't use `the letter p' after
+\advance'.
+
 
 File: latex2e.info,  Node: \settodepth,  Next: \settoheight,  Prev: \addtolength,  Up: Lengths
 
@@ -6169,11 +7963,24 @@
 
 Synopsis:
 
-     \settodepth{\LEN}{TEXT}
+     \settodepth{LEN}{TEXT}
 
-   The '\settodepth' command sets the value of a length command '\LEN'
-equal to the depth of the TEXT argument.
+   Set the length LEN to the depth of box that LaTeX gets on typesetting
+the TEXT argument.  The length name LEN must begin with a backslash,
+'\'.
 
+   This will show how low the character descenders go.
+
+     \newlength{\alphabetdepth}
+     \settodepth{\alphabetdepth}{abcdefghijklmnopqrstuvwxyz}
+     \the\alphabetdepth
+
+   If there is no such length LEN then you get something like 'Undefined
+control sequence. <argument> \alphabetdepth'.  If you leave the
+backslash out of LEN, as in '\settodepth{alphabetdepth}{...}' then you
+get something like 'Missing number, treated as zero. <to be read again>
+\setbox'.
+
 
 File: latex2e.info,  Node: \settoheight,  Next: \settowidth,  Prev: \settodepth,  Up: Lengths
 
@@ -6182,45 +7989,49 @@
 
 Synopsis:
 
-     \settoheight{\LEN}{text}
+     \settoheight{LEN}{text}
 
-   The '\settoheight' command sets the value of a length command '\LEN'
-equal to the height of the 'text' argument.
+   Sets the length LEN to the height of box that LaTeX gets on
+typesetting the 'text' argument.  The length name LEN must begin with a
+backslash, '\'.
 
-
-File: latex2e.info,  Node: \settowidth,  Next: Predefined lengths,  Prev: \settoheight,  Up: Lengths
+   This will show how high the characters go.
 
-14.6 '\settowidth{\LEN}{TEXT}'
-==============================
+     \newlength{\alphabetheight}
+     \settoheight{\alphabetheight}{abcdefghijklmnopqrstuvwxyz}
+     \the\alphabetheight
 
-Synopsis:
+   If there is no such length LEN then you get something like 'Undefined
+control sequence. <argument> \alphabetheight'.  If you leave the
+backslash out of LEN, as in '\settoheight{alphabetheight}{...}' then you
+get something like 'Missing number, treated as zero. <to be read again>
+\setbox'.
 
-     \settowidth{\LEN}{TEXT}
-
-   The '\settowidth' command sets the value of the command \LEN to the
-width of the TEXT argument.
-
 
-File: latex2e.info,  Node: Predefined lengths,  Prev: \settowidth,  Up: Lengths
+File: latex2e.info,  Node: \settowidth,  Prev: \settoheight,  Up: Lengths
 
-14.7 Predefined lengths
-=======================
+14.6 '\settowidth'
+==================
 
-'\width'
+Synopsis:
 
-   '\height'
+     \settowidth{LEN}{TEXT}
 
-   '\depth'
+   Set the length LEN to the width of the box that LaTeX gets on
+typesetting the TEXT argument.  The length name LEN must begin with a
+backslash, '\'.
 
-   '\totalheight'
+   This measures the width of the lowercase ASCII alphabet.
 
-   These length parameters can be used in the arguments of the
-box-making commands (*note Boxes::).  They specify the natural width,
-etc., of the text in the box.  '\totalheight' equals '\height' +
-'\depth'.  To make a box with the text stretched to double the natural
-size, e.g., say
+     \newlength{\alphabetwidth}
+     \settowidth{\alphabetwidth}{abcdefghijklmnopqrstuvwxyz}
+     \the\alphabetwidth
 
-     \makebox[2\width]{Get a stretcher}
+   If there is no such length LEN then you get something like 'Undefined
+control sequence. <argument> \alphabetwidth'.  If you leave the
+backslash out of LEN, as in '\settoheight{alphabetwidth}{...}' then you
+get something like 'Missing number, treated as zero. <to be read again>
+\setbox'.
 
 
 File: latex2e.info,  Node: Making paragraphs,  Next: Math formulas,  Prev: Lengths,  Up: Top
@@ -6228,93 +8039,218 @@
 15 Making paragraphs
 ********************
 
-A paragraph is ended by one or more completely blank lines--lines not
-containing even a '%'.  A blank line should not appear where a new
-paragraph cannot be started, such as in math mode or in the argument of
-a sectioning command.
+Once LaTeX has all of a paragraph's contents it divides it into lines,
+in a way that is optimized over the entire paragraph (*note Line
+breaking::).  To end the current paragraph, put an empty line.
 
+     It is a truth universally acknowledged, that a single man in possession
+     of a good fortune, must be in want of a wife.
+
+     However little known the feelings or views of such a man may be on his
+     first entering a neighbourhood, this truth is so well fixed in the minds
+     of the surrounding families, that he is considered the rightful property
+     of some one or other of their daughters.
+
+     ``My dear Mr. Bennet,'' said his lady to him one day,
+     ``have you heard that Netherfield Park is let at last?''
+
+   The separator lines must be empty, including not containing a comment
+character, '%'.
+
+   There are places where a new paragraph is not permitted.  Don't put a
+blank line in math mode (*note Modes::); here the line before the
+'\end{equation}'
+
+     \begin{equation}
+       2^{|S|} > |S|
+
+     \end{equation}
+
+will get you the error 'Missing $ inserted'.  Similarly, the blank line
+in this 'section' argument
+
+     \section{aaa
+
+     bbb}
+
+gets 'Runaway argument? {aaa ! Paragraph ended before \@sect was
+complete'.
+
 * Menu:
 
-* \indent::        Indent this paragraph.
-* \noindent::      Do not indent this paragraph.
-* \parskip::       Space added before paragraphs.
-* Marginal notes:: Putting remarks in the margin.
+* \par::                     End the current paragraph.
+* \indent & \noindent::      Go into horizontal mode, possibly with an indent.
+* \parindent & \parskip::    Space added before paragraphs.
+* Marginal notes::           Put remarks in the margin.
 
 
-File: latex2e.info,  Node: \indent,  Next: \noindent,  Up: Making paragraphs
+File: latex2e.info,  Node: \par,  Next: \indent & \noindent,  Up: Making paragraphs
 
-15.1 '\indent'
-==============
+15.1 '\par'
+===========
 
-'\indent' produces a horizontal space whose width equals to the
-'\parindent' length, the normal paragraph indentation.  It is used to
-add paragraph indentation where it would otherwise be suppressed.
+Synopsis (note that while reading the input TeX, converts two
+consecutive newlines to a '\par'):
 
-   The default value for '\parindent' is '1em' in two-column mode,
-otherwise '15pt' for '10pt' documents, '17pt' for '11pt', and '1.5em'
-for '12pt'.
+     \par
 
+   End the current paragraph.  The usual way to separate paragraphs is
+with a blank line but the '\par' command is entirely equivalent.  This
+command is robust (*note \protect::).
+
+   This example uses '\par' rather than a blank line simply for
+readability.
+
+     \newcommand{\syllabusLegalese}{%
+       \whatCheatingIs\par\whatHappensWhenICatchYou}
+
+   The '\par' command does nothing in LR mode or a vertical mode but it
+terminates paragraph mode, bringing LaTeX to vertical mode (*note
+Modes::).
+
+   You cannot use the '\par' command in math mode or in the argument of
+many commands, such as the '\section' command (*note Making paragraphs::
+and *note \newcommand & \renewcommand::).
+
+   The '\par' command differs from the '\paragraph' command in that the
+latter is, like '\section' or '\subsection', a sectioning unit used by
+the standard LaTeX documents.
+
+   The '\par' command differs from '\newline' and the line break double
+backslash, '\\', in that \par ends the paragraph not just the line.  It
+also triggers the addition of the between-paragraph vertical space
+'\parskip' (*note \parindent & \parskip::).
+
+   The output from this example
+
+     xyz
+
+     \setlength{\parindent}{3in}
+     \setlength{\parskip}{5in}
+     \noindent test\indent test1\par test2
+
+is: after 'xyz' there is a vertical skip of 5 inches and then 'test'
+appears, aligned with the left margin.  On the same line, there is an
+empty horizontal space of 3 inches and then 'test1' appears.  Finally.
+there is a vertical space of 5 inches, followed by a fresh paragraph
+with a paragraph indent of 3 inches, and then LaTeX puts the text
+'test2'.
+
 
-File: latex2e.info,  Node: \noindent,  Next: \parskip,  Prev: \indent,  Up: Making paragraphs
+File: latex2e.info,  Node: \indent & \noindent,  Next: \parindent & \parskip,  Prev: \par,  Up: Making paragraphs
 
-15.2 '\noindent'
-================
+15.2 '\indent' & '\noindent'
+============================
 
-When used at the beginning of the paragraph, this command suppresses any
-paragraph indentation, as in this example.
+Synopsis:
 
+     \indent
+
+or
+
+     \noindent
+
+   Go into horizontal mode (*note Modes::).  The '\indent' command first
+outputs an empty box whose width is '\parindent'.  These commands are
+robust (*note \protect::).
+
+   Ordinarily you create a new paragraph by putting in a blank line.
+*Note \par:: for the difference between this command and '\par'.  To
+start a paragraph without an indent, or to continue an interrupted
+paragraph, use '\noindent'.
+
+   In the middle of a paragraph the '\noindent' command has no effect,
+because LaTeX is already in horizontal mode there.  The '\indent'
+command's only effect is to output a space.
+
+   This example starts a fresh paragraph.
+
      ... end of the prior paragraph.
 
      \noindent This paragraph is not indented.
 
-   It has no effect when used in the middle of a paragraph.
+and this continues an interrupted paragraph.
 
-   To eliminate paragraph indentation in an entire document, put
-'\setlength{\parindent}{0pt}' in the preamble.
+     The data
 
+     \begin{center}
+       \begin{tabular}{rl} ... \end{tabular}
+     \end{center}
+
+     \noindent shows this clearly.
+
+   To omit indentation in the entire document put
+'\setlength{\parindent}{0pt}' in the preamble.  If you do that, you may
+want to also set the length of spaces between paragraphs, '\parskip'
+(*note \parindent & \parskip::).
+
+   Default LaTeX styles have the first paragraph after a section that is
+not indented, as is traditional typesetting in English.  To change that,
+look on CTAN for the package 'indentfirst'.
+
 
-File: latex2e.info,  Node: \parskip,  Next: Marginal notes,  Prev: \noindent,  Up: Making paragraphs
+File: latex2e.info,  Node: \parindent & \parskip,  Next: Marginal notes,  Prev: \indent & \noindent,  Up: Making paragraphs
 
-15.3 '\parskip'
-===============
+15.3 '\parindent' & '\parskip'
+==============================
 
-'\parskip' is a rubber length defining extra vertical space added before
-each paragraph.  The default is '0pt plus1pt'.
+Synopsis:
 
+     \setlength{\parskip}{HORIZONTAL LEN}
+     \setlength{\parinden}{VERTICAL LEN}
+
+   Both are a rubber lengths (*note Lengths::).  They give the
+indentation of ordinary paragraphs, not paragraphs inside minipages
+(*note minipage::), and the vertical space between paragraphs.
+
+   This, put in the preamble,
+
+     \setlength{\parindent}{0em}
+     \setlength{\parskip}{1ex}
+
+arranges that the document will have paragraphs that are not indented,
+but instead are vertically separated by about the height of a lowercase
+'x'.
+
+   In standard LaTeX documents, the default value for '\parindent' in
+one-column documents is '15pt' when the default text size is '10pt' ,
+'17pt' for '11pt', and '1.5em' for '12pt'.  In two-column documents it
+is '1em'.  The default value for '\parskip' in LaTeX's standard document
+styles is '0pt plus1pt'.
+
 
-File: latex2e.info,  Node: Marginal notes,  Prev: \parskip,  Up: Making paragraphs
+File: latex2e.info,  Node: Marginal notes,  Prev: \parindent & \parskip,  Up: Making paragraphs
 
 15.4 Marginal notes
 ===================
 
-Synopsis:
+Synopsis, one of:
 
+     \marginpar{RIGHT}
      \marginpar[LEFT]{RIGHT}
 
-   The '\marginpar' command creates a note in the margin.  The first
-line of the note will have the same baseline as the line in the text
-where the '\marginpar' occurs.
+   Create a note in the margin.  The first line of the note will have
+the same baseline as the line in the text where the '\marginpar' occurs.
 
-   When you only specify the mandatory argument RIGHT, the text will be
-placed
+   The margin that LaTeX uses for the note depends on the current layout
+(*note Document class options::) and also on '\reversemarginpar' (see
+below).  If you are using one-sided layout (document option 'oneside')
+then it goes in the right margin.  If you are using two-sided layout
+(document option 'twoside') then it goes in the outside margin.  If you
+are in two-column layout (document option 'twocolumn') then it goes in
+the nearest margin.
 
-   * in the right margin for one-sided layout (option 'oneside', see
-     *note Document class options::);
-   * in the outside margin for two-sided layout (option 'twoside', see
-     *note Document class options::);
-   * in the nearest margin for two-column layout (option 'twocolumn',
-     see *note Document class options::).
+   If you declare '\reversemarginpar' then LaTeX will place subsequent
+marginal notes in the opposite margin to that given in the prior
+paragraph.  Revert that to the default position with '\normalmarginpar'.
 
-   The command '\reversemarginpar' places subsequent marginal notes in
-the opposite (inside) margin.  '\normalmarginpar' places them in the
-default position.
+   When you specify the optional argument LEFT then it is used for a
+note in the left margin, while the mandatory argument RIGHT is used for
+a note in the the right margin.
 
-   When you specify both arguments, LEFT is used for the left margin,
-and RIGHT is used for the right margin.
+   Normally, a note's first word will not be hyphenated.  You can enable
+hyphenation there by beginning LEFT or RIGHT with '\hspace{0pt}'.
 
-   The first word will normally not be hyphenated; you can enable
-hyphenation there by beginning the node with '\hspace{0pt}'.
-
    These parameters affect the formatting of the note:
 
 '\marginparpush'
@@ -6340,40 +8276,94 @@
 16 Math formulas
 ****************
 
-There are three environments that put LaTeX in math mode:
+Produce mathematical text by putting LaTeX into math mode or display
+math mode (*note Modes::).  This example shows both.
 
-'math'
-     For formulas that appear right in the text.
-'displaymath'
-     For formulas that appear on their own line.
-'equation'
-     The same as the displaymath environment except that it adds an
-     equation number in the right margin.
+     The wave equation for \( u \) is
+     \begin{displaymath}
+       \frac{\partial^2u}{\partial t^2} = c^2\nabla^2u
+     \end{displaymath}
+     where \( \nabla^2 \) is the spatial Laplacian and \( c \) is constant.
 
-   The 'math' environment can be used in both paragraph and LR mode, but
-the 'displaymath' and 'equation' environments can be used only in
-paragraph mode.  The 'math' and 'displaymath' environments are used so
-often that they have the following short forms:
+Math mode is for inline mathematics.  In the above example it is invoked
+by the starting '\(' and finished by the matching ending '\)'.  Display
+math mode is for displayed equations and here is invoked by the
+'displaymath' environment.  Note that any mathematical text whatever,
+including mathematical text consisting of just one character, is handled
+in math mode.
 
-     \(...\)   instead of   \begin{math}...\end{math}
-     \[...\]   instead of   \begin{displaymath}...\end{displaymath}
+   When in math mode or display math mode, LaTeX handles many aspects of
+your input text differently than in other text modes.  For example,
 
-   In fact, the 'math' environment is so common that it has an even
-shorter form:
+     contrast x+y with \( x+y \)
 
-     $ ... $   instead of   \(...\)
+in math mode the letters are in italics and the spacing around the plus
+sign is different.
 
-   The '\boldmath' command changes math letters and symbols to be in a
-bold font.  It is used _outside_ of math mode.  Conversely, the
-'\unboldmath' command changes math glyphs to be in a normal font; it too
-is used _outside_ of math mode.
+   There are three ways to make inline formulas, to put LaTeX in math
+mode.
 
-   The '\displaystyle' declaration forces the size and style of the
-formula to be that of 'displaymath', e.g., with limits above and below
-summations.  For example:
+     \( MATHEMATICAL MATERIAL \)
+     $ MATHEMATICAL MATERIAL $
+     \begin{math} MATHEMATICAL MATERIAL \end{math}
 
-     $\displaystyle \sum_{n=0}^\infty x_n $
+The first form is preferred and the second is quite common, but the
+third form is rarely used.  You can sometimes use one and sometimes
+another, as in '\(x\) and $y$'.  You can use these in paragraph mode or
+in LR mode (*note Modes::).
 
+   To make displayed formulas, put LaTeX into display math mode with
+either:
+
+     \begin{displaymath}
+       MATHEMATICAL MATERIAL
+     \end{displaymath}
+
+or
+
+     \begin{equation}
+       MATHEMATICAL MATERIAL
+     \end{equation}
+
+(*note displaymath::, *note equation::).  The only difference is that
+with the 'equation' environment, LaTeX puts a formula number alongside
+the formula.  The construct '\[ MATH \]' is equivalent to
+'\begin{displaymath} MATH \end{displaymath}'.  These environments can
+only be used in paragraph mode (*note Modes::).
+
+   The two mathematics modes are similar, but there are some
+differences.  One involves the placement of subscripts and superscripts;
+in display math mode they are further apart and in inline math mode they
+are closer together.
+
+   Sometimes you want the display math typographical treatment to happen
+in the inline math mode.  For this, the '\displaystyle' declaration
+forces the size and style of the formula to be that of 'displaymath'.
+Thus '\(\displaystyle \sum_{n=0}^\infty x_n\)' will have the limits
+above and below the summation sign, not next to it.  Another example is
+that
+
+     \begin{tabular}{r|cc}
+       \textsc{Name}  &\textsc{Series}  &\textsc{Sum}  \\  \hline
+       Arithmetic     &\( a+(a+b)+(a+2b)+\cdots+(a+(n-1)b) \)
+                        &\( na+(n-1)n\cdot\frac{b}{2}\)  \\
+       Geometric      &\( a+ab+ab^2+\cdots+ab^{n-1} \)
+                        &\(\displaystyle a\cdot\frac{1-b^n}{1-b}\)  \\
+     \end{tabular}
+
+because it has no '\displaystyle', the 'Arithmetic' line's fraction will
+be scrunched.  But, because of its '\displaystyle', the 'Geometric'
+line's fraction will be easy to read, with characters the same size as
+in the rest of the line.
+
+   The American Mathematical Society has made freely available a set of
+packages that greatly expand your options for writing mathematics,
+'amsmath' and 'amssymb' (also be aware of the 'mathtools' package that
+is an extension to, and loads, 'amsmath').  New documents that will have
+mathematical text should use these packages.  Descriptions of these
+packages is outside the scope of this document; see their documentation
+on CTAN.
+
 * Menu:
 
 * Subscripts & superscripts::   Also known as exponent or index.
@@ -6380,7 +8370,8 @@
 * Math symbols::                Various mathematical squiggles.
 * Math functions::              Math function names like sin and exp.
 * Math accents::                Accents in math.
-* Spacing in math mode::        Thick, medium, thin and negative spaces.
+* Over- and Underlining::       Things over or under formulas.
+* Spacing in math mode::        Thick, medium, thin, and negative spaces.
 * Math miscellany::             Stuff that doesn't fit anywhere else.
 
 
@@ -6389,36 +8380,66 @@
 16.1 Subscripts & superscripts
 ==============================
 
-In math mode, use the caret character '^' to make the EXP appear as a
-superscript: '^{EXP}'.  Similarly, in math mode, underscore '_{EXP}'
-makes a subscript out of EXP.
+Synopsis (in math mode or display math mode), one of:
 
-   In this example the '0' and '1' appear as subscripts while the '2' is
-a superscript.
+     BASE^EXP
+     BASE^{EXP}
 
-     \( (x_0+x_1)^2 \)
+or, one of:
 
-   To have more than one character in EXP use curly braces as in
-'e^{-2x}'.
+     BASE_EXP
+     BASE_{EXP}
 
-   LaTeX handles superscripts on superscripts, and all of that stuff, in
-the natural way, so expressions such as 'e^{x^2}' and 'x_{a_0}' will
-look right.  It also does the right thing when something has both a
-subscript and a superscript.  In this example the '0' appears at the
-bottom of the integral sign while the '10' appears at the top.
+   Make EXP appear as a superscript of BASE (with the caret
+character, '^') or a subscript (with underscore, '_').
 
-     \int_0^{10} x^2 \,dx
+   In this example the '0''s and '1''s are subscripts while the '2''s
+are superscripts.
 
-   You can put a superscript or subscript before a symbol with a
-construct such as '{}_t K^2' in math mode (the initial '{}' prevents the
-prefixed subscript from being attached to any prior symbols in the
-expression).
+     \( (x_0+x_1)^2 \leq (x_0)^2+(x_1)^2 \)
 
-   Outside of math mode, a construct like 'A
-test$_\textnormal{subscript}$' will produce a subscript typeset in text
-mode, not math mode.  Note that there are packages specialized for
-writing Chemical formulas such as 'mhchem'.
+   To have the subscript or superscript contain more than one character,
+surround the expression with curly braces, as in 'e^{-2x}'.  This
+example's fourth line shows curly braces used to group an expression for
+the exponent.
 
+     \begin{displaymath}
+       (3^3)^3=27^3=19\,683
+       \qquad
+       3^{(3^3)}=3^{27}=7\,625\,597\,484\,987
+     \end{displaymath}
+
+   LaTeX knows how to handle a superscript on a superscript, or a
+subscript on a subscript, or supers on subs, or subs on supers.  So,
+expressions such as 'e^{x^2}' and 'x_{i_0}' give correct output.  Note
+the use in those expressions of curly braces to give the BASE a
+determined EXP.  If you enter '\(3^3^3\)' then you get 'Double
+superscript'.
+
+   LaTeX does the right thing when something has both a subscript and a
+superscript.  In this example the integral has both.  They come out in
+the correct place without any author intervention.
+
+     \begin{displaymath}
+       \int_{x=a}^b f'(x)\,dx = f(b)-f(a)
+     \end{displaymath}
+
+Note the parentheses around 'x=a' to make the entire expression a
+subscript.
+
+   To put a superscript or subscript before a symbol, use a construct
+like '{}_t K^2'.  The empty curly braces '{}' give the subscript
+something to attach to and keeps it from accidentally attaching to a
+prior symbols.
+
+   Using the subscript or superscript command outside of math mode or
+display math mode, as in 'the expression x^2', will get you the error
+'Missing $ inserted'.
+
+   A common reason to want subscripts outside of a mathematics mode is
+to typeset chemical formulas.  There are packages for that such as
+'mhchem'; see CTAN.
+
 
 File: latex2e.info,  Node: Math symbols,  Next: Math functions,  Prev: Subscripts & superscripts,  Up: Math formulas
 
@@ -6425,19 +8446,18 @@
 16.2 Math symbols
 =================
 
-LaTeX provides almost any mathematical symbol you're likely to need.
-For example, if you include '$\pi$' in your source, you will get the pi
-symbol U+03C0.
+LaTeX provides almost any mathematical or technical symbol that anyone
+uses.  For example, if you include '$\pi$' in your source, you will get
+the pi symbol U+03C0.  See the 'Comprehensive LaTeX Symbol List' at
+<https://ctan.org/tex-archive/info/symbols/comprehensive/>.
 
-   Below is a list of commonly-available symbols.  It is by no means an
-exhaustive list.  Each symbol here is described with a short phrase, and
-its symbol class (which determines the spacing around it) is given in
+   Here is a list of commonly-used symbols.  It is by no means
+exhaustive.  Each symbol is described with a short phrase, and its
+symbol class, which determines the spacing around it, is given in
 parenthesis.  Unless said otherwise, the commands for these symbols can
-be used only in math mode.
+be used only in math mode.  To redefine a command so that it can be used
+whatever the current mode, see *note \ensuremath::.
 
-   To redefine a command so that it can be used whatever the current
-mode, see *note \ensuremath::.
-
 '\|'
      U+2225 Parallel (relation).  Synonym: '\parallel'.
 
@@ -6445,7 +8465,7 @@
      U+2135 Aleph, transfinite cardinal (ordinary).
 
 '\alpha'
-     U+03B1 Lower case Greek letter alpha (ordinary).
+     U+03B1 Lowercase Greek letter alpha (ordinary).
 
 '\amalg'
      U+2A3F Disjoint union (binary)
@@ -6472,7 +8492,7 @@
      '\textbackslash' for backslash outside of math mode.
 
 '\beta'
-     U+03B2 Lower case Greek letter beta (ordinary).
+     U+03B2 Lowercase Greek letter beta (ordinary).
 
 '\bigcap'
      U+22C2 Variable-sized, or n-ary, intersection (operator).  Similar:
@@ -6539,7 +8559,7 @@
      U+22C5 Multiplication (binary).  Similar: Bullet dot '\bullet'.
 
 '\chi'
-     U+03C7 Lower case Greek chi (ordinary).
+     U+03C7 Lowercase Greek chi (ordinary).
 
 '\circ'
      U+2218 Function composition, ring operator (binary).  Similar:
@@ -6575,10 +8595,10 @@
      U+2021 Double dagger relation (binary).
 
 '\Delta'
-     U+0394 Greek upper case delta, used for increment (ordinary).
+     U+0394 Greek uppercase delta, used for increment (ordinary).
 
 '\delta'
-     U+03B4 Greek lower case delta (ordinary).
+     U+03B4 Greek lowercase delta (ordinary).
 
 '\Diamond'
      U+25C7 Large diamond operator (ordinary).  Not available in plain
@@ -6585,8 +8605,8 @@
      TeX.  In LaTeX you need to load the 'amssymb' package.
 
 '\diamond'
-     U+22C4 Diamond operator, or diamond bullet (binary).  Similar:
-     large diamond '\Diamond', circle bullet '\bullet'.
+     U+22C4 Diamond operator (binary).  Similar: large
+     diamond '\Diamond', circle bullet '\bullet'.
 
 '\diamondsuit'
      U+2662 Diamond card suit (ordinary).
@@ -6599,12 +8619,12 @@
      equal to '\Doteq'.
 
 '\downarrow'
-     U+2193 Down arrow, converges (relation).  Similar: double line down
-     arrow '\Downarrow'.
+     U+2193 Down arrow, converges (relation).  Similar: '\Downarrow'
+     double line down arrow.
 
 '\Downarrow'
-     U+21D3 Double line down arrow (relation).  Similar: single line
-     down arrow '\downarrow'.
+     U+21D3 Double line down arrow (relation).  Similar: '\downarrow'
+     single line down arrow.
 
 '\ell'
      U+2113 Lowercase cursive letter l (ordinary).
@@ -6614,7 +8634,7 @@
      '\varnothing'.
 
 '\epsilon'
-     U+03F5 Lower case lunate epsilon (ordinary).  Similar to Greek text
+     U+03F5 Lowercase lunate epsilon (ordinary).  Similar to Greek text
      letter.  More widely used in mathematics is the script small letter
      epsilon '\varepsilon' U+03B5.  Related: the set membership relation
      '\in' U+2208.
@@ -6623,7 +8643,7 @@
      U+2261 Equivalence (relation).
 
 '\eta'
-     U+03B7 Lower case Greek letter (ordinary).
+     U+03B7 Lowercase Greek letter (ordinary).
 
 '\exists'
      U+2203 Existential quantifier (ordinary).
@@ -6638,10 +8658,10 @@
      U+2322 Downward curving arc (ordinary).
 
 '\Gamma'
-     U+0393 Upper case Greek letter (ordinary).
+     U+0393 uppercase Greek letter (ordinary).
 
 '\gamma'
-     U+03B3 Lower case Greek letter (ordinary).
+     U+03B3 Lowercase Greek letter (ordinary).
 
 '\ge'
      U+2265 Greater than or equal to (relation).  This is a synonym
@@ -6677,8 +8697,12 @@
 '\Im'
      U+2111 Imaginary part (ordinary).  See: real part '\Re'.
 
+'\imath'
+     Dotless i; used when you are putting an accent on an i (*note Math
+     accents::).
+
 '\in'
-     U+2208 Set element (relation).  See also: lower case lunate
+     U+2208 Set element (relation).  See also: lowercase lunate
      epsilon '\epsilon'U+03F5 and small letter script
      epsilon '\varepsilon'.
 
@@ -6689,20 +8713,24 @@
      U+222B Integral (operator).
 
 '\iota'
-     U+03B9 Lower case Greek letter (ordinary).
+     U+03B9 Lowercase Greek letter (ordinary).
 
 '\Join'
      U+2A1D Condensed bowtie symbol (relation).  Not available in Plain
      TeX.
 
+'\jmath'
+     Dotless j; used when you are putting an accent on a j (*note Math
+     accents::).
+
 '\kappa'
-     U+03BA Lower case Greek letter (ordinary).
+     U+03BA Lowercase Greek letter (ordinary).
 
 '\Lambda'
-     U+039B Upper case Greek letter (ordinary).
+     U+039B uppercase Greek letter (ordinary).
 
 '\lambda'
-     U+03BB Lower case Greek letter (ordinary).
+     U+03BB Lowercase Greek letter (ordinary).
 
 '\land'
      U+2227 Logical and (binary).  This is a synonym for '\wedge'.  See
@@ -6824,7 +8852,7 @@
      U+2213 Minus or plus (relation).
 
 '\mu'
-     U+03BC Lower case Greek letter (ordinary).
+     U+03BC Lowercase Greek letter (ordinary).
 
 '\nabla'
      U+2207 Hamilton's del, or differential, operator (ordinary).
@@ -6850,12 +8878,12 @@
      Synonym: '\owns'.  Similar: is a member of '\in'.
 
 '\not'
-     U+0020U+00A0U+0338 Long solidus, or slash, used to overstrike a
-     following operator (relation).
+     U+0020    Long solidus, or slash, used to overstrike a following
+     operator (relation).
 
-     Many negated operators that don't require '\not' are available,
+     Many negated operators are available that don't require '\not',
      particularly with the 'amssymb' package.  For example, '\notin' is
-     probably typographically preferable to '\not\in'.
+     typographically preferable to '\not\in'.
 
 '\notin'
      U+2209 Not an element of (relation).  Similar: not subset
@@ -6862,7 +8890,7 @@
      of '\nsubseteq'.
 
 '\nu'
-     U+03BD Lower case Greek letter (ordinary).
+     U+03BD Lowercase Greek letter (ordinary).
 
 '\nwarrow'
      U+2196 North-west arrow (relation).
@@ -6876,10 +8904,10 @@
      (operator).
 
 '\Omega'
-     U+03A9 Upper case Greek letter (ordinary).
+     U+03A9 uppercase Greek letter (ordinary).
 
 '\omega'
-     U+03C9 Lower case Greek letter (ordinary).
+     U+03C9 Lowercase Greek letter (ordinary).
 
 '\ominus'
      U+2296 Minus sign, or dash, inside a circle (binary).
@@ -6911,14 +8939,14 @@
      ordinary.
 
 '\phi'
-     U+03D5 Lower case Greek letter (ordinary).  The variant form is
+     U+03D5 Lowercase Greek letter (ordinary).  The variant form is
      '\varphi' U+03C6.
 
 '\Pi'
-     U+03A0 Upper case Greek letter (ordinary).
+     U+03A0 uppercase Greek letter (ordinary).
 
 '\pi'
-     U+03C0 Lower case Greek letter (ordinary).  The variant form is
+     U+03C0 Lowercase Greek letter (ordinary).  The variant form is
      '\varpi' U+03D6.
 
 '\pm'
@@ -6947,10 +8975,10 @@
      U+221D Is proportional to (relation)
 
 '\Psi'
-     U+03A8 Upper case Greek letter (ordinary).
+     U+03A8 uppercase Greek letter (ordinary).
 
 '\psi'
-     U+03C8 Lower case Greek letter (ordinary).
+     U+03C8 Lowercase Greek letter (ordinary).
 
 '\rangle'
      U+27E9 Right angle, or sequence, bracket (closing).  Similar:
@@ -6973,9 +9001,9 @@
      this, load the 'amsfonts' package.
 
 '\restriction'
-     U+21BE Restriction of a function (relation).
-     Synonym: '\upharpoonright'.  Not available in plain TeX.  In LaTeX
-     you need to load the 'amssymb' package.
+     U+21BE Restriction of a function (relation).  Synonym:
+     '\upharpoonright'.  Not available in plain TeX.  In LaTeX you need
+     to load the 'amssymb' package.
 
 '\revemptyset'
      U+29B0 Reversed empty set symbol (ordinary).  Related:
@@ -6994,7 +9022,7 @@
      gives better spacing).
 
 '\rho'
-     U+03C1 Lower case Greek letter (ordinary).  The variant form is
+     U+03C1 Lowercase Greek letter (ordinary).  The variant form is
      '\varrho' U+03F1.
 
 '\Rightarrow'
@@ -7018,18 +9046,18 @@
      U+2198 Arrow pointing southeast (relation).
 
 '\setminus'
-     U+29F5 Set difference, reverse solidus or slash, like \ (binary).
-     Similar: backslash '\backslash' and also '\textbackslash' outside
-     of math mode.
+     U+29F5 Set difference, reverse solidus or reverse slash, like \
+     (binary).  Similar: backslash '\backslash' and also
+     '\textbackslash' outside of math mode.
 
 '\sharp'
      U+266F Musical sharp (ordinary).
 
 '\Sigma'
-     U+03A3 Upper case Greek letter (ordinary).
+     U+03A3 uppercase Greek letter (ordinary).
 
 '\sigma'
-     U+03C3 Lower case Greek letter (ordinary).  The variant form is
+     U+03C3 Lowercase Greek letter (ordinary).  The variant form is
      '\varsigma' U+03C2.
 
 '\sim'
@@ -7114,10 +9142,10 @@
      U+2199 Southwest-pointing arrow (relation).
 
 '\tau'
-     U+03C4 Lower case Greek letter (ordinary).
+     U+03C4 Lowercase Greek letter (ordinary).
 
 '\theta'
-     U+03B8 Lower case Greek letter (ordinary).  The variant form is
+     U+03B8 Lowercase Greek letter (ordinary).  The variant form is
      '\vartheta' U+03D1.
 
 '\times'
@@ -7190,10 +9218,10 @@
      operator '\biguplus'.
 
 '\Upsilon'
-     U+03A5 Upper case Greek letter (ordinary).
+     U+03A5 uppercase Greek letter (ordinary).
 
 '\upsilon'
-     U+03C5 Lower case Greek letter (ordinary).
+     U+03C5 Lowercase Greek letter (ordinary).
 
 '\varepsilon'
      U+03B5 Small letter script epsilon (ordinary).  This is more widely
@@ -7206,23 +9234,23 @@
      load the 'amssymb' package.
 
 '\varphi'
-     U+03C6 Variant on the lower case Greek letter (ordinary).  The
+     U+03C6 Variant on the lowercase Greek letter (ordinary).  The
      non-variant form is '\phi' U+03D5.
 
 '\varpi'
-     U+03D6 Variant on the lower case Greek letter (ordinary).  The
+     U+03D6 Variant on the lowercase Greek letter (ordinary).  The
      non-variant form is '\pi' U+03C0.
 
 '\varrho'
-     U+03F1 Variant on the lower case Greek letter (ordinary).  The
+     U+03F1 Variant on the lowercase Greek letter (ordinary).  The
      non-variant form is '\rho' U+03C1.
 
 '\varsigma'
-     U+03C2 Variant on the lower case Greek letter (ordinary).  The
+     U+03C2 Variant on the lowercase Greek letter (ordinary).  The
      non-variant form is '\sigma' U+03C3.
 
 '\vartheta'
-     U+03D1 Variant on the lower case Greek letter (ordinary).  The
+     U+03D1 Variant on the lowercase Greek letter (ordinary).  The
      non-variant form is '\theta' U+03B8.
 
 '\vdash'
@@ -7237,10 +9265,10 @@
      U+2016 Vertical double bar (ordinary).  Similar: vertical single
      bar '\vert'.
 
-     For a norm symbol, you can use the 'mathtools' package and add
-     '\DeclarePairedDelimiter\norm{\lVert}{\rVert}' to your preamble.
-     This gives you three command variants for double-line vertical bars
-     that are correctly horizontally spaced: if in the document body you
+     For a norm symbol, you can use the 'mathtools' package and put in
+     your preamble '\DeclarePairedDelimiter\norm{\lVert}{\rVert}'.  This
+     gives you three command variants for double-line vertical bars that
+     are correctly horizontally spaced: if in the document body you
      write the starred version '$\norm*{M^\perp}$' then the height of
      the vertical bars will match the height of the argument, whereas
      with '\norm{M^\perp}' the bars do not grow with the height of the
@@ -7253,10 +9281,10 @@
      vertical bar '\Vert'.  For such that, as in the definition of a
      set, use '\mid' because it is a relation.
 
-     For absolute value you can use the 'mathtools' package and add
-     '\DeclarePairedDelimiter\abs{\lvert}{\rvert}' to your preamble.
-     This gives you three command variants for single-line vertical bars
-     that are correctly horizontally spaced: if in the document body you
+     For absolute value you can use the 'mathtools' package and in your
+     preamble put '\DeclarePairedDelimiter\abs{\lvert}{\rvert}'.  This
+     gives you three command variants for single-line vertical bars that
+     are correctly horizontally spaced: if in the document body you
      write the starred version '$\abs*{\frac{22}{7}}$' then the height
      of the vertical bars will match the height of the argument, whereas
      with '\abs{\frac{22}{7}}' the bars do not grow with the height of
@@ -7275,15 +9303,191 @@
      U+2240 Wreath product (binary).
 
 '\Xi'
-     U+039E Upper case Greek letter (ordinary).
+     U+039E uppercase Greek letter (ordinary).
 
 '\xi'
-     U+03BE Lower case Greek letter (ordinary).
+     U+03BE Lowercase Greek letter (ordinary).
 
 '\zeta'
-     U+03B6 Lower case Greek letter (ordinary).
+     U+03B6 Lowercase Greek letter (ordinary).
 
+   The following symbols are most often used in plain text but LaTeX
+provides versions to use in mathematical text.
+
+'\mathdollar'
+     Dollar sign in math mode: $.
+
+'\mathparagraph'
+     Paragraph sign (pilcrow) in math mode, U+00B6.
+
+'\mathsection'
+     Section sign in math mode U+00A7.
+
+'\mathsterling'
+     Sterling sign in math mode: #.
+
+'\mathunderscore'
+     Underscore in math mode: _.
+
+* Menu:
+
+* Blackboard bold::            Doublestruck characters.
+* Calligraphic::               Cursive characters.
+* \boldmath & \unboldmath::    Symbols in boldface.
+* Dots::                       Ellipses, etc.
+
 
+File: latex2e.info,  Node: Blackboard bold,  Next: Calligraphic,  Up: Math symbols
+
+16.2.1 Blackboard bold
+----------------------
+
+Synopsis:
+
+     \usepackage{amssymb}   % in preamble
+       ...
+     \mathbb{UPPERCASE-LETTER}
+
+   Provide blackboard bold symbols, sometimes also known as doublestruck
+letters, used to denote number sets such as the natural numbers, the
+integers, etc.
+
+   Here
+
+     \( \forall n \in \mathbb{N}, n^2 \geq 0 \)
+
+the '\mathbb{N}' gives blackboard bold symbol U+2115 representing the
+natural numbers.
+
+   If you use other than an uppercase letter then you do not get an
+error but you get strange results, including unexpected characters.
+
+   There are packages that give access to symbols other than just the
+capital letters; look on CTAN.
+
+
+File: latex2e.info,  Node: Calligraphic,  Next: \boldmath & \unboldmath,  Prev: Blackboard bold,  Up: Math symbols
+
+16.2.2 Calligraphic
+-------------------
+
+Synopsis:
+
+     \mathcal{UPPERCASE-LETTERS}
+
+   Use a script-like font.
+
+   In this example the graph identifier is output in a cursive font.
+
+     Let the graph be \( \mathcal{G} \).
+
+   If you use something other than an uppercase letter then you do not
+get an error.  Instead you get unexpected output.  For instance,
+'\mathcal{g}' outputs a close curly brace symbol, while '\mathcal{+}'
+outputs a plus sign.
+
+
+File: latex2e.info,  Node: \boldmath & \unboldmath,  Next: Dots,  Prev: Calligraphic,  Up: Math symbols
+
+16.2.3 '\boldmath' & '\unboldmath'
+----------------------------------
+
+Synopsis (used in paragraph mode or LR mode):
+
+     \boldmath \( MATH \)
+
+or
+
+     \unboldmath \( MATH \)
+
+   Declarations to change the letters and symbols in MATH to be in a
+bold font, or to countermand that and bring back the regular (non-bold)
+default.  They must be used when not in math mode or display math mode
+(*note Modes::).  Both commands are fragile (*note \protect::).
+
+   In this example each '\boldmath' command takes place inside an
+'\mbox',
+
+     we have $\mbox{\boldmath \( v \)} = 5\cdot\mbox{\boldmath \( u \)$}$
+
+which means '\boldmath' is only called in a text mode, here LR mode, and
+explains why LaTeX must switch to math mode to set 'v' and 'u'.
+
+   If you use either command inside math mode, as with 'Trouble: \(
+\boldmath x \)', then you get something like 'LaTeX Font Warning:
+Command \boldmath invalid in math mode on input line 11' and 'LaTeX Font
+Warning: Command \mathversion invalid in math mode on input line 11'.
+
+   There are many issues with '\boldmath'.  New documents should use the
+'bm' package provided by the LaTeX Project team.  A complete description
+is outside the scope of this document (see the full documentation on
+CTAN) but even this small example
+
+     \usepackage{bm}   % in preamble
+     ...
+     we have $\bm{v} = 5\cdot\bm{u}$
+
+shows that it is an improvement over '\boldmath'.
+
+
+File: latex2e.info,  Node: Dots,  Prev: \boldmath & \unboldmath,  Up: Math symbols
+
+16.2.4 Dots, horizontal or vertical
+-----------------------------------
+
+Ellipses are the three dots (usually three) indicating that a pattern
+continues.
+
+     \begin{array}{cccc}
+       a_{0,0}    &a_{0,1}   &a_{0,2} &\ldots \\
+       a_{1,0}    &\ddots                     \\
+       \vdots
+     \end{array}
+
+   LaTeX provides these.
+
+'\cdots'
+     Horizontal ellipsis with the dots raised to the center of the line,
+     as in U+22EF. Used as: '\( a_0\cdot a_1\cdots a_{n-1} \)'.
+
+'\ddots'
+     Diagonal ellipsis, U+22F1.  See the above array example for a
+     usage.
+
+'\ldots'
+     Ellipsis on the baseline, U+2026.  Used as: '\( x_0,\ldots x_{n-1}
+     \)'.  Another example is the above array example.  A synonym is
+     '\mathellipsis'.  A synonym from the 'amsmath' package is '\hdots'.
+
+     You can also use this command outside of mathematical text, as in
+     'The gears, brakes, \ldots{} are all broken'.  (In a paragraph mode
+     or LR mode a synonym for '\ldots' is '\dots'.)
+
+'\vdots'
+     Vertical ellipsis, U+22EE. See the above array example for a usage.
+
+   The 'amsmath' package has the command '\dots' to semantically mark up
+ellipses.  This example produces two different-looking outputs for the
+first two uses of the '\dots' command.
+
+     \usepackage{amsmath}  % in preamble
+       ...
+     Suppose that \( p_0, p_1, \dots, p_{n-1} \) lists all of the primes.
+     Observe that \( p_0\cdot p_1 \dots \cdot p_{n-1} +1 \) is not a
+       multiple of any \( p_i \).
+     Conclusion: there are infinitely many primes \( p_0, p_1, \dotsc \).
+
+In the first line LaTeX looks to the comma following '\dots' to
+determine that it should output an ellipsis on the baseline.  The second
+line has a '\cdot' following '\dots' so LaTeX outputs an ellipsis that
+is on the math axis, vertically centered.  However, the third usage has
+no follow-on character so you have to tell LaTeX what to do.  You can
+use one of the commands: '\dotsc' if you need the ellipsis appropriate
+for a comma following, '\dotsb' if you need the ellipses that fits when
+the dots are followed by a binary operator or relation symbol, '\dotsi'
+for dots with integrals, or '\dotso' for others.
+
+
 File: latex2e.info,  Node: Math functions,  Next: Math accents,  Prev: Math symbols,  Up: Math formulas
 
 16.3 Math functions
@@ -7293,109 +9497,117 @@
 spacing.
 
 '\arccos'
-     \arccos
+     Inverse cosine
 
 '\arcsin'
-     \arcsin
+     Inverse sine
 
 '\arctan'
-     \arctan
+     Inverse tangent
 
 '\arg'
-     \arg
+     Angle between the real axis and a point in the complex plane
 
 '\bmod'
-     Binary modulo operator (x \bmod y)
+     Binary modulo operator, used as in '\( 5\bmod 3=2 \)'
 
 '\cos'
-     \cos
+     Cosine
 
 '\cosh'
-     \cosh
+     Hyperbolic cosine
 
 '\cot'
-     \cot
+     Cotangent
 
 '\coth'
-     \coth
+     Hyperbolic cotangent
 
 '\csc'
-     \csc
+     Cosecant
 
 '\deg'
-     \deg
+     Degrees
 
 '\det'
-     \det
+     Determinant
 
 '\dim'
-     \dim
+     Dimension
 
 '\exp'
-     \exp
+     Exponential
 
 '\gcd'
-     \gcd
+     Greatest common divisor
 
 '\hom'
-     \hom
+     Homomorphism
 
 '\inf'
-     \inf
+     Infinum
 
 '\ker'
-     \ker
+     Kernel
 
 '\lg'
-     \lg
+     Base 2 logarithm
 
 '\lim'
-     \lim
+     Limit
 
 '\liminf'
-     \liminf
+     Limit inferior
 
 '\limsup'
-     \limsup
+     Limit superior
 
 '\ln'
-     \ln
+     Natural logarithm
 
 '\log'
-     \log
+     Logarithm
 
 '\max'
-     \max
+     Maximum
 
 '\min'
-     \min
+     Minimum
 
 '\pmod'
-     parenthesized modulus, as in (\pmod 2^n - 1)
+     Parenthesized modulus, as used in '\( 5\equiv 2\pmod 3 \)'
 
 '\Pr'
-     \Pr
+     Probability
 
 '\sec'
-     \sec
+     Secant
 
 '\sin'
-     \sin
+     Sine
 
 '\sinh'
-     \sinh
+     Hyperbolic sine
 
 '\sup'
-     \sup
+     sup
 
 '\tan'
-     \tan
+     Tangent
 
 '\tanh'
-     \tanh
+     Hyperbolic tangent
 
+   The 'amsmath' package adds improvements on some of these, and also
+allows you to define your own.  The full documentation is on CTAN, but
+briefly, you can define an identity operator with
+'\DeclareMathOperator{\identity}{id}' that is like the ones above but
+prints as 'id'.  The starred form '\DeclareMathOperator*{\op}{op}' sets
+any limits above and below, as is traditional with '\lim', '\sup', or
+'\max'.
+
 
-File: latex2e.info,  Node: Math accents,  Next: Spacing in math mode,  Prev: Math functions,  Up: Math formulas
+File: latex2e.info,  Node: Math accents,  Next: Over- and Underlining,  Prev: Math functions,  Up: Math formulas
 
 16.4 Math accents
 =================
@@ -7405,80 +9617,143 @@
 Accents::).
 
 '\acute'
-     Math acute accent: \acute{x}.
+     Math acute accent
 
 '\bar'
-     Math bar-over accent: \bar{x}.
+     Math bar-over accent
 
 '\breve'
-     Math breve accent: \breve{x}.
+     Math breve accent
 
 '\check'
-     Math ha'c<ek (check) accent: \check{x}.
+     Math ha'c<ek (check) accent
 
 '\ddot'
-     Math dieresis accent: \ddot{x}.
+     Math dieresis accent
 
 '\dot'
-     Math dot accent: \dot{x}.
+     Math dot accent
 
 '\grave'
-     Math grave accent: \grave{x}.
+     Math grave accent
 
 '\hat'
-     Math hat (circumflex) accent: \hat{x}.
+     Math hat (circumflex) accent
 
-'\imath'
-     Math dotless i.
-
-'\jmath'
-     Math dotless j.
-
 '\mathring'
-     Math ring accent: x*.
+     Math ring accent
 
 '\tilde'
-     Math tilde accent: \tilde{x}.
+     Math tilde accent
 
 '\vec'
-     Math vector symbol: \vec{x}.
+     Math vector symbol
 
 '\widehat'
-     Math wide hat accent: \widehat{x+y}.
+     Math wide hat accent
 
 '\widetilde'
-     Math wide tilde accent: \widetilde{x+y}.
+     Math wide tilde accent
 
+   When you are putting an accent on an i or a j, the tradition is to
+use one without a dot, '\imath' or 'jmath' (*note Math symbols::).
+
 
-File: latex2e.info,  Node: Spacing in math mode,  Next: Math miscellany,  Prev: Math accents,  Up: Math formulas
+File: latex2e.info,  Node: Over- and Underlining,  Next: Spacing in math mode,  Prev: Math accents,  Up: Math formulas
 
-16.5 Spacing in math mode
+16.5 Over- and Underlining
+==========================
+
+LaTeX provides commands for making overlines or underlines, or putting
+braces over or under some material.
+
+'\underline{TEXT}'
+     Underline TEXT.  Works inside math mode, and outside.  The line is
+     always completely below the text, taking account of descenders, so
+     in '\(\underline{y}\)' the line is lower than in
+     '\(\underline{x}\)'.  This command is fragile (*note \protect::).
+
+     Note that the package 'ulem' does text mode underlining and allows
+     line breaking as well as a number of other features.  See the
+     documentation on CTAN. See also *note \hrulefill & \dotfill:: for
+     producing a line, for such things as a signature.
+
+'\overline{TEXT}'
+     Put a horizontal line over TEXT.  Works inside math mode, and
+     outside.  For example, '\overline{x+y}'.  Note that this differs
+     from the command '\bar' (*note Math accents::).
+
+'\underbrace{MATH}'
+     Put a brace under MATH.  For example, this
+     '(1-\underbrace{1/2)+(1/2}-1/3)' emphasizes the telescoping part.
+     Attach text to the brace by using subscript, '_', or superscript,
+     '^', as here.
+
+          \begin{displaymath}
+            1+1/2+\underbrace{1/3+1/4}_{>1/2}+
+                 \underbrace{1/5+1/6+1/7+1/8}_{>1/2}+\cdots
+          \end{displaymath}
+
+     The superscript appears on top of the expression, and so can look
+     unconnected to the underbrace.
+
+'\overbrace{MATH}'
+     Put a brace over MATH, as with
+     '\overbrace{x+x+\cdots+x}^{\mbox{\(k\) times}}'.  See also
+     '\underbrace'.
+
+   The package 'mathtools' adds an over- and underbrace, as well as some
+improvements on the braces.  See the documentation on CTAN.
+
+
+File: latex2e.info,  Node: Spacing in math mode,  Next: Math miscellany,  Prev: Over- and Underlining,  Up: Math formulas
+
+16.6 Spacing in math mode
 =========================
 
-In a 'math' environment, LaTeX ignores the spaces that you use in the
-source, and instead puts in the spacing according to the normal rules
-for mathematics texts.
+When typesetting mathematics, LaTeX puts in spacing according to the
+normal rules for mathematics texts.  If you enter 'y=m x' then LaTeX
+ignores the space and in the output the m is next to the x, as y=mx.
 
-   Many math mode spacing definitions are expressed in terms of the math
-unit "mu" given by 1 em = 18 mu, where the em is taken from the current
-math symbols family (*note Units of length::).  LaTeX provides the
-following commands for use in math mode:
+   But LaTeX's rules sometimes need tweaking.  For example, in an
+integral the tradition is to put a small extra space between the 'f(x)'
+and the 'dx', here done with the '\,' command.
 
+     \int_0^1 f(x)\,dx
+
+   LaTeX provides the commands that follow for use in math mode.  Many
+of these spacing definitions are expressed in terms of the math unit
+"mu".  It is defined as 1/18em, where the em is taken from the current
+math symbols family (*note Units of length::).  Thus, a '\thickspace' is
+something like 5/18 times the width of a 'M'.
+
 '\;'
-     Normally '5.0mu plus 5.0mu'.  The longer name is '\thickspace'.
-     Math mode only.
+     Synonym: '\thickspace'.  Normally '5.0mu plus 5.0mu'.  Math mode
+     only.
 
 '\:'
 '\>'
-     Normally '4.0mu plus 2.0mu minus 4.0mu'.  The longer name is
-     '\medspace'.  Math mode only.
+     Synonym: '\medspace'.  Normally '4.0mu plus 2.0mu minus 4.0mu'.
+     Math mode only.
 
 '\,'
-     Normally '3mu'.  The longer name is '\thinspace'.  This can be used
-     in both math mode and text mode.  *Note \thinspace::.
+     Synonym: '\thinspace'.  Normally '3mu', which is 1/6em.  Can be
+     used in both math mode and text mode (*note \thinspace &
+     \negthinspace::).
 
+     This space is widely used, for instance between the function and
+     the infinitesimal in an integral '\int f(x)\,dx' and, if an author
+     does this, before punctuation in a displayed equation.
+
+          The antiderivative is
+          \begin{equation}
+            3x^{-1/2}+3^{1/2}\,.
+          \end{equation}
+
 '\!'
-     A negative thin space.  Normally '-3mu'.  Math mode only.
+     A negative thin space.  Normally '-3mu'.  The '\!' command is math
+     mode only but the '\negthinspace' command is available for text
+     mode (*note \thinspace & \negthinspace::).
 
 '\quad'
      This is 18mu, that is, 1em.  This is often used for space
@@ -7490,140 +9765,204 @@
      A length of 2 quads, that is, 36mu = 2em.  It is available in both
      text and math mode.
 
-   In this example a thinspace separates the function from the
-infinitesimal.
-
-     \int_0^1 f(x)\,dx
-
 
 File: latex2e.info,  Node: Math miscellany,  Prev: Spacing in math mode,  Up: Math formulas
 
-16.6 Math miscellany
+16.7 Math miscellany
 ====================
 
-'\*'
-     A "discretionary" multiplication symbol, at which a line break is
-     allowed.  Without the break multiplication is implicitly indicated
-     by a space, while in the case of a break a U+00D7 symbol is printed
-     immediately before the break.  So
+LaTeX contains a wide variety of mathematics facilities.  Here are some
+that don't fit into other categories.
 
-          \documentclass{article}
-          \begin{document}
-          Now \(A_3 = 0\), hence the product of all terms \(A_1\)
-          through \(A_4\), that is \(A_1\* A_2\* A_3 \* A_4\), is
-          equal to zero.
-          \end{document}
+* Menu:
 
-     will make that sort of output (the ellipsis '[...]' is here to show
-     the line break at the same place as in a TeX output):
+* Colon character & \colon::    Colon.
+* \*::                            Discretionary multiplication.
+* \frac::                         Fraction.
+* \left & \right::                Paired delimiters.
+* \sqrt::                         Radicals.
+* \stackrel::                     Text over a relation.
 
-          Now A_3 = 0, [...] A_1 through A_4, that is A_1 A_2 \times
-          A_3 A_4, is equal to zero.
+
+File: latex2e.info,  Node: Colon character & \colon,  Next: \*,  Up: Math miscellany
 
-'\cdots'
-     A horizontal ellipsis with the dots raised to the center of the
-     line.
+16.7.1 Colon character ':' & '\colon'
+-------------------------------------
 
-'\ddots'
-     A diagonal ellipsis: \ddots.
+Synopsis, one of:
 
-'\frac{NUM}{DEN}'
-     Produces the fraction NUM divided by DEN.
+     :
+     \colon
 
-'\left DELIM1 ... \right DELIM2'
-     The two delimiters need not match; '.' acts as a "null delimiter",
-     producing no output.  The delimiters are sized according to the
-     math in between.  Example: '\left( \sum_{i=1}^{10} a_i \right]'.
+   In mathematics, the colon character, ':', is a relation.
 
-'\mathdollar'
-     Dollar sign in math mode: $.
+     With side ratios \( 3:4 \) and \( 4:5 \), the triangle is right.
 
-'\mathellipsis'
-     Ellipsis (spaced for text) in math mode: ....
+Ordinary LaTeX defines '\colon' to produce the colon character with the
+spacing appropriate for punctuation, as in set-builder notation
+'\{x\colon 0\leq x<1\}'.
 
-'\mathparagraph'
-     Paragraph sign (pilcrow) in math mode: U+00B6.
+   But the widely-used 'amsmath' package defines '\colon' for use in the
+definition of functions 'f\colon D\to C'.  So if you want the colon
+character as a punctuation then use '\mathpunct{:}'.
 
-'\mathsection'
-     Section sign in math mode.
+
+File: latex2e.info,  Node: \*,  Next: \frac,  Prev: Colon character & \colon,  Up: Math miscellany
 
-'\mathsterling'
-     Sterling sign in math mode: #.
+16.7.2 '\*'
+-----------
 
-'\mathunderscore'
-     Underscore in math mode: _.
+Synopsis:
 
-'\overbrace{MATH}'
-     Generates a brace over MATH.  For example,
-     '\overbrace{x+\cdots+x}^{k \;\textrm{times}}'.
+     \*
 
-'\overline{TEXT}'
-     Generates a horizontal line over TEX.  For example,
-     '\overline{x+y}'.
+   A multiplication symbol that allows a line break.  If there is a
+break then LaTeX puts a '\times' symbol, U+00D7, before that break.
 
-'\sqrt[ROOT]{ARG}'
-     Produces the representation of the square root of ARG.  The
-     optional argument ROOT determines what root to produce.  For
-     example, the cube root of 'x+y' would be typed as '\sqrt[3]{x+y}'.
+   In '\( A_1\* A_2\* A_3\* A_4 \)', if there is no line break then
+LaTeX outputs it as though it were '\( A_1 A_2 A_3 A_4 \)'.  If a line
+break does happen, for example between the two middle ones, then LaTeX
+sets it like '\( A_1 A_2 \times \)', followed by the break, followed by
+'\( A_3 A_4 \)'.
 
-'\stackrel{TEXT}{RELATION}'
-     Puts TEXT above RELATION.  For example,
-     '\stackrel{f}{\longrightarrow}'.
+
+File: latex2e.info,  Node: \frac,  Next: \left & \right,  Prev: \*,  Up: Math miscellany
 
-'\underbrace{MATH}'
-     Generates MATH with a brace underneath.  For example,
-     '\underbrace{x+y+z}_{>\,0}'
+16.7.3 '\frac'
+--------------
 
-'\underline{TEXT}'
-     Causes TEXT, which may be either math mode or not, to be
-     underlined.  The line is always below the text, taking account of
-     descenders.
+Synopsis:
 
-'\vdots'
-     Produces a vertical ellipsis.
+     \frac{NUMERATOR}{DENOMINATOR}
 
+   Produces the fraction.  Used as: '\begin{displaymath}
+\frac{1}{\sqrt{2\pi\sigma}} \end{displaymath}'.  In inline math mode it
+comes out small; see the discussion of '\displaystyle' (*note Math
+formulas::).
+
 
+File: latex2e.info,  Node: \left & \right,  Next: \sqrt,  Prev: \frac,  Up: Math miscellany
+
+16.7.4 '\left' & '\right'
+-------------------------
+
+Synopsis:
+
+     \left DELIMITER1 ... \right DELIMITER2
+
+   Make matching parentheses, braces, or other delimiters.  The
+delimiters are sized according to the math they enclose.  This makes a
+unit vector surrounded by appropriate-height parentheses.
+
+     \begin{equation}
+       \left(\begin{array}{c}
+         1   \\
+         0   \\
+       \end{array}\right)
+
+   Every '\left' must have a matching '\right'.  Leaving out the
+'\left(' in the above gets 'Extra \right'.  Leaving off the '\right)'
+gets 'You can't use `\eqno' in math mode'.
+
+   However, the two delimiters DELIMITER1 and DELIMITER2 need not match.
+A common case is that you want an unmatched brace, as below.  Use a
+period, '.', as a null delimiter.
+
+     \begin{equation}
+       f(n)=\left\{\begin{array}{ll}
+                     1             &\mbox{--if \(n=0\)} \\
+                     f(n-1)+3n^2   &\mbox{--else}
+            \end{array}\right.
+     \end{equation}
+
+Note that to get a curly brace as a delimiter you must prefix it with a
+backslash, '\{'.
+
+
+File: latex2e.info,  Node: \sqrt,  Next: \stackrel,  Prev: \left & \right,  Up: Math miscellany
+
+16.7.5 '\sqrt'
+--------------
+
+Synopsis, one of:
+
+     \sqrt{ARG}
+     \sqrt[ROOT-NUMBER]{ARG}
+
+   The square root, or optionally other roots, of ARG.  The optional
+argument ROOT-NUMBER gives the root, i.e., enter the cube root of 'x+y'
+as '\sqrt[3]{x+y}'.  The radical grows with the size of ARG (as the
+height of the radical grows, the angle on the leftmost part gets
+steeper, until for a large enough 'arg', it is vertical).
+
+   LaTeX has a separate '\surd' character (*note Math symbols::).
+
+
+File: latex2e.info,  Node: \stackrel,  Prev: \sqrt,  Up: Math miscellany
+
+16.7.6 '\stackrel'
+------------------
+
+Synopsis, one of:
+
+     \stackrel{TEXT}{RELATION}
+
+   Put TEXT above RELATION.  To put a function name above an arrow enter
+'\stackrel{f}{\longrightarrow}'.
+
+
 File: latex2e.info,  Node: Modes,  Next: Page styles,  Prev: Math formulas,  Up: Top
 
 17 Modes
 ********
 
-When LaTeX is processing your input text, it is always in one of three
-modes:
+As LaTeX processes your document, at any point it is in one of six
+modes.  They fall into three categories of two each, the horizontal
+modes, the math modes, and the vertical modes.  Some commands only work
+in one mode or another (in particular, many commands only work in one of
+the math modes), and error messages will refer to these.
 
-   * Paragraph mode
-   * Math mode
-   * Left-to-right mode, called LR mode for short
+   * "Paragraph mode" is what LaTeX is in when processing ordinary text.
+     It breaks the input text into lines and breaks the lines into
+     pages.  This is the mode LaTeX is in most of the time.
 
-   Mode changes occur only when entering or leaving an environment, or
-when LaTeX is processing the argument of certain text-producing
-commands.
+     "LR mode" (for left-to-right mode; in plain TeX this is called
+     "restricted horizontal mode") is in effect when LaTeX starts making
+     a box with an '\mbox' command.  As in paragraph mode, LaTeX's
+     output is a string of words with spaces between them.  Unlike in
+     paragraph mode, in LR mode LaTeX never starts a new line, it just
+     keeps going from left to right.  (Although LaTeX will not complain
+     that the LR box is too long, when it is finished and next tries to
+     put that box into a line, it could very well complain that the
+     finished LR box won't fit there.)
 
-   "Paragraph mode" is the most common; it's the one LaTeX is in when
-processing ordinary text.  In this mode, LaTeX breaks the input text
-into lines and breaks the lines into pages.
+   * "Math mode" is when LaTeX is generating an inline mathematical
+     formula.
 
-   LaTeX is in "math mode" when it's generating a mathematical formula,
-either displayed math or within a line.
+     "Display math mode" is when LaTeX is generating a displayed
+     mathematical formula.  (Displayed formulas differ somewhat from
+     inline ones.  One example is that the placement of the subscript on
+     '\int' differs in the two situations.)
 
-   In "LR mode", as in paragraph mode, LaTeX considers the output that
-it produces to be a string of words with spaces between them.  However,
-unlike paragraph mode, LaTeX keeps going from left to right; it never
-starts a new line in LR mode.  Even if you put a hundred words into an
-'\mbox', LaTeX would keep typesetting them from left to right inside a
-single box (and then most likely complain because the resulting box was
-too wide to fit on the line).  LaTeX is in LR mode when it starts making
-a box with an '\mbox' command.  You can get it to enter a different mode
-inside the box--for example, you can make it enter math mode to put a
-formula in the box.
+   * "Vertical mode" is when LaTeX is building the list of lines and
+     other material making the output page.  This is the mode LaTeX is
+     in when it starts a document.
 
-   There are also several text-producing commands and environments for
-making a box that put LaTeX into paragraph mode.  The box made by one of
-these commands or environments will be called a 'parbox'.  When LaTeX is
-in paragraph mode while making a box, it is said to be in "inner
-paragraph mode" (no page breaks).  Its normal paragraph mode, which it
-starts out in, is called "outer paragraph mode".
+     "Internal vertical mode" is in effect when LaTeX starts making a
+     '\vbox'.  This is the vertical analogue of LR mode.
 
+For instance, if you begin a LaTeX article with 'Let \( x \) be ...'
+then these are the modes: first LaTeX starts every document in vertical
+mode, then it reads the 'L' and switches to paragraph mode, then the
+next switch happens at the '\(' where LaTeX changes to math mode, and
+then when it leaves the formula it pops back to paragraph mode.
+
+   Paragraph mode has two subcases.  If you use a '\parbox' command or
+or a 'minipage' then LaTeX is put into paragraph mode.  But it will not
+put a page break here.  Inside one of these boxes, called a "parbox",
+LaTeX is in "inner paragraph mode".  Its more usual situation, where it
+can put page breaks, is "outer paragraph mode" (*note Page breaking::).
+
 * Menu:
 
 * \ensuremath:: Ensure that math mode is active
@@ -7638,30 +9977,23 @@
 
      \ensuremath{FORMULA}
 
-   The '\ensuremath' command ensures that FORMULA is typeset in math
-mode whatever the current mode in which the command is used.
+   Ensure that FORMULA is typeset in math mode.
 
-   For instance:
+   For instance, you can redefine commands that ordinarily can be used
+only in math mode, so that they can be used both in math and in plain
+text.
 
-     \documentclass{report}
-     \newcommand{\ab}{\ensuremath{(\delta, \varepsilon)}}
-     \begin{document}
-     Now, the \ab\ pair is equal to \(\ab = (\frac{1}{\pi}, 0)\), ...
-     \end{document}
+     \newcommand{\dx}{\ensuremath{dx}}
+     In $\int f(x)\, \dx$, the \dx{} is an infinitesimal.
 
-   One can redefine commands that can be used only in math mode so that
-they ca be used in any mode like in the following example given for
-'\leadsto':
+   Caution: the '\ensuremath' command is useful but not a panacea.
 
-     \documentclass{report}
-     \usepackage{amssymb}
-     \newcommand{\originalMeaningOfLeadsTo}{}
-     \let\originalMeaningOfLeadsTo\leadsto
-     \renewcommand\leadsto{\ensuremath{\originalMeaningOfLeadsTo}}
-     \begin{document}
-     All roads \leadsto\ Rome.
-     \end{document}
+     \newcommand{\alf}{\ensuremath{\alpha}}
+     You get an alpha in text mode: \alf.
+     But compare the correct spacing in $\alf+\alf$ with that in \alf+\alf.
 
+Best is to typeset math things in a math mode.
+
 
 File: latex2e.info,  Node: Page styles,  Next: Spaces,  Prev: Modes,  Up: Top
 
@@ -7668,9 +10000,15 @@
 18 Page styles
 **************
 
-The '\documentclass' command determines the size and position of the
-page's head and foot.  The page style determines what goes in them.
+The style of a page determines where LaTeX places the components of that
+page, such as headers and footers, and the text body.  This includes
+pages in the main part of the document but also includes special pages
+such as the title page of a book, a page from an index, or the first
+page of an article.
 
+   The package 'fancyhdr' is very helpful for constructing page styles.
+See its documentation on CTAN.
+
 * Menu:
 
 * \maketitle::          Generate a title page.
@@ -7684,29 +10022,74 @@
 18.1 '\maketitle'
 =================
 
-The '\maketitle' command generates a title on a separate title
-page--except in the 'article' class, where the title is placed at the
-top of the first page.  Information used to produce the title is
-obtained from the following declarations:
+Synopsis:
 
-'\author{NAME \and NAME2}'
-     The '\author' command declares the document author(s), where the
-     argument is a list of authors separated by '\and' commands.  Use
-     '\\' to separate lines within a single author's entry--for example,
-     to give the author's institution or address.
+     \maketitle
 
+   Generate a title.  In the standard classes the title appears on a
+separate page, except in the 'article' class where it is at the top of
+the first page.  (*Note Document class options:: for information about
+the 'titlepage' document class option.)
+
+   This example shows '\maketitle' appearing in its usual place,
+immediately after '\begin{document}'.
+
+     \documentclass{article}
+     \title{Constructing a Nuclear Reactor Using Only Coconuts}
+     \author{Jonas Grumby\thanks{%
+         With the support of a Ginger Grant from the Roy Hinkley Society.} \\
+       Skipper, \textit{Minnow}
+       \and
+       Willy Gilligan\thanks{%
+         Thanks to the Mary Ann Summers foundation
+         and to Thurston and Lovey Howell.}           \\
+       Mate, \textit{Minnow}
+       }
+     \date{1964-Sep-26}
+     \begin{document}
+     \maketitle
+     Just sit right back and you'll hear a tale, a tale of a fateful trip.
+     That started from this tropic port, aboard this tiny ship. The mate was
+     a mighty sailin' man, the Skipper brave and sure. Five passengers set
+     sail that day for a three hour tour. A three hour tour.
+       ...
+
+   You tell LaTeX the information used to produce the title by making
+the following declarations.  These must come before the '\maketitle',
+either in the preamble or in the document body.
+
+'\author{NAME1 \and NAME2 \and ...}'
+     Required.  Declare the document author or authors.  The argument is
+     a list of authors separated by '\and' commands.  To separate lines
+     within a single author's entry, for instance to give the author's
+     institution or address, use a double backslash, '\\'.  If you omit
+     the '\author' declaration then you get 'LaTeX Warning: No \author
+     given'.
+
 '\date{TEXT}'
-     The '\date' command declares TEXT to be the document's date.  With
-     no '\date' command, the current date (*note \today::) is used.
+     Optional.  Declare TEXT to be the document's date.  The TEXT
+     doesn't need to be in a date format; it can be any text at all.  If
+     you omit '\date' then LaTeX uses the current date (*note \today::).
+     To have no date, instead use '\date{}'.
 
 '\thanks{TEXT}'
-     The '\thanks' command produces a '\footnote' to the title, usually
-     used for credit acknowledgements.
+     Optional.  Produce a footnote.  You can use it in the author
+     information for acknowledgements, as illustrated below, but you can
+     also use it in the title, or any place a footnote makes sense.  It
+     can be any text so you can use it to print an email address, or for
+     any purpose.
 
 '\title{TEXT}'
-     The '\title' command declares TEXT to be the title of the document.
-     Use '\\' to force a line break, as usual.
+     Required.  Declare TEXT to be the title of the document.  Get line
+     breaks inside TEXT with a double backslash, '\\'.  If you omit the
+     '\title' declaration then you get 'LaTeX Error: No \title given'.
 
+   Many publishers will provide a class to use in place of 'article' in
+that example, that formats the title according to their house
+requirements.  To make your own, see *note titlepage::.  You can either
+create this as a one-off or you can include it as part of a renewed
+'\maketitle' command.
+
 
 File: latex2e.info,  Node: \pagenumbering,  Next: \pagestyle,  Prev: \maketitle,  Up: Page styles
 
@@ -7715,26 +10098,58 @@
 
 Synopsis:
 
-     \pagenumbering{STYLE}
+     \pagenumbering{NUMBER-STYLE}
 
-   Specifies the style of page numbers, according to STYLE; also resets
-the page number to 1.  The STYLE argument is one of the following:
+   Specifies the style of page numbers, and resets the page number.  The
+numbering style is reflected on the page, and also in the table of
+contents and other page references.  This declaration has global scope
+so its effect is not delimited by braces or environments.
 
+   In this example, before the Main section the pages are numbered 'a',
+etc.  Starting on the page containing that section, the pages are
+numbered '1', etc.
+
+     \begin{document}\pagenumbering{alph}
+       ...
+     \section{Main}\pagenumbering{arabic}
+       ...
+
+   The argument NUMBER-STYLE is one of the following (see also *note
+\alph \Alph \arabic \roman \Roman \fnsymbol::).
+
 'arabic'
-     arabic numerals
+     arabic numerals: 1, 2, ...
 
 'roman'
-     lowercase Roman numerals
+     lowercase Roman numerals: i, ii, ...
 
 'Roman'
-     uppercase Roman numerals
+     uppercase Roman numerals: I, II, ...
 
 'alph'
-     lowercase letters
+     lowercase letters: a, b, ... If you have more than 26 pages then
+     you get 'LaTeX Error: Counter too large'.
 
 'Alph'
-     uppercase letters
+     uppercase letters: A, B, ... If you have more than 26 pages then
+     you get 'LaTeX Error: Counter too large'.
 
+'gobble'
+     LaTeX does not output a page number, although it does get reset.
+     References to that page also are blank.  (This does not work with
+     the popular package 'hyperref' so to have the page number not
+     appear you may want to instead use '\pagestyle{empty}' or
+     '\thispagestyle{empty}'.)
+
+   Traditionally, if a document has front matter--preface, table of
+contents, etc.--then it is numbered with lowercase Roman numerals.  The
+main matter of a document uses arabic.  *Note \frontmatter & \mainmatter
+& \backmatter::.
+
+   If you want to address where the page number appears on the page,
+see *note \pagestyle::.  If you want to change the value of page number
+then you will manipulate the 'page' counter (*note Counters::).
+
 
 File: latex2e.info,  Node: \pagestyle,  Next: \thispagestyle,  Prev: \pagenumbering,  Up: Page styles
 
@@ -7745,45 +10160,114 @@
 
      \pagestyle{STYLE}
 
-   The '\pagestyle' command specifies how the headers and footers are
-typeset from the current page onwards.  Values for STYLE:
+   Declaration that specifies how the page headers and footers are
+typeset, from the current page onwards.
 
+   A discussion with an example is below.  Note first that the package
+'fancyhdr' is now the standard way to manipulate headers and footers.
+New documents that need to do anything other than one of the standard
+options below should use this package.  See its documentation on CTAN.
+
+   Values for STYLE:
+
 'plain'
-     Just a plain page number.
+     The header is empty.  The footer contains only a page number,
+     centered.
 
 'empty'
-     Empty headers and footers, e.g., no page numbers.
+     The header and footer is empty.
 
 'headings'
-     Put running headers on each page.  The document style specifies
-     what goes in the headers.
+     Put running headers and footers on each page.  The document style
+     specifies what goes in there; see the discussion below.
 
 'myheadings'
      Custom headers, specified via the '\markboth' or the '\markright'
      commands.
 
+   Some discussion of the motivation for LaTeX's mechanism will help you
+work with the options 'headings' or 'myheadings'.  The document source
+below produces an article, two-sided, with the pagestyle 'headings'.  On
+this document's left hand pages, LaTeX wants (in addition to the page
+number) the title of the current section.  On its right hand pages LaTeX
+wants the title of the current subsection.  When it makes up a page,
+LaTeX gets this information from the commands '\leftmark' and
+'\rightmark'.  So it is up to '\section' and '\subsection' to store that
+information there.
+
+     \documentclass[twoside]{article}
+     \pagestyle{headings}
+     \begin{document}
+       ... \section{Section 1} ... \subsection{Subsection 1.1} ...
+     \section{Section 2}
+       ...
+     \subsection{Subsection 2.1}
+       ...
+     \subsection{Subsection 2.2}
+       ...
+
+Suppose that the second section falls on a left page.  Although when the
+page starts it is in the first section, LaTeX will put 'Section 2' in
+the left page header.  As to the right header, if no subsection starts
+before the end of the right page then LaTeX blanks the right hand
+header.  If a subsection does appear before the right page finishes then
+there are two cases.  If at least one subsection starts on the right
+hand page then LaTeX will put in the right header the title of the first
+subsection starting on that right page.  If at least one of 2.1, 2.2,
+..., starts on the left page but none starts on the right then LaTeX
+puts in the right hand header the title of the last subsection to start,
+that is, the one in effect during the right hand page.
+
+   To accomplish this, in a two-sided article, LaTeX has '\section'
+issue a command '\markboth', setting '\leftmark' to 'Section 2' and
+setting '\rightmark' to blank.  And, LaTeX has '\subsection' issue a
+command '\markright', setting '\rightmark' to 'Subsection 2.1', etc.
+
    Here are the descriptions of '\markboth' and '\markright':
 
-'\markboth{LEFT}{RIGHT}'
-     Sets both the left and the right heading.  A "left-hand heading"
-     (LEFT) is generated by the last '\markboth' command before the end
-     of the page, while a "right-hand heading" (RIGHT) is generated by
-     the first '\markboth' or '\markright' that comes on the page if
-     there is one, otherwise by the last one before the page.
+'\markboth{LEFT-HEAD}{RIGHT-HEAD}'
+     Sets both the right hand and left hand heading information for
+     either a page style of 'headings' or 'myheadings'.  A left hand
+     page heading LEFT-HEAD is generated by the last '\markboth' command
+     before the end of the page.  A right hand page heading RIGHT-HEAD
+     is generated by the first '\markboth' or '\markright' that comes on
+     the page if there is one, otherwise by the last one that came
+     before that page.
 
 '\markright{RIGHT}'
-     Sets the right heading, leaving the left heading unchanged.
+     Sets the right hand page heading, leaving the left unchanged.
 
 
 File: latex2e.info,  Node: \thispagestyle,  Prev: \pagestyle,  Up: Page styles
 
-18.4 '\thispagestyle{STYLE}'
-============================
+18.4 '\thispagestyle'
+=====================
 
-The '\thispagestyle' command works in the same manner as the
-'\pagestyle' command (see previous section) except that it changes to
-STYLE for the current page only.
+Synopsis:
 
+     \thispagestyle{STYLE}
+
+   Works in the same way as the '\pagestyle' (*note \pagestyle::),
+except that it changes to STYLE for the current page only.  This
+declaration has global scope, so its effect is not delimited by braces
+or environments.
+
+   Often the first page of a chapter or section has a different style.
+For example, this LaTeX book document has the first page of the first
+chapter in in 'plain' style, as is the default (*note Page styles::).
+
+     \documentclass{book}
+     \pagestyle{headings}
+     \begin{document}
+     \chapter{First chapter}
+       ...
+     \chapter{Second chapter}\thispagestyle{empty}
+       ...
+
+The 'plain' style has a page number on it, centered in the footer.  To
+make the page entirely empty, the command '\thispagestyle{empty}'
+immediately follows the second '\chapter'.
+
 
 File: latex2e.info,  Node: Spaces,  Next: Boxes,  Prev: Page styles,  Up: Top
 
@@ -7790,72 +10274,179 @@
 19 Spaces
 *********
 
-LaTeX has many ways to produce white (or filled) space.
+LaTeX has many ways to produce white (or filled) space.  Some of these
+are best suited to mathematical text; see *note Spacing in math mode::.
+Some spacing commands are suitable for both regular text and
+mathematical text; versions of some of these commands are in this
+chapter.
 
 * Menu:
 
 Horizontal space
-* \hspace::              Fixed horizontal space.
-* \hfill::               Stretchable horizontal space.
-* \spacefactor::         Stretchability of following space
-* \(SPACE) after control sequence:: Space (gobbling) after a control sequence.
-* \thinspace::           One-sixth of an em.
-* \/::                   Insert italic correction.
-* \hrulefill \dotfill::  Stretchable horizontal rule or dots.
+* \enspace & \quad & \qquad::  Traditional horizontal spaces.
+* \hspace::               Any horizontal space.
+* \hfill::                Stretchable horizontal space.
+* \hss::                  Infinitely stretchable/shrinkable horizontal space.
+* \spacefactor::          Stretchability of following space
+* \(SPACE)::              Backslash-space; and explicit space.
+* ~::                     Tie, an unbreakable space.
+* \thinspace & \negthinspace::  One-sixth of an em, and negative one-sixth.
+* \/::                    Italic correction.
+* \hrulefill & \dotfill:: Stretchable horizontal rule or dots.
 
 Vertical space
-* \addvspace::                    Add arbitrary vertical space if needed.
-* \bigskip \medskip \smallskip::  Fixed vertical spaces.
-* \vfill::                        Infinitely stretchable vertical space.
-* \vspace::                       Add arbitrary vertical space.
+* \bigskip & \medskip & \smallskip::  Inter-paragraph vertical spaces.
+* \bigbreak & \medbreak & \smallbreak::  Inter-paragraph space and page breaks.
+* \strut::                            Ensure height of a line.
+* \vspace::                           Vertical space.
+* \vfill::                            Stretchable vertical space.
+* \addvspace::                        Add arbitrary vertical space if needed.
 
 
-File: latex2e.info,  Node: \hspace,  Next: \hfill,  Up: Spaces
+File: latex2e.info,  Node: \enspace & \quad & \qquad,  Next: \hspace,  Up: Spaces
 
-19.1 '\hspace'
+19.1 '\enspace' & '\quad' & '\qquad'
+====================================
+
+Synopsis, one of:
+
+     \enspace
+     \quad
+     \qquad
+
+   Insert a horizontal space of 1/2em, 1em, or 2em.  The em is a length
+defined by a font designer, often thought of as being the width of a
+capital M. One advantage of describing space in ems is that it can be
+more portable across documents than an absolute measurement such as
+points (*note Lengths/em::).
+
+   This puts a suitable gap between two graphics.
+
+     \begin{center}
+       \includegraphics{womensmile.png}%
+       \qquad\includegraphics{mensmile.png}
+     \end{center}
+
+*Note Spacing in math mode:: for '\quad' and '\qquad'.  These are
+lengths from centuries of typesetting and so may be a better choice in
+many circumstances than arbitrary lengths, such as you get with
+'\hspace'.
+
+
+File: latex2e.info,  Node: \hspace,  Next: \hfill,  Prev: \enspace & \quad & \qquad,  Up: Spaces
+
+19.2 '\hspace'
 ==============
 
-Synopsis:
+Synopsis, one of:
 
      \hspace{LENGTH}
      \hspace*{LENGTH}
 
-   Add the horizontal space given by LENGTH.  The LENGTH is a rubber
-length, that is, it may contain a 'plus' or 'minus' component, in any
-unit that LaTeX understands (*note Lengths::).
+   Insert the horizontal space LENGTH.  The LENGTH can be positive,
+negative, or zero; adding negative space is like backspacing.  It is a
+rubber length, that is, it may contain a 'plus' or 'minus' component, or
+both (*note Lengths::).  Because the space is stretchable and
+shrinkable, it is sometimes called "glue".
 
-   This command can add both positive and negative space; adding
-negative space is like backspacing.
+   This makes a line with 'Name:' an inch from the right margin.
 
-   Normally when TeX breaks a paragraph into lines it discards white
-space (glues and kerns) that would come at the start of a line, so you
-get an inter-word space or a line break between words but not both.
-This command's starred version '\hspace*{...}' puts a non-discardable
-invisible item in front of the space, so the space appears in the
-output.
+     \noindent\makebox[\linewidth][r]{Name:\hspace{1in}}
 
-   This example make a one-line paragraph that puts 'Name:' an inch from
-the right margin.
+   The '*'-version inserts horizontal space that non-discardable.  More
+precisely, when TeX breaks a paragraph into lines any white space--glues
+and kerns--that come at a line break are discarded.  The '*'-version
+avoids that (technically, it adds a non-discardable invisible item in
+front of the space).
 
-     \noindent\makebox[\linewidth]{\hspace{\fill}Name:\hspace{1in}}
+   In this example
 
+     \parbox{0.8\linewidth}{%
+       Fill in each blank: Four \hspace*{1in} and seven years ago our
+       fathers brought forth on this continent, a new \hspace*{1in},
+       conceived in \hspace*{1in}, and dedicated to the proposition
+       that all men are created \hspace*{1in}.}
+
+the 1 inch blank following 'conceived in' falls at the start of a line.
+If you erase the '*' then LaTeX discards the blank.
+
+   Here, the '\hspace' separates the three graphics.
+
+     \begin{center}
+       \includegraphics{lion.png}%   comment keeps out extra space
+       \hspace{1cm minus 0.25cm}\includegraphics{tiger.png}%
+       \hspace{1cm minus 0.25cm}\includegraphics{bear.png}
+     \end{center}
+
+Because the argument to each '\hspace' has 'minus 0.25cm', each can
+shrink a little if the three figures are too wide.  But each space won't
+shrink more than 0.25cm (*note Lengths::).
+
 
-File: latex2e.info,  Node: \hfill,  Next: \spacefactor,  Prev: \hspace,  Up: Spaces
+File: latex2e.info,  Node: \hfill,  Next: \hss,  Prev: \hspace,  Up: Spaces
 
-19.2 '\hfill'
+19.3 '\hfill'
 =============
 
-Produce a rubber length which has no natural space but can stretch
-horizontally as far as needed (*note Lengths::).
+Synopsis:
 
-   The command '\hfill' is equivalent to '\hspace{\fill}'.  For space
-that does not disappear at line breaks use '\hspace*{\fill}' instead
-(*note \hspace::).
+     \hfill
 
+   Produce a rubber length which has no natural space but that can
+stretch horizontally as far as needed (*note Lengths::).
+
+   This creates a one-line paragraph with 'Name:' on the left side of
+the page and 'Quiz One' on the right.
+
+     \noindent Name:\hfill Quiz One
+
+   The '\hfill' command is equivalent to '\hspace{\fill}' and so the
+space can be discarded at line breaks.  To avoid that instead use
+'\hspace*{\fill}' (*note \hspace::).
+
+   Here the graphs are evenly spaced in the middle of the figure.
+
+     \newcommand*{\vcenteredhbox}[1]{\begin{tabular}{@{}c@{}}#1\end{tabular}}
+       ...
+     \begin{figure}
+       \hspace*{\fill}%
+       \vcenteredhbox{\includegraphics{graph0.png}}%
+         \hfill\vcenteredhbox{\includegraphics{graph1.png}}%
+       \hspace*{\fill}%
+       \caption{Comparison of two graphs} \label{fig:twographs}
+     \end{figure}
+
+Note the '\hspace*''s where the space could otherwise be dropped.
+
 
-File: latex2e.info,  Node: \spacefactor,  Next: \(SPACE) after control sequence,  Prev: \hfill,  Up: Spaces
+File: latex2e.info,  Node: \hss,  Next: \spacefactor,  Prev: \hfill,  Up: Spaces
 
-19.3 '\spacefactor'
+19.4 '\hss'
+===========
+
+Synopsis:
+
+     \hss
+
+   Produce a horizontal space that is infinitely shrinkable as well as
+infinitely stretchable (this command is a TeX primitive).  LaTeX authors
+should reach first for the '\makebox' command to get the effects of
+'\hss' (*note \mbox & \makebox::).
+
+   Here, the first line's '\hss' makes the Z stick out to the right,
+overwriting the Y. In the second line the Z sticks out to the left,
+overwriting the X.
+
+     X\hbox to 0pt{Z\hss}Y
+     X\hbox to 0pt{\hss Z}Y
+
+Without the '\hss' you get something like 'Overfull \hbox (6.11111pt too
+wide) detected at line 20'.
+
+
+File: latex2e.info,  Node: \spacefactor,  Next: \(SPACE),  Prev: \hss,  Up: Spaces
+
+19.5 '\spacefactor'
 ===================
 
 Synopsis:
@@ -7862,25 +10453,27 @@
 
      \spacefactor=INTEGER
 
-   While LaTeX is making the page, to give the lines the best appearance
-it may stretch or shrink the gaps between words.  The '\spacefactor'
-command (from Plain TeX) allows you to change the LaTeX's default
-behavior.
+   Influence LaTeX's glue stretch and shrink behavior.  Most user-level
+documents do not use this command.
 
+   While LaTeX is laying out the material, it may stretch or shrink the
+gaps between words.  (This space is not a character; it is called the
+"interword glue"; *note \hspace::).  The '\spacefactor' command (from
+Plain TeX) allows you to, for instance, have the space after a period
+stretch more than the space after a word-ending letter.
+
    After LaTeX places each character, or rule or other box, it sets a
 parameter called the "space factor".  If the next thing in the input is
-a space then this parameter affects how much of a horizontal gap LaTeX
-will have it span.  (This gap is not a character; it is called
-"interword glue".)  A larger space factor means that the glue gap can
-stretch more and shrink less.
+a space then this parameter affects how much stretching or shrinking can
+happen.  A space factor that is larger than the normal value means that
+the glue can stretch more and shrink less.  Normally, the space factor
+is 1000.  This value is in effect following most characters, and any
+non-character box or math formula.  But it is 3000 after a period,
+exclamation mark, or question mark, it is 2000 after a colon, 1500 after
+a semicolon, 1250 after a comma, and 0 after a right parenthesis or
+bracket, or closing double quote or single quote.  Finally, it is 999
+after a capital letter.
 
-   Normally, the space factor is 1000; this value is in effect following
-most characters, and any non-character box or math formula.  But it is
-3000 after a period, exclamation mark, or question mark, it is 2000
-after a colon, 1500 after a semicolon, 1250 after a comma, and 0 after a
-right parenthesis or bracket, or closing double quote or single quote.
-Finally, it is 999 after a capital letter.
-
    If the space factor F is 1000 then the glue gap will be the font's
 normal space value (for Computer Modern Roman 10 point this is
 3.3333 points).  Otherwise, if the space factor F is greater than 2000
@@ -7888,272 +10481,557 @@
 point this is 1.11111 points), and then the font's normal stretch value
 is multiplied by f /1000 and the normal shrink value is multiplied by
 1000/f (for Computer Modern Roman 10 point these are 1.66666 and
-1.11111 points).  In short, compared to a normal space, such as the
-space following a word ending in a lowercase letter, inter-sentence
-spacing has a fixed extra space added and then the space can stretch 3
-times as much and shrink 1/3 as much.
+1.11111 points).
 
-   The rules for how TeX uses space factors are even more complex
-because they play two more roles.  In practice, there are two
-consequences.  First, if a period or other punctuation is followed by a
-close parenthesis or close double quote then its effect is still in
-place, that is, the following glue will have increased stretch and
-shrink.  Second, conversely, if punctuation comes after a capital letter
-then its effect is not in place so you get an ordinary space.  For how
-to adjust to this second case, for instance if an abbreviation does not
-end in a capital letter, *note \(SPACE) and \@::.
+   For example, consider the period ending 'A man's best friend is his
+dog.' After it, TeX puts in a fixed extra space, and also allows the
+glue to stretch 3 times as much and shrink 1/3 as much, as the glue
+after 'friend', which does not end in a period.
 
+   The rules for space factors are even more complex because they play
+additional roles.  In practice, there are two consequences.  First, if a
+period or other punctuation is followed by a right parenthesis or
+bracket, or right single or double quote then the spacing effect of that
+period carries through those characters (that is, the following glue
+will have increased stretch and shrink).  Second, if punctuation comes
+after a capital letter then its effect is not in place so you get an
+ordinary space.  This second case also affects abbreviations that do not
+end in a capital letter (*note \@::).
+
+   You can only use '\spacefactor' in paragraph mode or LR mode (*note
+Modes::).  You can see the current value with '\the\spacefactor' or
+'\showthe\spacefactor'.
+
+   (Comment, not really related to '\spacefactor': if you get errors
+like 'You can't use `\spacefactor' in vertical mode', or 'You can't use
+`\spacefactor' in math mode.', or 'Improper \spacefactor' then you have
+probably tried to redefine an internal command.  *Note \makeatletter &
+\makeatother::.)
+
 * Menu:
 
-* \(SPACE) and \@::     Space after a period.
-* \frenchspacing::       Equal interword and inter-sentence space.
-* \normalsfcodes::       Restore space factor settings to the default.
+* \@::              Distinguish sentence-ending periods from abbreviations.
+* \frenchspacing::   Equal interword and inter-sentence space.
+* \normalsfcodes::   Restore space factor settings to the default.
 
 
-File: latex2e.info,  Node: \(SPACE) and \@,  Next: \frenchspacing,  Up: \spacefactor
+File: latex2e.info,  Node: \@,  Next: \frenchspacing,  Up: \spacefactor
 
-19.3.1 '\(SPACE)' and '\@'
---------------------------
+19.5.1 '\@'
+-----------
 
-Here, '\(SPACE)' means a backslash followed by a space.  These commands
-mark a punctuation character, typically a period, as either ending a
-sentence or as ending an abbreviation.
+Synopsis:
 
-   By default, in justifying a line LaTeX adjusts the space after a
-sentence-ending period (or a question mark, exclamation point, comma, or
-colon) more than the space between words.  *Note \spacefactor::.  As
-described there, LaTeX assumes that the period ends a sentence unless it
-is preceded by a capital letter, in which case it takes that period for
-part of an abbreviation.  Note that if a sentence-ending period is
-immediately followed by a right parenthesis or bracket, or right single
-or double quote, then the space effect of that period follows through
-that parenthesis or quote.
+     CAPITAL-LETTER\@.
 
-   So: if you have a period ending an abbreviation whose last letter is
-not a capital letter, and that abbreviation is not the last word in the
-sentence, then follow that period with a backslash-space ('\ ') or a tie
-('~') or a '\@'.  Examples are 'Nat.\ Acad.\ Science', and 'Mr.~Bean',
-and '(manure, etc.\@) for sale' (note that in the last the '\@' comes
-before the closing parenthesis).
+   Treat a period as sentence-ending, where LaTeX would otherwise think
+it is part of an abbreviation.  LaTeX thinks that a period ends an
+abbreviation if the period comes after a capital letter, and otherwise
+thinks the period ends the sentence.  By default, in justifying a line
+LaTeX adjusts the space after a sentence-ending period (or a question
+mark, exclamation point, comma, or colon) more than it adjusts the space
+between words (*note \spacefactor::).
 
-   In the opposite situation, if you have a capital letter followed by a
-period that does end the sentence, then put '\@' before the period.  For
-example, 'book by the MAA\@.' will have correct inter-sentence spacing
-after the period.
+   This example shows the two cases to remember.
 
-   For another use of '\(SPACE)', *note \(SPACE) after control
-sequence::.
+     The songs \textit{Red Guitar}, etc.\ are by Loudon Wainwright~III\@.
 
+The second period ends the sentence, despite that it is preceded by a
+capital.  We tell LaTeX that it ends the sentence by putting '\@' before
+it.  The first period ends the abbreviation 'etc.' but not the sentence.
+The backslash-space, '\ ', produces a mid-sentence space.
+
+   So: if you have a capital letter followed by a period that ends the
+sentence, then put '\@' before the period.  This holds even if there is
+an intervening right parenthesis or bracket, or right single or double
+quote, because the spacing effect of that period carries through those
+characters.  For example, this
+
+     Use the \textit{Instructional Practices Guide},
+     (a book by the MAA)\@.
+
+will have correct inter-sentence spacing after the period.
+
+   The '\@' command is only for a text mode.  If you use it outside of a
+text mode then you get 'You can't use `\spacefactor' in vertical mode'
+(*note Modes::).
+
+   Comment: the converse case is a period ending an abbreviation whose
+last letter is not a capital letter, and that abbreviation is not the
+last word in the sentence.  For that case follow the period with a
+backslash-space, ('\ '), or a tie, ('~'), or '\@'.  Examples are 'Nat.\
+Acad.\ Science', and 'Mr.~Bean', and '(manure, etc.\@) for sale' (note
+in the last one that the '\@' comes before the closing parenthesis).
+
 
-File: latex2e.info,  Node: \frenchspacing,  Next: \normalsfcodes,  Prev: \(SPACE) and \@,  Up: \spacefactor
+File: latex2e.info,  Node: \frenchspacing,  Next: \normalsfcodes,  Prev: \@,  Up: \spacefactor
 
-19.3.2 '\frenchspacing'
+19.5.2 '\frenchspacing'
 -----------------------
 
-This declaration (from Plain TeX) causes LaTeX to treat inter-sentence
-spacing in the same way as interword spacing.
+Synopsis, one of:
 
-   In justifying the text in a line, some typographic traditions,
-including English, prefer to adjust the space between sentences (or
-after other punctuation marks) more than the space between words.
-Following this declaration, all spaces are instead treated equally.
+     \frenchspacing
+     \nonfrenchspacing
 
-   Revert to the default behavior by declaring '\nonfrenchspacing'.
+   The first declaration causes LaTeX to treat spacing between sentences
+in the same way as spacing between words in the middle of a sentence.
+The second causes spacing between sentences to stretch or shrink more
+(*note \spacefactor::); this is the default.
 
+   Some typographic traditions, including English, prefer to adjust the
+space between sentences (or spaces following a question mark,
+exclamation point, comma, or colon) more than the space between words
+that are in the middle of a sentence.  Declaring '\frenchspacing' (the
+command is from Plain TeX) switches to the tradition that all spaces are
+treated equally.
+
 
 File: latex2e.info,  Node: \normalsfcodes,  Prev: \frenchspacing,  Up: \spacefactor
 
-19.3.3 '\normalsfcodes'
+19.5.3 '\normalsfcodes'
 -----------------------
 
-Reset the LaTeX space factor values to the default.
+Synopsis:
 
+     \normalsfcodes
+
+   Reset the LaTeX space factor values to the default (*note
+\spacefactor::).
+
 
-File: latex2e.info,  Node: \(SPACE) after control sequence,  Next: \thinspace,  Prev: \spacefactor,  Up: Spaces
+File: latex2e.info,  Node: \(SPACE),  Next: ~,  Prev: \spacefactor,  Up: Spaces
 
-19.4 '\ ' after control sequence
-================================
+19.6 Backslash-space, '\ '
+==========================
 
-The '\ ' command is often used after control sequences to keep them from
-gobbling the space that follows, as in '\TeX\ is nice'.  And, under
-normal circumstances, '\'<tab> and '\'<newline> are equivalent to '\ '.
-For another use of '\ ', see also *note \(SPACE) and \@::.
+This section refers to the command consisting of two characters, a
+backslash followed by a space.  Synopsis:
 
-   Some people prefer to use '{}' for the same purpose, as in '\TeX{} is
-nice'.  This has the advantage that you can always write it the same
-way, namely '\TeX{}', whether it is followed by a space or by a
-punctuation mark.  Compare:
+     \
 
-     \TeX\ is a nice system. \TeX, a nice system.
+   Produce a space.  By default it produces white space of length
+3.33333pt plus 1.66666pt minus 1.11111pt.
 
-     \TeX{} is a nice system. \TeX{}, a nice system.
+   A blank is not a space.  When you type a blank between words, LaTeX
+produces white space.  That's different from an explicit space.  This
+illustrates.
 
-   Some individual commands, notably those defined with the 'xspace',
-package do not follow the standard behavior.
+     \begin{tabular}{l}
+     Three blanks:   in a row \\
+     Three spaces:\ \ \ in a row \\
+     \end{tabular}
 
+On the first line LaTeX collapses the three blanks to output one
+whitespace (it would be the same with a single blank or, for instance,
+with a blank and an tab and a blank, or a blank and a newline and a
+blank).  But the second line asks for three spaces so the white area is
+wider.  Thus, the backslash-space command will create some horizontal
+space.  (But the best way to create horizontal space is with '\hspace';
+*Note \hspace::.)
+
+   The backslash-space command has two main uses.  First, it is often
+used after control sequences to keep them from gobbling the space that
+follows, as in '\TeX\ is nice'.  (But the approach of using curly
+parentheses, as in '\TeX{} is nice', has the advantage of still working
+if the next character is a period.)
+
+   The second common use is that it mark a period as ending an
+abbreviation instead of ending a sentence, as in 'So says Prof.\ Smith'
+(*note \@::).
+
+   Under normal circumstances, '\'<tab> and '\'<newline> are equivalent
+to backslash-space, '\ '.
+
 
-File: latex2e.info,  Node: \thinspace,  Next: \/,  Prev: \(SPACE) after control sequence,  Up: Spaces
+File: latex2e.info,  Node: ~,  Next: \thinspace & \negthinspace,  Prev: \(SPACE),  Up: Spaces
 
-19.5 '\thinspace': Insert 1/6em
-===============================
+19.7 '~'
+========
 
-'\thinspace' produces an unbreakable and unstretchable space that is 1/6
-of an em.  This is the proper space to use between nested quotes, as in
-'".
+Synopsis:
 
+     BEFORE~AFTER
+
+   The tie character, '~', produces a space between BEFORE and AFTER at
+which the line will not be broken.  By default the white space has
+length 3.33333pt plus 1.66666pt minus 1.11111pt (*note Lengths::).
+
+   Here LaTeX will not break the line between the final two words.
+
+     Thanks to Prof.~Lerman.
+
+In addition, despite the period, LaTeX does not use the end-of-sentence
+spacing (*note \@::).
+
+   Ties prevent the end of line separation of things where that could
+cause confusion.  But they also reduce LaTeX's options when it breaks
+lines into paragraphs, so you can use too many.  They are also matters
+of taste, sometimes alarmingly dogmatic taste, among readers.
+Nevertheless, here are some usage models, many of them from the TeXbook.
+
+   * Between an enumerator and its item, such as in references:
+     'Chapter~12', or 'Theorem~\ref{th:Wilsons}', or
+     'Figure~\ref{fig:KGraph}'.  When cases are enumerated inline:
+     '(b)~Show that $f(x)$ is (1)~continuous, and (2)~bounded'.
+
+   * Between a number and its unit: '$745.7.8$~watts' (the 'siunitx'
+     package has a special facility for this) or '144~eggs'.  This
+     includes between a month and a date: 'October~12' or '12~Oct'.  In
+     general, in any expressions where numbers and abbreviations or
+     symbols are separated by a space: 'AD~565', or '2:50~pm', or
+     'Boeing~747', or '268~Plains Road', or '\$$1.4$~billion'.
+
+   * When mathematical phrases are rendered in words: 'equals~$n$', or
+     'less than~$\epsilon$', or 'given~$X$', or 'modulo~$p^e$ for all
+     large~$n$' (but compare 'is~$15$' with 'is $15$~times the height').
+     Between mathematical symbols in apposition with nouns:
+     'dimension~$d$' or 'function~$f(x)$' (but compare 'with length
+     $l$~or more').  When a symbol is a tightly bound object of a
+     preposition: 'of~$x$', or 'from $0$ to~$1$', or 'in common
+     with~$m$'.
+
+   * Between symbols in series: '$1$,~$2$, or~$3$' or '$1$,~$2$,
+     \ldots,~$n$'.
+
+   * Between a person's forenames and between multiple surnames:
+     'Donald~E. Knuth', or 'Luis~I. Trabb~Pardo', or 'Charles~XII' (but
+     you must give TeX places to break the line so you may do 'Charles
+     Louis Xavier~Joseph de~la Vall\'ee~Poussin').
+
+   * Before a dash: 'pages 12~--14' or 'it is~--- it must be said~---
+     plausible'.
+
 
-File: latex2e.info,  Node: \/,  Next: \hrulefill \dotfill,  Prev: \thinspace,  Up: Spaces
+File: latex2e.info,  Node: \thinspace & \negthinspace,  Next: \/,  Prev: ~,  Up: Spaces
 
-19.6 '\/': Insert italic correction
+19.8 '\thinspace' & '\negthinspace'
 ===================================
 
-The '\/' command produces an "italic correction".  This is a small space
-defined by the font designer for a given character, to avoid the
-character colliding with whatever follows.  The italic f character
-typically has a large italic correction value.
+Synopsis, one of:
 
-   If the following character is a period or comma, it's not necessary
-to insert an italic correction, since those punctuation symbols have a
-very small height.  However, with semicolons or colons, as well as
-normal letters, it can help.  Compare f: f; (in the TeX output, the 'f's
-are nicely separated) with f: f;.
+     \thinspace
+     \negthinspace
 
-   When changing fonts with commands such as '\textit{italic text}' or
-'{\itshape italic text}', LaTeX will automatically insert an italic
-correction if appropriate (*note Font styles::).
+   Produce an unbreakable and unstretchable space of 1/6em and -1/6em.
+These are the text mode equivalents of '\,' and '\!' (*note Spacing in
+math mode/\thinspace::).  You can use '\,' as a synonym for '\thinspace'
+in text mode.
 
-   Despite the name, roman characters can also have an italic
-correction.  Compare pdfTeX (in the TeX output, there is a small space
-after the 'f') with pdfTeX.
+   The '\negthinspace' command is used in text mode mostly for fiddling
+with spaces.  One common use of '\thinspace' is as the space between
+nested quotes.
 
+     Killick replied, ``I heard the Captain say, `Ahoy there.'\thinspace''
+
+Another use is that some style guides call for a '\thinspace' between an
+ellipsis and a sentence ending period (other style guides, though, think
+the three dots are quite enough already).  Still another use is between
+initials, as in 'D.\thinspace E.\ Knuth'.
+
+
+File: latex2e.info,  Node: \/,  Next: \hrulefill & \dotfill,  Prev: \thinspace & \negthinspace,  Up: Spaces
+
+19.9 '\/'
+=========
+
+Synopsis:
+
+     BEFORE-CHARACTER\/AFTER-CHARACTER
+
+   Insert an "italic correction", a small space defined by the font
+designer for each character, to avoid the character colliding with
+whatever follows.  When you use '\/', LaTeX takes the correction from
+the font metric file, scales it by any scaling that has been applied to
+the font, and then inserts that much horizontal space.
+
+   Here, were it not for the '\/', the BEFORE-CHARACTER italic f would
+hit the AFTER-CHARACTER roman H
+
+     \newcommand{\companylogo}{{\it f}\/H}
+
+because the italic letter leans far to the right.
+
+   If AFTER-CHARACTER is a period or comma then don't insert an italic
+correction since those punctuation symbols have a very small height.
+However, with semicolons or colons as well as with normal letters, the
+italic correction can help.
+
+   When you use commands such as '\textit' or '\itshape' to change
+fonts, LaTeX will automatically insert any needed italic correction
+(*note Font styles::).
+
+   Roman characters can also have an italic correction.  An example is
+in the name 'pdf\/\TeX'.
+
    There is no concept of italic correction in math mode; spacing is
 done in a different way.
 
 
-File: latex2e.info,  Node: \hrulefill \dotfill,  Next: \addvspace,  Prev: \/,  Up: Spaces
+File: latex2e.info,  Node: \hrulefill & \dotfill,  Next: \bigskip & \medskip & \smallskip,  Prev: \/,  Up: Spaces
 
-19.7 '\hrulefill \dotfill'
-==========================
+19.10 '\hrulefill' & '\dotfill'
+===============================
 
-Produce an infinite rubber length (*note Lengths::) filled with a
-horizontal rule (that is, a line) or with dots, instead of just white
+Synopsis, one of:
+
+     \hrulefill
+     \dotfill
+
+   Produce an infinite horizontal rubber length (*note Lengths::) that
+LaTeX fills with a rule (that is, a line) or with dots, instead of white
 space.
 
-   When placed between blank lines this example creates a paragraph that
-is left and right justified, where the space in the middle is filled
-with evenly spaced dots.
+   This outputs a line 2 inches long.
 
-     \noindent Jack Aubrey\dotfill Melbury Lodge
+     Name:~\makebox[2in]{\hrulefill}
 
+This example, when placed between blank lines, creates a paragraph that
+is left and right justified and where the middle is filled with evenly
+spaced dots.
+
+     \noindent John Aubrey, RN \dotfill{} Melbury Lodge
+
    To make the rule or dots go to the line's end use '\null' at the
 start or end.
 
    To change the rule's thickness, copy the definition and adjust it, as
-with '\renewcommand{\hrulefill}{\leavevmode\leaders\hrule height
-1pt\hfill\kern\z@}', which changes the default thickness of 0.4pt to
-1pt.  Similarly, adjust the dot spacing as with
-'\renewcommand{\dotfill}{\leavevmode\cleaders\hb at xt@ 1.00em{\hss .\hss
-}\hfill\kern\z@}', which changes the default length of 0.33em to 1.00em.
+here
 
-
-File: latex2e.info,  Node: \addvspace,  Next: \bigskip \medskip \smallskip,  Prev: \hrulefill \dotfill,  Up: Spaces
+     \renewcommand{\hrulefill}{%
+       \leavevmode\leaders\hrule height 1pt\hfill\kern\z@}
 
-19.8 '\addvspace'
-=================
+which changes the default thickness of 0.4pt to 1pt.  Similarly, adjust
+the dot spacing as with
 
-'\addvspace{LENGTH}'
+     \renewcommand{\dotfill}{%
+       \leavevmode\cleaders\hb at xt@1.00em{\hss .\hss }\hfill\kern\z@}
 
-   Add a vertical space of height LENGTH, which is a rubber length
-(*note Lengths::).  However, if vertical space has already been added to
-the same point in the output by a previous '\addvspace' command then
-this command will not add more space than what is needed to make the
-natural length of the total vertical space equal to LENGTH.
+which changes the default length of 0.33em to 1.00em.
 
-   Use this command to adjust the vertical space above or below an
-environment that starts a new paragraph.  For instance, a Theorem
-environment is defined to begin and end with '\addvspace{...}' so that
-two consecutive Theorem's are separated by one vertical space, not two.
+   This example produces a line for a signature.
 
-   This command is fragile (*note \protect::).
+     \begin{minipage}{4cm}
+       \centering
+       \hrulefill\\
+       Signed
+     \end{minipage}
 
-   The error 'Something's wrong--perhaps a missing \item' means that you
-were not in vertical mode when you invoked this command; one way to
-change that is to precede this command with a '\par' command.
+The line is 4cm long.
 
 
-File: latex2e.info,  Node: \bigskip \medskip \smallskip,  Next: \vfill,  Prev: \addvspace,  Up: Spaces
+File: latex2e.info,  Node: \bigskip & \medskip & \smallskip,  Next: \bigbreak & \medbreak & \smallbreak,  Prev: \hrulefill & \dotfill,  Up: Spaces
 
-19.9 '\bigskip \medskip \smallskip'
-===================================
+19.11 '\bigskip' & '\medskip' & '\smallskip'
+============================================
 
-These commands produce a given amount of space, specified by the
-document class.
+Synopsis, one of:
 
+     \bigskip
+     \medskip
+     \smallskip
+
+   Produce an amount of vertical space, large or medium-sized or small.
+These commands are fragile (*note \protect::).
+
+   Here the skip suggests the passage of time (from The Golden Ocean by
+O'Brian).
+
+     Mr Saumarez would have something rude to say to him, no doubt: he
+     was at home again, and it was delightful.
+
+     \bigskip
+     ``A hundred and fifty-seven miles and one third, in twenty-four hours,''
+     said Peter.
+
+   Each command is associated with a length defined in the document
+class file.
+
 '\bigskip'
      The same as '\vspace{\bigskipamount}', ordinarily about one line
-     space, with stretch and shrink (the default for the 'book' and
-     'article' classes is '12pt plus 4pt minus 4pt').
+     space, with stretch and shrink.  The default for the 'book' and
+     'article' classes is '12pt plus 4pt minus 4pt'.
 
 '\medskip'
      The same as '\vspace{\medskipamount}', ordinarily about half of a
-     line space, with stretch and shrink (the default for the 'book' and
-     'article' classes is '6pt plus 2pt minus 2pt').
+     line space, with stretch and shrink.  The default for the 'book'
+     and 'article' classes is '6pt plus 2pt minus 2pt'.
 
 '\smallskip'
      The same as '\vspace{\smallskipamount}', ordinarily about a quarter
-     of a line space, with stretch and shrink (the default for the
-     'book' and 'article' classes is '3pt plus 1pt minus 1pt').
+     of a line space, with stretch and shrink.  The default for the
+     'book' and 'article' classes is '3pt plus 1pt minus 1pt'.
 
+   Because each command is a '\vspace', if you use on in mid-paragraph
+then it will insert its vertical space between the line in which you use
+it and the next line, not necessarily at the place that you use it.  So
+these are best between paragraphs.
+
+   The commands '\bigbreak', '\medbreak', and '\smallbreak' are similar
+but also suggest to LaTeX that this is a good place to put a page break
+(*note \bigbreak & \medbreak & \smallbreak::.
+
 
-File: latex2e.info,  Node: \vfill,  Next: \vspace,  Prev: \bigskip \medskip \smallskip,  Up: Spaces
+File: latex2e.info,  Node: \bigbreak & \medbreak & \smallbreak,  Next: \strut,  Prev: \bigskip & \medskip & \smallskip,  Up: Spaces
 
-19.10 '\vfill'
+19.12 '\bigbreak' & '\medbreak' & '\smallbreak'
+===============================================
+
+Synopsis, one of:
+
+     \bigbreak
+     \medbreak
+     \smallbreak
+
+   Produce a vertical space that is big or medium-sized or small, and
+suggest to LaTeX that this is a good place to break the page.  (The
+associated penalties are -200, -100, and -50.)
+
+   *Note \bigskip & \medskip & \smallskip::, for more.  These commands
+produce the same vertical space but differ in that they also remove a
+preceding vertical space if it is less than what they would insert (as
+with '\addvspace').  In addition, they terminate a paragraph where they
+are used: this example
+
+     abc\bigbreak def ghi
+
+     jkl mno pqr
+
+will output three paragraphs, the first ending in 'abc' and the second
+starting, after an extra vertical space and a paragraph indent, with
+'def'.
+
+
+File: latex2e.info,  Node: \strut,  Next: \vspace,  Prev: \bigbreak & \medbreak & \smallbreak,  Up: Spaces
+
+19.13 '\strut'
 ==============
 
-End the current paragraph and insert a vertical rubber length (*note
-Lengths::) that is infinite, so it can stretch or shrink as far as
-needed.
+Synopsis:
 
-   It is often used in the same way as '\vspace{\fill}', except that
-'\vfill' ends the current paragraph, whereas '\vspace{\fill}' adds the
-infinite vertical space below its line irrespective of the paragraph
-structure.  In both cases that space will disappear at a page boundary;
-to circumvent this see *note \vspace::.
+     \strut
 
-   In this example the page is filled, so the top and bottom lines
-contain the text 'Lost Dog!' and the third 'Lost Dog!' is exactly
-halfway between them.
+   Ensure that the current line has height at least '0.7\baselineskip'
+and depth at least '0.3\baselineskip'.  Essentially, LaTeX inserts into
+the line a rectangle having zero width,
+'\rule[-0.3\baselineskip]{0pt}{\baselineskip}' (*note \rule::).  The
+'\baselineskip' changes with the current font and fontsize.
 
-     \begin{document}
-     Lost Dog!
-     \vfill
-     Lost Dog!
-     \vfill
-     Lost Dog!
-     \end{document}
+   In this example the '\strut' keeps the box inside the frame from
+having zero height.
 
+     \setlength{\fboxsep}{0pt}\framebox[2in]{\strut}
+
+   This example has four lists.  In the first there is a much bigger gap
+between items 2 and 3 than there is between items 1 and 2.  The second
+list fixes that with a '\strut' at the end of its first item's second
+line.
+
+     \setlength{\fboxsep}{0pt}
+     \noindent\begin{minipage}[t]{0.2\linewidth}
+     \begin{enumerate}
+       \item \parbox[t]{15pt}{test \\ test}
+       \item test
+       \item test
+     \end{enumerate}
+     \end{minipage}%
+     \begin{minipage}[t]{0.2\linewidth}
+     \begin{enumerate}
+       \item \parbox[t]{15pt}{test \\ test\strut}
+       \item test
+       \item test
+     \end{enumerate}
+     \end{minipage}%
+     \begin{minipage}[t]{0.2\linewidth}
+     \begin{enumerate}
+       \item \fbox{\parbox[t]{15pt}{test \\ test}}
+       \item \fbox{test}
+       \item \fbox{test}
+     \end{enumerate}
+     \end{minipage}%
+     \begin{minipage}[t]{0.2\linewidth}
+     \begin{enumerate}
+       \item \fbox{\parbox[t]{15pt}{test \\ test\strut}}
+       \item \fbox{test}
+       \item \fbox{test}
+     \end{enumerate}
+     \end{minipage}%
+
+The final two lists use 'fbox' to show what's happening.  The third
+list's '\parbox' goes only to the bottom of its second 'test', which
+happens not have any characters that descend below the baseline.  The
+fourth list adds the strut that gives the needed extra below-baseline
+space.
+
+   The '\strut' command is often useful in graphics, such as in 'TikZ'
+or 'Asymptote'.  For instance, you may have a command such as
+'\graphnode{NODE-NAME}' that fits a circle around NODE-NAME.  However,
+unless you are careful the NODE-NAME's 'x' and 'y' will produce
+different-diameter circles because the characters are different sizes.
+A careful '\graphnode' might insert a '\strut', then NODE-NAME, and then
+draw the circle.
+
+   The general approach of using a zero width '\rule' is useful in many
+circumstances.  In this table, the zero-width rule keeps the top of the
+first integral from hitting the '\hline'.  Similarly, the second rule
+keeps the second integral from hitting the first.
+
+     \begin{tabular}{rl}
+       \textsc{Integral}   &\textsc{Value}           \\
+       \hline
+       $\int_0^x t\, dt$   &$x^2/2$  \rule{0em}{2.5ex} \\
+       $\int_0^x t^2\, dt$ &$x^3/3$  \rule{0em}{2.5ex}
+     \end{tabular}
+
+(Although the line-ending double backslash command has an available
+optional argument to put in more vertical room, that won't work here.
+Changing the first double backslash to something like '\\[2.5ex]' will
+put the room between the header line and the '\hline', and the integral
+would still hit the line.)
+
 
-File: latex2e.info,  Node: \vspace,  Prev: \vfill,  Up: Spaces
+File: latex2e.info,  Node: \vspace,  Next: \vfill,  Prev: \strut,  Up: Spaces
 
-19.11 '\vspace{LENGTH}'
-=======================
+19.14 '\vspace'
+===============
 
-Synopsis, one of these two:
+Synopsis, one of:
 
      \vspace{LENGTH}
      \vspace*{LENGTH}
 
-   Add the vertical space LENGTH.  This can be negative or positive, and
-is a rubber length (*note Lengths::).
+   Add the vertical space LENGTH.  The LENGTH can be positive, negative,
+or zero.  It is a rubber length--it may contain a 'plus' or 'minus'
+component (*note Lengths::).
 
-   LaTeX removes the vertical space from '\vspace' at a page break, that
-is, at the top or bottom of a page.  The starred version '\vspace*{...}'
-causes the space to stay.
+   This puts space between the two paragraphs.
 
-   If '\vspace' is used in the middle of a paragraph (i.e., in
-horizontal mode), the space is inserted _after_ the line with the
-'\vspace' command.  A new paragraph is not started.
+     And I slept.
 
+     \vspace{1ex plus 0.5ex}
+     The new day dawned cold.
+
+(*Note \bigskip & \medskip & \smallskip:: for common inter-paragraph
+spaces.)
+
+   The '*'-version inserts vertical space that non-discardable.  More
+precisely, LaTeX discards vertical space at a page break and the
+'*'-version causes the space to stay.  This example leaves space between
+the two questions.
+
+     Question: Find the integral of \( 5x^4+5 \).
+
+     \vspace*{2cm plus 0.5cm}
+     Question: Find the derivative of \( x^5+5x+9 \).
+
+That space will be present even if the page break happens to fall
+between the questions.
+
+   If you use '\vspace' in the middle of a paragraph (i.e., in
+horizontal mode) then the space is inserted after the line containing
+the '\vspace' command; it does not start a new paragraph at the
+'\vspace' command.
+
    In this example the two questions will be evenly spaced vertically on
 the page, with at least one inch of space below each.
 
@@ -8166,213 +11044,500 @@
      \end{document}
 
 
-File: latex2e.info,  Node: Boxes,  Next: Color,  Prev: Spaces,  Up: Top
+File: latex2e.info,  Node: \vfill,  Next: \addvspace,  Prev: \vspace,  Up: Spaces
 
-20 Boxes
-********
+19.15 '\vfill'
+==============
 
-All the predefined length parameters (*note Predefined lengths::) can be
-used in the arguments of the box-making commands.
+Synopsis:
 
-* Menu:
+     \vfill
 
-* \mbox::               Horizontal boxes.
-* \fbox and \framebox:: Put a frame around a box.
-* lrbox::               An environment like '\sbox'.
-* \makebox::            Box, adjustable position.
-* \parbox::             Box with text in paragraph mode.
-* \raisebox::           Raise or lower text.
-* \savebox::            Like '\makebox', but save the text for later use.
-* \sbox::               Like '\mbox', but save the text for later use.
-* \usebox::             Print saved text.
+   End the current paragraph and insert a vertical rubber length that is
+infinite, so it can stretch or shrink as far as needed (*note
+Lengths::).
 
+   It is often used in the same way as '\vspace{\fill}', except that
+'\vfill' ends the current paragraph whereas '\vspace{\fill}' adds the
+infinite vertical space below its line, irrespective of the paragraph
+structure.  In both cases that space will disappear at a page boundary;
+to circumvent this see the starred option in *note \vspace::.
+
+   In this example the page is filled, so the top and bottom lines
+contain the text 'Lost Dog!' and the second 'Lost Dog!' is exactly
+halfway between them.
+
+     \begin{document}
+     Lost Dog!
+     \vfill
+     Lost Dog!  % perfectly in the middle
+     \vfill
+     Lost Dog!
+     \end{document}
+
 
-File: latex2e.info,  Node: \mbox,  Next: \fbox and \framebox,  Up: Boxes
+File: latex2e.info,  Node: \addvspace,  Prev: \vfill,  Up: Spaces
 
-20.1 '\mbox{TEXT}'
+19.16 '\addvspace'
 ==================
 
-The '\mbox' command creates a box just wide enough to hold the text
-created by its argument.  The TEXT is not broken into lines, so it can
-be used to prevent hyphenation.
+Synopsis:
 
-
-File: latex2e.info,  Node: \fbox and \framebox,  Next: lrbox,  Prev: \mbox,  Up: Boxes
+     \addvspace{VERT-LENGTH}
 
-20.2 '\fbox' and '\framebox'
-============================
+   Add a vertical space of VERT-LENGTH.  However, if there are two or
+more '\addvspace''s in a sequence then together they only add the space
+needed to make the natural length equal to the maximum of the
+VERT-LENGTH's in that sequence.  This command is fragile (*note
+\protect::).  The VERT-LENGTH is a rubber length (*note Lengths::).
 
-Synopses:
+   This example illustrates.  The 'picture' draws a scale.  In a
+standard LaTeX article the length '\baselineskip' is 12pt.  The two
+rules here are 22pt apart: the sum of the '\baselineskip' and the 10pt
+from the first 'addvspace'.
 
-     \fbox{TEXT}
-     \framebox[WIDTH][POSITION]{TEXT}
+     \documentclass{article}
+     \usepackage{color}
+     \begin{document}
+     \setlength{\unitlength}{2pt}%
+     \noindent\begin{picture}(0,0)%
+       \multiput(0,0)(0,-1){25}{{\color{blue}\line(1,0){1}}}
+       \multiput(0,0)(0,-5){6}{{\color{red}\line(1,0){2}}}
+     \end{picture}%
+     \rule{0.25\linewidth}{0.1pt}%
+     \par\addvspace{10pt}% \addvspace{20pt}%
+     \par\noindent\rule{0.25\linewidth}{0.1pt}%
+     \end{document}
 
-   The '\fbox' and '\framebox' commands are like '\mbox', except that
-they put a frame around the outside of the box being created.
+Now uncomment the second '\addvspace'.  It does not make the gap 20pt
+longer; instead the gap is the sum of '\baselineskip' and 20pt.  So
+'\addvspace' in a sense does the opposite of its name -- it makes sure
+that multiple vertical spaces do not accumulate, but instead that only
+the largest one is used.
 
-   In addition, the '\framebox' command allows for explicit
-specification of the box width with the optional WIDTH argument (a
-dimension), and positioning with the optional POSITION argument.
+   LaTeX uses this command to adjust the vertical space above or below
+an environment that starts a new paragraph.  For instance, a 'theorem'
+environment begins and ends with '\addvspace' so that two consecutive
+'theorem''s are separated by one vertical space, not two.
 
-   Both commands produce a rule of thickness '\fboxrule' (default
-'0.4pt'), and leave a space of '\fboxsep' (default '3pt') between the
-rule and the contents of the box.
+   A error 'Something's wrong--perhaps a missing \item' pointing to an
+'\addvspace' means that you were not in vertical mode when you hit this
+command.  One way to change that is to precede '\addvspace' with a
+'\par' command (*note \par::), as in the above example.
 
-   *Note \framebox (picture)::, for the '\framebox' command in the
-'picture' environment.
-
 
-File: latex2e.info,  Node: lrbox,  Next: \makebox,  Prev: \fbox and \framebox,  Up: Boxes
+File: latex2e.info,  Node: Boxes,  Next: Color,  Prev: Spaces,  Up: Top
 
-20.3 'lrbox'
-============
+20 Boxes
+********
 
-Synopsis:
+At its core, LaTeX puts things in boxes and then puts the boxes on a
+page.  So these commands are central.
 
-     \begin{lrbox}{\CMD}
-       TEXT
-     \end{lrbox}
+   There are many packages on CTAN that are useful for manipulating
+boxes.  One useful adjunct to the commands here is 'adjustbox'.
 
-   This is the environment form of *note '\sbox': \sbox.
+* Menu:
 
-   The TEXT inside the environment is saved in the box '\CMD', which
-must have been declared with '\newsavebox'.
+* \mbox & \makebox::    Horizontal boxes.
+* \fbox & \framebox::   Put a frame around a box.
+* \parbox::             Box with text in paragraph mode.
+* \raisebox::           Raise or lower text.
+* \sbox & \savebox::    Like '\makebox' but save the text for later.
+* lrbox::               Environment version of '\sbox'.
+* \usebox::             Print saved text.
 
 
-File: latex2e.info,  Node: \makebox,  Next: \parbox,  Prev: lrbox,  Up: Boxes
+File: latex2e.info,  Node: \mbox & \makebox,  Next: \fbox & \framebox,  Up: Boxes
 
-20.4 '\makebox'
-===============
+20.1 '\mbox' & '\makebox'
+=========================
 
-Synopsis:
+Synopsis, one of:
 
+     \mbox{TEXT}
+     \makebox{TEXT}
+     \makebox[WIDTH]{TEXT}
      \makebox[WIDTH][POSITION]{TEXT}
 
-   The '\makebox' command creates a box just wide enough to contain the
-TEXT specified.  The width of the box can be overridden by the optional
-WIDTH argument.  The position of the text within the box is determined
-by the optional POSITION argument, which may take the following values:
+   Create a box, a container for material.  The TEXT is is typeset in LR
+mode (*note Modes::) so it is not broken into lines.  The '\mbox'
+command is robust, while '\makebox' is fragile (*note \protect::).
 
+   Because 'text' is not broken into lines, you can use '\mbox' to
+prevent hyphenation.  In this example, LaTeX will not hyphenate the
+table name, 'T-4'.
+
+     See Table~\mbox{T-4}
+
+   The first two command versions, '\mbox' and '\makebox', are roughly
+equivalent.  They create a box just wide enough to contain the TEXT.
+(They are like plain TeX's '\hbox'.)
+
+   In the third version the optional argument WIDTH specifies the width
+of the box.  Note that the space occupied by the text need not equal the
+width of the box.  For one thing, TEXT can be too small; this creates a
+full-line box
+
+     \makebox[\linewidth]{Chapter Exam}
+
+with 'Chapter Exam' centered.  But TEXT can also be too wide for WIDTH.
+See the example below of zero-width boxes.
+
+   In the WIDTH argument you can use the following lengths that refer to
+the dimension of the box that LaTeX gets on typesetting TEXT: '\depth',
+'\height', '\width', '\totalheight' (this is the box's height plus its
+depth).  For example, to make a box with the text stretched to double
+the natural size you can say this.
+
+     \makebox[2\width]{Get a stretcher}
+
+   For the fourth command version the optional argument POSITION gives
+position of the text within the box.  It may take the following values:
+
 'c'
-     Centered (default).
+     The TEXT is centered (default).
+
 'l'
-     Flush left.
+     The TEXT is flush left.
+
 'r'
      Flush right.
+
 's'
-     Stretch (justify) across entire WIDTH; TEXT must contain
-     stretchable space for this to work.
+     Stretch the interword space in TEXT across the entire WIDTH.  The
+     TEXT must contain stretchable space for this to work.  For
+     instance, this could head a press release:
+     '\noindent\makebox[\textwidth][s]{\large\hfil IMMEDIATE\hfil
+     RELEASE\hfil}'
 
-   '\makebox' is also used within the 'picture' environment *note
-\makebox (picture)::.
+   A common use of '\makebox' is to make zero-width text boxes.  This
+puts the value of the quiz questions to the left of those questions.
 
+     \newcommand{\pts}[1]{\makebox[0em][r]{#1 points\hspace*{1em}}}
+     \pts{10}What is the air-speed velocity of an unladen swallow?
+
+     \pts{90}An African or European swallow?
+
+
+   The right edge of the output '10 points ' (note the ending space)
+will be just before the 'What' (note the space after 'points').  You can
+use '\makebox' similarly when making graphics, such as in 'TikZ' or
+'Asymptote', where you put the edge of the text at a known location,
+regardless of the length of that text.
+
+   For boxes with frames see *note \fbox & \framebox::.  For colors
+see *note Colored boxes::.
+
+   There is a related version of '\makebox' that is used within the
+'picture' environment, where the length is given in terms of
+'\unitlength' (*note \makebox (picture)::).
+
+   If you put a double-backslash into TEXT then LaTeX will not give you
+a new line; for instance '\makebox{abc def \\ ghi}' outputs 'abc defghi'
+while '\makebox{abc def \par ghi}' outputs 'abc def ghi', but neither go
+to a second line.  To get multiple lines see *note \parbox:: and *note
+minipage::.
+
 
-File: latex2e.info,  Node: \parbox,  Next: \raisebox,  Prev: \makebox,  Up: Boxes
+File: latex2e.info,  Node: \fbox & \framebox,  Next: \parbox,  Prev: \mbox & \makebox,  Up: Boxes
 
-20.5 '\parbox'
+20.2 '\fbox' & '\framebox'
+==========================
+
+Synopses, one of:
+
+     \fbox{TEXT}
+     \framebox{TEXT}
+     \framebox[WIDTH]{TEXT}
+     \framebox[WIDTH][POSITION]{TEXT}
+
+   Create a box with an enclosing frame, four lines surrounding the
+space.  These commands are the same as '\mbox' and '\makebox' except for
+the frame (*note \mbox & \makebox::).  The '\fbox' command is robust,
+the '\framebox' command is fragile (*note \protect::).
+
+     \fbox{Warning! No work shown, no credit given.}
+
+LaTeX puts the text into a box that cannot be split or hyphenated.
+Around that box, separated from it by a small gap, are four lines making
+a frame.
+
+   The first two command invocations, '\fbox{...}' and '\framebox{...}',
+are roughly the same.  As to the third and fourth invocations, the
+optional arguments allow you to specify the box width as WIDTH and the
+position of the text inside that box as POSITION.  *Note \mbox &
+\makebox:: for the full description but here is an example creating an
+empty box that is 1/4in wide.
+
+     \setlength{\fboxsep}{0pt}\framebox[0.25in]{\strut}}
+
+The '\strut' inserts a vertical height of '\baselineskip' (*note
+\strut::).
+
+   These parameters determine the frame layout.
+
+'\fboxrule'
+     The thickness of the lines around the enclosed box.  The default is
+     0.2pt.  Change it with a command such as
+     '\setlength{\fboxrule}{0.8pt}' (*note \setlength::).
+
+'\fboxsep'
+     The distance from the frame to the enclosed box.  The default is
+     3pt.  Change it with a command such as '\setlength{\fboxsep}{0pt}'
+     (*note \setlength::).  Setting it to 0pt is useful sometimes: this
+     will put a frame around the picture with no white border.
+
+          {\setlength{\fboxsep}{0pt}
+           \framebox{%
+             \includegraphics[width=0.5\textwidth]{prudence.jpg}}}
+
+     The extra curly braces keep the effect of the '\setlength' local.
+
+   As with '\mbox' and '\makebox', LaTeX will not break lines in TEXT.
+But this example has LaTeX break lines to make a paragraph, and then
+frame the result.
+
+     \framebox{%
+       \begin{minipage}{0.6\linewidth}
+         My dear, here we must run as fast as we can, just to stay in place.
+         And if you wish to go anywhere you must run twice as fast as that.
+       \end{minipage}}
+
+   *Note Colored boxes:: for colors other than black and white.
+
+   The 'picture' environment has a version of this command where the
+units depend on 'picture''s '\unitlength' (*note \framebox (picture)::).
+
+
+File: latex2e.info,  Node: \parbox,  Next: \raisebox,  Prev: \fbox & \framebox,  Up: Boxes
+
+20.3 '\parbox'
 ==============
 
-Synopsis:
+Synopses, one of:
 
-     \parbox[POSITION][HEIGHT][INNER-POS]{WIDTH}{TEXT}
+     \parbox{WIDTH}{CONTENTS}
+     \parbox[POSITION]{WIDTH}{CONTENTS}
+     \parbox[POSITION][HEIGHT]{WIDTH}{CONTENTS}
+     \parbox[POSITION][HEIGHT][INNER-POS]{WIDTH}{CONTENTS}
 
-   The '\parbox' command produces a box whose contents are created in
-"paragraph mode".  It should be used to make a box small pieces of text,
-with nothing fancy inside.  In particular, you shouldn't use any
-paragraph-making environments inside a '\parbox' argument.  For larger
-pieces of text, including ones containing a paragraph-making
-environment, you should use a 'minipage' environment (*note minipage::).
+   Produce a box of text that is WIDTH wide.  Use this command to make a
+box of small pieces of text, of a single paragraph.  This command is
+fragile (*note \protect::).
 
-   '\parbox' has two mandatory arguments:
+     \begin{picture}(0,0)
+       ...
+       \put(1,2){\parbox{1.75in}{\raggedright Because the graph is a line on
+                              this semilog paper, the relationship is
+                              exponential.}}
+     \end{picture}
 
-WIDTH
-     the width of the parbox;
-TEXT
-     the text that goes inside the parbox.
+   The CONTENTS are processed in a text mode (*note Modes::) so LaTeX
+will break lines to make a paragraph.  But it won't make multiple
+paragraphs; for that, use a 'minipage' environment (*note minipage::).
 
-   By default LaTeX will position vertically a parbox so its center
-lines up with the center of the surrounding text line.  When the
-optional POSITION argument is present and equal either to 't' or 'b',
-this allows you respectively to align either the top or bottom line in
-the parbox with the baseline of the surrounding text.  You may also
-specify 'm' for POSITION to get the default behaviour.
+   The options for '\parbox' (except for CONTENTS) are the same as those
+for 'minipage'.  For convenience a summary of the options is here but
+see *note minipage:: for a complete description.
 
-   The optional HEIGHT argument overrides the natural height of the box.
+   There are two required arguments.  The WIDTH is a rigid length (*note
+Lengths::).  It sets the width of the box into which LaTeX typesets
+CONTENTS.  The CONTENTS is the text that is placed in that box.  It
+should not have any paragraph-making components.
 
-   The INNER-POS argument controls the placement of the text inside the
-box, as follows; if it is not specified, POSITION is used.
+   There are three optional arguments, POSITION, HEIGHT, and INNER-POS.
+The POSITION gives the vertical alignment of the 'parbox' with respect
+to the surrounding material.  The possible values are 'c' or 'm' to make
+the vertical center of the 'parbox' lines up with the center of the
+adjacent line (this is the default), or 't' to match the top line of the
+'parbox' with the baseline of the surrounding material, or 'b' to match
+the bottom line.
 
-'t'
-     text is placed at the top of the box.
-'c'
-     text is centered in the box.
-'b'
-     text is placed at the bottom of the box.
-'s'
-     stretch vertically; the text must contain vertically stretchable
-     space for this to work.
+   The optional argument HEIGHT overrides the natural height of the box.
 
+   The optional argument INNER-POS controls the placement of CONTENT
+inside the 'parbox'.  Its default is the value of POSITION.  Its
+possible values are: 't' to put the CONTENT at the top of the box, 'c'
+to put it in the vertical center, 'b' to put it at the bottom of the
+box, and 's' to stretch it out vertically (for this, the text must
+contain vertically stretchable space).
+
 
-File: latex2e.info,  Node: \raisebox,  Next: \savebox,  Prev: \parbox,  Up: Boxes
+File: latex2e.info,  Node: \raisebox,  Next: \sbox & \savebox,  Prev: \parbox,  Up: Boxes
 
-20.6 '\raisebox'
+20.4 '\raisebox'
 ================
 
-Synopsis:
+Synopsis, one of:
 
+     \raisebox{DISTANCE}{TEXT}
+     \raisebox{DISTANCE}[HEIGHT]{TEXT}
      \raisebox{DISTANCE}[HEIGHT][DEPTH]{TEXT}
 
-   The '\raisebox' command raises or lowers TEXT.  The first mandatory
-argument specifies how high TEXT is to be raised (or lowered if it is a
-negative amount).  TEXT itself is processed in LR mode.
+   Raise or lower TEXT.  This command is fragile (*note \protect::).
 
+   This example makes a command for the restriction of a function by
+lowering the vertical bar symbol.
+
+     \newcommand\restricted[1]{\raisebox{-.5ex}{$|$}_{#1}}
+     $f\restricted{A}$
+
+   The first mandatory argument DISTANCE specifies how far to raise the
+second mandatory argument TEXT.  This is a rigid length (*note
+Lengths::).  If it is negative then it lowers TEXT.  The TEXT is
+processed in LR mode so it cannot contain line breaks (*note Modes::).
+
    The optional arguments HEIGHT and DEPTH are dimensions.  If they are
-specified, LaTeX treats TEXT as extending a certain distance above the
-baseline (HEIGHT) or below (DEPTH), ignoring its natural height and
-depth.
+specified, they override the natural height and depth of the box LaTeX
+gets by typesetting TEXT.
 
+   In the arguments DISTANCE, HEIGHT, and DEPTH you can use the
+following lengths that refer to the dimension of the box that LaTeX gets
+on typesetting TEXT: '\depth', '\height', '\width', '\totalheight' (this
+is the box's height plus its depth).
+
+   This will align two graphics on their top (*note Graphics::).
+
+     \usepackage{graphicx} \usepackage{calc}  % in preamble
+        ...
+     \begin{center}
+       \raisebox{1ex-\height}{%
+         \includegraphics[width=0.4\linewidth]{lion.png}}
+       \qquad
+       \raisebox{1ex-\height}{%
+         \includegraphics[width=0.4\linewidth]{meta.png}}
+     \end{center}
+
+The first '\height' is the height of 'lion.png' while the second is the
+height of 'meta.png'.
+
 
-File: latex2e.info,  Node: \savebox,  Next: \sbox,  Prev: \raisebox,  Up: Boxes
+File: latex2e.info,  Node: \sbox & \savebox,  Next: lrbox,  Prev: \raisebox,  Up: Boxes
 
-20.7 '\savebox'
-===============
+20.5 '\sbox' & '\savebox'
+=========================
 
-Synopsis:
+Synopsis, one of:
 
-     \savebox{\BOXCMD}[WIDTH][POS]{TEXT}
+     \sbox{BOX-CMD}{TEXT}
+     \savebox{BOX-CMD}{TEXT}
+     \savebox{BOX-CMD}[WIDTH]{TEXT}
+     \savebox{BOX-CMD}[WIDTH][POS]{TEXT}
 
-   This command typeset TEXT in a box just as with '\makebox' (*note
-\makebox::), except that instead of printing the resulting box, it saves
-it in the box labeled \BOXCMD, which must have been declared with
-'\newsavebox' (*note \newsavebox::).
+   Typeset TEXT just as with '\makebox' (*note \mbox & \makebox::)
+except that LaTeX does not output it but instead saves it in a storage
+bin named BOX-CMD.  The bin name BOX-CMD begins with a backslash, '\'.
+You must have previously allocated the bin BOX-CMD with '\newsavebox'
+(*note \newsavebox::).The '\sbox' command is robust while '\savebox' is
+fragile (*note \protect::).
 
+   This creates and uses a bin.
+
+     \newsavebox{\fullname}
+     \sbox{\fullname}{John Jacob Jingleheimer Schmidt}
+       ...
+     \usebox{\fullname}! His name is my name, too!
+     Whenever we go out, the people always shout!
+     There goes \\usebox{\fullname}!  Ya da da da da da da.
+
+One advantage of using and reusing a bin over a '\newcommand' is
+efficiency, that LaTeX need not repeatedly retypeset the contents.  See
+the example below.
+
+   The first two command invocations, '\sbox{BOX-CMD}{TEXT}' and
+'\savebox{BOX-CMD}{TEXT}', are roughly equivalent.  As to the third and
+fourth, the optional arguments allow you to specify the box width as
+WIDTH, and the position of the text inside that box as POSITION.  *Note
+\mbox & \makebox:: for the full description.
+
+   In the '\sbox' and '\savebox' commands the TEXT is typeset in LR mode
+so it does not have line breaks (*note Modes::).  If you use these then
+LaTeX doesn't give you an error but it ignores what you want: if you
+enter '\sbox{\newbin}{test \\ test}' and '\usebox{\newbin}' then you get
+'testtest', while if you enter '\sbox{\newbin}{test \par test}' and
+'\usebox{\newbin}' then you get 'test test', but no error or warning.
+To fix this use a '\parbox' or 'minipage' as here.
+
+     \savebox{\abin}{%
+       \begin{minipage}{\linewidth}
+         \begin{enumerate}
+           \item First item
+           \item Second item
+         \end{enumerate}
+       \end{minipage}}
+       ...
+     \usebox{\abin}
+
+   As an example of the efficiency of reusing a bin's contents, this
+puts the same picture on each page of the document by putting it in the
+header.  LaTeX only typesets it once.
+
+     \usepackage{graphicx}  % all this in the preamble
+     \newsavebox{\sealbin}
+     \savebox{\sealbin}{%
+       \setlength{\unitlength}{1in}%
+       \begin{picture}(0,0)%
+          \put(1.5,-2.5){%
+            \begin{tabular}{c}
+               \includegraphics[height=2in]{companylogo.png} \\
+               Office of the President
+            \end{tabular}}
+       \end{picture}%
+     }
+     \markright{\usebox{\sealbin}}
+     \pagestyle{headings}
+
+The 'picture' environment is good for fine-tuning the placement.
+
+   If the bin has not already been defined then you get something like
+'Undefined control sequence. <argument> \nobin'.
+
 
-File: latex2e.info,  Node: \sbox,  Next: \usebox,  Prev: \savebox,  Up: Boxes
+File: latex2e.info,  Node: lrbox,  Next: \usebox,  Prev: \sbox & \savebox,  Up: Boxes
 
-20.8 '\sbox{\BOXCMD}{TEXT}'
-===========================
+20.6 'lrbox'
+============
 
 Synopsis:
 
-     \sbox{\BOXCMD}{TEXT}
+     \begin{lrbox}{BOX-CMD}
+       TEXT
+     \end{lrbox}
 
-   '\sbox' types TEXT in a box just as with '\mbox' (*note \mbox::)
-except that instead of the resulting box being included in the normal
-output, it is saved in the box labeled \BOXCMD.  \BOXCMD must have been
-previously declared with '\newsavebox' (*note \newsavebox::).
+   The TEXT inside the environment is saved in the bin 'BOX-CMD'.  The
+BOX-CMD must begin with a backslash.  You must create this bin in
+advance with '\newsavebox' (*note \newsavebox::).  This is the
+environment form of the '\sbox' and '\savebox' commands, and is
+equivalent to them.  *Note \sbox & \savebox:: for the full information.
 
+   In this example the environment is convenient for entering the
+'tabular'.
+
+     \newsavebox{\jhbin}
+     \begin{lrbox}{\jhbin}
+       \begin{tabular}{c}
+         \includegraphics[height=1in]{jh.png} \\
+         Jim Hef{}feron
+       \end{tabular}
+     \end{lrbox}
+       ...
+     \usebox{\jhbin}
+
 
-File: latex2e.info,  Node: \usebox,  Prev: \sbox,  Up: Boxes
+File: latex2e.info,  Node: \usebox,  Prev: lrbox,  Up: Boxes
 
-20.9 '\usebox{\BOXCMD}'
-=======================
+20.7 '\usebox'
+==============
 
 Synopsis:
 
-     \usebox{\BOXCMD}
+     \usebox{BOX-CMD}
 
-   '\usebox' produces the box most recently saved in the bin \BOXCMD by
-a '\savebox' command (*note \savebox::).
+   Produce the box most recently saved in the bin BOX-CMD by the
+commands '\sbox' or '\savebox', or the 'lrbox' environment.  *Note \sbox
+& \savebox:: for more information and examples.  (Note that BOX-CMD
+starts with a backslash.)  This command is robust (*note \protect::).
 
 
 File: latex2e.info,  Node: Color,  Next: Graphics,  Prev: Boxes,  Up: Top
@@ -8401,8 +11566,8 @@
 
 File: latex2e.info,  Node: Color package options,  Next: Color models,  Up: Color
 
-21.1 Color package options
-==========================
+21.1 'color' package options
+============================
 
 Synopsis (must be in the document preamble):
 
@@ -8514,10 +11679,12 @@
 
      \definecolor{NAME}{MODEL}{SPECIFICATION}
 
-   Give the name NAME to the color.  For example, after
-'\definecolor{silver}{rgb}{0.75,0.75,0.74}' you can use that color name
-with 'Hi ho, \textcolor{silver}{Silver}!'.
+   Give the name NAME to the color.  For example, after this
 
+     \definecolor{silver}{rgb}{0.75,0.75,0.74}
+
+you can use that color name with 'Hi ho, \textcolor{silver}{Silver}!'.
+
    This example gives the color a more abstract name, so it could change
 and not be misleading.
 
@@ -8538,7 +11705,7 @@
      \textcolor{NAME}{...}
      \textcolor[COLOR MODEL]{COLOR SPECIFICATION}{...}
 
-   or
+or
 
      \color{NAME}
      \color[COLOR MODEL]{SPECIFICATION}
@@ -8545,10 +11712,11 @@
 
    The affected text gets the color.  This line
 
-     \textcolor{magenta}{My name is Ozymandias, king of kings:} Look on my works, ye Mighty, and despair!
+     \textcolor{magenta}{My name is Ozymandias, king of kings:}
+     Look on my works, ye Mighty, and despair!
 
-   causes the first half to be in magenta while the rest is in black.
-You can use a color declared with '\definecolor' in exactly the same way
+causes the first half to be in magenta while the rest is in black.  You
+can use a color declared with '\definecolor' in exactly the same way
 that we just used the builtin color 'magenta'.
 
      \definecolor{MidlifeCrisisRed}{rgb}{1.0,0.11,0.0}
@@ -8570,10 +11738,13 @@
        \end{tabular}
      \end{center}
 
-   You can use color in equations.  A document might have
-'\definecolor{highlightcolor}{RGB}{225,15,0}' in the preamble, and then
-contain this equation.
+   You can use color in equations.  A document might have this
+definition in the preamble
 
+     \definecolor{highlightcolor}{RGB}{225,15,0}
+
+and then contain this equation.
+
      \begin{equation}
        \int_a^b \textcolor{highlightcolor}{f'(x)}\,dx=f(b)-f(a)
      \end{equation}
@@ -8582,7 +11753,8 @@
 style but sometimes you want a one-off.  Those are the second forms in
 the synopses.
 
-     Colors of \textcolor[rgb]{0.33,0.14,0.47}{Purple} and {\color[rgb]{0.72,0.60,0.37} Gold} for the team
+     Colors of \textcolor[rgb]{0.33,0.14,0.47}{Purple} and
+     {\color[rgb]{0.72,0.60,0.37} Gold} for the team.
 
    The format of COLOR SPECIFICATION depends on the color model (*note
 Color models::).  For instance, while 'rgb' takes three numbers, 'gray'
@@ -8594,7 +11766,7 @@
 
      \textcolor{green}{kind of \textcolor{blue}{blue}}
 
-   has a final word that is blue, not a combination of blue and green.
+has a final word that is blue, not a combination of blue and green.
 
 
 File: latex2e.info,  Node: Colored boxes,  Next: Colored pages,  Prev: Colored text,  Up: Commands for color
@@ -8605,12 +11777,12 @@
 Synopses:
 
      \colorbox{NAME}{...}
-     \colorbox[MODEL NAME]{BOX BACKGROUND COLOR SPECIFICATION}{...}
+     \colorbox[MODEL NAME]{BOX BACKGROUND COLOR}{...}
 
-   or
+or
 
      \fcolorbox{FRAME COLOR}{BOX BACKGROUND COLOR}{...}
-     \fcolorbox[MODEL NAME]{FRAME COLOR SPECIFICATION}{BOX BACKGROUND COLOR SPECIFICATION}{...}
+     \fcolorbox[MODEL NAME]{FRAME COLOR}{BOX BACKGROUND COLOR}{...}
 
    Make a box with the stated background color.  The '\fcolorbox'
 command puts a frame around the box.  For instance this
@@ -8617,7 +11789,7 @@
 
      Name:~\colorbox{cyan}{\makebox[5cm][l]{\strut}}
 
-   makes a cyan-colored box that is five centimeters long and gets its
+makes a cyan-colored box that is five centimeters long and gets its
 depth and height from the '\strut' (so the depth is '-.3\baselineskip'
 and the height is '\baselineskip').  This puts white text on a blue
 background.
@@ -8625,7 +11797,7 @@
      \colorbox{blue}{\textcolor{white}{Welcome to the machine.}}
 
    The '\fcolorbox' commands use the same parameters as '\fbox' (*note
-\fbox and \framebox::), '\fboxrule' and '\fboxsep', to set the thickness
+\fbox & \framebox::), '\fboxrule' and '\fboxsep', to set the thickness
 of the rule and the boundary between the box interior and the
 surrounding rule.  LaTeX's defaults are '0.4pt' and '3pt', respectively.
 
@@ -8698,7 +11870,7 @@
 commands of this chapter.  Two that use a programming language are
 Asymptote and MetaPost.  One that uses a graphical interface is Xfig.
 Full description of these systems is outside the scope of this document;
-see their documentation.
+see their documentation on CTAN.
 
 * Menu:
 
@@ -8709,14 +11881,14 @@
 
 File: latex2e.info,  Node: Graphics package options,  Next: Graphics package configuration,  Up: Graphics
 
-22.1 Graphics package options
-=============================
+22.1 'graphics' package options
+===============================
 
 Synopsis (must be in the document preamble):
 
      \usepackage[COMMA-SEPARATED OPTION LIST]{graphics}
 
-   or
+or
 
      \usepackage[COMMA-SEPARATED OPTION LIST]{graphicx}
 
@@ -8776,21 +11948,21 @@
 
 File: latex2e.info,  Node: Graphics package configuration,  Next: Commands for graphics,  Prev: Graphics package options,  Up: Graphics
 
-22.2 Graphics package configuration
-===================================
+22.2 'graphics' package configuration
+=====================================
 
 These commands configure the way LaTeX searches the file system for the
 graphic.
 
    The behavior of file system search code is necessarily platform
-dependent.  In this document we cover Linux, Macintosh, and Windows, as
-those systems are typically configured.  For other situations consult
+dependent.  In this document we cover GNU/Linux, Macintosh, and Windows,
+as those systems are typically configured.  For other situations consult
 the documentation in 'grfguide.pdf', or the LaTeX source, or your TeX
 distribution's documentation.
 
 * Menu:
 
-* \graphicspath::         Directories to search.
+* \graphicspath::                Directories to search.
 * \DeclareGraphicsExtensions::   File types, such as JPG or EPS.
 * \DeclareGraphicsRule::         How to handle file types.
 
@@ -8837,9 +12009,9 @@
      ...
      \usepackage{lion.png}
 
-   for each of the listed directories, LaTeX concatenates it with the
-file name and searches for the result, checking for 'pix/lion.png' and
-then '../pix/lion.png'.  This algorithm means that the '\graphicspath'
+for each of the listed directories, LaTeX concatenates it with the file
+name and searches for the result, checking for 'pix/lion.png' and then
+'../pix/lion.png'.  This algorithm means that the '\graphicspath'
 command does not recursively search subdirectories: if you issue
 '\graphicspath{{a/}}' and the graphic is in 'a/b/lion.png' then LaTeX
 will not find it.  It also means that you can use absolute paths such as
@@ -8849,8 +12021,8 @@
 portability by adjusting your TeX system settings configuration file
 parameter 'TEXINPUTS'; see the documentation of your system.)
 
-   You can use '\graphicspath' in the preamble or in the document body.
-You can use it more than once.  For debugging, show its value with
+   You can use '\graphicspath' anywhere in the document.  You can use it
+more than once.  Show its value with
 '\makeatletter\typeout{\Ginput at path}\makeatother'.
 
    The directories are taken with respect to the base file.  That is,
@@ -8881,7 +12053,7 @@
        ...
      \includegraphics{lion}   % will find lion.png before lion.pdf
 
-   Because the file name 'lion' does not have a period, LaTeX uses the
+Because the file name 'lion' does not have a period, LaTeX uses the
 extension list.  For each directory in the graphics path (*note
 \graphicspath::), LaTeX will try the extensions in the order given.  If
 it does not find such a file after trying all the directories and
@@ -8888,17 +12060,18 @@
 extensions then it reports '! LaTeX Error: File `'lion'' not found'.
 Note that you must include the periods at the start of the extensions.
 
-   Because Linux and Macintosh filenames are case sensitive, the list of
-file extensions is case sensitive on those platforms.  The Windows
-platform is not case sensitive.
+   Because GNU/Linux and Macintosh filenames are case sensitive, the
+list of file extensions is case sensitive on those platforms.  The
+Windows platform is not case sensitive.
 
    You are not required to include '\DeclareGraphicsExtensions' in your
 document; the printer driver has a sensible default.  For example, the
-most recent 'pdftex.def' has the extension list
-''.png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPEG,.JBIG2,.JB2''.
+most recent 'pdftex.def' has this extension list.
 
-   You can use this command in the preamble or in the document body.
-You can use it more than once.  For debugging, show its value with
+     .png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPEG,.JBIG2,.JB2
+
+   You can use this command anywhere in the document.  You can use it
+more than once.  Show its value with
 '\makeatletter\typeout{\Gin at extensions}\makeatother'.
 
 
@@ -8924,7 +12097,7 @@
 
      \DeclareGraphicsRule{*}{mps}{*}{}
 
-   tells LaTeX that it should handle as MetaPost output any file with an
+tells LaTeX that it should handle as MetaPost output any file with an
 extension not covered by another rule, so it covers 'filename.1',
 'filename.2', etc.
 
@@ -9028,13 +12201,13 @@
        \includegraphics{plot.pdf}
      \end{center}
 
-   will incorporate into the document the graphic in 'plot.pdf',
-centered and at its nominal size.  You can also give a path to the file,
-as with '\includegraphics{graphics/plot.pdf}'.  To specify a list of
-locations to search for the file, *note \graphicspath::.
+will incorporate into the document the graphic in 'plot.pdf', centered
+and at its nominal size.  You can also give a path to the file, as with
+'\includegraphics{graphics/plot.pdf}'.  To specify a list of locations
+to search for the file, *note \graphicspath::.
 
-   If your filename includes spaces then put it in double quotes, as
-with '\includegraphics{"sister picture.jpg"}'.
+   If your filename includes spaces then put it in double quotes.  An
+example is '\includegraphics{"sister picture.jpg"}'.
 
    The '\includegraphics{FILENAME}' command decides on the type of
 graphic by splitting FILENAME on the first dot.  You can use FILENAME
@@ -9068,14 +12241,13 @@
        ...
      \begin{center}
        \includegraphics{pix/nix.png}
-       \captionof{figure}{The spirit of the night} \label{pix:nix}  % if you want a caption
+       \captionof{figure}{The spirit of the night} \label{pix:nix} % optional
      \end{center}
 
    This example puts a box with a graphic side by side with one having
 text, with the two vertically centered.
 
-     \newcommand*{\vcenteredhbox}[1]{\begingroup
-                                     \setbox0=\hbox{#1}\parbox{\wd0}{\box0}\endgroup}
+     \newcommand*{\vcenteredhbox}[1]{\begin{tabular}{@{}c@{}}#1\end{tabular}}
        ...
      \begin{center}
        \vcenteredhbox{\includegraphics[width=0.4\textwidth]{plot}}
@@ -9108,10 +12280,10 @@
        \includegraphics[angle=90,width=1in]{lion}
      \end{center}
 
-   The options are read left-to-right.  So the first graphic above is
-made one inch wide and then rotated, while the second is rotated and
-then made one inch wide.  Thus, unless the graphic is perfectly square,
-the two will end with different widths and heights.
+The options are read left-to-right.  So the first graphic above is made
+one inch wide and then rotated, while the second is rotated and then
+made one inch wide.  Thus, unless the graphic is perfectly square, the
+two will end with different widths and heights.
 
    There are many options.  The primary ones are listed first.
 
@@ -9136,9 +12308,9 @@
      The graphic will be shown so its bounding box is this height.  You
      can use the standard TeX dimensions (*note Units of length::), and
      also convenient are '\pageheight' and '\textheight' (*note Page
-     layout parameters::).  For instance,
+     layout parameters::).  For instance, the command
      '\includegraphics[height=0.25\textheight]{godel}' will make the
-     graphic be a quarter of the height of the text area.
+     graphic a quarter of the height of the text area.
 
 'totalheight'
      The graphic will be shown so its bounding box has this height plus
@@ -9147,22 +12319,24 @@
      height but a large depth.
 
 'keepaspectratio'
-     If set to 'true', or just specified as with
-     '\includegraphics[...,keepaspectratio,...]{...}' and you give as
-     options both 'width' and 'height' (or 'totalheight'), then LaTeX
-     will make the graphic is as large as possible without distortion.
-     That is, LaTeX will ensure that neither is the graphic wider than
-     'width' nor taller than 'height' (or 'totalheight').
+     If set to 'true', or just specified as here
 
+          \includegraphics[...,keepaspectratio,...]{...}
+
+     and you give as options both 'width' and 'height' (or
+     'totalheight'), then LaTeX will make the graphic is as large as
+     possible without distortion.  That is, LaTeX will ensure that
+     neither is the graphic wider than 'width' nor taller than 'height'
+     (or 'totalheight').
+
 'scale'
-     Factor by which to scale the graphic.  Specifying
-     '\includegraphics[scale=2.0]{...}' makes the graphic twice its
-     nominal size.  This number may be any value; a number between 1
-     and 0 will shrink the graphic and a negative number will reflect
-     it.
+     Factor by which to scale the graphic.  To make a graphic twice its
+     nominal size, enter '\includegraphics[scale=2.0]{...}'.  This
+     number may be any value; a number between 1 and 0 will shrink the
+     graphic and a negative number will reflect it.
 
 'angle'
-     Rotate the picture.  The angle is taken in degrees and
+     Rotate the graphic.  The angle is taken in degrees and
      counterclockwise.  The graphic is rotated about its 'origin'; see
      that option.  For a complete description of how rotated material is
      typeset, *note \rotatebox::.
@@ -9171,9 +12345,9 @@
      The point of the graphic about which the rotation happens.
      Possible values are any string containing one or two of: 'l' for
      left, 'r' for right, 'b' for bottom, 'c' for center, 't' for top,
-     and 'B' for baseline.  Thus,
+     and 'B' for baseline.  Thus, entering the command
      '\includegraphics[angle=180,origin=c]{moon}' will turn the picture
-     upside down from the center, while
+     upside down about that picture's center, while the command
      '\includegraphics[angle=180,origin=lB]{LeBateau}' will turn its
      picture upside down about its left baseline.  (The character 'c'
      gives the horizontal center in 'bc' or 'tc', but gives the vertical
@@ -9201,11 +12375,14 @@
      also the 'viewport' option.
 
 'clip'
-     If set to 'true', or just specified as with
-     '\includegraphics[...,clip,...]{...}', then the graphic is cropped
-     to the bounding box.  You can get this effect by instead using the
-     starred form of the command, as '\includegraphics*[...]{...}'.
+     If set to 'true', or just specified as here
 
+          \includegraphics[...,clip,...]{...}
+
+     then the graphic is cropped to the bounding box.  This is the same
+     as using the starred form of the command,
+     '\includegraphics*[...]{...}'.
+
 'page'
      Give the page number of a multi-page PDF file.  The default is
      'page=1'.
@@ -9227,9 +12404,10 @@
 
 'interpolate'
      Enable or disable interpolation of raster images by the viewer.
-     Can be set with 'interpolate=true' or just specified as with
-     '\includegraphics[...,interpolate,...]{...}'.
+     Can be set with 'interpolate=true' or just specified as here.
 
+          \includegraphics[...,interpolate,...]{...}
+
 'quiet'
      Do not write information to the log.  You can set it with
      'quiet=true' or just specified it with
@@ -9236,12 +12414,14 @@
      '\includegraphics[...,quite,...]{...}',
 
 'draft'
-     If you set it with 'draft=true' or just specified it with
-     '\includegraphics[...,draft,...]{...}', then the graphic will not
-     appear in the document, possibly saving color printer ink.
-     Instead, LaTeX will put an empty box of the correct size with the
-     filename printed in it.
+     If you set it with 'draft=true' or just specify it with
 
+          \includegraphics[...,draft,...]{...}
+
+     then the graphic will not appear in the document, possibly saving
+     color printer ink.  Instead, LaTeX will put an empty box of the
+     correct size with the filename printed in it.
+
    These options address the bounding box for Encapsulated PostScript
 graphic files, which have a size specified with a line '%%BoundingBox'
 that appears in the file.  It has four values, giving the lower x
@@ -9265,18 +12445,22 @@
 
 'natwidth, natheight'
      An alternative for 'bb'.  Setting
-     '\includegraphics[...,natwidth=1in,natheight=0.618in,...]{...}' is
-     the same as setting 'bb=0 0 1in 0.618in'.
 
+          \includegraphics[...,natwidth=1in,natheight=0.618in,...]{...}
+
+     is the same as setting 'bb=0 0 1in 0.618in'.
+
 'hiresbb'
      If set to 'true', or just specified as with
-     '\includegraphics[...,hiresbb,...]{...}', then LaTeX will look for
-     '%%HiResBoundingBox' lines instead of '%%BoundingBox' lines.  (The
-     'BoundingBox' lines use only natural numbers while the
-     'HiResBoundingBox' lines use decimals; both use units equivalent to
-     TeX's big points, 1/72 inch.)  To override a prior setting of
-     'true', you can set it to 'false'.
 
+          \includegraphics[...,hiresbb,...]{...}
+
+     then LaTeX will look for '%%HiResBoundingBox' lines instead of
+     '%%BoundingBox' lines.  (The 'BoundingBox' lines use only natural
+     numbers while the 'HiResBoundingBox' lines use decimals; both use
+     units equivalent to TeX's big points, 1/72 inch.)  To override a
+     prior setting of 'true', you can set it to 'false'.
+
    These following options allow a user to override LaTeX's method of
 choosing the graphic type based on the filename extension.  An example
 is that '\includegraphics[type=png,ext=.xxx,read=.xxx]{lion}' will read
@@ -9296,7 +12480,9 @@
 
 'command'
      Specify a command to be applied to this file.  Only use this in
-     conjunction with the option 'type'.
+     conjunction with the option 'type'.  *Note Command line options::
+     for a discussion of enabling the '\write18' functionality to run
+     external commands.
 
 
 File: latex2e.info,  Node: \rotatebox,  Next: \scalebox,  Prev: \includegraphics,  Up: Commands for graphics
@@ -9345,16 +12531,18 @@
 
 'origin'
      The point of the MATERIAL's box about which the rotation happens.
-     Possible values are any string containing one or two of: 'l' for
+     Possible value is any string containing one or two of: 'l' for
      left, 'r' for right, 'b' for bottom, 'c' for center, 't' for top,
-     and 'B' for baseline.  Thus,
-     '\includegraphics[angle=180,origin=c]{moon}' will turn the picture
-     upside down from the center, while
-     '\includegraphics[angle=180,origin=lB]{LeBateau}' will turn its
-     picture upside down about its left baseline.  (The character 'c'
-     gives the horizontal center in 'bc' or 'tc' but gives the vertical
-     center in 'lc' or 'rc'.)  The default is 'lB'.
+     and 'B' for baseline.  Thus, the first line here
 
+          \includegraphics[angle=180,origin=c]{moon}
+          \includegraphics[angle=180,origin=lB]{LeBateau}
+
+     will turn the picture upside down from the center while the second
+     will turn its picture upside down about its left baseline.  (The
+     character 'c' gives the horizontal center in 'bc' or 'tc' but gives
+     the vertical center in 'lc' or 'rc'.)  The default is 'lB'.
+
 'x, y'
      Specify an arbitrary point of rotation with '\rotatebox[x=TeX
      DIMENSION,y=TeX DIMENSION]{...}' (*note Units of length::).  These
@@ -9388,11 +12576,14 @@
    If you do not specify the optional VERTICAL FACTOR then it defaults
 to the same value as the HORIZONTAL FACTOR.
 
-   You can use this command to resize a graphic, as with
-'\scalebox{0.5}{\includegraphics{lion}}'.  If you use the 'graphicx'
-package then you can accomplish the same thing with optional arguments
-to '\includegraphics' (*note \includegraphics::).
+   You can use this command to resize a graphic, as here.
 
+     \scalebox{0.5}{\includegraphics{lion}}
+
+If you use the 'graphicx' package then you can accomplish the same thing
+with optional arguments to '\includegraphics' (*note
+\includegraphics::).
+
    The '\reflectbox' command abbreviates '\scalebox{-1}[1]{MATERIAL}'.
 Thus, 'Able was I\reflectbox{Able was I}' will show the phrase 'Able was
 I' immediately followed by its mirror reflection.
@@ -9445,7 +12636,7 @@
 * Symbols by font position::    Inserting font symbols by number.
 * Text symbols::                Inserting other non-letter symbols in text.
 * Accents::                     Inserting accents.
-* Additional Latin letters::      Inserting other non-English characters.
+* Additional Latin letters::    Inserting other non-English characters.
 * \rule::                       Inserting lines and rectangles.
 * \today::                      Inserting today's date.
 
@@ -9455,8 +12646,8 @@
 23.1 Reserved characters
 ========================
 
-LaTeX sets aside the following characters for special purposes (for
-example, the percent sign '%' is for comments) so they are called
+LaTeX sets aside the following characters for special purposes.  For
+example, the percent sign '%' is for comments.  They are called
 "reserved characters" or "special characters".
 
      # $ % & { } _ ~ ^ \
@@ -9463,17 +12654,17 @@
 
    If you want a reserved character to be printed as itself, in the text
 body font, for all but the final three characters in that list simply
-put a backslash '\' in front of the character.  Thus, '\$1.23' will
-produce '$1.23' in your output.
+put a backslash '\' in front of the character.  Thus, typing '\$1.23'
+will produce '$1.23' in your output.
 
    As to the last three characters, to get a tilde in the text body font
 use '\~{}' (omitting the curly braces would result in the next character
 receiving a tilde accent).  Similarly, to get a get a text body font
-circumflex use '\^{}'.  A text body font backslash results from
-'\textbackslash{}'.
+circumflex use '\^{}'.  To get a backslash in the font of the text body,
+enter '\textbackslash{}'.
 
-   To produce the reserved characters in a typewriter font use
-'\verb!!', as below.
+   To produce the reserved characters in a typewriter font use '\verb!!'
+as below (the double backslash '\\' is only there to split the lines).
 
      \begin{center}
        \# \$ \% \& \{ \} \_ \~{} \^{} \textbackslash \\
@@ -9480,9 +12671,6 @@
        \verb!# $ % & { } _ ~ ^ \!
      \end{center}
 
-   In that example the double backslash '\\' is only there to split the
-lines.
-
 
 File: latex2e.info,  Node: Upper and lower case,  Next: Symbols by font position,  Prev: Reserved characters,  Up: Special insertions
 
@@ -9553,17 +12741,18 @@
 
 LaTeX provides commands to generate a number of non-letter symbols in
 running text.  Some of these, especially the more obscure ones, are not
-available in OT1; you may need to load the 'textcomp' package.
+available in OT1.  Unless you are using XeLaTeX or LuaLaTeX then you may
+need to load the 'textcomp' package.
 
 '\copyright'
 '\textcopyright'
-     The copyright symbol, (C).
+     (C) The copyright symbol.
 
 '\dag'
-     The dagger symbol (in text).
+     U+2020 The dagger symbol (in text).
 
 '\ddag'
-     The double dagger symbol (in text).
+     U+2021 The double dagger symbol (in text).
 
 '\LaTeX'
      The LaTeX logo.
@@ -9575,133 +12764,141 @@
 '\guillemotright (>>)'
 '\guilsinglleft (<)'
 '\guilsinglright (>)'
-     Double and single angle quotation marks, commonly used in French:
-     <<, >>, <, >.
+     <<, >>, <, > Double and single angle quotation marks, commonly used
+     in French.
 
 '\ldots'
 '\dots'
 '\textellipsis'
-     An ellipsis (three dots at the baseline): '...'.  '\ldots' and
-     '\dots' also work in math mode.
+     ... An ellipsis (three dots at the baseline): '\ldots' and '\dots'
+     also work in math mode.
 
 '\lq'
-     Left (opening) quote: '.
+     ' Left (opening) quote.
 
 '\P'
 '\textparagraph'
-     Paragraph sign (pilcrow): U+00B6.
+     U+00B6 Paragraph sign (pilcrow).
 
 '\pounds'
 '\textsterling'
-     English pounds sterling: #.
+     # English pounds sterling.
 
 '\quotedblbase (,,)'
 '\quotesinglbase (,)'
-     Double and single quotation marks on the baseline: ,, and ,.
+     ,, and , Double and single quotation marks on the baseline.
 
 '\rq'
-     Right (closing) quote: '.
+     ' Right (closing) quote.
 
 '\S'
-     \itemx \textsection Section sign: U+00A7.
+'\textsection'
+     U+00A7 Section sign.
 
 '\TeX'
      The TeX logo.
 
 '\textasciicircum'
-     ASCII circumflex: ^.
+     ^ ASCII circumflex.
 
 '\textasciitilde'
-     ASCII tilde: ~.
+     ~ ASCII tilde.
 
 '\textasteriskcentered'
-     Centered asterisk: *.
+     * Centered asterisk.
 
 '\textbackslash'
-     Backslash: \.
+     \ Backslash.
 
 '\textbar'
-     Vertical bar: |.
+     | Vertical bar.
 
 '\textbardbl'
-     Double vertical bar.
+     U+23F8 Double vertical bar.
 
 '\textbigcircle'
-     Big circle symbol.
+     U+25EF Big circle symbol.
 
 '\textbraceleft'
-     Left brace: {.
+     { Left brace.
 
 '\textbraceright'
-     Right brace: }.
+     } Right brace.
 
 '\textbullet'
-     Bullet: *.
+     * Bullet.
 
 '\textcircled{LETTER}'
-     LETTER in a circle, as in (R).
+     U+24B6 Circle around LETTER.
 
 '\textcompwordmark'
 '\textcapitalcompwordmark'
 '\textascendercompwordmark'
-     Composite word mark (invisible).  The '\textcapital...' form has
-     the cap height of the font, while the '\textascender...' form has
-     the ascender height.
+     Used to separate letters that would normally ligature.  For
+     example, 'f\textcompwordmark i' produces 'fi' without a ligature.
+     This is most useful in non-English languages.  The
+     '\textcapitalcompwordmark' form has the cap height of the font
+     while the '\textascendercompwordmark' form has the ascender height.
 
 '\textdagger'
-     Dagger: \dag.
+     U+2020 Dagger.
 
 '\textdaggerdbl'
-     Double dagger: \ddag.
+     U+2021 Double dagger.
 
 '\textdollar (or '\$')'
-     Dollar sign: $.
+     $ Dollar sign.
 
 '\textemdash (or '---')'
-     Em-dash: -- (for punctuation).
+     -- Em-dash (used for punctuation, as in 'The playoffs --- if you
+     are fortunate enough to make the playoffs --- is more like a
+     sprint.').
 
 '\textendash (or '--')'
-     En-dash: - (for ranges).
+     - En-dash (used for ranges, as in 'See pages 12--14').
 
 '\texteuro'
-     The Euro symbol: Euro.
 
+     The Euro symbol: Euro.  For an alternative glyph design, try the
+     'eurosym' package; also, most fonts nowadays come with their own
+     Euro symbol (Unicode U+20AC).
+
 '\textexclamdown (or '!`')'
-     Upside down exclamation point: !.
+     !  Upside down exclamation point.
 
 '\textgreater'
-     Greater than: >.
+     > Greater than symbol.
 
 '\textless'
-     Less than: <.
+     < Less than symbol.
 
 '\textleftarrow'
-     Left arrow.
+     U+2190 Left arrow.
 
 '\textordfeminine'
 '\textordmasculine'
-     Feminine and masculine ordinal symbols: a, o.
+     a, o Feminine and masculine ordinal symbols.
 
 '\textperiodcentered'
-     Centered period: U+00B7.
+     U+00B7 Centered period.
 
 '\textquestiondown (or '?`')'
-     Upside down question mark: ?.
+     ?  Upside down question mark.
 
 '\textquotedblleft (or '``')'
-     Double left quote: ".
+     " Double left quote.
 
 '\textquotedblright (or '''')'
-     Double right quote: ".
+     " Double right quote.
 
 '\textquoteleft (or '`')'
-     Single left quote: '.
+     ' Single left quote.
 
 '\textquoteright (or ''')'
-     Single right quote: '.
+     ' Single right quote.
 
 '\textquotesingle'
-     Straight single quote.  (From TS1 encoding.)
+     U+0027 Straight single quote.  (From TS1 encoding.)
 
 '\textquotestraightbase'
 '\textquotestraightdblbase'
@@ -9708,25 +12905,25 @@
      Single and double straight quotes on the baseline.
 
 '\textregistered'
-     Registered symbol: (R).
+     (R) Registered symbol.
 
 '\textrightarrow'
-     Right arrow.
+     U+2192 Right arrow.
 
 '\textthreequartersemdash'
-     "Three-quarters" em-dash, between en-dash and em-dash.
+     U+FE58 "Three-quarters" em-dash, between en-dash and em-dash.
 
 '\texttrademark'
-     Trademark symbol: U+2122.
+     U+2122 Trademark symbol.
 
 '\texttwelveudash'
-     "Two-thirds" em-dash, between en-dash and em-dash.
+     U+FE58 "Two-thirds" em-dash, between en-dash and em-dash.
 
 '\textunderscore'
-     Underscore: _.
+     _ Underscore.
 
 '\textvisiblespace'
-     Visible space symbol.
+     U+2423 Visible space symbol.
 
 
 File: latex2e.info,  Node: Accents,  Next: Additional Latin letters,  Prev: Text symbols,  Up: Special insertions
@@ -9735,97 +12932,89 @@
 ============
 
 LaTeX has wide support for many of the world's scripts and languages,
-through the 'babel' package and related support.  This section does not
-attempt to cover all that support.  It merely lists the core LaTeX
-commands for creating accented characters.
+through the 'babel' package and related support if you are using
+pdfLaTeX, or 'polyglossia' if you are using XeLaTeX or LuaLaTeX.  This
+section does not cover that support.  It only lists the core LaTeX
+commands for creating accented characters.  The '\capital...' commands
+shown here produce alternative forms for use with capital letters.
+These are not available with OT1.
 
-   The '\capital...' commands produce alternative forms for use with
-capital letters.  These are not available with OT1.
+   Below, to make them easier to find, the accents are all illustrated
+with lowercase 'o'.
 
+   Note that '\i' produces a dotless i, and '\j' produces a dotless j.
+These are often used in place of their dotted counterparts when they are
+accented.
+
 '\"'
 '\capitaldieresis'
-     Produces an umlaut (dieresis), as in o".
+     o" Umlaut (dieresis).
 
 '\''
 '\capitalacute'
-     Produces an acute accent, as in o'.  In the 'tabbing' environment,
-     pushes current column to the right of the previous column (*note
-     tabbing::).
+     o' Acute accent.
 
 '\.'
-     Produces a dot accent over the following, as in o..
+     o. Dot accent.
 
 '\='
 '\capitalmacron'
-     Produces a macron (overbar) accent over the following, as in o=.
+     o= Macron (overbar) accent.
 
 '\^'
 '\capitalcircumflex'
-     Produces a circumflex (hat) accent over the following, as in o^.
+     o^ Circumflex (hat) accent.
 
 '\`'
 '\capitalgrave'
-     Produces a grave accent over the following, as in o`.  In the
-     'tabbing' environment, move following text to the right margin
-     (*note tabbing::).
+     o` Grave accent.
 
 '\~'
 '\capitaltilde'
-     Produces a tilde accent over the following, as in n~.
+     n~ Tilde accent.
 
 '\b'
-     Produces a bar accent under the following, as in o_.  See also
-     '\underbar' hereinafter.
+     o_ Bar accent underneath.
 
+     Related to this, '\underbar{TEXT}' produces a bar under TEXT.  The
+     argument is always processed in LR mode (*note Modes::).  The bar
+     is always a fixed position under the baseline, thus crossing
+     through descenders.  See also '\underline' in *note Math
+     miscellany::.
+
 '\c'
 '\capitalcedilla'
-     Produces a cedilla accent under the following, as in c,.
+     c, Cedilla accent underneath.
 
 '\d'
 '\capitaldotaccent'
-     Produces a dot accent under the following, as in .o.
+     .o Dot accent underneath.
 
 '\H'
 '\capitalhungarumlaut'
-     Produces a long Hungarian umlaut accent over the following, as in
-     o''.
+     o'' Long Hungarian umlaut accent.
 
-'\i'
-     Produces a dotless i, as in 'i'.
-
-'\j'
-     Produces a dotless j, as in 'j'.
-
 '\k'
 '\capitalogonek'
-     Produces a letter with ogonek, as in 'o;'.  Not available in the
-     OT1 encoding.
+     o; Ogonek.  Not available in the OT1 encoding.
 
 '\r'
 '\capitalring'
-     Produces a ring accent, as in 'o*'.
+     o* Ring accent.
 
 '\t'
 '\capitaltie'
 '\newtie'
 '\capitalnewtie'
-     Produces a tie-after accent, as in 'oo['.  The '\newtie' form is
-     centered in its box.
+     oo[ Tie-after accent.  The '\newtie' form is centered in its box.
 
 '\u'
 '\capitalbreve'
-     Produces a breve accent, as in 'o('.
+     o( Breve accent.
 
-'\underbar'
-     Not exactly an accent, this produces a bar under the argument text.
-     The argument is always processed in horizontal mode.  The bar is
-     always a fixed position under the baseline, thus crossing through
-     descenders.  See also '\underline' in *note Math miscellany::.  See
-     also '\b' above.
-
 '\v'
 '\capitalcaron'
-     Produces a ha'c<ek (check, caron) accent, as in 'o<'.
+     o< Ha'c<ek (check, caron) accent.
 
 
 File: latex2e.info,  Node: Additional Latin letters,  Next: \rule,  Prev: Accents,  Up: Special insertions
@@ -9833,8 +13022,8 @@
 23.6 Additional Latin letters
 =============================
 
-Here are the basic LaTeX commands for inserting letters (beyond A-Z)
-extending the Latin alphabet, used primarily in languages other than
+Here are the basic LaTeX commands for inserting letters beyond A-Z that
+extend the Latin alphabet, used primarily in languages other than
 English.
 
 '\aa'
@@ -9893,22 +13082,38 @@
 23.7 '\rule'
 ============
 
-Synopsis:
+Synopsis, one of:
 
+     \rule{WIDTH}{THICKNESS}
      \rule[RAISE]{WIDTH}{THICKNESS}
 
-   The '\rule' command produces "rules", that is, lines or rectangles.
-The arguments are:
+   Produce a "rule", a filled-in rectangle.
 
-RAISE
-     How high to raise the rule (optional).
+   This produces a rectangular blob, sometimes called a Halmos symbol,
+often used to mark the end of a proof.
 
-WIDTH
-     The length of the rule (mandatory).
+     \newcommand{\qedsymbol}{\rule{0.4em}{2ex}}
 
-THICKNESS
-     The thickness of the rule (mandatory).
+The 'amsthm' package includes this command, with a somewhat
+different-looking symbol.
 
+   The mandatory arguments give the horizontal WIDTH and vertical
+THICKNESS of the rectangle.  They are rigid lengths (*note Lengths::).
+The optional argument RAISE is also a rigid length, and tells LaTeX how
+much to raise the rule above the baseline, or lower it if the length is
+negative.
+
+   This produces a line, a rectangle that is wide but not tall.
+
+     \noindent\rule{\textwidth}{0.4pt}
+
+The line is the width of the page and 0.4 points tall.  This line
+thickness is common in LaTeX.
+
+   A rule that has zero width, or zero thickness, will not show up in
+the output, but can cause LaTeX to change the output around it.  *Note
+\strut:: for examples.
+
 
 File: latex2e.info,  Node: \today,  Prev: \rule,  Up: Special insertions
 
@@ -9915,15 +13120,17 @@
 23.8 '\today'
 =============
 
-The '\today' command produces today's date, in the format 'MONTH DD,
-YYYY'; for example, 'July 4, 1976'.  It uses the predefined counters
-'\day', '\month', and '\year' (*note \day \month \year::) to do this.
-It is not updated as the program runs.
+Synopsis:
 
-   Multilingual packages like 'babel' or classes like 'lettre', among
-others, will localize '\today'.  For example, the following will output
-'4 juillet 1976':
+     \today
 
+   Produce today's date in the format 'MONTH DD, YYYY'.  An example of a
+date in that format is 'July 4, 1976'.
+
+   Multilingual packages such as 'babel' or 'polyglossia', or classes
+such as 'lettre', will localize '\today'.  For example, the following
+will output '4 juillet 1976':
+
      \year=1976 \month=7 \day=4
      \documentclass{minimal}
      \usepackage[french]{babel}
@@ -9931,9 +13138,16 @@
      \today
      \end{document}
 
-   The 'datetime' package, among others, can produce a wide variety of
-other date formats.
+'\today' uses the counters '\day', '\month', and '\year' (*note \day &
+\month & \year::).
 
+   A number of package on CTAN work with dates.  One is 'datetime'
+package which can produce a wide variety of date formats, including ISO
+standards.
+
+   The date is not updated as the LaTeX process runs, so in principle
+the date could be incorrect by the time the program finishes.
+
 
 File: latex2e.info,  Node: Splitting the input,  Next: Front/back matter,  Prev: Special insertions,  Up: Top
 
@@ -9940,62 +13154,208 @@
 24 Splitting the input
 **********************
 
-A large document requires a lot of input.  Rather than putting the whole
-input in a single large file, it's more efficient to split it into
-several smaller ones.  Regardless of how many separate files you use,
-there is one that is the "root file"; it is the one whose name you type
-when you run LaTeX.
+LaTeX lets you split a large document into several smaller ones.  This
+can simplify editing or allow multiple authors to work on the document.
+It can also speed processing.
 
-   *Note filecontents::, for an environment that allows bundling an
-external file to be created with the main document.
+   Regardless of how many separate files you use, there is always one
+"root file", on which LaTeX compilation starts.  This shows such a file
+with five included files.
 
+     \documentclass{book}
+     \includeonly{  % comment out lines below to omit compiling
+       pref,
+       chap1,
+       chap2,
+       append,
+       bib
+       }
+     \begin{document}
+     \frontmatter
+     \include{pref}
+     \mainmatter
+     \include{chap1}
+     \include{chap2}
+     \appendix
+     \include{append}
+     \backmatter
+     \include{bib}
+     \end{document}
+
+This will bring in material from 'pref.tex', 'chap1.tex', 'chap2.tex',
+'append.tex', and 'bib.tex'.  If you compile this file, and then comment
+out all of the lines inside '\includeonly{...}' except for 'chap1,' and
+compile again, then LaTeX will only process the material in the first
+chapter.  Thus, your output will appear more quickly and be shorter to
+print.  However, the advantage of the '\includeonly' command is that
+LaTeX will retain the page numbers and all of the cross reference
+information from the other parts of the document so these will appear in
+your output correctly.
+
+   *Note Larger book template:: for another example of '\includeonly'.
+
 * Menu:
 
-* \include::            Conditionally include a file.
-* \includeonly::        Determine which files are included.
-* \input::              Unconditionally include a file.
+* \endinput::                 Stop including material from a file.
+* \include & \includeonly::   Conditionally include files.
+* \input::                    Unconditionally include a file.
 
 
-File: latex2e.info,  Node: \include,  Next: \includeonly,  Up: Splitting the input
+File: latex2e.info,  Node: \endinput,  Next: \include & \includeonly,  Up: Splitting the input
 
-24.1 '\include'
-===============
+24.1 '\endinput'
+================
 
 Synopsis:
 
-     \include{FILE}
+     \endinput
 
-   If no '\includeonly' command is present, the '\include' command
-executes '\clearpage' to start a new page (*note \clearpage::), then
-reads FILE, then does another '\clearpage'.
+   When you '\include{filename}', inside 'filename.tex' the material
+after '\endinput' will not be included.  This command is optional; if
+'filename.tex' has no '\endinput' then LaTeX will read all of the file.
 
-   Given an '\includeonly' command, the '\include' actions are only run
-if FILE is listed as an argument to '\includeonly'.  See *note
-\includeonly::.
+   For example, suppose that a document's root file has '\input{chap1}'
+and this is 'chap1.tex'.
 
-   The '\include' command may not appear in the preamble or in a file
-read by another '\include' command.
+     \chapter{One}
+     This material will appear in the document.
+     \endinput
+     This will not appear.
 
+   This can be useful for putting documentation or comments at the end
+of a file, or for avoiding junk characters that can be added during
+mailing.  It is also useful for debugging: one strategy to localize
+errors is to put '\endinput' halfway through the included file and see
+if the error disappears.  Now, knowing which half contains the error,
+moving '\endinput' to halfway through that area further narrows down the
+location.  This process rapidly finds the offending line.
+
+   After reading '\endinput', LaTeX continues to read to the end of the
+line, so something can follow this command and be read nonetheless.
+This allows you, for instance, to close an '\if...' with a '\fi'.
+
 
-File: latex2e.info,  Node: \includeonly,  Next: \input,  Prev: \include,  Up: Splitting the input
+File: latex2e.info,  Node: \include & \includeonly,  Next: \input,  Prev: \endinput,  Up: Splitting the input
 
-24.2 '\includeonly'
-===================
+24.2 '\include' & '\includeonly'
+================================
 
 Synopsis:
 
-     \includeonly{FILE1,FILE2,...}
+     \includeonly{  % in document preamble
+       ...
+       FILENAME,
+       ...
+       }
+       ...
+     \include{FILENAME}  % in document body
 
-   The '\includeonly' command controls which files will be read by
-subsequent '\include' commands.  The list of filenames is
-comma-separated.  Each element FILE1, FILE2, ... must exactly match a
-filename specified in a '\include' command for the selection to be
-effective.
+   Bring material from the external file 'FILENAME.tex' into a LaTeX
+document.
 
-   This command can only appear in the preamble.
+   The '\include' command does three things: it executes '\clearpage'
+(*note \clearpage & \cleardoublepage::), then it inputs the material
+from 'FILENAME.tex' into the document, and then it does another
+'\clearpage'.  This command can only appear in the document body.  The
+'\includeonly' command controls which files will be read by LaTeX under
+subsequent '\include' commands.  Its list of filenames is
+comma-separated, and it can only appear in the preamble.
 
+   This example root document, 'constitution.tex', brings in three
+files, 'preamble.tex', 'articles.tex', and 'amendments.tex'.
+
+     \documentclass{book}
+     \includeonly{
+       preamble,
+       articles,
+       amendments
+       }
+     \begin{document}
+     \include{preamble}
+     \include{articles}
+     \include{amendments}
+     \end{document}
+
+The file 'preamble.tex' contains no special code; you have just
+excerpted the chapter from 'consitution.tex' and put it in a separate
+file just for editing convenience.
+
+     \chapter{Preamble}
+     We the People of the United States,
+     in Order to form a more perfect Union, ...
+
+Running LaTeX on 'constitution.tex' makes the material from the three
+files appear in the document but also generates the auxiliary files
+'preamble.aux', 'articles.aux', and 'amendments.tex'.  These contain
+information such as page numbers and cross-references (*note Cross
+references::).  If you now comment out '\includeonly''s lines with
+'preamble' and 'amendments' and run LaTeX again then the resulting
+document shows only the material from 'articles.tex', not the material
+from 'preamble.tex' or 'amendments.tex'.  Nonetheless, all of the
+auxiliary information from the omitted files is still there, including
+the starting page number of the chapter.
+
+   If the document preamble does not have '\includeonly' then LaTeX will
+include all the files you call for with '\include' commands.
+
+   The '\include' command makes a new page.  To avoid that, see *note
+\input:: (which, however, does not retain the auxiliary information).
+
+   *Note Larger book template:: for another example using '\include' and
+'\includeonly'.  That example also uses '\input' for some material that
+will not necessarily start on a new page.
+
+   File names can involve paths.
+
+     \documentclass{book}
+     \includeonly{
+       chapters/chap1,
+       }
+     \begin{document}
+     \include{chapters/chap1}
+     \end{document}
+
+   To make your document portable across distributions and platforms you
+should avoid spaces in the file names.  The tradition is to instead use
+dashes or underscores.  Nevertheless, for the name 'amo amas amat', this
+works under TeX Live on GNU/Linux:
+
+     \documentclass{book}
+     \includeonly{
+       "amo\space amas\space amat"
+       }
+     \begin{document}
+     \include{"amo\space amas\space amat"}
+     \end{document}
+
+   and this works under MiKTeX on Windows:
+
+     \documentclass{book}
+     \includeonly{
+       {"amo amas amat"}
+       }
+     \begin{document}
+     \include{{"amo amas amat"}}
+     \end{document}
+
+   You cannot use '\include' inside a file that is being included or you
+get 'LaTeX Error: \include cannot be nested.' The '\include' command
+cannot appear in the document preamble; you will get 'LaTeX Error:
+Missing \begin{document}'.
+
+   If a file that you '\include' does not exist, for instance if you
+'\include{athiesm}' but you meant '\include{atheism}', then LaTeX does
+not give you an error but will warn you 'No file athiesm.tex.' (It will
+also create 'athiesm.aux'.)
+
+   If you '\include' the root file in itself then you first get 'LaTeX
+Error: Can be used only in preamble.' Later runs get 'TeX capacity
+exceeded, sorry [text input levels=15]'.  To fix this, you must remove
+the inclusion '\include{root}' but also delete the file 'ROOT.aux' and
+rerun LaTeX.
+
 
-File: latex2e.info,  Node: \input,  Prev: \includeonly,  Up: Splitting the input
+File: latex2e.info,  Node: \input,  Prev: \include & \includeonly,  Up: Splitting the input
 
 24.3 '\input'
 =============
@@ -10002,16 +13362,36 @@
 
 Synopsis:
 
-     \input{FILE}
+     \input{FILENAME}
 
-   The '\input' command causes the specified FILE to be read and
-processed, as if its contents had been inserted in the current file at
-that point.
+   LaTeX processes the file as if its contents were inserted in the
+current file.  For a more sophisticated inclusion mechanism see *note
+\include & \includeonly::.
 
-   If FILE does not end in '.tex' (e.g., 'foo' or 'foo.bar'), it is
-first tried with that extension ('foo.tex' or 'foo.bar.tex').  If that
-is not found, the original FILE is tried ('foo' or 'foo.bar').
+   If FILENAME does not end in '.tex' then LaTeX first tries the
+filename with that extension; this is the usual case.  If FILENAME ends
+with '.tex' then LaTeX looks for the filename as it is.
 
+   For example, this
+
+     \input{macros}
+
+will cause LaTeX to first look for 'macros.tex'.  If it finds that file
+then it processes its contents as thought they had been copy-pasted in.
+If there is no file of the name 'macros.tex' then LaTeX tries the name
+'macros', without an extension.  (This may vary by distribution.)
+
+   To make your document portable across distributions and platforms you
+should avoid spaces in the file names.  The tradition is to instead use
+dashes or underscores.  Nevertheless, for the name 'amo amas amat', this
+works under TeX Live on GNU/Linux:
+
+     \input{"amo\space amas\space amat"}
+
+   and this works under MiKTeX on Windows:
+
+     \input{{"amo amas amat"}}
+
 
 File: latex2e.info,  Node: Front/back matter,  Next: Letters,  Prev: Splitting the input,  Up: Top
 
@@ -10020,41 +13400,114 @@
 
 * Menu:
 
-* Tables of contents::
-* Glossaries::
-* Indexes::
+* Table of contents etc.::  Table of contents, list of figures, list of tables.
+* Indexes::                  Generate an index.
+* Glossaries::               Generate a glossary.
 
 
-File: latex2e.info,  Node: Tables of contents,  Next: Glossaries,  Up: Front/back matter
+File: latex2e.info,  Node: Table of contents etc.,  Next: Indexes,  Up: Front/back matter
 
-25.1 Tables of contents
-=======================
+25.1 Table of contents etc.
+===========================
 
-A table of contents is produced with the '\tableofcontents' command.
-You put the command right where you want the table of contents to go;
-LaTeX does the rest for you.  A previous run must have generated a
-'.toc' file.
+Synopsis, one of:
 
-   The '\tableofcontents' command produces a heading, but it does not
-automatically start a new page.  If you want a new page after the table
-of contents, write a '\newpage' command after the '\tableofcontents'
-command.
+     \tableofcontents
+     \listoffigures
+     \listoftables
 
-   The analogous commands '\listoffigures' and '\listoftables' produce a
-list of figures and a list of tables (from '.lof' and '.lot' files),
-respectively.  Everything works exactly the same as for the table of
+   Produce a table of contents, or list of figures, or list of tables.
+Put the command in the input file where you want the table or list to
+go.  You do not type the entries; for example, typically the table of
+contents entries are automatically generated from the sectioning
+commands '\chapter', etc.
+
+   This example illustrates the first command, '\tableofcontents'.
+LaTeX will produce a table of contents on the book's first page.
+
+     \documentclass{book}
+     % \setcounter{tocdepth}{1}
+     \begin{document}
+     \tableofcontents\newpage
+       ...
+     \chapter{...}
+       ...
+     \section{...}
+       ...
+     \subsection{...}
+       ...
+     \end{document}
+
+Uncommenting the second line would cause that table to contain chapter
+and section listings but not subsection listings, because the '\section'
+command has level 1.  *Note Sectioning:: for level numbers of the
+sectioning units.  For more on the 'tocdepth' *note
+Sectioning/tocdepth::.
+
+   Another example of the use of '\tableofcontents' is in *note Larger
+book template::.
+
+   If you want a page break after the table of contents, write a
+'\newpage' command after the '\tableofcontents' command, as above.
+
+   To make the table of contents LaTeX stores the information in an
+auxiliary file named 'ROOT-FILE.toc' (*note Splitting the input::).  For
+example, this LaTeX file 'test.tex'
+
+     \documentclass{article}
+     \begin{document}
+     \tableofcontents\newpage
+     \section{First section}
+     \subsection{First subsection}
+       ...
+
+writes the following line to 'test.toc'.
+
+     \contentsline {section}{\numberline {1}First section}{2}
+     \contentsline {subsection}{\numberline {1.1}First subsection}{2}
+
+The 'section' or 'subsection' is the sectioning unit.  The hook
+'\numberline' lets you to change how the information appears in the
+table of contents.  Of its two arguments, '1' or '1.1' is the sectioning
+unit number and 'First section' or 'First subsection' is the title.
+Finally, '2' is the page number on which the sectioning units start.
+
+   One consequence of this auxiliary file storage strategy is that to
+get the contents page correct you must run LaTeX twice, once to store
+the information and once to get it.  In particular, the first time that
+you run LaTeX on a new document, the table of contents page will be
+empty except for its 'Contents' header.  Just run it again.
+
+   The commands '\listoffigures' and '\listoftables' produce a list of
+figures and a list of tables.  They work the same way as the contents
+commands; for instance, these work with information stored in '.lof' and
+'.lot' files.
+
+   To change the header for the table of contents page do something like
+the first line here.
+
+     \renewcommand{\contentsname}{Table of contents}
+     \renewcommand{\listfigurename}{Plots}
+     \renewcommand{\listtablename}{Tables}
+
+Similarly, the other two lines will do the other two.
+Internationalization packages such as 'babel' or 'polyglossia' will
+change the headers depending on the chosen base language.
+
+   CTAN has many packages for the table of contents and lists of figures
+and tables.  One convenient one for adjusting some aspects of the
+default, such as spacing, is 'tocloft'.  And, 'tocbibbind' will
+automatically add the bibliography, index, etc.  to the table of
 contents.
 
-   The command '\nofiles' overrides these commands, and _prevents_ any
-of these lists from being generated.
-
 * Menu:
 
 * \addcontentsline::    Add an entry to table of contents, etc.
 * \addtocontents::      Add text directly to table of contents file, etc.
+* \nofiles::            Prevent writing to auxiliary files.
 
 
-File: latex2e.info,  Node: \addcontentsline,  Next: \addtocontents,  Up: Tables of contents
+File: latex2e.info,  Node: \addcontentsline,  Next: \addtocontents,  Up: Table of contents etc.
 
 25.1.1 '\addcontentsline'
 -------------------------
@@ -10063,113 +13516,637 @@
 
      \addcontentsline{EXT}{UNIT}{TEXT}
 
-   The '\addcontentsline' command adds an entry to the specified list or
-table where:
+   Add an entry to the file specified by EXT.  Usually EXT is one of
+'toc' for the table of contents, 'lof' for the list of figures, or 'lot'
+for the list of tables.
 
+   The following will result in an 'Appendices' line in the table of
+contents.
+
+     \addcontentsline{toc}{section}{\protect\textbf{Appendices}}
+
+It will appear at the same indentation level as the sections, will be in
+boldface, and will be assigned the page number associated with the point
+where it appears in the input file.
+
+   The '\addcontentsline' command writes information to the file
+'ROOT-NAME.EXT'.  It writes that information as the text of the command
+'\contentsline{UNIT}{TEXT}{NUM}', where 'NUM' is the current value of
+counter 'UNIT'.  The most common case is the table of contents and there
+NUM is the page number of the first page of UNIT.
+
+   This command is invoked by the sectioning commands '\chapter', etc.,
+and also by '\caption' inside a float environment.  But it is also used
+by authors.  For example, in a book to have the preface unnumbered, you
+may use the starred '\chapter*'.  But that does not put in table of
+contents information, so you can enter it manually, as here.
+
+     \chapter*{Preface}
+     \addcontentsline{toc}{chapter}{\protect\numberline{}Preface}
+
+In the '.toc' file LaTeX will put the line '\contentsline
+{chapter}{\numberline {}Preface}{3}'; note the page number '3'.
+
+   All of the arguments for '\addcontentsline' are required.
+
 EXT
-     The filename extension of the file on which information is to be
-     written, typically one of: 'toc' (table of contents), 'lof' (list
-     of figures), or 'lot' (list of tables).
+     Typically one of the strings 'toc' for the table of contents, 'lof'
+     for the list of figures, or 'lot' for the list of tables.  The
+     filename extension of the information file.
 
 UNIT
-     The name of the sectional unit being added, typically one of the
-     following, matching the value of the EXT argument:
+     A string that depends on the value of the EXT argument:
 
      'toc'
-          The name of the sectional unit: 'part', 'chapter', 'section',
-          'subsection', 'subsubsection'.
+          For the table of contents, this is the name of a sectional
+          unit: 'part', 'chapter', 'section', 'subsection', etc.
+
      'lof'
           For the list of figures: 'figure'.
+
      'lot'
           For the list of tables: 'table'.
 
 TEXT
-     The text of the entry.
+     The text of the entry.  You must '\protect' any commands that are
+     fragile (*note \protect::).
 
-   What is written to the '.EXT' file is the command
-'\contentsline{UNIT}{TEXT}{NUM}', where 'NUM' is the current value of
-counter 'UNIT'.
+   The '\addcontentsline' command has an interaction with '\include'
+(*note \include & \includeonly::).  If you use them at the same level,
+as with '\addcontentsline{...}{...}{...}\include{...}' then lines in the
+table of contents can come out in the wrong order.  The solution is to
+move '\addcontentsline' into the file being included.
 
+   If you use a UNIT that LaTeX does not recognize, as here
+
+     \addcontentsline{toc}{setcion}{\protect\textbf{Appendices}}
+
+then you don't get an error but the formatting in the table of contents
+will not make sense.
+
 
-File: latex2e.info,  Node: \addtocontents,  Prev: \addcontentsline,  Up: Tables of contents
+File: latex2e.info,  Node: \addtocontents,  Next: \nofiles,  Prev: \addcontentsline,  Up: Table of contents etc.
 
 25.1.2 '\addtocontents'
 -----------------------
 
-The '\addtocontents'{EXT}{TEXT} command adds text (or formatting
-commands) directly to the '.EXT' file that generates the table of
-contents or lists of figures or tables.
+Synopsis:
 
+     \addtocontents{EXT}{TEXT}
+
+   Add TEXT, which may be text or formatting commands, directly to the
+auxiliary file with extension EXT.  This is most commonly used for the
+table of contents so that is the discussion here, but this also applies
+to the list of figures and list of tables.
+
+   This will put some vertical space in the table of contents after the
+'Contents' header.
+
+     \tableofcontents\newpage
+     \addtocontents{toc}{\protect\vspace*{3ex}}
+
+   The '\addtocontents' command has two arguments.  Both are required.
+
 EXT
-     The extension of the file on which information is to be written,
-     typically one of: 'toc' (table of contents), 'lof' (list of
-     figures), or 'lot' (list of tables).
+     Typically one of: 'toc' for the table of contents, 'lof' for the
+     list of figures, or 'lot' for the list of tables.  The extension of
+     the file holding the information.
 
 TEXT
-     The text to be written.
+     The text, and possibly commands, to be written.
 
+   The sectioning commands such as '\chapter' use the '\addcontentsline'
+command to store information.  This command creates lines in the '.toc'
+auxiliary file containing the '\contentsline' command (*note
+\addcontentsline::).  In contrast, the command '\addtocontents' puts
+material directly in that file.
+
+   The '\addtocontents' command has an interaction with '\include'
+(*note \include & \includeonly::).  If you use them at the same level,
+as with '\addtocontents{...}{...}\include{...}' then lines in the table
+of contents can come out in the wrong order.  The solution is to move
+'\addtocontents' into the file being included.
+
 
-File: latex2e.info,  Node: Glossaries,  Next: Indexes,  Prev: Tables of contents,  Up: Front/back matter
+File: latex2e.info,  Node: \nofiles,  Prev: \addtocontents,  Up: Table of contents etc.
 
-25.2 Glossaries
-===============
+25.1.3 '\nofiles'
+-----------------
 
-The command '\makeglossary' enables creating glossaries.
+Synopsis:
 
-   The command '\glossary{TEXT}' writes a glossary entry for TEXT to an
-auxiliary file with the '.glo' extension.
+     \nofiles
 
-   Specifically, what gets written is the command
-'\glossaryentry{TEXT}{PAGENO}', where PAGENO is the current '\thepage'
-value.
+   Prevent LaTeX from writing any auxiliary files.  The only output will
+be the '.log' and '.pdf' (or '.dvi') files.  This command must go in the
+preamble.
 
-   The 'glossary' package on CTAN provides support for fancier
-glossaries.
+   Because of the '\nofiles' command this example will not produce a
+'.toc' file.
 
+     \documentclass{book}
+     \nofiles
+     \begin{document}
+     \tableofcontents\newpage
+     \chapter{...}
+       ...
+
+LaTeX will not erase any existing auxiliary files, so if you insert the
+'\nofiles' command after you have run the file and gotten a '.toc' then
+the table of contents page will continue to show the old information.
+
 
-File: latex2e.info,  Node: Indexes,  Prev: Glossaries,  Up: Front/back matter
+File: latex2e.info,  Node: Indexes,  Next: Glossaries,  Prev: Table of contents etc.,  Up: Front/back matter
 
-25.3 Indexes
+25.2 Indexes
 ============
 
-The command '\makeindex' enables creating indexes.  Put this in the
-preamble.
+This document has an index.
 
-   The command '\index{TEXT}' writes an index entry for TEXT to an
-auxiliary file named with the '.idx' extension.
+     \documentclass{article}
+     \usepackage{makeidx} \makeindex
+       ...
+     \begin{document}
+       ...
+     Recall Wilson's Theorem: \index{Wilson's Theorem}
+     a number \( n>1 \) is prime if and only if the factorial of \( n-1 \)
+     is congruent to \( -1 \) modulo~\( n \).
+       ...
+     \printindex
+       ...
 
-   Specifically, what gets written is the command
-'\indexentry{TEXT}{PAGENO}', where PAGENO is the current '\thepage'
-value.
+The '\usepackage{makeidx}' and '\makeindex' in the preamble bring in the
+relevant commands.
 
-   To generate a index entry for 'bar' that says 'See foo', use a
-vertical bar: '\index{bar|see{foo}}'.  Use 'seealso' instead of 'see' to
-make a 'See also' entry.
+   Producing an index is a three stage process.  First, in the document
+body you declare index entries with the '\index' command (*note
+\index::).  When you run LaTeX, the '\index' writes its information to
+an auxiliary file 'ROOT-NAME.idx'.  Next, to alphabetize and to do other
+manipulations you run an external command, typically 'makeindex' or
+'xindy' (*note makeindex::).  These output a file 'ROOT-NAME.ind'.
+Finally, you bring the information back into your document and typeset
+it with the '\printindex' command (*note \printindex::).
 
-   The text 'See' is defined by the macro '\seename', and 'See also' by
-the macro '\alsoname'.  These can be redefined for other languages.
+   There are many packages that apply to indexing commands.  The
+'showidx' package causes each index entries to be shown in the margin on
+the page where the entry appears.  This can help in preparing the index.
+The 'multind' package supports multiple indexes.  See also the TeX FAQ
+entry on this topic,
+<http://www.tex.ac.uk/cgi-bin/texfaq2html?label=multind>.
 
-   The generated '.idx' file is then sorted with an external command,
-usually either 'makeindex' (<http://mirror.ctan.org/indexing/makeindex>)
-or (the multi-lingual) 'xindy' (<http://xindy.sourceforge.net>).  This
-results in a '.ind' file, which can then be read to typeset the index.
+* Menu:
 
-   The index is usually generated with the '\printindex' command.  This
-is defined in the 'makeidx' package, so '\usepackage{makeidx}' needs to
-be in the preamble.
+* \index::        Declare an index entry.
+* makeindex::     Alphabetize index entries.
+* \printindex::   Put the index here.
 
-   The rubber length '\indexspace' is inserted before each new letter in
-the printed index; its default value is '10pt plus5pt minus3pt'.
+
+File: latex2e.info,  Node: \index,  Next: makeindex,  Up: Indexes
 
-   The 'showidx' package causes each index entries to be shown in the
-margin on the page where the entry appears.  This can help in preparing
-the index.
+25.2.1 '\index'
+---------------
 
-   The 'multind' package supports multiple indexes.  See also the TeX
-FAQ entry on this topic,
-<http://www.tex.ac.uk/cgi-bin/texfaq2html?label=multind>.
+Synopsis:
 
+     \index{INDEX-ENTRY-STRING}
+
+   Declare an entry in the index.  This command is fragile (*note
+\protect::).
+
+   For example, as described in *note Indexes::, one way to get an index
+from what's below is to compile the document with 'pdflatex test', then
+process the index entries with 'makeindex test', and then compile again
+with 'pdflatex test'.
+
+     W~Ackermann (1896--1962).\index{Ackermann}
+       ...
+     Ackermann function\index{Ackermann!function}
+       ...
+     rate of growth\index{Ackermann!function!growth rate}
+
+All three index entries will get a page number, such as 'Ackermann, 22'.
+LaTeX will format the second as a subitem of the first, on the line
+below it and indented, and the third as a subitem of the second.  Three
+levels deep is as far as you can nest subentries.  (If you add
+'\index{Ackermann!function!growth rate!comparison}' then 'makeindex'
+says 'Scanning input file test.idx....done (4 entries accepted, 1
+rejected)' and nothing appears in the index).
+
+   If you enter a second '\index' with the same INDEX-ENTRY-STRING then
+you will get a single index entry with two page numbers (unless they
+happen to fall on the same page).  Thus, adding 'as for
+Ackermann.\index{Ackermann}' later in the same document as above will
+give an index entry like 'Ackermann, 22, 151'.  Also, you can enter the
+index entries in any order, so for instance '\index{Ackermann!function}'
+could come before '\index{Ackermann}'.
+
+   Get a page range in the output, like 'Hilbert, 23--27', as here.
+
+     W~Ackermann (1896--1962).\index{Ackermann}
+       ...
+     D~Hilbert (1862--1943)\index{Ackermann!Hilbert\(}
+       ...
+     disapproved of his marriage.\index{Ackermann!Hilbert\)}
+
+If the beginning and ending of the page range are equal then the system
+just gives a single page entry, not a range.
+
+   If you index subentries but not a main entry, as with
+'\index{Jones!program}' and '\index{Jones!results}', then the output is
+the item 'Jones' with no comma or page number, followed by two subitems,
+like 'program, 50' and 'results, 51'.
+
+   Generate a index entry that says 'See' by using a vertical bar
+character: '\index{Ackermann!function|see{P\'eter's function}}'.  You
+can instead get 'See also' with 'seealso'.  (The text 'See' is defined
+by '\seename', and 'See also' by '\alsoname'.  You can redefine these
+either by using an internationalization package such as 'babel' or
+'polyglossia', or directly as with '\renewcommand{\alsoname}[1]{Also see
+#1}'.)
+
+   The 'See' feature is part of a more general functionality.  After the
+vertical bar you can put the name of a one-input command, as in
+'\index{group|textit}' (note the missing backslash on the '\textit'
+command) and the system will apply that command to the page number, here
+giving something like '\textit{7}'.  You can define your own one-input
+commands, such as '\newcommand{\definedpage}[1]{{\color{blue}#1}}' and
+then '\index{Ackermann!function|definedpage}' will give a blue page
+number (*note Color::).  Another, less practical, example is this,
+
+     \newcommand\indexownpage[1]{#1, \thepage}
+       ... Epimenides.\index{self-reference|indexownpage}
+
+which creates an entry citing the page number of its own index listing.
+
+   The two functions just described combine, as here
+
+     \index{Ackermann!function|(definedpage}
+       ...
+     \index{Ackermann!function|)}
+
+which outputs an index entry like 'function, 23--27' where the page
+number range is in blue.
+
+   Consider an index entry such as 'U+03B1-ring'.  Entering it as
+'$\alpha$-ring' will cause it to be alphabetized according to the dollar
+sign.  You can instead enter it using an at-sign, as
+'\index{alpha-ring@$\alpha$-ring}'.  If you specify an entry with an
+at-sign separating two strings, 'POS at TEXT', then POS gives the
+alphabetical position of the entry while TEXT produces the text of the
+entry.  Another example is that '\index{Saint Michael's College at SMC}'
+produces an index entry 'SMC' alphabetized into a different location
+than its spelling would naturally give it.
+
+   To put a '!', or '@', or '|' character in an index entry, preceding
+it with a double quote, '"'.  (The double quote gets deleted before
+alphabetization.)
+
+   A number of packages on CTAN have additional functionality beyond
+that provided by 'makeidx'.  One is 'index', which allows for multiple
+indices and contains a command '\index*{INDEX-ENTRY-STRING}' that prints
+the INDEX-ENTRY-STRING as well as indexing it.
+
+   The '\index' command writes the indexing information to the file
+'ROOT-NAME.idx' file.  Specifically, it writes text of the command
+'\indexentry{INDEX-ENTRY-STRING}{PAGE-NUM}', where where PAGE-NUM is the
+value of the '\thepage' counter.  On occasion, when the '\printindex'
+command is confused, you have to delete this file to start with a fresh
+slate.
+
+   If you omit the closing brace of an '\index' command then you get a
+message like this.
+
+     Runaway argument?  {Ackermann!function
+     !  Paragraph ended before \@wrindex was complete.
+
 
+File: latex2e.info,  Node: makeindex,  Next: \printindex,  Prev: \index,  Up: Indexes
+
+25.2.2 'makeindex'
+------------------
+
+Synopsis, one of:
+
+     makeindex FILENAME
+     makeindex -s STYLE-FILE FILENAME
+     makeindex OPTIONS FILENAME0 ...
+
+   Sort, and otherwise process, the index information in the auxiliary
+file FILENAME.  This is a command line program.  It takes one or more
+raw index files, 'FILENAME.idx' files, and produces the actual index
+file, the 'FILENAME.ind' file that is input by '\printindex' (*note
+\printindex::).
+
+   The first form of the command suffices for many uses.  The second
+allows you to format the index by using an "index style file", a '.isty'
+file.  The third form is the most general; see the full documentation on
+CTAN.
+
+   This is a simple '.isty' file.
+
+     % book.isty
+     %   $ makeindex -s book.isty -p odd book.idx
+     % creates the index as book.ind, starting on an odd page.
+     preamble
+     "\\pagestyle{empty}
+     \\small
+     \\begin{theindex}
+     \\thispagestyle{empty}"
+
+     postamble
+     "\n
+     \\end{theindex}"
+
+   The description here covers only some of the index formatting
+possibilities in STYLE-FILE.  For a full list see the documentation on
+CTAN.
+
+   A style file consists of a list of pairs: SPECIFIER and ATTRIBUTE.
+These can appear in the file in any order.  All of the ATTRIBUTES are
+strings, except where noted.  Strings are surrounded with double quotes,
+'"', and the maximum length of a string is 144 characters.  The '\n' is
+for a newline and '\t' is for a tab.  Backslashes are escaped with
+another backslash, '\\'.  If a line begins with a percent sign, '%',
+then it is a comment.
+
+'preamble'
+     Preamble of the output file.  Defines the context in which the
+     index is formatted.  Default: '"\\begin{theindex}\n"'.
+
+'postamble'
+     Postamble of the output file.  Default: '"\n\n\\end{theindex}\n"'.
+
+'group_skip'
+     Traditionally index items are broken into groups, typically a group
+     for entries starting with 'a', etc.  This specifier gives what is
+     inserted when a new group begins.  Default: '"\n\n \\indexspace\n"'
+     ('\indexspace' is a rubber length with default value '10pt plus5pt
+     minus3pt').
+
+'lethead_flag'
+     An integer.  It governs what is inserted for a new group or letter.
+     If it is 0 (which is the default) then other than 'group_skip'
+     nothing will be inserted before the group.  If it is is positive
+     then at a new letter the 'lethead_prefix' and 'lethead_suffix' will
+     be inserted, with that letter in uppercase between them.  If it is
+     negative then what will be inserted is the letter in lowercase.
+     The default is 0.
+
+'lethead_prefix'
+     If a new group begins with a different letter then this is the
+     prefix inserted before the new letter header.  Default: '""'
+
+'lethead_suffix'
+     If a group begins with a different letter then this is the suffix
+     inserted after the new letter header.  Default: '""'.
+
+'item_0'
+     What is put between two level 0 items.  Default: '"\n \\item "'.
+
+'item_1'
+     Put between two level 1 items.  Default: '"\n \\subitem "'.
+
+'item_2'
+     put between two level 2 items.  Default: '"\n \\subsubitem "'.
+
+'item_01'
+     What is put between a level 0 item and a level 1 item.  Default:
+     '"\n \\subitem "'.
+
+'item_x1'
+     What is put between a level 0 item and a level 1 item in the case
+     that the level 0 item doesn't have any page numbers (as in
+     '\index{aaa|see{bbb}}').  Default: '"\n \\subitem "'.
+
+'item_12'
+     What is put between a level 1 item and a level 2 item.  Default:
+     '"\n \\subsubitem "'.
+
+'item_x2'
+     What is put between a level 1 item and a level 2 item, if the
+     level 1 item doesn't have page numbers.  Default: '"\n \\subsubitem
+     "'.
+
+'delim_0'
+     Delimiter put between a level 0 key and its first page number.
+     Default: a comma followed by a blank, '", "'.
+
+'delim_1'
+     Delimiter put between a level 1 key and its first page number.
+     Default: a comma followed by a blank, '", "'.
+
+'delim_2'
+     Delimiter between a level 2 key and its first page number.
+     Default: a comma followed by a blank, '", "'.
+
+'delim_n'
+     Delimiter between two page numbers for the same key (at any level).
+     Default: a comma followed by a blank, '", "'.
+
+'delim_r'
+     What is put between the starting and ending page numbers of a
+     range.  Default: '"--"'.
+
+'line_max'
+     An integer.  Maximum length of an index entry's line in the output,
+     beyond which the line wraps.  Default: '72'.
+
+'indent_space'
+     What is inserted at the start of a wrapped line.  Default:
+     '"\t\t"'.
+
+'indent_length'
+     A number.  The length of the wrapped line indentation.  The default
+     'indent_space' is two tabs and each tab is eight spaces so the
+     default here is '16'.
+
+'page_precedence'
+     A document may have pages numbered in different ways.  For example,
+     a book may have front matter pages numbered in lowercase roman
+     while main matter pages are in arabic.  This string specifies the
+     order in which they will appear in the index.  The 'makeindex'
+     command supports five different types of numerals: lowercase roman
+     'r', and numeric or arabic 'n', and lowercase alphabetic 'a', and
+     uppercase roman 'R', and uppercase alphabetic 'A'.  Default:
+     '"rnaRA"'.
+
+   There are a number of other programs that do the job 'makeindex'
+does.  One is 'xindy', which does internationalization and can process
+indexes for documents marked up using LaTeX and a number of other
+languages.  It is is highly configurable, both in markup terms and in
+terms of the collating order of the text.  See the documentation on
+CTAN.
+
+
+File: latex2e.info,  Node: \printindex,  Prev: makeindex,  Up: Indexes
+
+25.2.3 '\printindex'
+--------------------
+
+Synopsis:
+
+     \printindex
+
+   Place the index into the output.
+
+   To get an index you must first include
+'\usepackage{makeidx}\makeindex' in the document preamble and compile
+the document, then run the system command 'makeindex', and then compile
+the document again.  *Note Indexes:: for further discussion and an
+example of the use of '\printindex'.
+
+
+File: latex2e.info,  Node: Glossaries,  Prev: Indexes,  Up: Front/back matter
+
+25.3 Glossaries
+===============
+
+Synopsis:
+
+     \usepackage{glossaries} \makeglossaries
+       ...
+     \newglossaryentry{LABEL}{SETTINGS}
+       ...
+     \gls{LABEL}.
+       ...
+     \printglossaries
+
+   The 'glossaries' package allows you to make glossaries, including
+multiple glossaries, as well as lists of acronyms.
+
+   To get the output from this example, compile the document (for
+instance with 'pdflatex filename'), then run the command line command
+'makeglossaries filename', and then compile the document again.
+
+     \documentclass{...}
+     \usepackage{glossaries} \makeglossaries
+     \newglossaryentry{tm}{%
+       name={Turing machine},
+       description={A model of a machine that computes.  The model is simple
+                    but can compute anything any existing device can compute.
+                    It is the standard model used in Computer Science.},
+       }
+     \begin{document}
+     Everything begins with the definition of a \gls{tm}.
+       ...
+     \printglossaries
+     \end{document}
+
+That gives two things.  In the main text it outputs '... definition of a
+Turing machine'.  In addition, in a separate sectional unit headed
+'Glossary' there appears a description list.  In boldface it says
+'Turing machine' and the rest of the item says in normal type 'A model
+of a machine ... Computer Science'.
+
+   The command '\makeglossary' opens the file that will contain the
+entry information, 'ROOT-FILE.glo'.  Put the '\printglossaries' command
+where you want the glossaries to appear in your document.
+
+   The 'glossaries' package is very powerful.  For instance, besides the
+commands '\newglossaryentry' and '\gls', there are similar commands for
+a list of acronyms.  See the package documentations on CTAN.
+
+* Menu:
+
+* \newglossaryentry::  Declare the content of a glossary entry.
+* \gls::               Give a page reference for a glossary entry.
+
+
+File: latex2e.info,  Node: \newglossaryentry,  Next: \gls,  Up: Glossaries
+
+25.3.1 '\newglossaryentry'
+--------------------------
+
+Synopsis, one of:
+
+     \newglossaryentry{LABEL}
+     {
+       name={NAME},
+       description={DESCRIPTION},
+       OTHER OPTIONS, ...
+     }
+
+   or
+
+     \longnewglossaryentry{LABEL}
+     {
+       name={NAME},
+       OTHER OPTIONS ...,
+     }
+     {DESCRIPTION}
+
+   Declare a new entry for a glossary.  The LABEL must be unique for the
+document.  The settings associated with the label are pairs:
+'KEY=VALUE'.
+
+   This puts the blackboard bold symbol for the real numbers U+211D in
+the glossary.
+
+     \newglossaryentry{R}
+     {
+       name={\ensuremath{\mathbb{R}}},
+       description={the real numbers},
+     }
+
+   Use the second command form if the DESCRIPTION spans more than one
+paragraph.
+
+   For a full list of KEYs see the package documentation on CTAN but
+here are a few.
+
+'name'
+     (Required.)  The word, phrase, or symbol that you are defining.
+
+'description'
+     (Required.)  The description that will appear in the glossary.  If
+     this has more than one paragraph then you must use the second
+     command form given in the synopsis.
+
+'plural'
+     The plural form of NAME.  Refer to the plural form using '\glspl'
+     or '\Glspl' (*note \gls::).
+
+'sort'
+     How to place this entry in the list of entries that the glossary
+     holds.
+
+'symbol'
+     A symbol, such as a mathematical symbol, besides the name.
+
+
+File: latex2e.info,  Node: \gls,  Prev: \newglossaryentry,  Up: Glossaries
+
+25.3.2 '\gls'
+-------------
+
+Synopsis, one of:
+
+     \gls{LABEL}
+     \glspl{LABEL}
+     \Gls{LABEL}
+     \Glspl{LABEL}
+
+   Refer to a glossary entry.  The entries are declared with
+'\newglossaryentry' (*note \newglossaryentry::).
+
+   This
+
+     \newglossaryentry{N}{%
+       name={the natural numbers},
+       description={The numbers $0$, $1$, $2$, $\ldots$\@},
+       symbol={\ensuremath{\mathbb{N}}},
+       }
+       ...
+     Consider \gls{N}.
+
+gives the output 'Consider the natural numbers'.
+
+   The second command form '\glspl{LABEL}' produces the plural of NAME
+(by default it tries adding an 's').  The third form capitalizes the
+first letter of NAME, as does the fourth form, which also takes the
+plural.
+
+
 File: latex2e.info,  Node: Letters,  Next: Terminal input/output,  Prev: Front/back matter,  Up: Top
 
 26 Letters
@@ -10178,7 +14155,7 @@
 Synopsis:
 
      \documentclass{letter}
-     \address{SENDER ADDRESS}
+     \address{SENDERS ADDRESS}   % return address
      \signature{SENDER NAME}
      \begin{document}
      \begin{letter}{RECIPIENT ADDRESS}
@@ -10186,7 +14163,7 @@
        LETTER BODY
      \closing{CLOSING TEXT}
      \end{letter}
-     ...  more letters ...
+        ...
      \end{document}
 
    Produce one or more letters.
@@ -10193,11 +14170,10 @@
 
    Each letter is in a separate 'letter' environment, whose argument
 RECIPIENT ADDRESS often contains multiple lines separated with a double
-backslash ('\\').  For example, you might have:
+backslash, ('\\').  For example, you might have:
 
-      \begin{letter}{Mr. Joe Smith \\
-           2345 Princess St. \\
-           Edinburgh, EH1 1AA}
+      \begin{letter}{Ninon de l'Enclos \\
+                     l'h\^otel Sagonne}
         ...
       \end{letter}
 
@@ -10209,7 +14185,7 @@
 with the recipient address, often SENDER ADDRESS contains multiple lines
 separated by a double backslash ('\\').  LaTeX will put the SENDER NAME
 under the closing, after a vertical space for the traditional
-hand-written signature; it also can contain multiple lines.
+hand-written signature.
 
    Each 'letter' environment body begins with a required '\opening'
 command such as '\opening{Dear Madam or Sir:}'.  The LETTER BODY text is
@@ -10223,13 +14199,13 @@
 the Boss's Boss}'.  There's a similar '\encl' command for a list of
 enclosures.  And, you can add a postscript with '\ps'.
 
-   LaTeX's default is to indent the signature and the '\closing' above
-it by a length of '\longindentation'.  By default this is
-'0.5\textwidth'.  To make them flush left, put
-'\setlength{\longindentation}{0em}' in your preamble.
+   LaTeX's default is to indent the sender name and the closing above it
+by a length of '\longindentation'.  By default this is '0.5\textwidth'.
+To make them flush left, put '\setlength{\longindentation}{0em}' in your
+preamble.
 
    To set a fixed date use something like
-'\renewcommand{\today}{2015-Oct-12}'.  If put in your preamble then it
+'\renewcommand{\today}{1958-Oct-12}'.  If put in your preamble then it
 will apply to all the letters.
 
    This example shows only one 'letter' environment.  The three lines
@@ -10275,19 +14251,18 @@
 
      \address{SENDERS ADDRESS}
 
-   Specifies the return address as it appears on the letter and on the
+   Specify the return address, as it appears on the letter and on the
 envelope.  Separate multiple lines in SENDERS ADDRESS with a double
-backslash '\\'.
+backslash, '\\'.
 
    Because it can apply to multiple letters this declaration is often
 put in the preamble.  However, it can go anywhere, including inside an
 individual 'letter' environment.
 
-   This command is optional: without the '\address' declaration the
-letter is formatted with some blank space on top, for copying onto
-pre-printed letterhead paper.  (*Note Overview::, for details on your
-local implementation.)  With the '\address' declaration, it is formatted
-as a personal letter.
+   This command is optional: if you do not use it then the letter is
+formatted with some blank space on top, for copying onto pre-printed
+letterhead paper.  If you do use the '\address' declaration then it is
+formatted as a personal letter.
 
    Here is an example.
 
@@ -10302,13 +14277,13 @@
 
 Synopsis:
 
-     \cc{FIRST NAME \\
+     \cc{NAME0 \\
           ... }
 
    Produce a list of names to which copies of the letter were sent.
 This command is optional.  If it appears then typically it comes after
-'\closing'.  Separate multiple lines with a double backslash '\\', as
-in:
+'\closing'.  Put the names on different lines by separating them with a
+double backslash, '\\', as in:
 
      \cc{President \\
          Vice President}
@@ -10323,8 +14298,9 @@
 
      \closing{TEXT}
 
-   Usually at the end of a letter, above the handwritten signature,
-there is a '\closing' (although this command is optional).  For example,
+   Produce the letter's closing.  This is optional, but usual.  It
+appears at the end of a letter, above a handwritten signature.  For
+example:
 
      \closing{Regards,}
 
@@ -10341,10 +14317,10 @@
 
    Produce a list of things included with the letter.  This command is
 optional; when it is used, it typically is put after '\closing'.
-Separate multiple lines with a double backslash '\\'.
+Separate multiple lines with a double backslash, '\\'.
 
      \encl{License \\
-            Passport }
+           Passport}
 
 
 File: latex2e.info,  Node: \location,  Next: \makelabels,  Prev: \encl,  Up: Letters
@@ -10356,8 +14332,8 @@
 
      \location{TEXT}
 
-   The TEXT appears centered at the bottom of the each page.  It only
-appears if the page style is 'firstpage'.
+   The TEXT appears centered at the bottom of the page.  It only appears
+if the page style is 'firstpage'.
 
 
 File: latex2e.info,  Node: \makelabels,  Next: \name,  Prev: \location,  Up: Letters
@@ -10367,23 +14343,58 @@
 
 Synopsis:
 
-     \makelabels
+     \makelabels   % in preamble
 
-   Create a sheet of address labels from the recipient addresses, one
-for each letter.  This sheet will be output before the letters, with the
-idea that you can copy it to a sheet of peel-off labels.  This command
-goes in the preamble.
+   Optional, for a document that contains 'letter' environments.  If you
+just put '\makelabels' in the preamble then at the end of the document
+you will get a sheet with labels for all the recipients, one for each
+letter environment, that you can copy to a sheet of peel-off address
+labels.
 
    Customize the labels by redefining the commands '\startlabels',
-'\mlabel', and '\returnaddress' in the preamble.  The command
-'\startlabels' sets the width, height, number of columns, etc., of the
-page onto which the labels are printed.  The command '\mlabel{SENDER
-ADDRESS}{RECIPIENT ADDRESS}' produces the two labels (or one, if you
-choose to ignore the SENDER ADDRESS).  The SENDER ADDRESS is the value
-returned by the macro '\returnaddress' while RECIPIENT ADDRESS is the
-value passed in the argument to the 'letter' environment.  By default
-'\mlabel' ignores the first argument, the SENDER ADDRESS.
+'\mlabel', and '\returnaddress' (and perhaps '\name') in the preamble.
+The command '\startlabels' sets the width, height, number of columns,
+etc., of the page onto which the labels are printed.  The command
+'\mlabel{RETURN ADDRESS}{RECIPIENT ADDRESS}' produces the two labels (or
+one, if you choose to ignore the RETURN ADDRESS) for each letter
+environment.  The first argument, RETURN ADDRESS, is the value returned
+by the macro '\returnaddress'.  The second argument, RECIPIENT ADDRESS,
+is the value passed in the argument to the 'letter' environment.  By
+default '\mlabel' ignores the first argument, the RETURN ADDRESS,
+causing the default behavior described in the prior paragraph.
 
+   This illustrates customization.  Its output includes a page with two
+columns having two labels each.
+
+     \documentclass{letter}
+     \renewcommand*{\returnaddress}{Fred McGuilicuddy \\
+                                    Oshkosh, Mineola 12305}
+     \newcommand*\originalMlabel{}
+     \let\originalMlabel\mlabel
+     \def\mlabel#1#2{\originalMlabel{}{#1}\originalMlabel{}{#2}}
+     \makelabels
+       ...
+     \begin{document}
+     \begin{letter}{A Einstein \\
+                    112 Mercer Street \\
+                    Princeton, New Jersey, USA 08540}
+       ...
+     \end{letter}
+     \begin{letter}{K G\"odel \\
+                    145 Linden Lane \\
+                    Princeton, New Jersey, USA 08540}
+       ...
+     \end{letter}
+     \end{document}
+
+The first column contains the return address twice.  The second column
+contains the address for each recipient.
+
+   The package 'envlab' makes formatting the labels easier, with
+standard sizes already provided.  The preamble lines
+'\usepackage[personalenvelope]{envlab}' and '\makelabels' are all that
+you need to print envelopes.
+
 
 File: latex2e.info,  Node: \name,  Next: \opening,  Prev: \makelabels,  Up: Letters
 
@@ -10394,8 +14405,8 @@
 
      \name{NAME}
 
-   Sender's name, used for printing on the envelope together with the
-return address.
+   Optional.  Sender's name, used for printing on the envelope together
+with the return address.
 
 
 File: latex2e.info,  Node: \opening,  Next: \ps,  Prev: \name,  Up: Letters
@@ -10405,11 +14416,10 @@
 
 Synopsis:
 
-     \opening{TEXT}
+     \opening{SALUTATION}
 
-   This command is required.  It starts a letter, following the
-'\begin{letter}{...}'.  The mandatory argument TEXT is the text that
-starts your letter.  For instance:
+   Required.  Follows the '\begin{letter}{...}'.  The argument
+SALUTATION is mandatory.  For instance:
 
      \opening{Dear John:}
 
@@ -10442,24 +14452,30 @@
    The sender's name.  This command is optional, although its inclusion
 is usual.
 
-   The argument text appears at the end of the letter, after the closing
-and after a vertical space for the traditional hand-written signature.
-Separate multiple lines with a double backslash '\\'.  For example:
+   The argument text appears at the end of the letter, after the
+closing.  LaTeX leaves some vertical space for a handwritten signature.
+Separate multiple lines with a double backslash, '\\'.  For example:
 
      \signature{J Fred Muggs \\
                 White House}
 
    LaTeX's default for the vertical space from the '\closing' text down
-to the '\signature' text is '6\medskipamount', which is six times 0.7em.
+to the '\signature' text is '6\medskipamount', which is six times
+'\medskipamount' (where '\medskipamount' is equal to a '\parskip', which
+in turn is defined by default here to 0.7em).
 
    This command is usually in the preamble, to apply to all the letters
 in the document.  To have it apply to one letter only, put it inside a
 'letter' environment and before the '\closing'.
 
-   You can include a graphic in the signature, for instance with
-'\signature{\vspace{-6\medskipamount}\includegraphics{sig.png}\\ My
-name}' (this requires writing '\usepackage{graphicx}' in the preamble).
+   You can include a graphic in the signature as here.
 
+     \signature{\vspace{-6\medskipamount}\includegraphics{sig.png}\\
+                  My name}
+
+For this you must put '\usepackage{graphicx}' in the preamble (*note
+Graphics::).
+
 
 File: latex2e.info,  Node: \telephone,  Prev: \signature,  Up: Letters
 
@@ -10489,39 +14505,87 @@
 
 File: latex2e.info,  Node: \typein,  Next: \typeout,  Up: Terminal input/output
 
-27.1 '\typein[CMD]{MSG}'
-========================
+27.1 '\typein'
+==============
 
-Synopsis:
+Synopsis, one of:
 
-     \typein[\CMD]{MSG}
+     \typein{PROMPT-MSG}
+     \typein[CMD]{PROMPT-MSG}
 
-   '\typein' prints MSG on the terminal and causes LaTeX to stop and
-wait for you to type a line of input, ending with return.  If the
-optional '\CMD' argument is omitted, the typed input is processed as if
-it had been included in the input file in place of the '\typein'
-command.  If the '\CMD' argument is present, it must be a command name.
-This command name is then defined or redefined to be the typed input.
+   Print PROMPT-MSG on the terminal and cause LaTeX to stop and wait for
+you to type a line of input.  This line of input ends when you hit the
+return key.
 
+   For example, this
+
+     As long as I live I shall never forget \typein{Enter student name:}
+
+coupled with this command line interaction
+
+     Enter student name:
+
+     \@typein=Aphra Behn
+
+gives the output '... never forget Aphra Behn'.
+
+   The first command version, '\typein{PROMPT-MSG}', causes the input
+you typed to be processed as if it had been included in the input file
+in place of the '\typein' command.
+
+   In the second command version the optional argument 'CMD' argument
+must be a command name -- it must begin with a backslash, \.  This
+command name is then defined or redefined to be the input that you
+typed.  For example, this
+
+     \typein[\student]{Enter student name:}
+     \typeout{Recommendation for \student .}
+
+gives this output on the command line,
+
+     Enter student name:
+
+     \student=John Dee
+     Recommendation for John Dee.
+
+where the user has entered 'John Dee.'
+
 
 File: latex2e.info,  Node: \typeout,  Prev: \typein,  Up: Terminal input/output
 
-27.2 '\typeout{MSG}'
-====================
+27.2 '\typeout'
+===============
 
 Synopsis:
 
      \typeout{MSG}
 
-   Prints 'msg' on the terminal and in the 'log' file.  Commands in
-'msg' that are defined with '\newcommand' or '\renewcommand' (among
-others) are replaced by their definitions before being printed.
+   Print 'msg' on the terminal and in the 'log' file.
 
+   This
+
+     \newcommand{\student}{John Dee}
+     \typeout{Recommendation for \student .}
+
+outputs 'Recommendation for John Dee'.  Like what happens here with
+'\student', commands that are defined with '\newcommand' or
+'\renewcommand' (among others) are replaced by their definitions before
+being printed.
+
    LaTeX's usual rules for treating multiple spaces as a single space
-and ignoring spaces after a command name apply to 'msg'.  A '\space'
-command in 'msg' causes a single space to be printed, independent of
-surrounding spaces.  A '^^J' in 'msg' prints a newline.
+and ignoring spaces after a command name apply to 'msg'.  As above, use
+the command '\space' to get a single space, independent of surrounding
+spaces.  Use '^^J' to get a newline.  Get a percent character with
+'\csname @percentchar\endcsname'.
 
+   This command can be useful for simple debugging, as here:
+
+     \newlength{\jhlength}
+     \setlength{\jhlength}{5pt}
+     \typeout{The length is \the\jhlength.}
+
+produces on the command line 'The length is 5.0pt'.
+
 
 File: latex2e.info,  Node: Command line,  Next: Document templates,  Prev: Terminal input/output,  Up: Top
 
@@ -10528,27 +14592,229 @@
 28 Command line
 ***************
 
-The input file specification indicates the file to be formatted; TeX
-uses '.tex' as a default file extension.  If you omit the input file
-entirely, TeX accepts input from the terminal.  You can also specify
-arbitrary LaTeX input by starting with a backslash.  For example, this
-processes 'foo.tex' without pausing after every error:
+Synopsis (from a terminal command line):
 
-     latex '\nonstopmode\input foo.tex'
+     pdflatex OPTIONS ARGUMENT
 
-   With many, but not all, implementations, command-line options can
-also be specified in the usual Unix way, starting with '-' or '--'.  For
-a list of those options, try 'latex --help'.
+   Run LaTeX on ARGUMENT.  In place of 'pdflatex' you can also use
+'xelatex', or 'lualatex', or 'dviluatex', or 'latex'.
 
-   If LaTeX stops in the middle of the document and gives you a '*'
-prompt, it is waiting for input.  You can type '\stop' (and return) and
-it will prematurely end the document.
+   For example, this will run LaTeX on the file 'thesis.tex', creating
+the output 'thesis.pdf'.
 
-   *Note TeX engines::, for other system commands invoking LaTeX.
+     pdflatex thesis
 
+Note that '.tex' is the default file extension.
+
+   pdfTeX is a development of the original TeX program, as are XeTeX and
+LuaTeX (*note TeX engines::).  They are completely backward compatible.
+But the original program had a custom output format, DVI, while the
+newer ones can output directly to PDF. This allows them to take
+advantage of the extra features in PDF such as hyperlinks, support for
+modern image formats such as JPG and PNG, and ubiquitous viewing
+programs.  In short, if you run 'pdflatex' or 'xelatex' or 'lualatex'
+then you will by default get PDF and have access to all its modern
+features.  If you run 'latex', or 'dvilualatex', then you will get DVI.
+The description here assumes pdfLaTeX.
+
+   *Note Command line options::, for a selection of the most useful
+command line options.  As to ARGUMENT, the usual case is that it does
+not begin with a backslash, so the system takes it to be the name of a
+file and it compiles that file.  If ARGUMENT begins with a backslash
+then the system will interpret it as a line of LaTeX input, which can be
+used for special effects (*note Command line input::).
+
+   If you gave no arguments or options then 'pdflatex' prompts for input
+from the terminal.  You can escape from this by entering '<control>-D'.
+
+   If LaTeX finds an error in your document then by default it stops and
+asks you about it.  *Note Recovering from errors:: for an outline of
+what to do.
+
+* Menu:
+
+* Command line options::     Read text from the terminal.
+* Command line input::       Write text to the terminal.
+* Recovering from errors::   When something goes wrong.
+
 
-File: latex2e.info,  Node: Document templates,  Next: Concept Index,  Prev: Command line,  Up: Top
+File: latex2e.info,  Node: Command line options,  Next: Command line input,  Up: Command line
 
+28.1 Command line options
+=========================
+
+These are the command-line options relevant to ordinary document
+authoring.  For a full list, try running 'latex --help' from the command
+line.
+
+   With many implementations you can specify command line options by
+prefixing them with '-' or '--'.  This is the case for both TeX Live
+(and MacTeX) and MiKTeX.  We will use both conventions interchangeably.
+
+'-version'
+     Show the current version, like 'pdfTeX 3.14159265-2.6-1.40.16 (TeX
+     Live 2015/Debian)' along with a small amount of additional
+     information, and exit.
+
+'-help'
+     Give a brief usage message that is useful as a prompt and exit.
+
+'-interaction=MODE'
+     TeX compiles a document in one of four interaction modes:
+     'batchmode', 'nonstopmode', 'scrollmode', 'errorstopmode'.  In
+     "errorstop mode" (the default), TeX stops at each error and asks
+     for user intervention.  In "batch mode" it prints nothing on the
+     terminal, errors are scrolled as if the user hit '<return>' at
+     every error, and missing files cause the job to abort.  In "nonstop
+     mode", diagnostic message appear on the terminal but as in batch
+     mode there is no user interaction.  In "scroll mode", TeX only
+     stops for missing files or keyboard input.
+
+     For instance, starting LaTeX with this command line
+
+          pdflatex -interaction=batchmode FILENAME
+
+     eliminates most terminal output.
+
+'-jobname=STRING'
+     Set the value of TeX's 'jobname' to the string.  The log file and
+     output file will then be named 'STRING.log' and 'STRING.pdf'.
+
+     When you run 'pdflatex OPTIONS ARGUMENT', if ARGUMENT does not
+     start with a backslash then TeX considers it the name of a file to
+     input.  Otherwise it waits for the first '\input' instruction and
+     the name of the input file will be the job name.  This is used to
+     name the log file the output file.  This option overrides that
+     process and directly specifies the name.  *Note Command line
+     input:: for an example of its use.
+
+'-output-directory=DIRECTORY'
+     Write files in the directory DIRECTORY.  It must already exist.
+
+'shell-escape'
+'no-shell-escape'
+'enable-write18'
+'disable-write18'
+     Enable or disable '\write18{SHELL COMMAND}'.  The first two options
+     are for with TeX Live or MacTeX while the second two are for
+     MiKTeX.
+
+     Sometimes you want to run external system commands from inside a
+     LaTeX file.  For instance the package 'sagetex' allows you to have
+     the mathematics software system Sage do calculations or draw graphs
+     and then incorporate that output in your document.  For this TeX
+     provides the '\write18' command.
+
+     But with this functionality enabled, security issues could happen
+     if you compiled a LaTeX file from the Internet.  By default
+     '\write18' is disabled.  (More precisely, by default TeX Live,
+     MacTeX, and MiKTeX only allow the execution of a limited number of
+     TeX-related programs, which they distribute.)
+
+     If you invoke LaTeX with the option 'no-shell-escape', and in your
+     document you call '\write18{ls -l}', then you do not get an error
+     but the log file says 'runsystem(ls -l)...disabled'.
+
+'-halt-on-error'
+     Stop processing at the first error.
+
+'-file-line-error'
+'-no-file-line-error'
+     Enable or disable 'FILENAME:LINENO:ERROR'-style error messages.
+     These are only available with TeX Live or MacTeX.
+
+
+File: latex2e.info,  Node: Command line input,  Next: Recovering from errors,  Prev: Command line options,  Up: Command line
+
+28.2 Command line input
+=======================
+
+As part of the command line invocation 'pdflatex OPTIONS ARGUMENT' you
+can specify arbitrary LaTeX input by starting ARGUMENT with a backslash.
+This allows you to do some special effects.
+
+   For example, this file (which uses the 'hyperref' package for
+hyperlinks) can produce two kinds of output, one for paper and one for a
+PDF.
+
+     \ifdefined\paperversion        % in preamble
+     \newcommand{\urlcolor}{black}
+     \else
+     \newcommand{\urlcolor}{blue}
+     \fi
+     \usepackage[colorlinks=true,urlcolor=\urlcolor]{hyperref}
+       ...
+     \href{https://www.ctan.org}{CTAN}  % in body
+       ...
+
+Compiling this document 'book.tex' with the command line 'pdflatex test'
+will give the 'CTAN' link in blue.  But compiling it with 'pdflatex
+"\def\paperversion{}\input test.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.)
+
+   In a similar way, from the single file 'main.tex' you can compile two
+different versions.
+
+     pdflatex -jobname=students "\def\student{}\input{main}"
+     pdflatex -jobname=teachers "\def\teachers{}\input{main}"
+
+The 'jobname' option is there because otherwise both files would be
+called 'main.pdf' and the second would overwrite the first.
+
+   A final example.  This loads the package 'graphicx' with the option
+'draft'
+
+     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
+otherwise the output file would be 'graphicx.pdf', as '\RequirePackage'
+does an '\input' of its own.)
+
+
+File: latex2e.info,  Node: Recovering from errors,  Prev: Command line input,  Up: Command line
+
+28.3 Recovering from errors
+===========================
+
+If LaTeX finds an error in your document then it gives you an error
+message and prompts you with a question mark, '?'.  For instance,
+running LaTeX on this file
+
+     \newcommand{\NP}{\ensuremath{\textbf{NP}}}
+     The \PN{} problem is a million dollar one.
+
+causes it show this, and wait for input.
+
+     ! Undefined control sequence.
+     l.5 The \PN
+                {} problem is a million dollar one.
+     ?
+
+The simplest thing is to enter 'x' and '<return>' and fix the typo.  You
+could instead enter '?' and '<return>' to see other options.
+
+   There are two other error scenarios.  The first is that you forgot to
+include the '\end{document}' or misspelled it.  In this case LaTeX gives
+you a '*' prompt.  You can get back to the command line by typing
+'\stop' and '<return>'.
+
+   The last scenario is that you mistyped the file name.  For instance,
+instead of 'pdflatex test' you might type 'pdflatex tste'.
+
+     ! I can't find file `tste'.
+     <*> tste
+
+     (Press Enter to retry, or Control-D to exit)
+     Please type another input file name:
+
+The simplest thing is to enter '<Contol>' and 'd' (holding them down at
+the same time), and just fix the command line.
+
+
+File: latex2e.info,  Node: Document templates,  Next: Index,  Prev: Command line,  Up: Top
+
 Appendix A Document templates
 *****************************
 
@@ -10559,11 +14825,13 @@
 * Menu:
 
 * beamer template::
+* article template::
 * book template::
+* Larger book template::
 * tugboat template::
 
 
-File: latex2e.info,  Node: beamer template,  Next: book template,  Up: Document templates
+File: latex2e.info,  Node: beamer template,  Next: article template,  Up: Document templates
 
 A.1 'beamer' template
 =====================
@@ -10597,11 +14865,37 @@
 <http://robjhyndman.com/hyndsight/beamer/>.
 
 
-File: latex2e.info,  Node: book template,  Next: tugboat template,  Prev: beamer template,  Up: Document templates
+File: latex2e.info,  Node: article template,  Next: book template,  Prev: beamer template,  Up: Document templates
 
-A.2 'book' template
+A.2 'article' template
+======================
+
+\documentclass{article}
+\title{Article Class Template}
+\author{Alex Author}
+
+\begin{document}
+\maketitle
+
+\section{First section}
+Some text.
+
+\subsection{First section, first subsection}
+Additional text.
+
+\section{Second section}
+Some more text.
+\end{document}
+
+
+File: latex2e.info,  Node: book template,  Next: Larger book template,  Prev: article template,  Up: Document templates
+
+A.3 'book' template
 ===================
 
+This is a straightforward template for a book.  See *Note Larger book
+template:: for a more elaborate one.
+
 \documentclass{book}
 \title{Book Class Template}
 \author{Alex Author}
@@ -10620,9 +14914,62 @@
 \end{document}
 
 
-File: latex2e.info,  Node: tugboat template,  Prev: book template,  Up: Document templates
+File: latex2e.info,  Node: Larger book template,  Next: tugboat template,  Prev: book template,  Up: Document templates
 
-A.3 'tugboat' template
+A.4 Larger 'book' template
+==========================
+
+This is a more elaborate template for a book.  It has '\frontmatter',
+'\mainmatter', and '\backmatter' to control the typography of the three
+main areas of a book (*note \frontmatter & \mainmatter & \backmatter::).
+The book has a bibliography and an index.
+
+   Notable is that it uses '\include' and '\includeonly' (*note
+Splitting the input::).  While you are working on a chapter you can
+comment out all the other chapter entries from the argument to
+'\includeonly'.  That will speed up compilation without losing any
+information such as cross-references.  (Material that does not need to
+come on a new page is brought in with '\input' instead of '\include'.
+You don't get the cross-reference benefit this way.)
+
+\documentclass[titlepage]{book}
+\usepackage{makeidx}\makeindex
+
+\title{Book Class Template}
+\author{Alex Author}
+
+\includeonly{%
+  frontcover,
+  preface,
+  chap1,
+  ...
+  }
+\begin{document}
+\frontmatter
+\include{frontcover}
+  % maybe comment out while drafting:
+\maketitle \input{dedication} \input{copyright}
+\tableofcontents
+\include{preface}
+\mainmatter
+\include{chap1}
+...
+\appendix
+\include{appena}
+...
+\backmatter
+\bibliographystyle{apalike}
+\addcontentsline{toc}{chapter}{Bibliography}
+\bibliography
+\addcontentsline{toc}{chapter}{Index}
+\printindex
+\include{backcover}
+\end{document}
+
+
+File: latex2e.info,  Node: tugboat template,  Prev: Larger book template,  Up: Document templates
+
+A.5 'tugboat' template
 ======================
 
 'TUGboat' is the journal of the TeX Users Group,
@@ -10709,907 +15056,66 @@
 \end{document}
 
 
-File: latex2e.info,  Node: Concept Index,  Next: Command Index,  Prev: Document templates,  Up: Top
+File: latex2e.info,  Node: Index,  Prev: Document templates,  Up: Top
 
-Concept Index
-*************
+Index
+*****
 
  [index ]
 * Menu:
 
-* * prompt:                              Command line.        (line  18)
+* &:                                     tabular.             (line  32)
+* * prompt:                              Recovering from errors.
+                                                              (line  23)
 * *-form of environment commands:        \newenvironment & \renewenvironment.
-                                                              (line  14)
+                                                              (line  27)
 * *-form of sectioning commands:         Sectioning.          (line  31)
 * *-form, defining new commands:         \newcommand & \renewcommand.
-                                                              (line  14)
-* .glo file:                             Glossaries.          (line   8)
-* .idx file:                             Indexes.             (line   9)
-* .ind file:                             Indexes.             (line  23)
-* 'see' and 'see also' index entries:    Indexes.             (line  16)
-* abstracts:                             abstract.            (line   6)
-* accents:                               Accents.             (line   6)
-* accents, mathematical:                 Math accents.        (line   6)
-* accessing any character of a font:     Symbols by font position.
-                                                              (line   6)
-* acute accent:                          Accents.             (line  20)
-* acute accent, math:                    Math accents.        (line  11)
-* additional packages, loading:          Additional packages. (line   6)
-* ae ligature:                           Additional Latin letters.
-                                                              (line  16)
-* algorithm2e package:                   tabbing.             (line 144)
-* align environment, from amsmath:       eqnarray.            (line   6)
-* aligning equations:                    eqnarray.            (line   6)
-* alignment via tabbing:                 tabbing.             (line   6)
-* amsmath package:                       array.               (line  40)
-* amsmath package <1>:                   displaymath.         (line  22)
-* amsmath package, replacing eqnarray:   eqnarray.            (line   6)
-* appendix, creating:                    Sectioning.          (line  37)
-* aring:                                 Additional Latin letters.
-                                                              (line  12)
-* arrays, math:                          array.               (line   6)
-* arrow, left, in text:                  Text symbols.        (line 131)
-* arrow, right, in text:                 Text symbols.        (line 166)
-* ascender height:                       Text symbols.        (line  99)
-* ASCII circumflex, in text:             Text symbols.        (line  64)
-* ASCII tilde, in text:                  Text symbols.        (line  67)
-* asterisk, centered, in text:           Text symbols.        (line  70)
-* at clause, in font definitions:        \newfont.            (line  23)
-* author, for titlepage:                 \maketitle.          (line  12)
-* auxiliary file:                        Output files.        (line  33)
-* babel package:                         thebibliography.     (line  29)
-* babel package <1>:                     Accents.             (line   6)
-* background, colored:                   Colored pages.       (line   6)
-* backslash, in text:                    Text symbols.        (line  73)
-* bar, double vertical, in text:         Text symbols.        (line  79)
-* bar, vertical, in text:                Text symbols.        (line  76)
-* bar-over accent:                       Accents.             (line  29)
-* bar-over accent, math:                 Math accents.        (line  14)
-* bar-under accent:                      Accents.             (line  46)
-* basics of LaTeX:                       Overview.            (line   6)
-* beamer template and class:             beamer template.     (line   6)
-* beginning of document hook:            \AtBeginDocument.    (line   6)
-* bibliography format, open:             Document class options.
-                                                              (line  67)
-* bibliography, creating (automatically): Using BibTeX.       (line   6)
-* bibliography, creating (manually):     thebibliography.     (line   6)
-* bibTeX, using:                         Using BibTeX.        (line   6)
-* big circle symbols, in text:           Text symbols.        (line  82)
-* Big point:                             Units of length.     (line  20)
-* black boxes, omitting:                 Document class options.
-                                                              (line  53)
-* bold font:                             Font styles.         (line  71)
-* bold math:                             Font styles.         (line 130)
-* bold typewriter, avoiding:             description.         (line  34)
-* box, allocating new:                   \newsavebox.         (line   6)
-* box, colored:                          Colored boxes.       (line   6)
-* boxes:                                 Boxes.               (line   6)
-* brace, left, in text:                  Text symbols.        (line  85)
-* brace, right, in text:                 Text symbols.        (line  88)
-* breaking lines:                        Line breaking.       (line   6)
-* breaking pages:                        Page breaking.       (line   6)
-* breve accent:                          Accents.             (line  86)
-* breve accent, math:                    Math accents.        (line  17)
-* bug reporting:                         About this document. (line  21)
-* bullet symbol:                         Math symbols.        (line 114)
-* bullet, in text:                       Text symbols.        (line  91)
-* bulleted lists:                        itemize.             (line   6)
-* calligraphic letters for math:         Font styles.         (line  74)
-* cap height:                            Text symbols.        (line  99)
-* caron accent:                          Accents.             (line  97)
-* catcode:                               \makeatletter and \makeatother.
-                                                              (line  18)
-* category code, character:              \makeatletter and \makeatother.
-                                                              (line  18)
-* cc list, in letters:                   \cc.                 (line   6)
-* cedilla accent:                        Accents.             (line  51)
-* centered asterisk, in text:            Text symbols.        (line  70)
-* centered equations:                    Document class options.
-                                                              (line  57)
-* centered period, in text:              Text symbols.        (line 138)
-* centering text, declaration for:       \centering.          (line   6)
-* centering text, environment for:       center.              (line   6)
-* Centimeter:                            Units of length.     (line  24)
-* character category code:               \makeatletter and \makeatother.
-                                                              (line  18)
-* characters, accented:                  Accents.             (line   6)
-* characters, case:                      Upper and lower case.
-                                                              (line   6)
-* characters, non-English:               Additional Latin letters.
-                                                              (line   6)
-* characters, reserved:                  Reserved characters. (line   6)
-* characters, special:                   Reserved characters. (line   6)
-* check accent:                          Accents.             (line  97)
-* check accent, math:                    Math accents.        (line  20)
-* Cicero:                                Units of length.     (line  33)
-* circle symbol, big, in text:           Text symbols.        (line  82)
-* circled letter, in text:               Text symbols.        (line  94)
-* circumflex accent:                     Accents.             (line  33)
-* circumflex accent, math:               Math accents.        (line  32)
-* circumflex, ASCII, in text:            Text symbols.        (line  64)
-* citation key:                          \bibitem.            (line  12)
-* class and package commands:            Class and package commands.
-                                                              (line   6)
-* class and package difference:          Class and package construction.
-                                                              (line  15)
-* class and package structure:           Class and package structure.
-                                                              (line   6)
-* class file example:                    Class and package structure.
-                                                              (line  36)
-* class file layout:                     Class and package structure.
-                                                              (line   6)
-* class options:                         Document class options.
-                                                              (line   6)
-* class options <1>:                     Class and package structure.
-                                                              (line   6)
-* class options <2>:                     Class and package commands.
-                                                              (line  66)
-* classes of documents:                  Document classes.    (line   6)
-* closing letters:                       \closing.            (line   6)
-* closing quote:                         Text symbols.        (line  55)
-* code, typesetting:                     verbatim.            (line   6)
-* color:                                 Color.               (line   6)
-* color <1>:                             Define colors.       (line   6)
-* color <2>:                             Colored text.        (line   6)
-* color <3>:                             Colored boxes.       (line   6)
-* color <4>:                             Colored pages.       (line   6)
-* color models:                          Color models.        (line   6)
-* color package commands:                Commands for color.  (line   6)
-* color package options:                 Color package options.
-                                                              (line   6)
-* color, define:                         Define colors.       (line   6)
-* colored boxes:                         Colored boxes.       (line   6)
-* colored page:                          Colored pages.       (line   6)
-* colored text:                          Colored text.        (line   6)
-* command line:                          Command line.        (line   6)
-* command syntax:                        LaTeX command syntax.
-                                                              (line   6)
-* commands, class and package:           Class and package commands.
-                                                              (line   6)
-* commands, defining new ones:           \newcommand & \renewcommand.
-                                                              (line   6)
-* commands, defining new ones <1>:       \providecommand.     (line   6)
-* commands, document class:              Class and package construction.
-                                                              (line   6)
-* commands, graphics package:            Commands for graphics.
-                                                              (line   6)
-* commands, ignore spaces:               \ignorespaces & \ignorespacesafterend.
-                                                              (line   6)
-* commands, redefining:                  \newcommand & \renewcommand.
-                                                              (line   6)
-* commands, star-variants:               \@ifstar.            (line   6)
-* composite word mark, in text:          Text symbols.        (line  99)
-* computer programs, typesetting:        verbatim.            (line   6)
-* configuration, graphics package:       Graphics package configuration.
-                                                              (line   6)
-* contents file:                         Output files.        (line  43)
-* copyright symbol:                      Text symbols.        (line  12)
-* counters, a list of:                   Counters.            (line   6)
-* counters, defining new:                \newcounter.         (line   6)
-* counters, getting value of:            \value.              (line   6)
-* counters, printing:                    \alph \Alph \arabic \roman \Roman \fnsymbol.
-                                                              (line   6)
-* counters, setting:                     \setcounter.         (line   6)
-* creating pictures:                     picture.             (line   6)
-* creating tables:                       table.               (line   6)
-* credit footnote:                       \maketitle.          (line  22)
-* cross references:                      Cross references.    (line   6)
-* cross references, resolving:           Output files.        (line  33)
-* cross referencing with page number:    \pageref.            (line   6)
-* cross referencing, symbolic:           \ref.                (line   6)
-* currency, dollar:                      Text symbols.        (line 110)
-* currency, euro:                        Text symbols.        (line 119)
-* dagger, double, in text:               Text symbols.        (line 107)
-* dagger, in text:                       Text symbols.        (line  15)
-* dagger, in text <1>:                   Text symbols.        (line 104)
-* date, for titlepage:                   \maketitle.          (line  18)
-* date, today's:                         \today.              (line   6)
-* datetime package:                      \today.              (line  22)
-* define color:                          Define colors.       (line   6)
-* defining a new command:                \newcommand & \renewcommand.
-                                                              (line   6)
-* defining a new command <1>:            \providecommand.     (line   6)
-* defining new environments:             \newenvironment & \renewenvironment.
-                                                              (line   6)
-* defining new fonts:                    \newfont.            (line   6)
-* defining new theorems:                 \newtheorem.         (line   6)
-* definitions:                           Definitions.         (line   6)
-* description lists, creating:           description.         (line   6)
-* design size, in font definitions:      \newfont.            (line  23)
-* Didot point:                           Units of length.     (line  30)
-* dieresis accent:                       Accents.             (line  16)
-* difference between class and package:  Class and package construction.
-                                                              (line  15)
-* discretionary hyphenation:             \discretionary.      (line   6)
-* discretionary multiplication:          Math miscellany.     (line   7)
-* displaying quoted text with paragraph indentation: quotation and quote.
-                                                              (line   6)
-* displaying quoted text without paragraph indentation: quotation and quote.
-                                                              (line   6)
-* document class commands:               Class and package construction.
-                                                              (line   6)
-* document class options:                Document class options.
-                                                              (line   6)
-* document class, defined:               Starting and ending. (line  14)
-* document classes:                      Document classes.    (line   6)
-* document templates:                    Document templates.  (line   6)
-* dollar sign:                           Text symbols.        (line 110)
-* dot accent:                            Accents.             (line  25)
-* dot over accent, math:                 Math accents.        (line  26)
-* dot-over accent:                       Accents.             (line  25)
-* dot-under accent:                      Accents.             (line  55)
-* dotless i:                             Accents.             (line  63)
-* dotless i, math:                       Math accents.        (line  35)
-* dotless j:                             Accents.             (line  66)
-* dotless j, math:                       Math accents.        (line  38)
-* double angle quotation marks:          Text symbols.        (line  30)
-* double dagger, in text:                Text symbols.        (line  18)
-* double dagger, in text <1>:            Text symbols.        (line 107)
-* double dot accent, math:               Math accents.        (line  23)
-* double guillemets:                     Text symbols.        (line  30)
-* double left quote:                     Text symbols.        (line 144)
-* double low-9 quotation mark:           Text symbols.        (line  52)
-* double quote, straight base:           Text symbols.        (line 160)
-* double right quote:                    Text symbols.        (line 147)
-* double spacing:                        Low-level font commands.
-                                                              (line 118)
-* double vertical bar, in text:          Text symbols.        (line  79)
-* e-dash:                                Text symbols.        (line 116)
-* e-TeX:                                 TeX engines.         (line  12)
-* ellipsis:                              Text symbols.        (line  36)
-* em:                                    Units of length.     (line  38)
-* em-dash:                               Text symbols.        (line 113)
-* em-dash, three-quarters:               Text symbols.        (line 169)
-* em-dash, two-thirds:                   Text symbols.        (line 175)
-* emphasis:                              Font styles.         (line  59)
-* enclosure list:                        \encl.               (line   6)
-* end of document hook:                  \AtEndDocument.      (line   6)
-* ending and starting:                   Starting and ending. (line   6)
-* engines, TeX:                          TeX engines.         (line   6)
-* enlarge current page:                  \enlargethispage.    (line   6)
-* enumitem package:                      list.                (line  24)
-* environment:                           Starting and ending. (line  22)
-* environment, theorem-like:             \newtheorem.         (line   6)
-* environments:                          Environments.        (line   6)
-* environments, defining:                \newenvironment & \renewenvironment.
-                                                              (line   6)
-* EPS files:                             Graphics package configuration.
-                                                              (line   6)
-* EPS files <1>:                         \includegraphics.    (line   6)
-* equation number, cross referencing:    \ref.                (line   6)
-* equation numbers, left vs. right:      Document class options.
-                                                              (line  63)
-* equation numbers, omitting:            eqnarray.            (line  41)
-* equations, aligning:                   eqnarray.            (line   6)
-* equations, environment for:            equation.            (line   6)
-* equations, flush left vs. centered:    Document class options.
-                                                              (line  57)
-* es-zet German letter:                  Additional Latin letters.
-                                                              (line  52)
-* eth, Icelandic letter:                 Additional Latin letters.
-                                                              (line  20)
-* etoolbox package:                      Class and package commands.
-                                                              (line 110)
-* euro symbol:                           Text symbols.        (line 119)
-* ex:                                    Units of length.     (line  38)
-* exclamation point, upside-down:        Text symbols.        (line 122)
-* exponent:                              Subscripts & superscripts.
-                                                              (line   6)
-* extended Latin:                        Additional Latin letters.
-                                                              (line   6)
-* external files, writing:               filecontents.        (line   6)
-* families, of fonts:                    Low-level font commands.
-                                                              (line  21)
-* fancyvrb package:                      tabbing.             (line 144)
-* feminine ordinal symbol:               Text symbols.        (line 135)
-* figure number, cross referencing:      \ref.                (line   6)
-* figures, footnotes in:                 minipage.            (line  21)
-* figures, inserting:                    figure.              (line   6)
-* file, root:                            Splitting the input. (line   9)
-* fixed-width font:                      Font styles.         (line  92)
-* flafter package:                       Floats.              (line  82)
-* float package:                         Floats.              (line  52)
-* float page:                            Floats.              (line  58)
-* flush left equations:                  Document class options.
-                                                              (line  57)
-* flushing floats and starting a page:   \clearpage.          (line   6)
-* font catalogue:                        Low-level font commands.
-                                                              (line  21)
-* font commands, low-level:              Low-level font commands.
-                                                              (line   6)
-* font size:                             Low-level font commands.
-                                                              (line 101)
-* font sizes:                            Font sizes.          (line   6)
-* font styles:                           Font styles.         (line   6)
-* font symbols, by number:               Symbols by font position.
-                                                              (line   6)
-* fonts:                                 Fonts.               (line   6)
-* fonts, new commands for:               \newfont.            (line   6)
-* footer style:                          \pagestyle.          (line   6)
-* footer, parameters for:                Page layout parameters.
-                                                              (line   6)
-* footmisc package:                      Footnotes in section headings.
-                                                              (line  10)
-* footnote number, cross referencing:    \ref.                (line   6)
-* footnote parameters:                   Footnote parameters. (line   6)
-* footnotes in figures:                  minipage.            (line  21)
-* footnotes, creating:                   Footnotes.           (line   6)
-* Footnotes, in a minipage:              \footnote.           (line  35)
-* Footnotes, in a table:                 Footnotes in a table.
-                                                              (line   6)
-* footnotes, in section headings:        Footnotes in section headings.
-                                                              (line   6)
-* footnotes, symbols instead of numbers: \footnote.           (line  23)
-* formulas, environment for:             equation.            (line   6)
-* formulas, math:                        Math formulas.       (line   6)
-* forward reference:                     Cross references.    (line  22)
-* forward references, resolving:         Output files.        (line  33)
-* fragile commands:                      \protect.            (line   6)
-* French quotation marks:                Text symbols.        (line  30)
-* functions, math:                       Math functions.      (line   6)
-* geometry package:                      Document class options.
-                                                              (line  40)
-* geometry package <1>:                  Document class options.
-                                                              (line  44)
-* global options:                        Document class options.
-                                                              (line   6)
-* global options <1>:                    Additional packages. (line  15)
-* glossaries:                            Glossaries.          (line   6)
-* glossary package:                      Glossaries.          (line  15)
-* glue register, plain TeX:              \newlength.          (line   6)
-* graphics:                              Graphics.            (line   6)
-* graphics <1>:                          Graphics package configuration.
-                                                              (line   6)
-* graphics <2>:                          \includegraphics.    (line   6)
-* graphics package:                      Graphics.            (line   6)
-* graphics package <1>:                  Graphics package configuration.
-                                                              (line   6)
-* graphics package <2>:                  \includegraphics.    (line   6)
-* graphics package commands:             Commands for graphics.
-                                                              (line   6)
-* graphics package options:              Graphics package options.
-                                                              (line   6)
-* graphics packages:                     \line.               (line  13)
-* graphics, resizing:                    \scalebox.           (line   6)
-* graphics, resizing <1>:                \resizebox.          (line   6)
-* graphics, scaling:                     \scalebox.           (line   6)
-* graphics, scaling <1>:                 \resizebox.          (line   6)
-* grave accent:                          Accents.             (line  37)
-* grave accent, math:                    Math accents.        (line  29)
-* greater than symbol, in text:          Text symbols.        (line 125)
-* greek letters:                         Math symbols.        (line   6)
-* group, and environments:               Environments.        (line  18)
-* ha'c<ek accent, math:                  Math accents.        (line  20)
-* hacek accent:                          Accents.             (line  97)
-* hat accent:                            Accents.             (line  33)
-* hat accent, math:                      Math accents.        (line  32)
-* header style:                          \pagestyle.          (line   6)
-* header, parameters for:                Page layout parameters.
-                                                              (line   6)
-* hello, world:                          Starting and ending. (line   6)
-* here, putting floats:                  Floats.              (line  52)
-* hungarian umlaut accent:               Accents.             (line  59)
-* hyphenation, defining:                 \hyphenation.        (line   6)
-* hyphenation, discretionary:            \discretionary.      (line   6)
-* hyphenation, forcing:                  \- (hyphenation).    (line   6)
-* hyphenation, preventing:               \mbox.               (line   6)
-* Icelandic eth:                         Additional Latin letters.
-                                                              (line  20)
-* Icelandic thorn:                       Additional Latin letters.
-                                                              (line  56)
-* ij letter, Dutch:                      Additional Latin letters.
-                                                              (line  32)
-* implementations of TeX:                TeX engines.         (line   6)
-* importing graphics:                    \includegraphics.    (line   6)
-* in-line formulas:                      math.                (line   6)
-* including graphics:                    \includegraphics.    (line   6)
-* indent, forcing:                       \indent.             (line   6)
-* indent, suppressing:                   \noindent.           (line   6)
-* indentation of paragraphs, in minipage: minipage.           (line  17)
-* index entries, 'see' and 'see also':   Indexes.             (line  16)
-* indexes:                               Indexes.             (line   6)
-* infinite horizontal stretch:           \hfill.              (line   6)
-* infinite vertical stretch:             \vfill.              (line   6)
-* input file:                            Splitting the input. (line   6)
-* input/output, to terminal:             Terminal input/output.
-                                                              (line   6)
-* inserting figures:                     figure.              (line   6)
-* insertions of special characters:      Special insertions.  (line   6)
-* italic correction:                     \/.                  (line   6)
-* italic font:                           Font styles.         (line  77)
-* JPEG files:                            Graphics package configuration.
-                                                              (line   6)
-* JPEG files <1>:                        \includegraphics.    (line   6)
-* JPG files:                             Graphics package configuration.
-                                                              (line   6)
-* JPG files <1>:                         \includegraphics.    (line   6)
-* justification, ragged left:            \raggedleft.         (line   6)
-* justification, ragged right:           \raggedright.        (line   6)
-* Knuth, Donald E.:                      Overview.            (line   6)
-* label:                                 Cross references.    (line   9)
-* labelled lists, creating:              description.         (line   6)
-* Lamport TeX:                           Overview.            (line  24)
-* Lamport, Leslie:                       Overview.            (line   6)
-* landscape orientation:                 Document class options.
-                                                              (line  60)
-* LaTeX logo:                            Text symbols.        (line  21)
-* LaTeX overview:                        Overview.            (line   6)
-* LaTeX Project team:                    About this document. (line  17)
-* LaTeX vs. LaTeX2e:                     About this document. (line  13)
-* LaTeX2e logo:                          Text symbols.        (line  24)
-* Latin letters, additional:             Additional Latin letters.
-                                                              (line   6)
-* layout commands:                       Layout.              (line   6)
-* layout, page parameters for:           Page layout parameters.
-                                                              (line   6)
-* left angle quotation marks:            Text symbols.        (line  30)
-* left arrow, in text:                   Text symbols.        (line 131)
-* left brace, in text:                   Text symbols.        (line  85)
-* left quote:                            Text symbols.        (line  40)
-* left quote, double:                    Text symbols.        (line 144)
-* left quote, single:                    Text symbols.        (line 150)
-* left-hand equation numbers:            Document class options.
-                                                              (line  63)
-* left-justifying text:                  \raggedright.        (line   6)
-* left-justifying text, environment for: flushleft.           (line   6)
-* left-to-right mode:                    Modes.               (line   6)
-* length command:                        \setlength.          (line  10)
-* lengths, adding to:                    \addtolength.        (line   6)
-* lengths, allocating new:               \newlength.          (line   6)
-* lengths, defining and using:           Lengths.             (line   6)
-* lengths, predefined:                   Predefined lengths.  (line   6)
-* lengths, setting:                      \setlength.          (line   6)
-* less than symbol, in text:             Text symbols.        (line 128)
-* letters, accented:                     Accents.             (line   6)
-* letters, additional Latin:             Additional Latin letters.
-                                                              (line   6)
-* letters, ending:                       \closing.            (line   6)
-* letters, starting:                     \opening.            (line   6)
-* letters, writing:                      Letters.             (line   6)
-* line break, forcing:                   \\.                  (line   6)
-* line breaking:                         Line breaking.       (line   6)
-* line breaks, forcing:                  \linebreak & \nolinebreak.
-                                                              (line   6)
-* line breaks, preventing:               \linebreak & \nolinebreak.
-                                                              (line   6)
-* lines in tables:                       tabular.             (line   6)
-* lining numerals:                       Font styles.         (line 134)
-* lining text up in tables:              tabular.             (line   6)
-* lining text up using tab stops:        tabbing.             (line   6)
-* list items, specifying counter:        \usecounter.         (line   6)
-* list of figures file:                  Output files.        (line  43)
-* list of tables file:                   Output files.        (line  43)
-* listings package:                      tabbing.             (line 144)
-* lists of items:                        itemize.             (line   6)
-* lists of items, generic:               list.                (line   6)
-* lists of items, numbered:              enumerate.           (line   6)
-* loading additional packages:           Additional packages. (line   6)
-* log file:                              Output files.        (line  28)
-* logo, LaTeX:                           Text symbols.        (line  21)
-* logo, LaTeX2e:                         Text symbols.        (line  24)
-* logo, TeX:                             Text symbols.        (line  61)
-* long command:                          Class and package commands.
-                                                              (line  23)
-* low-9 quotation marks, single and double: Text symbols.     (line  52)
-* low-level font commands:               Low-level font commands.
-                                                              (line   6)
-* Lower case:                            Upper and lower case.
-                                                              (line   6)
-* LR mode:                               Modes.               (line   6)
-* ltugboat class:                        tugboat template.    (line   6)
-* LuaTeX:                                TeX engines.         (line  29)
-* m-width:                               Units of length.     (line  38)
-* macro package, LaTeX as:               Overview.            (line  11)
-* macron accent:                         Accents.             (line  29)
-* macron accent, math:                   Math accents.        (line  14)
-* macros2e package:                      \makeatletter and \makeatother.
+                                                              (line  25)
+* --disable-write18 command-line option: Command line options.
+                                                              (line  54)
+* --enable-write18 command-line option:  Command line options.
+                                                              (line  54)
+* --file-line-error command-line option: Command line options.
+                                                              (line  81)
+* --halt-on-error command-line option:   Command line options.
+                                                              (line  78)
+* --help command-line option:            Command line options.
+                                                              (line  19)
+* --interaction command-line option:     Command line options.
+                                                              (line  22)
+* --jobname command-line option:         Command line options.
                                                               (line  39)
-* Madsen, Lars:                          eqnarray.            (line   6)
-* makeidx package:                       Indexes.             (line  28)
-* makeindex program:                     Indexes.             (line  23)
-* making a title page:                   titlepage.           (line   6)
-* making paragraphs:                     Making paragraphs.   (line   6)
-* marginal notes:                        Marginal notes.      (line   6)
-* masculine ordinal symbol:              Text symbols.        (line 135)
-* math accents:                          Math accents.        (line   6)
-* math formulas:                         Math formulas.       (line   6)
-* math functions:                        Math functions.      (line   6)
-* math miscellany:                       Math miscellany.     (line   6)
-* math mode:                             Modes.               (line   6)
-* math mode, entering:                   Math formulas.       (line   6)
-* math mode, spacing:                    Spacing in math mode.
-                                                              (line   6)
-* math symbols:                          Math symbols.        (line   6)
-* math, bold:                            Font styles.         (line 130)
-* mfirstuc package:                      Upper and lower case.
-                                                              (line  45)
-* Millimeter:                            Units of length.     (line  27)
-* minipage, creating a:                  minipage.            (line   6)
-* minted package:                        tabbing.             (line 144)
-* modes:                                 Modes.               (line   6)
-* monospace font:                        Font styles.         (line  92)
-* moving arguments:                      \protect.            (line  19)
-* mpfootnote counter:                    \footnote.           (line  35)
-* mu, math unit:                         Units of length.     (line  49)
-* multicolumn text:                      \twocolumn.          (line   6)
-* multilingual support:                  Accents.             (line   6)
-* multind package:                       Indexes.             (line  39)
-* multiplication symbol, discretionary line break: Math miscellany.
-                                                              (line   7)
-* nested \include, not allowed:          \include.            (line  18)
-* new class commands:                    Class and package construction.
-                                                              (line   6)
-* new command, check:                    Class and package commands.
-                                                              (line  21)
-* new command, definition:               Class and package commands.
-                                                              (line  96)
-* new commands, defining:                \newcommand & \renewcommand.
-                                                              (line   6)
-* new commands, defining <1>:            \providecommand.     (line   6)
-* new line, output as input:             \obeycr & \restorecr.
-                                                              (line   6)
-* new line, starting:                    \\.                  (line   6)
-* new line, starting (paragraph mode):   \newline.            (line   6)
-* new page, starting:                    \newpage.            (line   6)
-* non-English characters:                Additional Latin letters.
-                                                              (line   6)
-* notes in the margin:                   Marginal notes.      (line   6)
-* null delimiter:                        Math miscellany.     (line  36)
-* numbered items, specifying counter:    \usecounter.         (line   6)
-* numerals, old-style:                   Font styles.         (line 134)
-* oblique font:                          Font styles.         (line  89)
-* oe ligature:                           Additional Latin letters.
-                                                              (line  48)
-* ogonek:                                Accents.             (line  70)
-* old-style numerals:                    Font styles.         (line 134)
-* one-column output:                     \onecolumn.          (line   6)
-* opening quote:                         Text symbols.        (line  40)
-* OpenType fonts:                        TeX engines.         (line   6)
-* options, class:                        Class and package commands.
-                                                              (line  66)
-* options, color package:                Color package options.
-                                                              (line   6)
-* options, document class:               Document class options.
-                                                              (line   6)
-* options, document class <1>:           Class and package structure.
-                                                              (line   6)
-* options, global:                       Additional packages. (line  15)
-* options, graphics package:             Graphics package options.
-                                                              (line   6)
-* options, package:                      Class and package structure.
-                                                              (line   6)
-* options, package <1>:                  Class and package commands.
-                                                              (line  66)
-* ordinals, feminine and masculine:      Text symbols.        (line 135)
-* oslash:                                Additional Latin letters.
-                                                              (line  44)
-* overbar accent:                        Accents.             (line  29)
-* overdot accent, math:                  Math accents.        (line  26)
-* overview of LaTeX:                     Overview.            (line   6)
-* package file layout:                   Class and package structure.
-                                                              (line   6)
-* package options:                       Class and package structure.
-                                                              (line   6)
-* package options <1>:                   Class and package commands.
-                                                              (line  66)
-* package, algorithm2e:                  tabbing.             (line 144)
-* package, amsmath:                      array.               (line  40)
-* package, amsmath <1>:                  displaymath.         (line  22)
-* package, babel:                        thebibliography.     (line  29)
-* package, babel <1>:                    Accents.             (line   6)
-* package, datetime:                     \today.              (line  22)
-* package, enumitem:                     list.                (line  24)
-* package, etoolbox:                     Class and package commands.
-                                                              (line 110)
-* package, fancyvrb:                     tabbing.             (line 144)
-* package, flafter:                      Floats.              (line  82)
-* package, float:                        Floats.              (line  52)
-* package, footmisc:                     Footnotes in section headings.
-                                                              (line  10)
-* package, geometry:                     Document class options.
-                                                              (line  40)
-* package, geometry <1>:                 Document class options.
-                                                              (line  44)
-* package, listings:                     tabbing.             (line 144)
-* package, macros2e:                     \makeatletter and \makeatother.
-                                                              (line  39)
-* package, makeidx:                      Indexes.             (line  28)
-* package, mfirstuc:                     Upper and lower case.
-                                                              (line  45)
-* package, minted:                       tabbing.             (line 144)
-* package, multind:                      Indexes.             (line  39)
-* package, picture:                      picture.             (line  23)
-* package, setspace:                     Low-level font commands.
-                                                              (line 118)
-* package, showidx:                      Indexes.             (line  35)
-* package, textcase:                     Upper and lower case.
-                                                              (line  42)
-* package, textcomp:                     Font styles.         (line 134)
-* package, xspace:                       \(SPACE) after control sequence.
-                                                              (line  20)
-* packages, loading additional:          Additional packages. (line   6)
-* page break, forcing:                   \pagebreak & \nopagebreak.
-                                                              (line   6)
-* page break, preventing:                \pagebreak & \nopagebreak.
-                                                              (line   6)
-* page breaking:                         Page breaking.       (line   6)
-* page layout parameters:                Page layout parameters.
-                                                              (line   6)
-* page number, cross referencing:        \pageref.            (line   6)
-* page numbering style:                  \pagenumbering.      (line   6)
-* page styles:                           Page styles.         (line   6)
-* page, colored:                         Colored pages.       (line   6)
-* paragraph indentation, in minipage:    minipage.            (line  17)
-* paragraph indentations in quoted text: quotation and quote. (line   6)
-* paragraph indentations in quoted text, omitting: quotation and quote.
-                                                              (line   6)
-* paragraph mode:                        Modes.               (line   6)
-* paragraph mode <1>:                    \parbox.             (line  10)
-* paragraph symbol:                      Text symbols.        (line  44)
-* paragraphs:                            Making paragraphs.   (line   6)
-* parameters, for footnotes:             Footnote parameters. (line   6)
-* parameters, page layout:               Page layout parameters.
-                                                              (line   6)
-* PDF graphic files:                     Graphics package configuration.
-                                                              (line   6)
-* PDF graphic files <1>:                 \includegraphics.    (line   6)
-* pdfTeX:                                Output files.        (line  20)
-* pdfTeX engine:                         TeX engines.         (line  12)
-* period, centered, in text:             Text symbols.        (line 138)
-* pica:                                  Units of length.     (line  14)
-* pict2e package:                        \line.               (line  13)
-* picture package:                       picture.             (line  23)
-* pictures, creating:                    picture.             (line   6)
-* pilcrow:                               Text symbols.        (line  44)
-* placement of floats:                   Floats.              (line  31)
-* PNG files:                             Graphics package configuration.
-                                                              (line   6)
-* PNG files <1>:                         \includegraphics.    (line   6)
-* poetry, an environment for:            verse.               (line   6)
-* Point:                                 Units of length.     (line  10)
-* polish l:                              Additional Latin letters.
-                                                              (line  36)
-* portrait orientation:                  Document class options.
-                                                              (line  60)
-* position, in picture:                  picture.             (line  28)
-* positional parameter:                  \newcommand & \renewcommand.
-                                                              (line  37)
-* postscript, in letters:                \ps.                 (line   6)
-* pounds symbol:                         Text symbols.        (line  48)
-* preamble, defined:                     Starting and ending. (line  19)
-* predefined lengths:                    Predefined lengths.  (line   6)
-* prompt, *:                             Command line.        (line  18)
-* pronunciation:                         Overview.            (line  24)
-* quad:                                  Spacing in math mode.
-                                                              (line  32)
-* question mark, upside-down:            Text symbols.        (line 141)
-* quotation marks, French:               Text symbols.        (line  30)
-* quote, single straight:                Text symbols.        (line 156)
-* quote, straight base:                  Text symbols.        (line 160)
-* quoted text with paragraph indentation, displaying: quotation and quote.
-                                                              (line   6)
-* quoted text without paragraph indentation, displaying: quotation and quote.
-                                                              (line   6)
-* ragged left text:                      \raggedleft.         (line   6)
-* ragged left text, environment for:     flushright.          (line   6)
-* ragged right text:                     \raggedright.        (line   6)
-* ragged right text, environment for:    flushleft.           (line   6)
-* redefining environments:               \newenvironment & \renewenvironment.
-                                                              (line   6)
-* reference, forward:                    Cross references.    (line  22)
-* references, resolving forward:         Output files.        (line  33)
-* registered symbol:                     Text symbols.        (line 163)
-* remarks in the margin:                 Marginal notes.      (line   6)
-* reporting bugs:                        About this document. (line  21)
-* reserved characters:                   Reserved characters. (line   6)
-* resizing:                              \scalebox.           (line   6)
-* resizing <1>:                          \resizebox.          (line   6)
-* right angle quotation marks:           Text symbols.        (line  30)
-* right arrow, in text:                  Text symbols.        (line 166)
-* right brace, in text:                  Text symbols.        (line  88)
-* right quote:                           Text symbols.        (line  55)
-* right quote, double:                   Text symbols.        (line 147)
-* right quote, single:                   Text symbols.        (line 153)
-* right-hand equation numbers:           Document class options.
-                                                              (line  63)
-* right-justifying text:                 \raggedleft.         (line   6)
-* right-justifying text, environment for: flushright.         (line   6)
-* ring accent:                           Accents.             (line  75)
-* ring accent, math:                     Math accents.        (line  41)
-* robust commands:                       \protect.            (line   6)
-* roman font:                            Font styles.         (line  80)
-* root file:                             Splitting the input. (line   9)
-* rotating graphics:                     \rotatebox.          (line   6)
-* rotating text:                         \rotatebox.          (line   6)
-* rotation:                              \rotatebox.          (line   6)
-* row, tabbing:                          tabbing.             (line  45)
-* rubber lengths, defining new:          \newlength.          (line   6)
-* running header and footer:             Page layout parameters.
-                                                              (line   6)
-* running header and footer style:       \pagestyle.          (line   6)
-* sans serif font:                       Font styles.         (line  86)
-* Scaled point:                          Units of length.     (line  36)
-* scaling:                               \scalebox.           (line   6)
-* scaling <1>:                           \resizebox.          (line   6)
-* script letters for math:               Font styles.         (line  74)
-* section number, cross referencing:     \ref.                (line   6)
-* section numbers, printing:             Sectioning.          (line  47)
-* section symbol:                        Text symbols.        (line  58)
-* section, redefining:                   \@startsection.      (line   6)
-* sectioning commands:                   Sectioning.          (line   6)
-* series, of fonts:                      Low-level font commands.
-                                                              (line  48)
-* setspace package:                      Low-level font commands.
-                                                              (line 118)
-* setting counters:                      \setcounter.         (line   6)
-* shapes, of fonts:                      Low-level font commands.
-                                                              (line  88)
-* sharp S letters:                       Additional Latin letters.
-                                                              (line  52)
-* showidx package:                       Indexes.             (line  35)
-* simulating typed text:                 verbatim.            (line   6)
-* single angle quotation marks:          Text symbols.        (line  30)
-* single guillemets:                     Text symbols.        (line  30)
-* single left quote:                     Text symbols.        (line 150)
-* single low-9 quotation mark:           Text symbols.        (line  52)
-* single quote, straight:                Text symbols.        (line 156)
-* single right quote:                    Text symbols.        (line 153)
-* sizes of text:                         Font sizes.          (line   6)
-* skip register, plain TeX:              \newlength.          (line   6)
-* slanted font:                          Font styles.         (line  89)
-* small caps font:                       Font styles.         (line  83)
-* space, inserting vertical:             \addvspace.          (line   6)
-* space, vertical:                       \vspace.             (line   6)
-* spaces:                                Spaces.              (line   6)
-* spaces, ignore around commands:        \ignorespaces & \ignorespacesafterend.
-                                                              (line   6)
-* spacing within math mode:              Spacing in math mode.
-                                                              (line   6)
-* spacing, inter-sentence:               \frenchspacing.      (line   6)
-* spacing, inter-sentence <1>:           \normalsfcodes.      (line   6)
-* Spanish ordinals, feminine and masculine: Text symbols.     (line 135)
-* special characters:                    Reserved characters. (line   6)
-* special characters <1>:                Additional Latin letters.
-                                                              (line   6)
-* special insertions:                    Special insertions.  (line   6)
-* specifier, float placement:            Floats.              (line  31)
-* splitting the input file:              Splitting the input. (line   6)
-* stable option to footmisc package:     Footnotes in section headings.
-                                                              (line  10)
-* star-variants, commands:               \@ifstar.            (line   6)
-* starred form, defining new commands:   \newcommand & \renewcommand.
+* --no-file-line-error command-line option: Command line options.
+                                                              (line  81)
+* --no-shell-escape command-line option: Command line options.
+                                                              (line  54)
+* --output-directory command-line option: Command line options.
+                                                              (line  51)
+* --shell-escape command-line option:    Command line options.
+                                                              (line  54)
+* --version command-line option:         Command line options.
                                                               (line  14)
-* starting a new page:                   \newpage.            (line   6)
-* starting a new page and clearing floats: \clearpage.        (line   6)
-* starting and ending:                   Starting and ending. (line   6)
-* starting on a right-hand page:         \cleardoublepage.    (line   6)
-* sterling symbol:                       Text symbols.        (line  48)
-* straight double quote, base:           Text symbols.        (line 160)
-* straight quote, base:                  Text symbols.        (line 160)
-* straight single quote:                 Text symbols.        (line 156)
-* stretch, infinite horizontal:          \hfill.              (line   6)
-* stretch, infinite vertical:            \vfill.              (line   6)
-* stretch, omitting vertical:            \raggedbottom.       (line   6)
-* styles of text:                        Font styles.         (line   6)
-* styles, page:                          Page styles.         (line   6)
-* subscript:                             Subscripts & superscripts.
-                                                              (line   6)
-* superscript:                           Subscripts & superscripts.
-                                                              (line   6)
-* symbols, math:                         Math symbols.        (line   6)
-* symbols, text:                         Text symbols.        (line   6)
-* tab stops, using:                      tabbing.             (line   6)
-* table of contents entry, manually adding: \addcontentsline. (line   6)
-* table of contents file:                Output files.        (line  43)
-* table of contents, avoiding footnotes: Footnotes in section headings.
-                                                              (line   6)
-* table of contents, creating:           Tables of contents.  (line   6)
-* tables, creating:                      table.               (line   6)
-* template, beamer:                      beamer template.     (line   6)
-* template, book:                        book template.       (line   6)
-* template, TUGboat:                     tugboat template.    (line   6)
-* templates, document:                   Document templates.  (line   6)
-* terminal input/output:                 Terminal input/output.
-                                                              (line   6)
-* TeX logo:                              Text symbols.        (line  61)
-* text symbols:                          Text symbols.        (line   6)
-* text, resizing:                        \scalebox.           (line   6)
-* text, resizing <1>:                    \resizebox.          (line   6)
-* text, scaling:                         \scalebox.           (line   6)
-* text, scaling <1>:                     \resizebox.          (line   6)
-* textcase package:                      Upper and lower case.
-                                                              (line  42)
-* textcomp package:                      Font styles.         (line 134)
-* thanks, for titlepage:                 \maketitle.          (line  22)
-* theorem-like environment:              \newtheorem.         (line   6)
-* theorems, defining:                    \newtheorem.         (line   6)
-* theorems, typesetting:                 theorem.             (line   6)
-* thorn, Icelandic letter:               Additional Latin letters.
-                                                              (line  56)
-* three-quarters em-dash:                Text symbols.        (line 169)
-* tie-after accent:                      Accents.             (line  81)
-* tilde accent:                          Accents.             (line  43)
-* tilde accent, math:                    Math accents.        (line  44)
-* tilde, ASCII, in text:                 Text symbols.        (line  67)
-* title page, separate or run-in:        Document class options.
-                                                              (line  71)
-* title pages, creating:                 titlepage.           (line   6)
-* title, for titlepage:                  \maketitle.          (line  26)
-* titles, making:                        \maketitle.          (line   6)
-* trademark symbol:                      Text symbols.        (line 172)
-* transcript file:                       Output files.        (line  28)
-* TrueType fonts:                        TeX engines.         (line   6)
-* TUGboat template:                      tugboat template.    (line   6)
-* two-column output:                     \twocolumn.          (line   6)
-* two-thirds em-dash:                    Text symbols.        (line 175)
-* type styles:                           Font styles.         (line   6)
-* typed text, simulating:                verbatim.            (line   6)
-* typeface sizes:                        Font sizes.          (line   6)
-* typefaces:                             Fonts.               (line   6)
-* typewriter font:                       Font styles.         (line  92)
-* typewriter labels in lists:            description.         (line  34)
-* umlaut accent:                         Accents.             (line  16)
-* underbar:                              Accents.             (line  89)
-* underscore, in text:                   Text symbols.        (line 178)
-* Unicode input, native:                 TeX engines.         (line   6)
-* units, of length:                      Units of length.     (line   6)
-* unofficial nature of this manual:      About this document. (line  17)
-* unordered lists:                       itemize.             (line   6)
-* Upper case:                            Upper and lower case.
-                                                              (line   6)
-* using BibTeX:                          Using BibTeX.        (line   6)
-* UTF-8:                                 TeX engines.         (line   6)
-* variables, a list of:                  Counters.            (line   6)
-* vector symbol, math:                   Math accents.        (line  47)
-* verbatim text:                         verbatim.            (line   6)
-* verbatim text, inline:                 \verb.               (line   6)
-* vertical bar, double, in text:         Text symbols.        (line  79)
-* vertical bar, in text:                 Text symbols.        (line  76)
-* vertical space:                        \addvspace.          (line   6)
-* vertical space <1>:                    \vspace.             (line   6)
-* vertical space before paragraphs:      \parskip.            (line   6)
-* visible space:                         \verb.               (line  17)
-* visible space symbol, in text:         Text symbols.        (line 181)
-* weights, of fonts:                     Low-level font commands.
-                                                              (line  58)
-* white space:                           Spaces.              (line   6)
-* wide hat accent, math:                 Math accents.        (line  50)
-* wide tilde accent, math:               Math accents.        (line  53)
-* widths, of fonts:                      Low-level font commands.
-                                                              (line  70)
-* writing external files:                filecontents.        (line   6)
-* writing letters:                       Letters.             (line   6)
-* x-height:                              Units of length.     (line  38)
-* XeTeX:                                 TeX engines.         (line  38)
-* xindy program:                         Indexes.             (line  23)
-* xspace package:                        \(SPACE) after control sequence.
-                                                              (line  20)
-
-
-File: latex2e.info,  Node: Command Index,  Prev: Concept Index,  Up: Top
-
-Command Index
-*************
-
- [index ]
-* Menu:
-
-* $:                                     Math formulas.       (line  24)
-* &:                                     tabular.             (line  32)
-* --help command-line option:            Command line.        (line  14)
 * .aux file:                             Output files.        (line  33)
 * .dvi file:                             Output files.        (line  10)
-* .fd file:                              \newfont.            (line  16)
+* .glo file:                             Glossaries.          (line  43)
+* .idx file:                             Indexes.             (line   6)
+* .idx file <1>:                         makeindex.           (line   6)
+* .ind file:                             makeindex.           (line   6)
+* .isty file:                            makeindex.           (line  18)
 * .lof file:                             Output files.        (line  43)
-* .lof file <1>:                         Tables of contents.  (line  16)
+* .lof file <1>:                         Table of contents etc..
+                                                              (line   6)
 * .log file:                             Output files.        (line  28)
 * .lot file:                             Output files.        (line  43)
-* .lot file <1>:                         Tables of contents.  (line  16)
+* .lot file <1>:                         Table of contents etc..
+                                                              (line   6)
 * .pdf file:                             Output files.        (line  20)
-* .tex, default extension:               Command line.        (line   6)
+* .tex, default extension:               Command line.        (line  18)
 * .toc file:                             Output files.        (line  43)
-* .toc file <1>:                         Tables of contents.  (line   6)
-* .xdv file:                             TeX engines.         (line  38)
+* .toc file <1>:                         Table of contents etc..
+                                                              (line   6)
+* .xdv file:                             TeX engines.         (line  39)
 * 10pt option:                           Document class options.
                                                               (line  14)
 * 11pt option:                           Document class options.
@@ -11616,51 +15122,52 @@
                                                               (line  14)
 * 12pt option:                           Document class options.
                                                               (line  14)
+* ::                                     Colon character & \colon.
+                                                              (line   6)
+* : <1>:                                 Colon character & \colon.
+                                                              (line   6)
 * [...] for optional arguments:          LaTeX command syntax.
                                                               (line   6)
 * \ character starting commands:         LaTeX command syntax.
                                                               (line   6)
 * \!:                                    Spacing in math mode.
-                                                              (line  29)
-* \" (umlaut accent):                    Accents.             (line  16)
+                                                              (line  46)
+* \" (umlaut accent):                    Accents.             (line  23)
 * \#:                                    Reserved characters. (line  13)
 * \$:                                    Reserved characters. (line  13)
 * \%:                                    Reserved characters. (line  13)
 * \&:                                    Reserved characters. (line  13)
-* \' (acute accent):                     Accents.             (line  20)
-* \' (tabbing):                          tabbing.             (line  86)
-* \(:                                    Math formulas.       (line  16)
-* \(SPACE):                              \(SPACE) and \@.     (line   6)
-* \):                                    Math formulas.       (line  16)
-* \*:                                    Math miscellany.     (line   6)
-* \+:                                    tabbing.             (line  78)
+* \' (acute accent):                     Accents.             (line  27)
+* \' (tabbing):                          tabbing.             (line  87)
+* \*:                                    \*.                  (line   6)
+* \+:                                    tabbing.             (line  79)
 * \,:                                    Spacing in math mode.
-                                                              (line  25)
-* \-:                                    tabbing.             (line  82)
+                                                              (line  32)
+* \-:                                    tabbing.             (line  83)
 * \- (hyphenation):                      \- (hyphenation).    (line   6)
-* \. (dot-over accent):                  Accents.             (line  25)
+* \. (dot-over accent):                  Accents.             (line  30)
 * \/:                                    \/.                  (line   6)
 * \::                                    Spacing in math mode.
-                                                              (line  21)
+                                                              (line  28)
 * \;:                                    Spacing in math mode.
-                                                              (line  16)
-* \<:                                    tabbing.             (line  74)
-* \= (macron accent):                    Accents.             (line  29)
-* \= (tabbing):                          tabbing.             (line  68)
-* \>:                                    tabbing.             (line  72)
+                                                              (line  23)
+* \<:                                    tabbing.             (line  75)
+* \= (macron accent):                    Accents.             (line  34)
+* \= (tabbing):                          tabbing.             (line  69)
+* \>:                                    tabbing.             (line  73)
 * \> <1>:                                Spacing in math mode.
-                                                              (line  21)
-* \> (tabbing):                          tabbing.             (line  71)
-* \@:                                    \(SPACE) and \@.     (line   6)
-* \@beginparpenalty:                     list.                (line 234)
-* \@endparpenalty:                       list.                (line 242)
-* \@fnsymbol:                            \footnote.           (line  23)
+                                                              (line  28)
+* \> (tabbing):                          tabbing.             (line  72)
+* \@:                                    \@.                  (line   6)
+* \@beginparpenalty:                     list.                (line 241)
+* \@endparpenalty:                       list.                (line 249)
+* \@fnsymbol:                            \footnote.           (line  24)
 * \@ifstar:                              \@ifstar.            (line   6)
-* \@itempenalty:                         list.                (line 238)
+* \@itempenalty:                         list.                (line 245)
 * \@startsection:                        \@startsection.      (line   6)
-* \a (tabbing):                          tabbing.             (line 101)
-* \a' (acute accent in tabbing):         tabbing.             (line 102)
-* \a= (macron accent in tabbing):        tabbing.             (line 102)
+* \a (tabbing):                          tabbing.             (line 102)
+* \a' (acute accent in tabbing):         tabbing.             (line 103)
+* \a= (macron accent in tabbing):        tabbing.             (line 103)
 * \aa (aa):                              Additional Latin letters.
                                                               (line  12)
 * \AA (AA):                              Additional Latin letters.
@@ -11676,30 +15183,30 @@
                                                               (line  16)
 * \AE (AE):                              Additional Latin letters.
                                                               (line  16)
-* \aleph:                                Math symbols.        (line  22)
+* \aleph:                                Math symbols.        (line  21)
 * \Alph example:                         enumerate.           (line  61)
-* \alpha:                                Math symbols.        (line  25)
+* \alpha:                                Math symbols.        (line  24)
 * \alph{COUNTER}:                        \alph \Alph \arabic \roman \Roman \fnsymbol.
                                                               (line  14)
 * \Alph{COUNTER}:                        \alph \Alph \arabic \roman \Roman \fnsymbol.
-                                                              (line  17)
-* \alsoname:                             Indexes.             (line  20)
-* \amalg:                                Math symbols.        (line  28)
-* \and for \author:                      \maketitle.          (line  12)
-* \angle:                                Math symbols.        (line  31)
-* \appendix:                             Sectioning.          (line  37)
-* \approx:                               Math symbols.        (line  36)
+                                                              (line  19)
+* \alsoname:                             \index.              (line  56)
+* \amalg:                                Math symbols.        (line  27)
+* \and for \author:                      \maketitle.          (line  43)
+* \angle:                                Math symbols.        (line  30)
+* \appendix:                             \appendix.           (line   6)
+* \approx:                               Math symbols.        (line  35)
 * \arabic{COUNTER}:                      \alph \Alph \arabic \roman \Roman \fnsymbol.
-                                                              (line  20)
+                                                              (line  24)
 * \arccos:                               Math functions.      (line   9)
 * \arcsin:                               Math functions.      (line  12)
 * \arctan:                               Math functions.      (line  15)
 * \arg:                                  Math functions.      (line  18)
-* \arraycolsep:                          array.               (line  37)
-* \arrayrulewidth:                       tabular.             (line 156)
-* \arraystretch:                         tabular.             (line 162)
-* \ast:                                  Math symbols.        (line  39)
-* \asymp:                                Math symbols.        (line  48)
+* \arraycolsep:                          array.               (line  51)
+* \arrayrulewidth:                       tabular.             (line 158)
+* \arraystretch:                         tabular.             (line 164)
+* \ast:                                  Math symbols.        (line  38)
+* \asymp:                                Math symbols.        (line  47)
 * \AtBeginDocument:                      \AtBeginDocument.    (line   6)
 * \AtBeginDvi:                           Class and package commands.
                                                               (line   9)
@@ -11708,10 +15215,12 @@
                                                               (line  14)
 * \AtEndOfPackage:                       Class and package commands.
                                                               (line  14)
-* \author{NAME \and NAME2}:              \maketitle.          (line  11)
-* \a` (grave accent in tabbing):         tabbing.             (line 102)
-* \b (bar-under accent):                 Accents.             (line  46)
-* \backslash:                            Math symbols.        (line  51)
+* \author{NAME1 \and NAME2 \and ...}:    \maketitle.          (line  42)
+* \a` (grave accent in tabbing):         tabbing.             (line 103)
+* \b (bar-under accent):                 Accents.             (line  49)
+* \backmatter:                           \frontmatter & \mainmatter & \backmatter.
+                                                              (line   6)
+* \backslash:                            Math symbols.        (line  50)
 * \bar:                                  Math accents.        (line  13)
 * \baselineskip:                         Low-level font commands.
                                                               (line 101)
@@ -11718,70 +15227,73 @@
 * \baselinestretch:                      Low-level font commands.
                                                               (line 111)
 * \begin:                                Environments.        (line   6)
-* \beta:                                 Math symbols.        (line  55)
-* \bf:                                   Font styles.         (line  70)
+* \beta:                                 Math symbols.        (line  54)
+* \bf:                                   Font styles.         (line  74)
 * \bfseries:                             Font styles.         (line  39)
 * \bibitem:                              \bibitem.            (line   6)
 * \bibliography:                         Using BibTeX.        (line   6)
 * \bibliographystyle:                    Using BibTeX.        (line   6)
-* \bibname:                              thebibliography.     (line  23)
-* \bigcap:                               Math symbols.        (line  58)
-* \bigcirc:                              Math symbols.        (line  62)
-* \bigcup:                               Math symbols.        (line  66)
-* \bigodot:                              Math symbols.        (line  70)
-* \bigoplus:                             Math symbols.        (line  73)
-* \bigotimes:                            Math symbols.        (line  76)
-* \bigskip:                              \bigskip \medskip \smallskip.
-                                                              (line   9)
-* \bigskipamount:                        \bigskip \medskip \smallskip.
-                                                              (line  10)
-* \bigsqcup:                             Math symbols.        (line  87)
-* \bigtriangledown:                      Math symbols.        (line  79)
-* \bigtriangleup:                        Math symbols.        (line  83)
-* \biguplus:                             Math symbols.        (line  90)
-* \bigvee:                               Math symbols.        (line  94)
-* \bigwedge:                             Math symbols.        (line  97)
+* \bigcap:                               Math symbols.        (line  57)
+* \bigcirc:                              Math symbols.        (line  61)
+* \bigcup:                               Math symbols.        (line  65)
+* \bigodot:                              Math symbols.        (line  69)
+* \bigoplus:                             Math symbols.        (line  72)
+* \bigotimes:                            Math symbols.        (line  75)
+* \bigskip:                              \bigskip & \medskip & \smallskip.
+                                                              (line  28)
+* \bigskipamount:                        \bigskip & \medskip & \smallskip.
+                                                              (line  29)
+* \bigsqcup:                             Math symbols.        (line  86)
+* \bigtriangledown:                      Math symbols.        (line  78)
+* \bigtriangleup:                        Math symbols.        (line  82)
+* \biguplus:                             Math symbols.        (line  89)
+* \bigvee:                               Math symbols.        (line  93)
+* \bigwedge:                             Math symbols.        (line  96)
 * \bmod:                                 Math functions.      (line  21)
-* \boldmath:                             Math formulas.       (line  29)
-* \bot:                                  Math symbols.        (line 100)
+* \boldmath:                             \boldmath & \unboldmath.
+                                                              (line   6)
+* \boldmath <1>:                         \boldmath & \unboldmath.
+                                                              (line  14)
+* \bot:                                  Math symbols.        (line  99)
 * \bottomfraction:                       Floats.              (line  94)
 * \bottomfraction <1>:                   Floats.              (line  95)
-* \bowtie:                               Math symbols.        (line 105)
-* \Box:                                  Math symbols.        (line 108)
+* \bowtie:                               Math symbols.        (line 104)
+* \Box:                                  Math symbols.        (line 107)
 * \breve:                                Math accents.        (line  16)
-* \bullet:                               Math symbols.        (line 113)
-* \c (cedilla accent):                   Accents.             (line  51)
-* \cal:                                  Font styles.         (line  73)
-* \cap:                                  Math symbols.        (line 116)
-* \capitalacute:                         Accents.             (line  20)
-* \capitalbreve:                         Accents.             (line  86)
-* \capitalcaron:                         Accents.             (line  97)
-* \capitalcedilla:                       Accents.             (line  51)
-* \capitalcircumflex:                    Accents.             (line  33)
-* \capitaldieresis:                      Accents.             (line  16)
-* \capitaldotaccent:                     Accents.             (line  55)
-* \capitalgrave:                         Accents.             (line  37)
-* \capitalhungarumlaut:                  Accents.             (line  59)
-* \capitalmacron:                        Accents.             (line  29)
+* \bullet:                               Math symbols.        (line 112)
+* \c (cedilla accent):                   Accents.             (line  59)
+* \cal:                                  Font styles.         (line  77)
+* \cap:                                  Math symbols.        (line 115)
+* \capitalacute:                         Accents.             (line  27)
+* \capitalbreve:                         Accents.             (line  85)
+* \capitalcaron:                         Accents.             (line  89)
+* \capitalcedilla:                       Accents.             (line  59)
+* \capitalcircumflex:                    Accents.             (line  38)
+* \capitaldieresis:                      Accents.             (line  23)
+* \capitaldotaccent:                     Accents.             (line  63)
+* \capitalgrave:                         Accents.             (line  42)
+* \capitalhungarumlaut:                  Accents.             (line  67)
+* \capitalmacron:                        Accents.             (line  34)
 * \capitalnewtie:                        Accents.             (line  81)
-* \capitalogonek:                        Accents.             (line  70)
+* \capitalogonek:                        Accents.             (line  71)
 * \capitalring:                          Accents.             (line  75)
 * \capitaltie:                           Accents.             (line  81)
-* \capitaltilde:                         Accents.             (line  43)
-* \caption:                              figure.              (line  40)
-* \caption <1>:                          table.               (line  26)
+* \capitaltilde:                         Accents.             (line  46)
+* \caption:                              figure.              (line  44)
+* \caption <1>:                          table.               (line  44)
 * \cc:                                   \cc.                 (line   6)
-* \cdot:                                 Math symbols.        (line 121)
-* \cdots:                                Math miscellany.     (line  25)
+* \cdot:                                 Math symbols.        (line 120)
+* \cdots:                                Dots.                (line  17)
 * \centering:                            \centering.          (line   6)
-* \chapter:                              Sectioning.          (line   9)
+* \chapter:                              Sectioning.          (line   6)
+* \chapter <1>:                          \chapter.            (line   6)
 * \check:                                Math accents.        (line  19)
 * \CheckCommand:                         Class and package commands.
                                                               (line  21)
 * \CheckCommand*:                        Class and package commands.
                                                               (line  21)
-* \chi:                                  Math symbols.        (line 124)
-* \circ:                                 Math symbols.        (line 127)
+* \chi:                                  Math symbols.        (line 123)
+* \circ:                                 Math symbols.        (line 126)
 * \circle:                               \circle.             (line   6)
 * \cite:                                 \cite.               (line   6)
 * \ClassError:                           Class and package commands.
@@ -11794,55 +15306,60 @@
                                                               (line  41)
 * \ClassWarningNoLine:                   Class and package commands.
                                                               (line  41)
-* \cleardoublepage:                      \cleardoublepage.    (line   6)
-* \clearpage:                            \clearpage.          (line   6)
+* \cleardoublepage:                      \clearpage & \cleardoublepage.
+                                                              (line   6)
+* \clearpage:                            \clearpage & \cleardoublepage.
+                                                              (line   6)
 * \cline:                                \cline.              (line   6)
 * \closing:                              \closing.            (line   6)
-* \clubsuit:                             Math symbols.        (line 132)
-* \columnsep:                            \twocolumn.          (line  22)
+* \clubsuit:                             Math symbols.        (line 131)
+* \colon:                                Colon character & \colon.
+                                                              (line   6)
+* \columnsep:                            \twocolumn.          (line  20)
 * \columnsep <1>:                        Page layout parameters.
                                                               (line   6)
 * \columnsep <2>:                        Page layout parameters.
                                                               (line   9)
-* \columnseprule:                        \twocolumn.          (line  28)
+* \columnseprule:                        \twocolumn.          (line  26)
 * \columnseprule <1>:                    Page layout parameters.
                                                               (line   7)
 * \columnseprule <2>:                    Page layout parameters.
                                                               (line   9)
-* \columnwidth:                          \twocolumn.          (line  35)
+* \columnwidth:                          \twocolumn.          (line  33)
 * \columnwidth <1>:                      Page layout parameters.
                                                               (line   8)
 * \columnwidth <2>:                      Page layout parameters.
                                                               (line   9)
-* \complement:                           Math symbols.        (line 135)
-* \cong:                                 Math symbols.        (line 141)
-* \contentsline:                         \addcontentsline.    (line  33)
-* \coprod:                               Math symbols.        (line 144)
-* \copyright:                            Text symbols.        (line  10)
+* \complement:                           Math symbols.        (line 134)
+* \cong:                                 Math symbols.        (line 140)
+* \contentsline:                         \addcontentsline.    (line  10)
+* \coprod:                               Math symbols.        (line 143)
+* \copyright:                            Text symbols.        (line  11)
 * \cos:                                  Math functions.      (line  24)
 * \cosh:                                 Math functions.      (line  27)
 * \cot:                                  Math functions.      (line  30)
 * \coth:                                 Math functions.      (line  33)
 * \csc:                                  Math functions.      (line  36)
-* \cup:                                  Math symbols.        (line 147)
+* \cup:                                  Math symbols.        (line 146)
 * \CurrentOption:                        Class and package commands.
                                                               (line  60)
-* \d (dot-under accent):                 Accents.             (line  55)
-* \dag:                                  Text symbols.        (line  14)
-* \dagger:                               Math symbols.        (line 152)
+* \d (dot-under accent):                 Accents.             (line  63)
+* \dag:                                  Text symbols.        (line  15)
+* \dagger:                               Math symbols.        (line 151)
 * \dashbox:                              \dashbox.            (line   6)
-* \dashv:                                Math symbols.        (line 155)
-* \date{TEXT}:                           \maketitle.          (line  17)
-* \day:                                  \day \month \year.   (line   6)
-* \dblfloatpagefraction:                 \twocolumn.          (line  69)
-* \dblfloatsep:                          \twocolumn.          (line  75)
-* \dbltextfloatsep:                      \twocolumn.          (line  82)
-* \dbltopfraction:                       \twocolumn.          (line  47)
-* \dbltopnumber:                         \twocolumn.          (line  87)
-* \ddag:                                 Text symbols.        (line  17)
-* \ddagger:                              Math symbols.        (line 159)
+* \dashv:                                Math symbols.        (line 154)
+* \date{TEXT}:                           \maketitle.          (line  50)
+* \day:                                  \day & \month & \year.
+                                                              (line   6)
+* \dblfloatpagefraction:                 \twocolumn.          (line  66)
+* \dblfloatsep:                          \twocolumn.          (line  72)
+* \dbltextfloatsep:                      \twocolumn.          (line  79)
+* \dbltopfraction:                       \twocolumn.          (line  45)
+* \dbltopnumber:                         \twocolumn.          (line  84)
+* \ddag:                                 Text symbols.        (line  18)
+* \ddagger:                              Math symbols.        (line 158)
 * \ddot:                                 Math accents.        (line  22)
-* \ddots:                                Math miscellany.     (line  29)
+* \ddots:                                Dots.                (line  21)
 * \DeclareGraphicsExtensions:            \DeclareGraphicsExtensions.
                                                               (line   6)
 * \DeclareGraphicsRule:                  \DeclareGraphicsRule.
@@ -11856,20 +15373,19 @@
 * \DeclareRobustCommand*:                Class and package commands.
                                                               (line  96)
 * \deg:                                  Math functions.      (line  39)
-* \Delta:                                Math symbols.        (line 162)
-* \delta:                                Math symbols.        (line 165)
-* \depth:                                Predefined lengths.  (line  10)
+* \Delta:                                Math symbols.        (line 161)
+* \delta:                                Math symbols.        (line 164)
 * \det:                                  Math functions.      (line  42)
 * \dh (d):                               Additional Latin letters.
                                                               (line  20)
 * \DH (D):                               Additional Latin letters.
                                                               (line  20)
-* \Diamond:                              Math symbols.        (line 168)
-* \diamond:                              Math symbols.        (line 172)
-* \diamondsuit:                          Math symbols.        (line 176)
+* \Diamond:                              Math symbols.        (line 167)
+* \diamond:                              Math symbols.        (line 171)
+* \diamondsuit:                          Math symbols.        (line 175)
 * \dim:                                  Math functions.      (line  45)
-* \displaystyle:                         Math formulas.       (line  34)
-* \div:                                  Math symbols.        (line 179)
+* \displaystyle:                         Math formulas.       (line  61)
+* \div:                                  Math symbols.        (line 178)
 * \dj:                                   Additional Latin letters.
                                                               (line  26)
 * \DJ:                                   Additional Latin letters.
@@ -11876,25 +15392,29 @@
                                                               (line  26)
 * \documentclass:                        Document classes.    (line   6)
 * \dot:                                  Math accents.        (line  25)
-* \doteq:                                Math symbols.        (line 182)
-* \dotfill:                              \hrulefill \dotfill. (line   6)
-* \dots:                                 Text symbols.        (line  34)
-* \doublerulesep:                        tabular.             (line 167)
-* \downarrow:                            Math symbols.        (line 186)
-* \Downarrow:                            Math symbols.        (line 190)
-* \ell:                                  Math symbols.        (line 194)
+* \doteq:                                Math symbols.        (line 181)
+* \dotfill:                              \hrulefill & \dotfill.
+                                                              (line   6)
+* \dots:                                 Text symbols.        (line  35)
+* \doublerulesep:                        tabular.             (line 169)
+* \downarrow:                            Math symbols.        (line 185)
+* \Downarrow:                            Math symbols.        (line 189)
+* \ell:                                  Math symbols.        (line 193)
 * \emph:                                 Font styles.         (line  59)
-* \emptyset:                             Math symbols.        (line 197)
+* \emptyset:                             Math symbols.        (line 196)
 * \encl:                                 \encl.               (line   6)
 * \end:                                  Environments.        (line   6)
+* \endinput:                             \endinput.           (line   6)
 * \enlargethispage:                      \enlargethispage.    (line   6)
+* \enspace:                              \enspace & \quad & \qquad.
+                                                              (line   6)
 * \enumi:                                enumerate.           (line  47)
 * \enumii:                               enumerate.           (line  47)
 * \enumiii:                              enumerate.           (line  47)
 * \enumiv:                               enumerate.           (line  47)
-* \epsilon:                              Math symbols.        (line 201)
-* \equiv:                                Math symbols.        (line 207)
-* \eta:                                  Math symbols.        (line 210)
+* \epsilon:                              Math symbols.        (line 200)
+* \equiv:                                Math symbols.        (line 206)
+* \eta:                                  Math symbols.        (line 209)
 * \evensidemargin:                       Document class options.
                                                               (line  84)
 * \evensidemargin <1>:                   Page layout parameters.
@@ -11902,25 +15422,27 @@
 * \evensidemargin <2>:                   Page layout parameters.
                                                               (line  68)
 * \ExecuteOptions:                       Class and package commands.
-                                                              (line 166)
-* \exists:                               Math symbols.        (line 213)
+                                                              (line 172)
+* \exists:                               Math symbols.        (line 212)
 * \exp:                                  Math functions.      (line  48)
-* \extracolsep:                          tabular.             (line 115)
-* \fbox:                                 \fbox and \framebox. (line   6)
-* \fboxrule:                             \framebox (picture). (line  14)
-* \fboxrule <1>:                         \fbox and \framebox. (line  18)
-* \fboxsep:                              \framebox (picture). (line  14)
-* \fboxsep <1>:                          \fbox and \framebox. (line  18)
-* \fill:                                 \hfill.              (line   9)
-* \flat:                                 Math symbols.        (line 216)
+* \extracolsep:                          tabular.             (line 109)
+* \fbox:                                 \fbox & \framebox.   (line   6)
+* \fboxrule:                             \framebox (picture). (line  31)
+* \fboxrule <1>:                         \fbox & \framebox.   (line  39)
+* \fboxrule <2>:                         \fbox & \framebox.   (line  38)
+* \fboxsep:                              \framebox (picture). (line  31)
+* \fboxsep <1>:                          \fbox & \framebox.   (line  44)
+* \fboxsep <2>:                          \fbox & \framebox.   (line  43)
+* \fill:                                 \hfill.              (line  18)
+* \flat:                                 Math symbols.        (line 215)
 * \floatpagefraction:                    Floats.              (line  98)
 * \floatpagefraction <1>:                Floats.              (line  99)
 * \floatsep:                             Floats.              (line 114)
 * \floatsep <1>:                         Floats.              (line 115)
 * \flushbottom:                          \flushbottom.        (line   6)
-* \fnsymbol, and footnotes:              \footnote.           (line  23)
+* \fnsymbol, and footnotes:              \footnote.           (line  24)
 * \fnsymbol{COUNTER}:                    \alph \Alph \arabic \roman \Roman \fnsymbol.
-                                                              (line  29)
+                                                              (line  37)
 * \fontencoding:                         Low-level font commands.
                                                               (line  11)
 * \fontfamily:                           Low-level font commands.
@@ -11933,8 +15455,8 @@
                                                               (line 101)
 * \footnote:                             \footnote.           (line   6)
 * \footnotemark:                         \footnotemark.       (line   6)
-* \footnoterule:                         Footnote parameters. (line   6)
-* \footnotesep:                          Footnote parameters. (line  12)
+* \footnoterule:                         \footnote.           (line  34)
+* \footnotesep:                          \footnote.           (line  46)
 * \footnotesize:                         Font sizes.          (line  11)
 * \footnotetext:                         \footnotetext.       (line   6)
 * \footskip:                             Page layout parameters.
@@ -11941,33 +15463,34 @@
                                                               (line  26)
 * \footskip <1>:                         Page layout parameters.
                                                               (line  27)
-* \forall:                               Math symbols.        (line 219)
-* \frac:                                 Math miscellany.     (line  33)
-* \frac{NUM}{DEN}:                       Math miscellany.     (line  32)
+* \forall:                               Math symbols.        (line 218)
+* \frac:                                 \frac.               (line   6)
 * \frame:                                \frame.              (line   6)
 * \framebox:                             \framebox (picture). (line   6)
-* \framebox <1>:                         \fbox and \framebox. (line   6)
+* \framebox <1>:                         \fbox & \framebox.   (line   6)
 * \frenchspacing:                        \frenchspacing.      (line   6)
-* \frown:                                Math symbols.        (line 222)
-* \fussy:                                \fussy.              (line   6)
-* \Gamma:                                Math symbols.        (line 225)
-* \gamma:                                Math symbols.        (line 228)
+* \frontmatter:                          \frontmatter & \mainmatter & \backmatter.
+                                                              (line   6)
+* \frown:                                Math symbols.        (line 221)
+* \fussy:                                \fussy & \sloppy.    (line   6)
+* \Gamma:                                Math symbols.        (line 224)
+* \gamma:                                Math symbols.        (line 227)
 * \gcd:                                  Math functions.      (line  51)
-* \ge:                                   Math symbols.        (line 231)
-* \geq:                                  Math symbols.        (line 235)
-* \gets:                                 Math symbols.        (line 239)
-* \gg:                                   Math symbols.        (line 242)
-* \glossary:                             Glossaries.          (line   8)
-* \glossaryentry:                        Glossaries.          (line  11)
+* \ge:                                   Math symbols.        (line 230)
+* \geq:                                  Math symbols.        (line 234)
+* \gets:                                 Math symbols.        (line 238)
+* \gg:                                   Math symbols.        (line 241)
+* \gls:                                  \gls.                (line   6)
 * \graphicspath:                         \graphicspath.       (line   6)
+* \graphpaper:                           \graphpaper.         (line   6)
 * \grave:                                Math accents.        (line  28)
-* \guillemotleft (<<):                   Text symbols.        (line  26)
-* \guillemotright (>>):                  Text symbols.        (line  27)
-* \guilsinglleft (<):                    Text symbols.        (line  28)
-* \guilsinglright (>):                   Text symbols.        (line  29)
-* \H (Hungarian umlaut accent):          Accents.             (line  59)
+* \guillemotleft (<<):                   Text symbols.        (line  27)
+* \guillemotright (>>):                  Text symbols.        (line  28)
+* \guilsinglleft (<):                    Text symbols.        (line  29)
+* \guilsinglright (>):                   Text symbols.        (line  30)
+* \H (Hungarian umlaut accent):          Accents.             (line  67)
 * \hat:                                  Math accents.        (line  31)
-* \hbar:                                 Math symbols.        (line 246)
+* \hbar:                                 Math symbols.        (line 245)
 * \headheight:                           Page layout parameters.
                                                               (line  14)
 * \headheight <1>:                       Page layout parameters.
@@ -11976,26 +15499,27 @@
                                                               (line  19)
 * \headsep <1>:                          Page layout parameters.
                                                               (line  20)
-* \heartsuit:                            Math symbols.        (line 249)
-* \height:                               Predefined lengths.  (line   8)
+* \heartsuit:                            Math symbols.        (line 248)
 * \hfill:                                \hfill.              (line   6)
 * \hline:                                \hline.              (line   6)
 * \hom:                                  Math functions.      (line  54)
-* \hookleftarrow:                        Math symbols.        (line 252)
-* \hookrightarrow:                       Math symbols.        (line 255)
-* \hrulefill:                            \hrulefill \dotfill. (line   6)
+* \hookleftarrow:                        Math symbols.        (line 251)
+* \hookrightarrow:                       Math symbols.        (line 254)
+* \hrulefill:                            \hrulefill & \dotfill.
+                                                              (line   6)
 * \hsize:                                Page layout parameters.
                                                               (line 119)
 * \hsize <1>:                            Page layout parameters.
                                                               (line 119)
 * \hspace:                               \hspace.             (line   6)
+* \hss:                                  \hss.                (line   6)
 * \huge:                                 Font sizes.          (line  11)
 * \Huge:                                 Font sizes.          (line  11)
 * \hyphenation:                          \hyphenation.        (line   6)
-* \i (dotless i):                        Accents.             (line  63)
-* \iff:                                  Math symbols.        (line 258)
+* \i (dotless i):                        Accents.             (line  17)
+* \iff:                                  Math symbols.        (line 257)
 * \IfFileExists:                         Class and package commands.
-                                                              (line 127)
+                                                              (line 128)
 * \ignorespaces:                         \ignorespaces & \ignorespacesafterend.
                                                               (line   6)
 * \ignorespacesafterend:                 \ignorespaces & \ignorespacesafterend.
@@ -12004,40 +15528,43 @@
                                                               (line  32)
 * \IJ (IJ):                              Additional Latin letters.
                                                               (line  32)
-* \Im:                                   Math symbols.        (line 262)
-* \imath:                                Math accents.        (line  34)
-* \in:                                   Math symbols.        (line 265)
-* \include:                              \include.            (line   6)
+* \Im:                                   Math symbols.        (line 261)
+* \imath:                                Math symbols.        (line 264)
+* \in:                                   Math symbols.        (line 268)
+* \include:                              \include & \includeonly.
+                                                              (line   6)
 * \includegraphics:                      \includegraphics.    (line   6)
-* \includeonly:                          \includeonly.        (line   6)
-* \indent:                               \indent.             (line   6)
-* \index:                                Indexes.             (line   9)
-* \indexentry:                           Indexes.             (line  12)
-* \indexspace:                           Indexes.             (line  32)
+* \includeonly:                          \include & \includeonly.
+                                                              (line   6)
+* \indent:                               \indent & \noindent. (line   6)
+* \index:                                Indexes.             (line   6)
+* \index <1>:                            \index.              (line   6)
+* \indexentry:                           \index.              (line 106)
+* \indexspace:                           makeindex.           (line  58)
 * \inf:                                  Math functions.      (line  57)
-* \infty:                                Math symbols.        (line 271)
+* \infty:                                Math symbols.        (line 273)
 * \input:                                \input.              (line   6)
 * \InputIfFileExists:                    Class and package commands.
-                                                              (line 127)
-* \int:                                  Math symbols.        (line 274)
+                                                              (line 128)
+* \int:                                  Math symbols.        (line 276)
 * \intextsep:                            Floats.              (line 118)
 * \intextsep <1>:                        Floats.              (line 119)
-* \iota:                                 Math symbols.        (line 277)
-* \it:                                   Font styles.         (line  76)
-* \item:                                 description.         (line  29)
+* \iota:                                 Math symbols.        (line 279)
+* \it:                                   Font styles.         (line  80)
+* \item:                                 description.         (line  31)
 * \item <1>:                             enumerate.           (line  29)
 * \item <2>:                             itemize.             (line   6)
 * \item <3>:                             itemize.             (line  28)
-* \itemindent:                           list.                (line  80)
-* \itemsep:                              list.                (line  84)
+* \itemindent:                           list.                (line  83)
+* \itemsep:                              list.                (line  87)
 * \itshape:                              Font styles.         (line  33)
-* \j (dotless j):                        Accents.             (line  66)
-* \jmath:                                Math accents.        (line  37)
-* \Join:                                 Math symbols.        (line 280)
-* \k (ogonek):                           Accents.             (line  70)
-* \kappa:                                Math symbols.        (line 284)
+* \j (dotless j):                        Accents.             (line  17)
+* \jmath:                                Math symbols.        (line 286)
+* \Join:                                 Math symbols.        (line 282)
+* \k (ogonek):                           Accents.             (line  71)
+* \kappa:                                Math symbols.        (line 290)
 * \ker:                                  Math functions.      (line  60)
-* \kill:                                 tabbing.             (line 106)
+* \kill:                                 tabbing.             (line 107)
 * \l (/l):                               Additional Latin letters.
                                                               (line  36)
 * \L (/L):                               Additional Latin letters.
@@ -12051,31 +15578,32 @@
 * \labelitemii:                          itemize.             (line  35)
 * \labelitemiii:                         itemize.             (line  35)
 * \labelitemiv:                          itemize.             (line  35)
-* \labelsep:                             list.                (line  96)
-* \labelwidth:                           list.                (line 101)
-* \Lambda:                               Math symbols.        (line 287)
-* \lambda:                               Math symbols.        (line 290)
-* \land:                                 Math symbols.        (line 293)
-* \langle:                               Math symbols.        (line 298)
+* \labelsep:                             list.                (line  99)
+* \labelwidth:                           list.                (line 104)
+* \Lambda:                               Math symbols.        (line 293)
+* \lambda:                               Math symbols.        (line 296)
+* \land:                                 Math symbols.        (line 299)
+* \langle:                               Math symbols.        (line 304)
 * \large:                                Font sizes.          (line  11)
 * \Large:                                Font sizes.          (line  11)
 * \LARGE:                                Font sizes.          (line  11)
-* \LaTeX:                                Text symbols.        (line  20)
-* \LaTeXe:                               Text symbols.        (line  23)
-* \lbrace:                               Math symbols.        (line 303)
-* \lbrack:                               Math symbols.        (line 307)
-* \lceil:                                Math symbols.        (line 311)
-* \ldots:                                Text symbols.        (line  33)
-* \le:                                   Math symbols.        (line 315)
-* \leadsto:                              Math symbols.        (line 319)
-* \left DELIM1 ... \right DELIM2:        Math miscellany.     (line  35)
-* \Leftarrow:                            Math symbols.        (line 326)
-* \leftarrow:                            Math symbols.        (line 331)
+* \LaTeX:                                Text symbols.        (line  21)
+* \LaTeXe:                               Text symbols.        (line  24)
+* \lbrace:                               Math symbols.        (line 309)
+* \lbrack:                               Math symbols.        (line 313)
+* \lceil:                                Math symbols.        (line 317)
+* \ldots:                                Dots.                (line  25)
+* \ldots <1>:                            Text symbols.        (line  34)
+* \le:                                   Math symbols.        (line 321)
+* \leadsto:                              Math symbols.        (line 325)
+* \left:                                 \left & \right.      (line   6)
+* \Leftarrow:                            Math symbols.        (line 332)
+* \leftarrow:                            Math symbols.        (line 337)
 * \lefteqn:                              eqnarray.            (line  46)
-* \leftharpoondown:                      Math symbols.        (line 335)
-* \leftharpoonup:                        Math symbols.        (line 338)
+* \leftharpoondown:                      Math symbols.        (line 341)
+* \leftharpoonup:                        Math symbols.        (line 344)
 * \leftmargin:                           itemize.             (line  54)
-* \leftmargin <1>:                       list.                (line 121)
+* \leftmargin <1>:                       list.                (line 124)
 * \leftmargini:                          itemize.             (line  54)
 * \leftmarginii:                         itemize.             (line  54)
 * \leftmarginiii:                        itemize.             (line  54)
@@ -12082,12 +15610,12 @@
 * \leftmarginiv:                         itemize.             (line  54)
 * \leftmarginv:                          itemize.             (line  54)
 * \leftmarginvi:                         itemize.             (line  54)
-* \Leftrightarrow:                       Math symbols.        (line 341)
-* \leftrightarrow:                       Math symbols.        (line 346)
-* \leq:                                  Math symbols.        (line 351)
-* \lfloor:                               Math symbols.        (line 355)
+* \Leftrightarrow:                       Math symbols.        (line 347)
+* \leftrightarrow:                       Math symbols.        (line 352)
+* \leq:                                  Math symbols.        (line 357)
+* \lfloor:                               Math symbols.        (line 361)
 * \lg:                                   Math functions.      (line  63)
-* \lhd:                                  Math symbols.        (line 358)
+* \lhd:                                  Math symbols.        (line 364)
 * \lim:                                  Math functions.      (line  66)
 * \liminf:                               Math functions.      (line  69)
 * \limsup:                               Math functions.      (line  72)
@@ -12101,92 +15629,100 @@
                                                               (line  33)
 * \linewidth <1>:                        Page layout parameters.
                                                               (line  34)
-* \listoffigures:                        Tables of contents.  (line  16)
-* \listoftables:                         Tables of contents.  (line  16)
-* \listparindent:                        list.                (line 138)
-* \ll:                                   Math symbols.        (line 366)
+* \listoffigures:                        Table of contents etc..
+                                                              (line   6)
+* \listoftables:                         Table of contents etc..
+                                                              (line   6)
+* \listparindent:                        list.                (line 141)
+* \ll:                                   Math symbols.        (line 372)
 * \ln:                                   Math functions.      (line  75)
-* \lnot:                                 Math symbols.        (line 370)
+* \lnot:                                 Math symbols.        (line 376)
 * \LoadClass:                            Class and package commands.
-                                                              (line 144)
+                                                              (line 148)
 * \LoadClassWithOptions:                 Class and package commands.
-                                                              (line 144)
+                                                              (line 148)
 * \location:                             \location.           (line   6)
 * \log:                                  Math functions.      (line  78)
-* \longleftarrow:                        Math symbols.        (line 373)
-* \longleftrightarrow:                   Math symbols.        (line 378)
-* \longmapsto:                           Math symbols.        (line 382)
-* \longrightarrow:                       Math symbols.        (line 387)
-* \lor:                                  Math symbols.        (line 392)
-* \lq:                                   Text symbols.        (line  39)
-* \makebox:                              \makebox.            (line   6)
+* \longleftarrow:                        Math symbols.        (line 379)
+* \longleftrightarrow:                   Math symbols.        (line 384)
+* \longmapsto:                           Math symbols.        (line 388)
+* \longrightarrow:                       Math symbols.        (line 393)
+* \lor:                                  Math symbols.        (line 398)
+* \lq:                                   Text symbols.        (line  40)
+* \mainmatter:                           \frontmatter & \mainmatter & \backmatter.
+                                                              (line   6)
+* \makebox:                              \mbox & \makebox.    (line   6)
 * \makebox (for picture):                \makebox (picture).  (line   6)
 * \makeglossary:                         Glossaries.          (line   6)
+* \makeglossary <1>:                     Glossaries.          (line  43)
 * \makeindex:                            Indexes.             (line   6)
-* \makelabel:                            list.                (line  53)
+* \makelabel:                            list.                (line  60)
 * \makelabels:                           \makelabels.         (line   6)
 * \maketitle:                            \maketitle.          (line   6)
-* \mapsto:                               Math symbols.        (line 395)
+* \mapsto:                               Math symbols.        (line 401)
 * \marginpar:                            Marginal notes.      (line   6)
 * \marginparpush:                        Page layout parameters.
                                                               (line  40)
 * \marginparpush <1>:                    Page layout parameters.
                                                               (line  43)
-* \marginparpush <2>:                    Marginal notes.      (line  36)
-* \marginparsep:                         Marginal notes.      (line  40)
+* \marginparpush <2>:                    Marginal notes.      (line  35)
+* \marginparsep:                         Marginal notes.      (line  39)
 * \marginparwidth:                       Page layout parameters.
                                                               (line  42)
 * \marginparwidth <1>:                   Page layout parameters.
                                                               (line  43)
-* \marginparwidth <2>:                   Marginal notes.      (line  44)
+* \marginparwidth <2>:                   Marginal notes.      (line  43)
 * \marginsep:                            Page layout parameters.
                                                               (line  41)
 * \marginsep <1>:                        Page layout parameters.
                                                               (line  43)
-* \markboth{LEFT}{RIGHT}:                \pagestyle.          (line  29)
-* \markright{RIGHT}:                     \pagestyle.          (line  36)
-* \mathbf:                               Font styles.         (line 112)
-* \mathcal:                              Font styles.         (line 128)
-* \mathdollar:                           Math miscellany.     (line  40)
-* \mathellipsis:                         Math miscellany.     (line  43)
-* \mathnormal:                           Font styles.         (line 125)
-* \mathparagraph:                        Math miscellany.     (line  46)
-* \mathring:                             Math accents.        (line  40)
-* \mathrm:                               Font styles.         (line 109)
-* \mathsection:                          Math miscellany.     (line  49)
-* \mathsf:                               Font styles.         (line 115)
-* \mathsterling:                         Math miscellany.     (line  52)
-* \mathtt:                               Font styles.         (line 118)
-* \mathunderscore:                       Math miscellany.     (line  55)
-* \mathversion:                          Font styles.         (line 130)
+* \markboth{LEFT-HEAD}{RIGHT-HEAD}:      \pagestyle.          (line  75)
+* \markright{RIGHT}:                     \pagestyle.          (line  84)
+* \mathbf:                               Font styles.         (line 110)
+* \mathcal:                              Font styles.         (line 126)
+* \mathdollar:                           Math symbols.        (line 910)
+* \mathnormal:                           Font styles.         (line 123)
+* \mathparagraph:                        Math symbols.        (line 913)
+* \mathring:                             Math accents.        (line  34)
+* \mathrm:                               Font styles.         (line 107)
+* \mathsection:                          Math symbols.        (line 916)
+* \mathsf:                               Font styles.         (line 113)
+* \mathsterling:                         Math symbols.        (line 919)
+* \mathtt:                               Font styles.         (line 116)
+* \mathunderscore:                       Math symbols.        (line 922)
+* \mathversion:                          Font styles.         (line 128)
 * \max:                                  Math functions.      (line  81)
-* \mbox:                                 \mbox.               (line   6)
-* \mbox, and LR mode:                    Modes.               (line  24)
+* \mbox:                                 \mbox & \makebox.    (line   6)
 * \mdseries:                             Font styles.         (line  36)
-* \medskip:                              \bigskip \medskip \smallskip.
-                                                              (line  14)
-* \medskipamount:                        \bigskip \medskip \smallskip.
-                                                              (line  15)
+* \medskip:                              \bigskip & \medskip & \smallskip.
+                                                              (line  33)
+* \medskipamount:                        \bigskip & \medskip & \smallskip.
+                                                              (line  34)
 * \medspace:                             Spacing in math mode.
-                                                              (line  21)
-* \mho:                                  Math symbols.        (line 399)
-* \mid:                                  Math symbols.        (line 404)
+                                                              (line  28)
+* \mho:                                  Math symbols.        (line 405)
+* \mid:                                  Math symbols.        (line 410)
 * \min:                                  Math functions.      (line  84)
-* \models:                               Math symbols.        (line 414)
-* \month:                                \day \month \year.   (line   6)
-* \mp:                                   Math symbols.        (line 419)
-* \mu:                                   Math symbols.        (line 422)
+* \models:                               Math symbols.        (line 420)
+* \month:                                \day & \month & \year.
+                                                              (line   6)
+* \mp:                                   Math symbols.        (line 425)
+* \mu:                                   Math symbols.        (line 428)
 * \multicolumn:                          \multicolumn.        (line   6)
 * \multiput:                             \multiput.           (line   6)
-* \nabla:                                Math symbols.        (line 425)
+* \nabla:                                Math symbols.        (line 431)
 * \name:                                 \name.               (line   6)
-* \natural:                              Math symbols.        (line 428)
-* \ne:                                   Math symbols.        (line 431)
-* \nearrow:                              Math symbols.        (line 434)
+* \natural:                              Math symbols.        (line 434)
+* \ne:                                   Math symbols.        (line 437)
+* \nearrow:                              Math symbols.        (line 440)
 * \NeedsTeXFormat:                       Class and package commands.
-                                                              (line 176)
-* \neg:                                  Math symbols.        (line 437)
-* \neq:                                  Math symbols.        (line 441)
+                                                              (line 182)
+* \neg:                                  Math symbols.        (line 443)
+* \negthinspace:                         Spacing in math mode.
+                                                              (line  46)
+* \negthinspace <1>:                     \thinspace & \negthinspace.
+                                                              (line   6)
+* \neq:                                  Math symbols.        (line 447)
 * \newcommand:                           \newcommand & \renewcommand.
                                                               (line   6)
 * \newcounter:                           \newcounter.         (line   6)
@@ -12193,9 +15729,10 @@
 * \newenvironment:                       \newenvironment & \renewenvironment.
                                                               (line   6)
 * \newfont:                              \newfont.            (line   6)
+* \newglossaryentry:                     \newglossaryentry.   (line   6)
 * \newlength:                            \newlength.          (line   6)
 * \newline:                              \newline.            (line   6)
-* \NEWLINE:                              \(SPACE) and \@.     (line   6)
+* \NEWLINE:                              \(SPACE).            (line   6)
 * \newpage:                              \newpage.            (line   6)
 * \newsavebox:                           \newsavebox.         (line   6)
 * \newtheorem:                           \newtheorem.         (line   6)
@@ -12204,12 +15741,12 @@
                                                               (line  40)
 * \NG:                                   Additional Latin letters.
                                                               (line  40)
-* \ni:                                   Math symbols.        (line 444)
+* \ni:                                   Math symbols.        (line 450)
 * \nocite:                               \nocite.             (line   6)
 * \nocorr:                               Font styles.         (line  21)
 * \nocorrlist:                           Font styles.         (line  21)
-* \nofiles:                              Tables of contents.  (line  21)
-* \noindent:                             \noindent.           (line   6)
+* \nofiles:                              \nofiles.            (line   6)
+* \noindent:                             \indent & \noindent. (line   6)
 * \nolinebreak:                          \linebreak & \nolinebreak.
                                                               (line   6)
 * \nonfrenchspacing:                     \frenchspacing.      (line   6)
@@ -12217,13 +15754,13 @@
 * \nopagebreak:                          \pagebreak & \nopagebreak.
                                                               (line   6)
 * \normalfont:                           Font styles.         (line  57)
-* \normalmarginpar:                      Marginal notes.      (line  24)
+* \normalmarginpar:                      Marginal notes.      (line  22)
 * \normalsfcodes:                        \normalsfcodes.      (line   6)
 * \normalsize:                           Font sizes.          (line  11)
-* \not:                                  Math symbols.        (line 449)
-* \notin:                                Math symbols.        (line 457)
-* \nu:                                   Math symbols.        (line 461)
-* \nwarrow:                              Math symbols.        (line 464)
+* \not:                                  Math symbols.        (line 455)
+* \notin:                                Math symbols.        (line 463)
+* \nu:                                   Math symbols.        (line 467)
+* \nwarrow:                              Math symbols.        (line 470)
 * \o (/o):                               Additional Latin letters.
                                                               (line  44)
 * \O (/O):                               Additional Latin letters.
@@ -12236,28 +15773,30 @@
                                                               (line  66)
 * \oddsidemargin <2>:                    Page layout parameters.
                                                               (line  68)
-* \odot:                                 Math symbols.        (line 467)
+* \odot:                                 Math symbols.        (line 473)
 * \oe (oe):                              Additional Latin letters.
                                                               (line  48)
 * \OE (OE):                              Additional Latin letters.
                                                               (line  48)
-* \oint:                                 Math symbols.        (line 472)
-* \oldstylenums:                         Font styles.         (line 134)
-* \Omega:                                Math symbols.        (line 476)
-* \omega:                                Math symbols.        (line 479)
-* \ominus:                               Math symbols.        (line 482)
+* \oint:                                 Math symbols.        (line 478)
+* \oldstylenums:                         Font styles.         (line 132)
+* \Omega:                                Math symbols.        (line 482)
+* \omega:                                Math symbols.        (line 485)
+* \ominus:                               Math symbols.        (line 488)
 * \onecolumn:                            \onecolumn.          (line   6)
 * \opening:                              \opening.            (line   6)
-* \oplus:                                Math symbols.        (line 485)
+* \oplus:                                Math symbols.        (line 491)
 * \OptionNotUsed:                        Class and package commands.
-                                                              (line 192)
-* \oslash:                               Math symbols.        (line 489)
-* \otimes:                               Math symbols.        (line 492)
+                                                              (line 200)
+* \oslash:                               Math symbols.        (line 495)
+* \otimes:                               Math symbols.        (line 498)
 * \oval:                                 \oval.               (line   6)
-* \overbrace{MATH}:                      Math miscellany.     (line  58)
-* \overline{TEXT}:                       Math miscellany.     (line  62)
-* \owns:                                 Math symbols.        (line 497)
-* \P:                                    Text symbols.        (line  42)
+* \overbrace{MATH}:                      Over- and Underlining.
+                                                              (line  40)
+* \overline{TEXT}:                       Over- and Underlining.
+                                                              (line  21)
+* \owns:                                 Math symbols.        (line 503)
+* \P:                                    Text symbols.        (line  43)
 * \PackageError:                         Class and package commands.
                                                               (line  41)
 * \PackageInfo:                          Class and package commands.
@@ -12281,257 +15820,281 @@
                                                               (line  85)
 * \paperwidth <1>:                       Page layout parameters.
                                                               (line  86)
-* \paragraph:                            Sectioning.          (line  14)
-* \parallel:                             Math symbols.        (line 502)
+* \par:                                  \par.                (line   6)
+* \paragraph:                            Sectioning.          (line   6)
+* \paragraph <1>:                        \subsubsection & \paragraph & \subparagraph.
+                                                              (line   6)
+* \parallel:                             Math symbols.        (line 508)
 * \parbox:                               \parbox.             (line   6)
-* \parindent:                            minipage.            (line  17)
-* \parindent <1>:                        \indent.             (line   6)
-* \parsep:                               list.                (line 144)
-* \parskip:                              \parskip.            (line   6)
+* \parindent:                            minipage.            (line 104)
+* \parindent <1>:                        \indent & \noindent. (line   6)
+* \parindent <2>:                        \parindent & \parskip.
+                                                              (line   6)
+* \parsep:                               list.                (line 147)
+* \parskip:                              \parindent & \parskip.
+                                                              (line   6)
 * \parskip example:                      itemize.             (line  73)
-* \part:                                 Sectioning.          (line   8)
-* \partial:                              Math symbols.        (line 505)
-* \partopsep:                            list.                (line 153)
+* \part:                                 Sectioning.          (line   6)
+* \part <1>:                             \part.               (line   6)
+* \partial:                              Math symbols.        (line 511)
+* \partopsep:                            list.                (line 156)
 * \PassOptionsToClass:                   Class and package commands.
-                                                              (line 198)
+                                                              (line 206)
 * \PassOptionsToPackage:                 Class and package commands.
-                                                              (line 198)
+                                                              (line 206)
 * \pdfpageheight:                        Document class options.
                                                               (line  40)
 * \pdfpagewidth:                         Document class options.
                                                               (line  40)
-* \perp:                                 Math symbols.        (line 508)
-* \phi:                                  Math symbols.        (line 513)
-* \Pi:                                   Math symbols.        (line 517)
-* \pi:                                   Math symbols.        (line 520)
-* \pm:                                   Math symbols.        (line 524)
+* \perp:                                 Math symbols.        (line 514)
+* \phi:                                  Math symbols.        (line 519)
+* \Pi:                                   Math symbols.        (line 523)
+* \pi:                                   Math symbols.        (line 526)
+* \pm:                                   Math symbols.        (line 530)
 * \pmod:                                 Math functions.      (line  87)
-* \poptabs:                              tabbing.             (line 112)
-* \poptabs <1>:                          tabbing.             (line 113)
-* \pounds:                               Text symbols.        (line  46)
+* \poptabs:                              tabbing.             (line 113)
+* \poptabs <1>:                          tabbing.             (line 114)
+* \pounds:                               Text symbols.        (line  47)
 * \Pr:                                   Math functions.      (line  90)
-* \prec:                                 Math symbols.        (line 527)
-* \preceq:                               Math symbols.        (line 530)
-* \prime:                                Math symbols.        (line 535)
-* \printindex:                           Indexes.             (line  28)
+* \prec:                                 Math symbols.        (line 533)
+* \preceq:                               Math symbols.        (line 536)
+* \prime:                                Math symbols.        (line 541)
+* \printglossaries:                      Glossaries.          (line   6)
+* \printglossaries <1>:                  Glossaries.          (line  43)
+* \printindex:                           \printindex.         (line   6)
+* \printindex <1>:                       \printindex.         (line  10)
 * \ProcessOptions:                       Class and package commands.
-                                                              (line 232)
+                                                              (line 243)
 * \ProcessOptions*:                      Class and package commands.
-                                                              (line 232)
-* \prod:                                 Math symbols.        (line 544)
-* \propto:                               Math symbols.        (line 547)
+                                                              (line 243)
+* \prod:                                 Math symbols.        (line 550)
+* \propto:                               Math symbols.        (line 553)
 * \protect:                              \protect.            (line   6)
 * \providecommand:                       \providecommand.     (line   6)
 * \ProvidesClass:                        Class and package commands.
-                                                              (line 270)
+                                                              (line 281)
 * \ProvidesFile:                         Class and package commands.
-                                                              (line 301)
+                                                              (line 314)
 * \ProvidesPackage:                      Class and package commands.
-                                                              (line 270)
+                                                              (line 281)
 * \ps:                                   \ps.                 (line   6)
-* \Psi:                                  Math symbols.        (line 550)
-* \psi:                                  Math symbols.        (line 553)
-* \pushtabs:                             tabbing.             (line 115)
+* \Psi:                                  Math symbols.        (line 556)
+* \psi:                                  Math symbols.        (line 559)
+* \pushtabs:                             tabbing.             (line 116)
 * \put:                                  \put.                (line   6)
+* \qbezier:                              \qbezier.            (line   6)
 * \qquad:                                Spacing in math mode.
-                                                              (line  38)
+                                                              (line  57)
+* \qquad <1>:                            \enspace & \quad & \qquad.
+                                                              (line   6)
 * \quad:                                 Spacing in math mode.
-                                                              (line  32)
-* \quotedblbase (,,):                    Text symbols.        (line  50)
-* \quotesinglbase (,):                   Text symbols.        (line  51)
+                                                              (line  51)
+* \quad <1>:                             \enspace & \quad & \qquad.
+                                                              (line   6)
+* \quotedblbase (,,):                    Text symbols.        (line  51)
+* \quotesinglbase (,):                   Text symbols.        (line  52)
 * \r (ring accent):                      Accents.             (line  75)
 * \raggedbottom:                         \raggedbottom.       (line   6)
 * \raggedleft:                           \raggedleft.         (line   6)
 * \raggedright:                          \raggedright.        (line   6)
 * \raisebox:                             \raisebox.           (line   6)
-* \rangle:                               Math symbols.        (line 556)
-* \rbrace:                               Math symbols.        (line 560)
-* \rbrack:                               Math symbols.        (line 564)
-* \rceil:                                Math symbols.        (line 568)
-* \Re:                                   Math symbols.        (line 571)
+* \rangle:                               Math symbols.        (line 562)
+* \rbrace:                               Math symbols.        (line 567)
+* \rbrack:                               Math symbols.        (line 571)
+* \rceil:                                Math symbols.        (line 575)
+* \Re:                                   Math symbols.        (line 578)
 * \ref:                                  \ref.                (line   6)
 * \reflectbox:                           \scalebox.           (line   6)
-* \refname:                              thebibliography.     (line  26)
 * \refstepcounter:                       \refstepcounter.     (line   6)
 * \renewenvironment:                     \newenvironment & \renewenvironment.
                                                               (line   6)
 * \RequirePackage:                       Class and package commands.
-                                                              (line 310)
+                                                              (line 323)
 * \RequirePackageWithOptions:            Class and package commands.
-                                                              (line 310)
+                                                              (line 323)
 * \resizebox:                            \resizebox.          (line   6)
 * \restorecr:                            \obeycr & \restorecr.
                                                               (line   6)
-* \restriction:                          Math symbols.        (line 576)
-* \revemptyset:                          Math symbols.        (line 581)
-* \reversemarginpar:                     Marginal notes.      (line  24)
-* \rfloor:                               Math symbols.        (line 586)
-* \rhd:                                  Math symbols.        (line 590)
-* \rho:                                  Math symbols.        (line 597)
-* \right:                                Math miscellany.     (line  36)
-* \Rightarrow:                           Math symbols.        (line 601)
-* \rightarrow:                           Math symbols.        (line 605)
-* \rightharpoondown:                     Math symbols.        (line 610)
-* \rightharpoonup:                       Math symbols.        (line 613)
-* \rightleftharpoons:                    Math symbols.        (line 616)
-* \rightmargin:                          list.                (line 168)
-* \rm:                                   Font styles.         (line  79)
+* \restriction:                          Math symbols.        (line 583)
+* \revemptyset:                          Math symbols.        (line 588)
+* \reversemarginpar:                     Marginal notes.      (line  22)
+* \rfloor:                               Math symbols.        (line 593)
+* \rhd:                                  Math symbols.        (line 597)
+* \rho:                                  Math symbols.        (line 604)
+* \right:                                \left & \right.      (line   6)
+* \Rightarrow:                           Math symbols.        (line 608)
+* \rightarrow:                           Math symbols.        (line 613)
+* \rightharpoondown:                     Math symbols.        (line 617)
+* \rightharpoonup:                       Math symbols.        (line 620)
+* \rightleftharpoons:                    Math symbols.        (line 623)
+* \rightmargin:                          list.                (line 171)
+* \rm:                                   Font styles.         (line  83)
 * \rmfamily:                             Font styles.         (line  30)
 * \roman{COUNTER}:                       \alph \Alph \arabic \roman \Roman \fnsymbol.
-                                                              (line  23)
+                                                              (line  27)
 * \Roman{COUNTER}:                       \alph \Alph \arabic \roman \Roman \fnsymbol.
-                                                              (line  26)
+                                                              (line  32)
 * \rotatebox:                            \rotatebox.          (line   6)
-* \rq:                                   Text symbols.        (line  54)
+* \rq:                                   Text symbols.        (line  55)
 * \rule:                                 \rule.               (line   6)
-* \S:                                    Text symbols.        (line  57)
-* \savebox:                              \savebox.            (line   6)
-* \sbox:                                 \sbox.               (line   6)
-* \sc:                                   Font styles.         (line  82)
+* \S:                                    Text symbols.        (line  58)
+* \savebox:                              \sbox & \savebox.    (line   6)
+* \sbox:                                 \sbox & \savebox.    (line   6)
+* \sc:                                   Font styles.         (line  86)
 * \scalebox:                             \scalebox.           (line   6)
 * \scriptsize:                           Font sizes.          (line  11)
 * \scshape:                              Font styles.         (line  51)
-* \searrow:                              Math symbols.        (line 619)
+* \searrow:                              Math symbols.        (line 626)
 * \sec:                                  Math functions.      (line  93)
-* \section:                              Sectioning.          (line  11)
-* \seename:                              Indexes.             (line  20)
+* \section:                              Sectioning.          (line   6)
+* \section <1>:                          \section.            (line   6)
+* \seename:                              \index.              (line  56)
 * \selectfont:                           Low-level font commands.
                                                               (line 131)
 * \setcounter:                           \setcounter.         (line   6)
 * \setlength:                            \setlength.          (line   6)
-* \setminus:                             Math symbols.        (line 622)
+* \setminus:                             Math symbols.        (line 629)
 * \settodepth:                           \settodepth.         (line   6)
 * \settoheight:                          \settoheight.        (line   6)
 * \settowidth:                           \settowidth.         (line   6)
-* \sf:                                   Font styles.         (line  85)
+* \sf:                                   Font styles.         (line  89)
 * \sffamily:                             Font styles.         (line  48)
-* \sharp:                                Math symbols.        (line 628)
+* \sharp:                                Math symbols.        (line 635)
 * \shortstack:                           \shortstack.         (line   6)
-* \Sigma:                                Math symbols.        (line 631)
-* \sigma:                                Math symbols.        (line 634)
+* \Sigma:                                Math symbols.        (line 638)
+* \sigma:                                Math symbols.        (line 641)
 * \signature:                            \signature.          (line  11)
-* \sim:                                  Math symbols.        (line 638)
-* \simeq:                                Math symbols.        (line 641)
+* \sim:                                  Math symbols.        (line 645)
+* \simeq:                                Math symbols.        (line 648)
 * \sin:                                  Math functions.      (line  96)
 * \sinh:                                 Math functions.      (line  99)
-* \sl:                                   Font styles.         (line  88)
-* \sloppy:                               \sloppy.             (line   6)
+* \sl:                                   Font styles.         (line  92)
+* \sloppy:                               \fussy & \sloppy.    (line   6)
 * \slshape:                              Font styles.         (line  45)
 * \small:                                Font sizes.          (line  11)
-* \smallint:                             Math symbols.        (line 644)
-* \smallskip:                            \bigskip \medskip \smallskip.
-                                                              (line  19)
-* \smallskipamount:                      \bigskip \medskip \smallskip.
-                                                              (line  20)
-* \smile:                                Math symbols.        (line 648)
+* \smallint:                             Math symbols.        (line 651)
+* \smallskip:                            \bigskip & \medskip & \smallskip.
+                                                              (line  38)
+* \smallskipamount:                      \bigskip & \medskip & \smallskip.
+                                                              (line  39)
+* \smile:                                Math symbols.        (line 655)
+* \SPACE:                                \(SPACE).            (line   6)
 * \spacefactor:                          \spacefactor.        (line  10)
-* \spadesuit:                            Math symbols.        (line 651)
-* \sqcap:                                Math symbols.        (line 654)
-* \sqcup:                                Math symbols.        (line 658)
-* \sqrt[ROOT]{ARG}:                      Math miscellany.     (line  66)
-* \sqsubset:                             Math symbols.        (line 662)
-* \sqsubseteq:                           Math symbols.        (line 667)
-* \sqsupset:                             Math symbols.        (line 672)
-* \sqsupseteq:                           Math symbols.        (line 677)
+* \spadesuit:                            Math symbols.        (line 658)
+* \sqcap:                                Math symbols.        (line 661)
+* \sqcup:                                Math symbols.        (line 665)
+* \sqrt:                                 \sqrt.               (line   6)
+* \sqsubset:                             Math symbols.        (line 669)
+* \sqsubseteq:                           Math symbols.        (line 674)
+* \sqsupset:                             Math symbols.        (line 679)
+* \sqsupseteq:                           Math symbols.        (line 684)
 * \ss (ss):                              Additional Latin letters.
                                                               (line  52)
 * \SS (SS):                              Additional Latin letters.
                                                               (line  52)
-* \stackrel{TEXT}{RELATION}:             Math miscellany.     (line  71)
-* \star:                                 Math symbols.        (line 681)
+* \stackrel:                             \stackrel.           (line   6)
+* \star:                                 Math symbols.        (line 689)
 * \stepcounter:                          \stepcounter.        (line   6)
-* \stop:                                 Command line.        (line  18)
-* \subparagraph:                         Sectioning.          (line  15)
-* \subsection:                           Sectioning.          (line  12)
-* \subset:                               Math symbols.        (line 688)
-* \subseteq:                             Math symbols.        (line 691)
-* \subsubsection:                        Sectioning.          (line  13)
-* \succ:                                 Math symbols.        (line 694)
-* \succeq:                               Math symbols.        (line 698)
-* \sum:                                  Math symbols.        (line 703)
+* \stop:                                 Recovering from errors.
+                                                              (line  23)
+* \strut:                                \strut.              (line   6)
+* \subparagraph:                         Sectioning.          (line   6)
+* \subparagraph <1>:                     \subsubsection & \paragraph & \subparagraph.
+                                                              (line   6)
+* \subsection:                           Sectioning.          (line   6)
+* \subsection <1>:                       \subsection.         (line   6)
+* \subset:                               Math symbols.        (line 697)
+* \subseteq:                             Math symbols.        (line 700)
+* \subsubsection:                        \subsubsection & \paragraph & \subparagraph.
+                                                              (line   6)
+* \succ:                                 Math symbols.        (line 703)
+* \succeq:                               Math symbols.        (line 707)
+* \sum:                                  Math symbols.        (line 712)
 * \sup:                                  Math functions.      (line 102)
 * \suppressfloats:                       Floats.              (line  87)
-* \supset:                               Math symbols.        (line 707)
-* \supseteq:                             Math symbols.        (line 710)
-* \surd:                                 Math symbols.        (line 713)
-* \swarrow:                              Math symbols.        (line 718)
+* \supset:                               Math symbols.        (line 716)
+* \supseteq:                             Math symbols.        (line 719)
+* \surd:                                 Math symbols.        (line 722)
+* \swarrow:                              Math symbols.        (line 727)
 * \symbol:                               Symbols by font position.
                                                               (line   6)
 * \t (tie-after accent):                 Accents.             (line  81)
-* \TAB:                                  \(SPACE) and \@.     (line   6)
-* \tabbingsep:                           tabbing.             (line 120)
-* \tabcolsep:                            tabular.             (line 171)
-* \tableofcontents:                      Tables of contents.  (line   6)
+* \TAB:                                  \(SPACE).            (line   6)
+* \tabbingsep:                           tabbing.             (line 121)
+* \tabcolsep:                            tabular.             (line 173)
+* \tableofcontents:                      Table of contents etc..
+                                                              (line   6)
 * \tan:                                  Math functions.      (line 105)
 * \tanh:                                 Math functions.      (line 108)
-* \tau:                                  Math symbols.        (line 721)
+* \tau:                                  Math symbols.        (line 730)
 * \telephone:                            \telephone.          (line   6)
-* \TeX:                                  Text symbols.        (line  60)
-* \textascendercompwordmark:             Text symbols.        (line  98)
-* \textasciicircum:                      Text symbols.        (line  63)
-* \textasciitilde:                       Text symbols.        (line  66)
-* \textasteriskcentered:                 Text symbols.        (line  69)
+* \TeX:                                  Text symbols.        (line  62)
+* \textascendercompwordmark:             Text symbols.        (line 100)
+* \textasciicircum:                      Text symbols.        (line  65)
+* \textasciitilde:                       Text symbols.        (line  68)
+* \textasteriskcentered:                 Text symbols.        (line  71)
 * \textbackslash:                        Reserved characters. (line  20)
-* \textbackslash <1>:                    Text symbols.        (line  72)
-* \textbar:                              Text symbols.        (line  75)
-* \textbardbl:                           Text symbols.        (line  78)
+* \textbackslash <1>:                    Text symbols.        (line  74)
+* \textbar:                              Text symbols.        (line  77)
+* \textbardbl:                           Text symbols.        (line  80)
 * \textbf:                               Font styles.         (line  39)
-* \textbigcircle:                        Text symbols.        (line  81)
-* \textbraceleft:                        Text symbols.        (line  84)
-* \textbraceright:                       Text symbols.        (line  87)
-* \textbullet:                           Text symbols.        (line  90)
-* \textcapitalcompwordmark:              Text symbols.        (line  97)
-* \textcircled{LETTER}:                  Text symbols.        (line  93)
-* \textcompwordmark:                     Text symbols.        (line  96)
-* \textcopyright:                        Text symbols.        (line  11)
-* \textdagger:                           Text symbols.        (line 103)
-* \textdaggerdbl:                        Text symbols.        (line 106)
-* \textdollar (or \$):                   Text symbols.        (line 109)
-* \textellipsis:                         Text symbols.        (line  35)
-* \textemdash (or ---):                  Text symbols.        (line 112)
-* \textendash (or --):                   Text symbols.        (line 115)
-* \texteuro:                             Text symbols.        (line 118)
-* \textexclamdown (or !`):               Text symbols.        (line 121)
+* \textbigcircle:                        Text symbols.        (line  83)
+* \textbraceleft:                        Text symbols.        (line  86)
+* \textbraceright:                       Text symbols.        (line  89)
+* \textbullet:                           Text symbols.        (line  92)
+* \textcapitalcompwordmark:              Text symbols.        (line  99)
+* \textcircled{LETTER}:                  Text symbols.        (line  95)
+* \textcompwordmark:                     Text symbols.        (line  98)
+* \textcopyright:                        Text symbols.        (line  12)
+* \textdagger:                           Text symbols.        (line 107)
+* \textdaggerdbl:                        Text symbols.        (line 110)
+* \textdollar (or \$):                   Text symbols.        (line 113)
+* \textellipsis:                         Text symbols.        (line  36)
+* \textemdash (or ---):                  Text symbols.        (line 116)
+* \textendash (or --):                   Text symbols.        (line 121)
+* \texteuro:                             Text symbols.        (line 124)
+* \textexclamdown (or !`):               Text symbols.        (line 130)
 * \textfloatsep:                         Floats.              (line 123)
 * \textfloatsep <1>:                     Floats.              (line 124)
 * \textfraction:                         Floats.              (line 102)
 * \textfraction <1>:                     Floats.              (line 103)
-* \textgreater:                          Text symbols.        (line 124)
+* \textgreater:                          Text symbols.        (line 133)
 * \textheight:                           Page layout parameters.
                                                               (line  91)
 * \textheight <1>:                       Page layout parameters.
                                                               (line  92)
 * \textit:                               Font styles.         (line  33)
-* \textleftarrow:                        Text symbols.        (line 130)
-* \textless:                             Text symbols.        (line 127)
+* \textleftarrow:                        Text symbols.        (line 139)
+* \textless:                             Text symbols.        (line 136)
 * \textmd:                               Font styles.         (line  36)
 * \textnormal:                           Font styles.         (line  57)
-* \textordfeminine:                      Text symbols.        (line 133)
-* \textordmasculine:                     Text symbols.        (line 134)
-* \textparagraph:                        Text symbols.        (line  43)
-* \textperiodcentered:                   Text symbols.        (line 137)
-* \textquestiondown (or ?`):             Text symbols.        (line 140)
-* \textquotedblleft (or ``):             Text symbols.        (line 143)
-* \textquotedblright (or ''):            Text symbols.        (line 146)
-* \textquoteleft (or `):                 Text symbols.        (line 149)
-* \textquoteright (or '):                Text symbols.        (line 152)
-* \textquotesingle:                      Text symbols.        (line 155)
-* \textquotestraightbase:                Text symbols.        (line 158)
-* \textquotestraightdblbase:             Text symbols.        (line 159)
-* \textregistered:                       Text symbols.        (line 162)
-* \textrightarrow:                       Text symbols.        (line 165)
+* \textordfeminine:                      Text symbols.        (line 142)
+* \textordmasculine:                     Text symbols.        (line 143)
+* \textparagraph:                        Text symbols.        (line  44)
+* \textperiodcentered:                   Text symbols.        (line 146)
+* \textquestiondown (or ?`):             Text symbols.        (line 149)
+* \textquotedblleft (or ``):             Text symbols.        (line 152)
+* \textquotedblright (or ''):            Text symbols.        (line 155)
+* \textquoteleft (or `):                 Text symbols.        (line 158)
+* \textquoteright (or '):                Text symbols.        (line 161)
+* \textquotesingle:                      Text symbols.        (line 164)
+* \textquotestraightbase:                Text symbols.        (line 167)
+* \textquotestraightdblbase:             Text symbols.        (line 168)
+* \textregistered:                       Text symbols.        (line 171)
+* \textrightarrow:                       Text symbols.        (line 174)
 * \textrm:                               Font styles.         (line  30)
 * \textsc:                               Font styles.         (line  51)
+* \textsection:                          Text symbols.        (line  59)
 * \textsf:                               Font styles.         (line  48)
 * \textsl:                               Font styles.         (line  45)
-* \textsterling:                         Text symbols.        (line  47)
-* \textthreequartersemdash:              Text symbols.        (line 168)
-* \texttrademark:                        Text symbols.        (line 171)
+* \textsterling:                         Text symbols.        (line  48)
+* \textthreequartersemdash:              Text symbols.        (line 177)
+* \texttrademark:                        Text symbols.        (line 180)
 * \texttt:                               Font styles.         (line  54)
-* \texttwelveudash:                      Text symbols.        (line 174)
-* \textunderscore:                       Text symbols.        (line 177)
+* \texttwelveudash:                      Text symbols.        (line 183)
+* \textunderscore:                       Text symbols.        (line 186)
 * \textup:                               Font styles.         (line  42)
-* \textvisiblespace:                     Text symbols.        (line 180)
+* \textvisiblespace:                     Text symbols.        (line 189)
 * \textwidth:                            Page layout parameters.
                                                               (line  99)
 * \textwidth <1>:                        Page layout parameters.
@@ -12540,156 +16103,473 @@
                                                               (line  56)
 * \TH (TH):                              Additional Latin letters.
                                                               (line  56)
-* \thanks{TEXT}:                         \maketitle.          (line  21)
-* \theta:                                Math symbols.        (line 724)
+* \thanks{TEXT}:                         \maketitle.          (line  56)
+* \theta:                                Math symbols.        (line 733)
 * \thicklines:                           \thicklines.         (line   6)
 * \thickspace:                           Spacing in math mode.
-                                                              (line  16)
+                                                              (line  23)
 * \thinlines:                            \thinlines.          (line   6)
 * \thinspace:                            Spacing in math mode.
-                                                              (line  25)
-* \thinspace <1>:                        \thinspace.          (line   6)
+                                                              (line  32)
+* \thinspace <1>:                        \thinspace & \negthinspace.
+                                                              (line   6)
 * \thispagestyle:                        \thispagestyle.      (line   6)
-* \tilde:                                Math accents.        (line  43)
-* \times:                                Math symbols.        (line 728)
+* \tilde:                                Math accents.        (line  37)
+* \times:                                Math symbols.        (line 737)
 * \tiny:                                 Font sizes.          (line  11)
-* \title{TEXT}:                          \maketitle.          (line  25)
-* \to:                                   Math symbols.        (line 732)
+* \title{TEXT}:                          \maketitle.          (line  63)
+* \to:                                   Math symbols.        (line 741)
 * \today:                                \today.              (line   6)
-* \top:                                  Math symbols.        (line 736)
+* \top:                                  Math symbols.        (line 745)
 * \topfraction:                          Floats.              (line 107)
 * \topfraction <1>:                      Floats.              (line 108)
 * \topmargin:                            Page layout parameters.
-                                                              (line 123)
-* \topsep:                               list.                (line 173)
+                                                              (line 124)
+* \topsep:                               list.                (line 176)
 * \topskip:                              Page layout parameters.
-                                                              (line 130)
+                                                              (line 131)
 * \topskip <1>:                          Page layout parameters.
-                                                              (line 131)
-* \totalheight:                          Predefined lengths.  (line  12)
-* \triangle:                             Math symbols.        (line 741)
-* \triangleleft:                         Math symbols.        (line 744)
-* \triangleright:                        Math symbols.        (line 750)
-* \tt:                                   Font styles.         (line  91)
+                                                              (line 132)
+* \triangle:                             Math symbols.        (line 750)
+* \triangleleft:                         Math symbols.        (line 753)
+* \triangleright:                        Math symbols.        (line 759)
+* \tt:                                   Font styles.         (line  95)
 * \ttfamily:                             Font styles.         (line  54)
 * \twocolumn:                            \twocolumn.          (line   6)
 * \typein:                               \typein.             (line   6)
 * \typeout:                              \typeout.            (line   6)
-* \u (breve accent):                     Accents.             (line  86)
-* \unboldmath:                           Math formulas.       (line  29)
-* \underbar:                             Accents.             (line  89)
-* \underbrace{MATH}:                     Math miscellany.     (line  75)
-* \underline{TEXT}:                      Math miscellany.     (line  79)
-* \unitlength:                           picture.             (line  10)
-* \unlhd:                                Math symbols.        (line 756)
-* \unrhd:                                Math symbols.        (line 763)
-* \Uparrow:                              Math symbols.        (line 770)
-* \uparrow:                              Math symbols.        (line 774)
-* \Updownarrow:                          Math symbols.        (line 778)
-* \updownarrow:                          Math symbols.        (line 783)
-* \upharpoonright:                       Math symbols.        (line 788)
-* \uplus:                                Math symbols.        (line 793)
+* \u (breve accent):                     Accents.             (line  85)
+* \unboldmath:                           \boldmath & \unboldmath.
+                                                              (line   6)
+* \unboldmath <1>:                       \boldmath & \unboldmath.
+                                                              (line  14)
+* \underbar:                             Accents.             (line  51)
+* \underbrace{MATH}:                     Over- and Underlining.
+                                                              (line  26)
+* \underline{TEXT}:                      Over- and Underlining.
+                                                              (line   9)
+* \unitlength:                           picture.             (line  25)
+* \unlhd:                                Math symbols.        (line 765)
+* \unrhd:                                Math symbols.        (line 772)
+* \Uparrow:                              Math symbols.        (line 779)
+* \uparrow:                              Math symbols.        (line 783)
+* \Updownarrow:                          Math symbols.        (line 787)
+* \updownarrow:                          Math symbols.        (line 792)
+* \upharpoonright:                       Math symbols.        (line 797)
+* \uplus:                                Math symbols.        (line 802)
 * \upshape:                              Font styles.         (line  42)
-* \Upsilon:                              Math symbols.        (line 800)
-* \upsilon:                              Math symbols.        (line 803)
+* \Upsilon:                              Math symbols.        (line 809)
+* \upsilon:                              Math symbols.        (line 812)
 * \usebox:                               \usebox.             (line   6)
 * \usecounter:                           \usecounter.         (line   6)
 * \usefont:                              Low-level font commands.
                                                               (line 139)
 * \usepackage:                           Additional packages. (line   6)
-* \v (breve accent):                     Accents.             (line  97)
+* \v (breve accent):                     Accents.             (line  89)
 * \value:                                \value.              (line   6)
-* \vanothing:                            Math symbols.        (line 811)
-* \varepsilon:                           Math symbols.        (line 806)
-* \varphi:                               Math symbols.        (line 816)
-* \varpi:                                Math symbols.        (line 820)
-* \varrho:                               Math symbols.        (line 824)
-* \varsigma:                             Math symbols.        (line 828)
-* \vartheta:                             Math symbols.        (line 832)
-* \vdash:                                Math symbols.        (line 836)
-* \vdots:                                Math miscellany.     (line  84)
-* \vec:                                  Math accents.        (line  46)
+* \vanothing:                            Math symbols.        (line 820)
+* \varepsilon:                           Math symbols.        (line 815)
+* \varphi:                               Math symbols.        (line 825)
+* \varpi:                                Math symbols.        (line 829)
+* \varrho:                               Math symbols.        (line 833)
+* \varsigma:                             Math symbols.        (line 837)
+* \vartheta:                             Math symbols.        (line 841)
+* \vdash:                                Math symbols.        (line 845)
+* \vdots:                                Dots.                (line  34)
+* \vec:                                  Math accents.        (line  40)
 * \vector:                               \vector.             (line   6)
-* \vee:                                  Math symbols.        (line 840)
+* \vee:                                  Math symbols.        (line 849)
 * \verb:                                 \verb.               (line   6)
-* \Vert:                                 Math symbols.        (line 845)
-* \vert:                                 Math symbols.        (line 861)
+* \Vert:                                 Math symbols.        (line 854)
+* \vert:                                 Math symbols.        (line 870)
 * \vfill:                                \vfill.              (line   6)
 * \vline:                                \vline.              (line   6)
 * \vspace:                               \vspace.             (line   6)
-* \wedge:                                Math symbols.        (line 879)
-* \widehat:                              Math accents.        (line  49)
-* \widetilde:                            Math accents.        (line  52)
-* \width:                                Predefined lengths.  (line   6)
-* \wp:                                   Math symbols.        (line 883)
-* \wr:                                   Math symbols.        (line 886)
-* \Xi:                                   Math symbols.        (line 889)
-* \xi:                                   Math symbols.        (line 892)
-* \year:                                 \day \month \year.   (line   6)
-* \zeta:                                 Math symbols.        (line 895)
-* \[:                                    Math formulas.       (line  16)
-* \\ (for center):                       center.              (line  14)
+* \wedge:                                Math symbols.        (line 888)
+* \widehat:                              Math accents.        (line  43)
+* \widetilde:                            Math accents.        (line  46)
+* \wp:                                   Math symbols.        (line 892)
+* \wr:                                   Math symbols.        (line 895)
+* \Xi:                                   Math symbols.        (line 898)
+* \xi:                                   Math symbols.        (line 901)
+* \year:                                 \day & \month & \year.
+                                                              (line   6)
+* \zeta:                                 Math symbols.        (line 904)
+* \\ (for center):                       center.              (line  16)
 * \\ (for eqnarray):                     eqnarray.            (line  29)
 * \\ (for flushright):                   flushright.          (line  12)
-* \\ (for \shortstack objects):          \shortstack.         (line  20)
-* \\ (tabbing):                          tabbing.             (line  65)
-* \\ for flushleft:                      flushleft.           (line  12)
-* \\ for letters:                        Letters.             (line  50)
-* \\ for tabular:                        tabular.             (line  34)
-* \\ for verse:                          verse.               (line  17)
-* \\ for \author:                        \maketitle.          (line  12)
-* \\ for \title:                         \maketitle.          (line  26)
+* \\ (for \shortstack objects):          \shortstack.         (line  32)
+* \\ (tabbing):                          tabbing.             (line  66)
+* \\ for flushleft:                      flushleft.           (line  14)
+* \\ for letters:                        Letters.             (line  49)
+* \\ for tabular:                        tabular.             (line  35)
+* \\ for verse:                          verse.               (line  21)
+* \\ for \author:                        \maketitle.          (line  43)
+* \\ for \title:                         \maketitle.          (line  64)
 * \\ force line break:                   \\.                  (line   6)
 * \\* (for eqnarray):                    eqnarray.            (line  37)
-* \]:                                    Math formulas.       (line  16)
 * \^:                                    Reserved characters. (line  20)
-* \^ (circumflex accent):                Accents.             (line  33)
+* \^ (circumflex accent):                Accents.             (line  38)
 * \_:                                    Reserved characters. (line  13)
-* \` (grave accent):                     Accents.             (line  37)
-* \` (tabbing):                          tabbing.             (line  92)
+* \` (grave accent):                     Accents.             (line  42)
+* \` (tabbing):                          tabbing.             (line  93)
 * \{:                                    Reserved characters. (line  13)
-* \|:                                    Math symbols.        (line  19)
+* \|:                                    Math symbols.        (line  18)
 * \}:                                    Reserved characters. (line  13)
 * \~:                                    Reserved characters. (line  20)
-* \~ (tilde accent):                     Accents.             (line  43)
+* \~ (tilde accent):                     Accents.             (line  46)
 * ^:                                     Subscripts & superscripts.
                                                               (line   6)
 * _:                                     Subscripts & superscripts.
                                                               (line   6)
+* 'see' and 'see also' index entries:    \index.              (line  56)
 * {...} for required arguments:          LaTeX command syntax.
                                                               (line   6)
+* ~:                                     ~.                   (line   6)
 * a4paper option:                        Document class options.
                                                               (line  19)
 * a5paper option:                        Document class options.
                                                               (line  19)
 * abstract environment:                  abstract.            (line   6)
+* abstracts:                             abstract.            (line   6)
+* accents:                               Accents.             (line   6)
+* accents, mathematical:                 Math accents.        (line   6)
+* accessing any character of a font:     Symbols by font position.
+                                                              (line   6)
+* acronyms, list of:                     Glossaries.          (line   6)
+* acute accent:                          Accents.             (line  27)
+* acute accent, math:                    Math accents.        (line  11)
+* additional packages, loading:          Additional packages. (line   6)
+* ae ligature:                           Additional Latin letters.
+                                                              (line  16)
+* algorithm2e package:                   tabbing.             (line 146)
+* align environment, from amsmath:       eqnarray.            (line   6)
+* aligning equations:                    eqnarray.            (line   6)
+* alignment via tabbing:                 tabbing.             (line   6)
+* amsfonts package:                      Math formulas.       (line  86)
+* amsmath package:                       array.               (line  55)
+* amsmath package <1>:                   array.               (line  66)
+* amsmath package <2>:                   displaymath.         (line  22)
+* amsmath package <3>:                   equation.            (line  20)
+* amsmath package <4>:                   theorem.             (line  28)
+* amsmath package <5>:                   Math formulas.       (line  86)
+* amsmath package <6>:                   Dots.                (line  37)
+* amsmath package <7>:                   Math functions.      (line 111)
+* amsmath package <8>:                   Colon character & \colon.
+                                                              (line  15)
+* amsmath package <9>:                   Colon character & \colon.
+                                                              (line  19)
+* amsmath package, replacing eqnarray:   eqnarray.            (line   6)
+* amsthm package:                        theorem.             (line  28)
+* amsthm package <1>:                    \rule.               (line  18)
+* appendices:                            \appendix.           (line   6)
+* appendix:                              \appendix.           (line   6)
+* appendix package:                      \appendix.           (line  29)
+* aring:                                 Additional Latin letters.
+                                                              (line  12)
+* array (package) package:               array.               (line  77)
 * array environment:                     array.               (line   6)
+* arrays, math:                          array.               (line   6)
+* arrow, left, in text:                  Text symbols.        (line 140)
+* arrow, right, in text:                 Text symbols.        (line 175)
 * article class:                         Document classes.    (line  11)
+* ascender height:                       Text symbols.        (line 101)
+* ASCII circumflex, in text:             Text symbols.        (line  66)
+* ASCII tilde, in text:                  Text symbols.        (line  69)
+* asterisk, centered, in text:           Text symbols.        (line  72)
+* Asymptote package:                     \line.               (line  36)
+* Asymptote package <1>:                 \strut.              (line  62)
+* Asymptote package <2>:                 \mbox & \makebox.    (line  73)
+* at clause, in font definitions:        \newfont.            (line  19)
+* at-sign:                               \@.                  (line   6)
+* author, for titlepage:                 \maketitle.          (line  43)
+* auxiliary file:                        Output files.        (line  33)
 * b5paper option:                        Document class options.
                                                               (line  19)
+* babel package:                         \chapter.            (line  71)
+* babel package <1>:                     thebibliography.     (line  53)
+* babel package <2>:                     Accents.             (line   6)
+* babel package <3>:                     \today.              (line  13)
+* babel package <4>:                     Table of contents etc..
+                                                              (line  80)
+* babel package <5>:                     \index.              (line  56)
+* background, colored:                   Colored pages.       (line   6)
+* backslash, in text:                    Text symbols.        (line  75)
+* bar, double vertical, in text:         Text symbols.        (line  81)
+* bar, vertical, in text:                Text symbols.        (line  78)
+* bar-over accent:                       Accents.             (line  34)
+* bar-over accent, math:                 Math accents.        (line  14)
+* bar-under accent:                      Accents.             (line  49)
+* basics of LaTeX:                       Overview.            (line   6)
+* beamer template and class:             beamer template.     (line   6)
+* beginning of document hook:            \AtBeginDocument.    (line   6)
+* bibliography format, open:             Document class options.
+                                                              (line  67)
+* bibliography, creating (automatically): Using BibTeX.       (line   6)
+* bibliography, creating (manually):     thebibliography.     (line   6)
+* bibTeX, using:                         Using BibTeX.        (line   6)
+* big circle symbols, in text:           Text symbols.        (line  84)
+* Big point:                             Units of length.     (line  20)
+* bigfoot package:                       Footnotes of footnotes.
+                                                              (line   6)
+* black boxes, omitting:                 Document class options.
+                                                              (line  53)
+* blackboard bold:                       Blackboard bold.     (line   6)
+* bm package:                            \boldmath & \unboldmath.
+                                                              (line  32)
+* bold font:                             Font styles.         (line  75)
+* bold math:                             Font styles.         (line 128)
+* bold typewriter, avoiding:             description.         (line  36)
+* boldface mathematics:                  \boldmath & \unboldmath.
+                                                              (line   6)
 * book class:                            Document classes.    (line  11)
+* book, back matter:                     \frontmatter & \mainmatter & \backmatter.
+                                                              (line   6)
+* book, end matter:                      \frontmatter & \mainmatter & \backmatter.
+                                                              (line   6)
+* book, front matter:                    \frontmatter & \mainmatter & \backmatter.
+                                                              (line   6)
+* book, main matter:                     \frontmatter & \mainmatter & \backmatter.
+                                                              (line   6)
 * bottomnumber:                          Floats.              (line 130)
 * bottomnumber <1>:                      Floats.              (line 131)
+* box:                                   \mbox & \makebox.    (line   6)
+* box, allocating new:                   \newsavebox.         (line   6)
+* box, colored:                          Colored boxes.       (line   6)
+* box, save:                             \sbox & \savebox.    (line   6)
+* box, use saved box:                    \usebox.             (line   6)
+* boxes:                                 Boxes.               (line   6)
 * bp:                                    Units of length.     (line  20)
+* brace, left, in text:                  Text symbols.        (line  87)
+* brace, right, in text:                 Text symbols.        (line  90)
+* breaking lines:                        Line breaking.       (line   6)
+* breaking pages:                        Page breaking.       (line   6)
+* breaks, multiplication discretionary:  \*.                  (line   6)
+* breve accent:                          Accents.             (line  85)
+* breve accent, math:                    Math accents.        (line  17)
+* bug reporting:                         About this document. (line  21)
+* bullet lists:                          itemize.             (line   6)
+* bullet symbol:                         Math symbols.        (line 113)
+* bullet, in text:                       Text symbols.        (line  93)
+* bulleted lists:                        itemize.             (line   6)
+* calligraphic fonts:                    Calligraphic.        (line   6)
+* calligraphic letters for math:         Font styles.         (line  78)
+* cap height:                            Text symbols.        (line 101)
+* caron accent:                          Accents.             (line  89)
+* catcode:                               \makeatletter & \makeatother.
+                                                              (line  18)
+* category code, character:              \makeatletter & \makeatother.
+                                                              (line  18)
 * cc:                                    Units of length.     (line  33)
+* cc list, in letters:                   \cc.                 (line   6)
+* cedilla accent:                        Accents.             (line  59)
 * center environment:                    center.              (line   6)
+* centered asterisk, in text:            Text symbols.        (line  72)
+* centered equations:                    Document class options.
+                                                              (line  57)
+* centered period, in text:              Text symbols.        (line 147)
+* centering text, declaration for:       \centering.          (line   6)
+* centering text, environment for:       center.              (line   6)
+* Centimeter:                            Units of length.     (line  24)
+* chapter:                               Sectioning.          (line   6)
+* chapter <1>:                           \chapter.            (line   6)
+* character category code:               \makeatletter & \makeatother.
+                                                              (line  18)
+* characters, accented:                  Accents.             (line   6)
+* characters, case of:                   Upper and lower case.
+                                                              (line   6)
+* characters, non-English:               Additional Latin letters.
+                                                              (line   6)
+* characters, reserved:                  Reserved characters. (line   6)
+* characters, special:                   Reserved characters. (line   6)
+* check accent:                          Accents.             (line  89)
+* check accent, math:                    Math accents.        (line  20)
+* Cicero:                                Units of length.     (line  33)
+* circle symbol, big, in text:           Text symbols.        (line  84)
+* circled letter, in text:               Text symbols.        (line  96)
+* circumflex accent:                     Accents.             (line  38)
+* circumflex accent, math:               Math accents.        (line  32)
+* circumflex, ASCII, in text:            Text symbols.        (line  66)
+* citation key:                          \bibitem.            (line  15)
+* class and package commands:            Class and package commands.
+                                                              (line   6)
+* class and package difference:          Class and package construction.
+                                                              (line  15)
+* class and package structure:           Class and package structure.
+                                                              (line   6)
+* class file example:                    Class and package structure.
+                                                              (line  36)
+* class file layout:                     Class and package structure.
+                                                              (line   6)
+* class options:                         Document class options.
+                                                              (line   6)
+* class options <1>:                     Class and package structure.
+                                                              (line   6)
+* class options <2>:                     Class and package commands.
+                                                              (line  66)
+* classes of documents:                  Document classes.    (line   6)
+* cleveref package:                      Cross references.    (line  38)
+* cleveref package <1>:                  \ref.                (line  29)
+* cleveref package <2>:                  \footnotemark.       (line  48)
 * clock option to slides class:          Document class options.
                                                               (line  99)
+* closing letters:                       \closing.            (line   6)
+* closing quote:                         Text symbols.        (line  56)
 * cm:                                    Units of length.     (line  24)
+* code, typesetting:                     verbatim.            (line   6)
+* colon character:                       Colon character & \colon.
+                                                              (line   6)
+* color:                                 Color.               (line   6)
+* color <1>:                             Define colors.       (line   6)
+* color <2>:                             Colored text.        (line   6)
+* color <3>:                             Colored boxes.       (line   6)
+* color <4>:                             Colored pages.       (line   6)
+* color models:                          Color models.        (line   6)
+* color package commands:                Commands for color.  (line   6)
+* color package options:                 Color package options.
+                                                              (line   6)
+* color, define:                         Define colors.       (line   6)
+* colored boxes:                         Colored boxes.       (line   6)
+* colored page:                          Colored pages.       (line   6)
+* colored text:                          Colored text.        (line   6)
+* command line:                          Command line.        (line   6)
+* command syntax:                        LaTeX command syntax.
+                                                              (line   6)
+* commands, class and package:           Class and package commands.
+                                                              (line   6)
+* commands, defining new ones:           \newcommand & \renewcommand.
+                                                              (line   6)
+* commands, defining new ones <1>:       \providecommand.     (line   6)
+* commands, document class:              Class and package construction.
+                                                              (line   6)
+* commands, graphics package:            Commands for graphics.
+                                                              (line   6)
+* commands, ignore spaces:               \ignorespaces & \ignorespacesafterend.
+                                                              (line   6)
+* commands, redefining:                  \newcommand & \renewcommand.
+                                                              (line   6)
+* commands, star-variants:               \@ifstar.            (line   6)
+* composite word mark, in text:          Text symbols.        (line 101)
+* computer programs, typesetting:        verbatim.            (line   6)
+* configuration, graphics package:       Graphics package configuration.
+                                                              (line   6)
+* contents file:                         Output files.        (line  43)
+* copyright symbol:                      Text symbols.        (line  13)
+* counters, a list of:                   Counters.            (line   6)
+* counters, defining new:                \newcounter.         (line   6)
+* counters, getting value of:            \value.              (line   6)
+* counters, printing:                    \alph \Alph \arabic \roman \Roman \fnsymbol.
+                                                              (line   6)
+* counters, setting:                     \setcounter.         (line   6)
+* cprotect package:                      verbatim.            (line  26)
+* cprotect package <1>:                  \verb.               (line  45)
+* creating pictures:                     picture.             (line   6)
+* creating tables:                       table.               (line   6)
+* credit footnote:                       \maketitle.          (line  57)
+* cross references:                      Cross references.    (line   6)
+* cross references, resolving:           Output files.        (line  33)
+* cross referencing with page number:    \pageref.            (line   6)
+* cross referencing, symbolic:           \ref.                (line   6)
+* CTAN:                                  CTAN.                (line   6)
+* currency, dollar:                      Text symbols.        (line 114)
+* currency, euro:                        Text symbols.        (line 125)
+* dagger, double, in text:               Text symbols.        (line 111)
+* dagger, in text:                       Text symbols.        (line  16)
+* dagger, in text <1>:                   Text symbols.        (line 108)
+* DANTE e.V.:                            CTAN.                (line  20)
+* date, for titlepage:                   \maketitle.          (line  51)
+* date, today's:                         \today.              (line   6)
+* datetime package:                      \today.              (line  27)
 * dbltopnumber:                          Floats.              (line 134)
 * dbltopnumber <1>:                      Floats.              (line 135)
+* dcolumn package:                       array.               (line  77)
 * dd:                                    Units of length.     (line  30)
+* define color:                          Define colors.       (line   6)
+* defining a new command:                \newcommand & \renewcommand.
+                                                              (line   6)
+* defining a new command <1>:            \providecommand.     (line   6)
+* defining new environments:             \newenvironment & \renewenvironment.
+                                                              (line   6)
+* defining new fonts:                    \newfont.            (line   6)
+* defining new theorems:                 \newtheorem.         (line   6)
+* definitions:                           Definitions.         (line   6)
+* delimiters, paired:                    \left & \right.      (line   6)
+* delim_0:                               makeindex.           (line 110)
+* delim_1:                               makeindex.           (line 114)
+* delim_2:                               makeindex.           (line 118)
+* delim_n:                               makeindex.           (line 122)
+* delim_r:                               makeindex.           (line 126)
+* description:                           \newglossaryentry.   (line  46)
 * description environment:               description.         (line   6)
+* description lists, creating:           description.         (line   6)
+* design size, in font definitions:      \newfont.            (line  19)
+* Didot point:                           Units of length.     (line  30)
+* dieresis accent:                       Accents.             (line  23)
+* difference between class and package:  Class and package construction.
+                                                              (line  15)
+* discretionary breaks, multiplication:  \*.                  (line   6)
+* discretionary hyphenation:             \discretionary.      (line   6)
+* display math mode:                     Modes.               (line  29)
+* displaying quoted text with paragraph indentation: quotation & quote.
+                                                              (line   6)
+* displaying quoted text without paragraph indentation: quotation & quote.
+                                                              (line   6)
 * displaymath environment:               displaymath.         (line   6)
 * displaymath environment <1>:           Math formulas.       (line   6)
+* document class commands:               Class and package construction.
+                                                              (line   6)
+* document class options:                Document class options.
+                                                              (line   6)
+* document class, defined:               Starting and ending. (line  17)
+* document classes:                      Document classes.    (line   6)
 * document environment:                  document.            (line   6)
+* document templates:                    Document templates.  (line   6)
+* dollar sign:                           Text symbols.        (line 114)
+* dot accent:                            Accents.             (line  30)
+* dot over accent, math:                 Math accents.        (line  26)
+* dot-over accent:                       Accents.             (line  30)
+* dot-under accent:                      Accents.             (line  63)
+* dotless i:                             Accents.             (line  17)
+* dotless i, math:                       Math symbols.        (line 265)
+* dotless j:                             Accents.             (line  17)
+* dotless j, math:                       Math symbols.        (line 287)
+* dots:                                  Dots.                (line   6)
+* double angle quotation marks:          Text symbols.        (line  31)
+* double dagger, in text:                Text symbols.        (line  19)
+* double dagger, in text <1>:            Text symbols.        (line 111)
+* double dot accent, math:               Math accents.        (line  23)
+* double guillemets:                     Text symbols.        (line  31)
+* double left quote:                     Text symbols.        (line 153)
+* double low-9 quotation mark:           Text symbols.        (line  53)
+* double quote, straight base:           Text symbols.        (line 169)
+* double right quote:                    Text symbols.        (line 156)
+* double spacing:                        Low-level font commands.
+                                                              (line 118)
+* double vertical bar, in text:          Text symbols.        (line  81)
+* doublestruck:                          Blackboard bold.     (line   6)
 * draft option:                          Document class options.
                                                               (line  49)
 * dvipdfmx command:                      Output files.        (line  10)
 * dvips command:                         Output files.        (line  10)
 * dvitype command:                       Output files.        (line  10)
+* e-dash:                                Text symbols.        (line 122)
+* e-TeX:                                 TeX engines.         (line  13)
+* ellipses:                              Dots.                (line   6)
+* ellipsis:                              Text symbols.        (line  37)
 * em:                                    Units of length.     (line  38)
+* em <1>:                                Units of length.     (line  38)
+* em-dash:                               Text symbols.        (line 117)
+* em-dash, three-quarters:               Text symbols.        (line 178)
+* em-dash, two-thirds:                   Text symbols.        (line 184)
+* emphasis:                              Font styles.         (line  59)
+* enclosure list:                        \encl.               (line   6)
+* end of document hook:                  \AtEndDocument.      (line   6)
+* ending and starting:                   Starting and ending. (line   6)
+* engines, TeX:                          TeX engines.         (line   6)
+* enlarge current page:                  \enlargethispage.    (line   6)
 * enumerate environment:                 enumerate.           (line   6)
+* enumitem package:                      list.                (line 253)
+* environment:                           Starting and ending. (line  25)
 * environment, abstract:                 abstract.            (line   6)
 * environment, array:                    array.               (line   6)
 * environment, center:                   center.              (line   6)
@@ -12713,63 +16593,423 @@
 * environment, math <1>:                 Math formulas.       (line   6)
 * environment, minipage:                 minipage.            (line   6)
 * environment, picture:                  picture.             (line   6)
-* environment, quotation:                quotation and quote. (line   6)
-* environment, quote:                    quotation and quote. (line   6)
+* environment, quotation:                quotation & quote.   (line   6)
+* environment, quote:                    quotation & quote.   (line   6)
 * environment, tabbing:                  tabbing.             (line   6)
 * environment, table:                    table.               (line   6)
 * environment, tabular:                  tabular.             (line   6)
 * environment, thebibliography:          thebibliography.     (line   6)
 * environment, theorem:                  theorem.             (line   6)
+* environment, theorem-like:             \newtheorem.         (line   6)
 * environment, titlepage:                titlepage.           (line   6)
 * environment, verbatim:                 verbatim.            (line   6)
 * environment, verse:                    verse.               (line   6)
+* environments:                          Environments.        (line   6)
+* environments, defining:                \newenvironment & \renewenvironment.
+                                                              (line   6)
+* envlab package:                        \makelabels.         (line  55)
+* EPS files:                             Graphics package configuration.
+                                                              (line   6)
+* EPS files <1>:                         \includegraphics.    (line   6)
 * eqnarray environment:                  eqnarray.            (line   6)
 * equation environment:                  equation.            (line   6)
 * equation environment <1>:              Math formulas.       (line   6)
-* etex command:                          TeX engines.         (line  12)
+* equation number, cross referencing:    \ref.                (line   6)
+* equation numbers, left vs. right:      Document class options.
+                                                              (line  63)
+* equation numbers, omitting:            eqnarray.            (line  41)
+* equations, aligning:                   eqnarray.            (line   6)
+* equations, environment for:            equation.            (line   6)
+* equations, flush left vs. centered:    Document class options.
+                                                              (line  57)
+* es-zet German letter:                  Additional Latin letters.
+                                                              (line  52)
+* etex command:                          TeX engines.         (line  13)
+* eth, Icelandic letter:                 Additional Latin letters.
+                                                              (line  20)
+* etoolbox package:                      Class and package commands.
+                                                              (line 110)
+* euro symbol:                           Text symbols.        (line 125)
+* eurosym package:                       Text symbols.        (line 125)
 * ex:                                    Units of length.     (line  38)
+* ex <1>:                                Units of length.     (line  38)
+* exclamation point, upside-down:        Text symbols.        (line 131)
 * executivepaper option:                 Document class options.
                                                               (line  19)
+* exponent:                              Subscripts & superscripts.
+                                                              (line   6)
+* extended Latin:                        Additional Latin letters.
+                                                              (line   6)
+* external files, writing:               filecontents.        (line   6)
+* families, of fonts:                    Low-level font commands.
+                                                              (line  21)
+* fancyhdr package:                      Page styles.         (line  12)
+* fancyhdr package <1>:                  \pagestyle.          (line  13)
+* fancyvrb package:                      tabbing.             (line 146)
+* fancyvrb package <1>:                  verbatim.            (line  37)
+* feminine ordinal symbol:               Text symbols.        (line 144)
 * figure environment:                    figure.              (line   6)
+* figure number, cross referencing:      \ref.                (line   6)
+* figures, footnotes in:                 minipage.            (line 108)
+* figures, inserting:                    figure.              (line   6)
+* file, root:                            Splitting the input. (line  10)
 * filecontents environment:              filecontents.        (line   6)
 * filecontents* environment:             filecontents.        (line   6)
 * final option:                          Document class options.
                                                               (line  49)
 * first-latex-doc document:              About this document. (line  33)
+* fixed-width font:                      Font styles.         (line  96)
+* flafter package:                       Floats.              (line  82)
 * fleqn option:                          Document class options.
                                                               (line  49)
+* float package:                         Floats.              (line  52)
+* float page:                            Floats.              (line  58)
+* flush left equations:                  Document class options.
+                                                              (line  57)
+* flushing floats and starting a page:   \clearpage & \cleardoublepage.
+                                                              (line   6)
 * flushleft environment:                 flushleft.           (line   6)
 * flushright environment:                flushright.          (line   6)
-* <http://puszcza.gnu.org.ua/software/latexrefman/> home page: About this document.
+* font catalogue:                        Low-level font commands.
+                                                              (line  21)
+* font commands, low-level:              Low-level font commands.
                                                               (line   6)
+* font size:                             Low-level font commands.
+                                                              (line 101)
+* font sizes:                            Font sizes.          (line   6)
+* font styles:                           Font styles.         (line   6)
+* font symbols, by number:               Symbols by font position.
+                                                              (line   6)
+* fonts:                                 Fonts.               (line   6)
+* fonts, new commands for:               \newfont.            (line   6)
+* fonts, script:                         Calligraphic.        (line   6)
+* footer style:                          \pagestyle.          (line   6)
+* footer, parameters for:                Page layout parameters.
+                                                              (line   6)
+* footnote number, cross referencing:    \ref.                (line   6)
+* footnote parameters:                   \footnote.           (line  34)
+* footnote, in a table:                  Footnotes in a table.
+                                                              (line   6)
+* footnote, in section headings:         Footnotes in section headings.
+                                                              (line   6)
+* footnote, of a footnote:               Footnotes of footnotes.
+                                                              (line   6)
+* footnotes in figures:                  minipage.            (line 108)
+* footnotes, creating:                   Footnotes.           (line   6)
+* Footnotes, in a minipage:              \footnote.           (line  62)
+* footnotes, symbols instead of numbers: \footnote.           (line  24)
+* formulas, environment for:             equation.            (line   6)
+* formulas, math:                        Math formulas.       (line   6)
+* forward reference:                     Cross references.    (line  27)
+* forward references, resolving:         Output files.        (line  33)
+* fraction:                              \frac.               (line   6)
+* fragile commands:                      \protect.            (line   6)
+* frame rule width:                      \fbox & \framebox.   (line  39)
+* frame, line width:                     \fbox & \framebox.   (line  39)
+* frame, separation from contents:       \fbox & \framebox.   (line  44)
+* French quotation marks:                Text symbols.        (line  31)
+* functions, math:                       Math functions.      (line   6)
+* geometry package:                      Document class options.
+                                                              (line  40)
+* geometry package <1>:                  Document class options.
+                                                              (line  44)
+* global options:                        Document class options.
+                                                              (line   6)
+* global options <1>:                    Additional packages. (line  15)
+* glossaries:                            Glossaries.          (line   6)
+* glossary:                              Glossaries.          (line   6)
+* glossary, entries:                     \newglossaryentry.   (line   6)
+* glossary, entry reference:             \gls.                (line   6)
+* glue register, plain TeX:              \newlength.          (line   6)
+* graphics:                              Graphics.            (line   6)
+* graphics <1>:                          Graphics package configuration.
+                                                              (line   6)
+* graphics <2>:                          \includegraphics.    (line   6)
+* graphics package:                      Graphics.            (line   6)
+* graphics package <1>:                  Graphics package configuration.
+                                                              (line   6)
+* graphics package <2>:                  \includegraphics.    (line   6)
+* graphics package commands:             Commands for graphics.
+                                                              (line   6)
+* graphics package options:              Graphics package options.
+                                                              (line   6)
+* graphics packages:                     \line.               (line  36)
+* graphics, resizing:                    \scalebox.           (line   6)
+* graphics, resizing <1>:                \resizebox.          (line   6)
+* graphics, scaling:                     \scalebox.           (line   6)
+* graphics, scaling <1>:                 \resizebox.          (line   6)
+* grave accent:                          Accents.             (line  42)
+* grave accent, math:                    Math accents.        (line  29)
+* greater than symbol, in text:          Text symbols.        (line 134)
+* greek letters:                         Math symbols.        (line   6)
+* group, and environments:               Environments.        (line  18)
+* group_skip:                            makeindex.           (line  57)
+* ha'c<ek accent, math:                  Math accents.        (line  20)
+* hacek accent:                          Accents.             (line  89)
+* Halmos symbol:                         \rule.               (line  13)
+* hat accent:                            Accents.             (line  38)
+* hat accent, math:                      Math accents.        (line  32)
+* header style:                          \pagestyle.          (line   6)
+* header, parameters for:                Page layout parameters.
+                                                              (line   6)
+* hello, world:                          Starting and ending. (line   6)
+* here, putting floats:                  Floats.              (line  52)
+* home page for manual:                  About this document. (line   6)
+* horizontal space:                      \hss.                (line   6)
+* horizontal space, stretchable:         \hss.                (line   6)
+* hungarian umlaut accent:               Accents.             (line  67)
+* hyperref package:                      \footnotemark.       (line  48)
+* hyperref package <1>:                  \footnotemark.       (line  57)
+* hyperref package <2>:                  \pagenumbering.      (line  45)
+* hyperref package <3>:                  Command line input.  (line  10)
+* hyphenation, defining:                 \hyphenation.        (line   6)
+* hyphenation, discretionary:            \discretionary.      (line   6)
+* hyphenation, forcing:                  \- (hyphenation).    (line   6)
+* hyphenation, preventing:               \mbox & \makebox.    (line   6)
+* Icelandic eth:                         Additional Latin letters.
+                                                              (line  20)
+* Icelandic thorn:                       Additional Latin letters.
+                                                              (line  56)
+* idx file:                              \index.              (line 106)
+* ij letter, Dutch:                      Additional Latin letters.
+                                                              (line  32)
+* implementations of TeX:                TeX engines.         (line   6)
+* importing graphics:                    \includegraphics.    (line   6)
 * in:                                    Units of length.     (line  17)
+* in-line formulas:                      math.                (line   6)
 * inch:                                  Units of length.     (line  17)
+* including graphics:                    \includegraphics.    (line   6)
+* indent, forcing:                       \indent & \noindent. (line   6)
+* indentation of paragraphs, in minipage: minipage.           (line 104)
+* indentfirst package:                   \part.               (line  50)
+* indentfirst package <1>:               \chapter.            (line  58)
+* indentfirst package <2>:               \section.            (line  60)
+* indentfirst package <3>:               \subsection.         (line  48)
+* indentfirst package <4>:               \subsubsection & \paragraph & \subparagraph.
+                                                              (line  61)
+* indentfirst package <5>:               \indent & \noindent. (line  48)
+* indent_length:                         makeindex.           (line 138)
+* indent_space:                          makeindex.           (line 134)
+* index entries, 'see' and 'see also':   \index.              (line  56)
+* index entry:                           \index.              (line   6)
+* index package:                         \index.              (line 101)
+* index, page range:                     \index.              (line  40)
+* index, printing:                       \printindex.         (line   6)
+* index, processing:                     makeindex.           (line   6)
+* index, style file:                     makeindex.           (line  18)
+* indexes:                               Indexes.             (line   6)
+* infinite horizontal stretch:           \hfill.              (line   6)
+* infinite vertical stretch:             \vfill.              (line   6)
+* inner paragraph mode:                  Modes.               (line  47)
+* input file:                            Splitting the input. (line   6)
+* input, on command line:                Command line input.  (line   6)
+* input/output, to terminal:             Terminal input/output.
+                                                              (line   6)
+* inserting figures:                     figure.              (line   6)
+* insertions of special characters:      Special insertions.  (line   6)
+* internal vertical mode:                Modes.               (line  38)
+* italic correction:                     \/.                  (line   6)
+* italic font:                           Font styles.         (line  81)
 * itemize environment:                   itemize.             (line   6)
+* item_0:                                makeindex.           (line  81)
+* item_01:                               makeindex.           (line  90)
+* item_1:                                makeindex.           (line  84)
+* item_12:                               makeindex.           (line 100)
+* item_2:                                makeindex.           (line  87)
+* item_x1:                               makeindex.           (line  94)
+* item_x2:                               makeindex.           (line 104)
+* JPEG files:                            Graphics package configuration.
+                                                              (line   6)
+* JPEG files <1>:                        \includegraphics.    (line   6)
+* JPG files:                             Graphics package configuration.
+                                                              (line   6)
+* JPG files <1>:                         \includegraphics.    (line   6)
+* justification, ragged left:            \raggedleft.         (line   6)
+* justification, ragged right:           \raggedright.        (line   6)
+* Knuth, Donald E.:                      Overview.            (line   6)
+* label:                                 Cross references.    (line   6)
+* labelled lists, creating:              description.         (line   6)
+* Lamport TeX:                           Overview.            (line  24)
+* Lamport, Leslie:                       Overview.            (line   6)
 * landscape option:                      Document class options.
                                                               (line  49)
+* landscape orientation:                 Document class options.
+                                                              (line  60)
 * latex command:                         Output files.        (line  10)
+* LaTeX logo:                            Text symbols.        (line  22)
+* LaTeX overview:                        Overview.            (line   6)
+* LaTeX Project team:                    About this document. (line  17)
+* LaTeX vs. LaTeX2e:                     About this document. (line  13)
 * latex-doc-ptr document:                About this document. (line  30)
+* LaTeX2e logo:                          Text symbols.        (line  25)
 * <latexrefman at tug.org> email address:   About this document. (line  17)
+* Latin letters, additional:             Additional Latin letters.
+                                                              (line   6)
+* layout commands:                       Layout.              (line   6)
+* layout, page parameters for:           Page layout parameters.
+                                                              (line   6)
+* left angle quotation marks:            Text symbols.        (line  31)
+* left arrow, in text:                   Text symbols.        (line 140)
+* left brace, in text:                   Text symbols.        (line  87)
+* left quote:                            Text symbols.        (line  41)
+* left quote, double:                    Text symbols.        (line 153)
+* left quote, single:                    Text symbols.        (line 159)
+* left-hand equation numbers:            Document class options.
+                                                              (line  63)
+* left-justifying text:                  \raggedright.        (line   6)
+* left-justifying text, environment for: flushleft.           (line   6)
+* left-to-right mode:                    Modes.               (line  16)
 * legalpaper option:                     Document class options.
                                                               (line  19)
+* lengths, adding to:                    \addtolength.        (line   6)
+* lengths, allocating new:               \newlength.          (line   6)
+* lengths, defining and using:           Lengths.             (line   6)
+* lengths, setting:                      \setlength.          (line   6)
 * leqno option:                          Document class options.
                                                               (line  49)
+* less than symbol, in text:             Text symbols.        (line 137)
+* lethead_flag:                          makeindex.           (line  64)
+* lethead_prefix:                        makeindex.           (line  73)
+* lethead_suffix:                        makeindex.           (line  77)
 * letter class:                          Document classes.    (line  11)
 * letter environment:                    letter.              (line   6)
 * letterpaper option:                    Document class options.
                                                               (line  19)
+* letters, accented:                     Accents.             (line   6)
+* letters, additional Latin:             Additional Latin letters.
+                                                              (line   6)
+* letters, ending:                       \closing.            (line   6)
+* letters, starting:                     \opening.            (line   6)
+* letters, writing:                      Letters.             (line   6)
+* line break, forcing:                   \\.                  (line   6)
+* line breaking:                         Line breaking.       (line   6)
+* line breaks, changing:                 \fussy & \sloppy.    (line   6)
+* line breaks, forcing:                  \linebreak & \nolinebreak.
+                                                              (line   6)
+* line breaks, multiplication discretionary: \*.              (line   6)
+* line breaks, preventing:               \linebreak & \nolinebreak.
+                                                              (line   6)
+* lines in tables:                       tabular.             (line   6)
+* line_max:                              makeindex.           (line 130)
+* lining numerals:                       Font styles.         (line 132)
+* lining text up in tables:              tabular.             (line   6)
+* lining text up using tab stops:        tabbing.             (line   6)
 * list environment:                      list.                (line   6)
-* lR box:                                picture.             (line  71)
+* list items, specifying counter:        \usecounter.         (line   6)
+* list of figures file:                  Output files.        (line  43)
+* list of tables file:                   Output files.        (line  43)
+* listings package:                      tabbing.             (line 146)
+* listings package <1>:                  verbatim.            (line  31)
+* listings package <2>:                  \verb.               (line  42)
+* lists of items:                        itemize.             (line   6)
+* lists of items, generic:               list.                (line   6)
+* lists of items, numbered:              enumerate.           (line   6)
+* loading additional packages:           Additional packages. (line   6)
+* log file:                              Output files.        (line  28)
+* logo, LaTeX:                           Text symbols.        (line  22)
+* logo, LaTeX2e:                         Text symbols.        (line  25)
+* logo, TeX:                             Text symbols.        (line  63)
+* long command:                          Class and package commands.
+                                                              (line  23)
+* low-9 quotation marks, single and double: Text symbols.     (line  53)
+* low-level font commands:               Low-level font commands.
+                                                              (line   6)
+* lowercase:                             Upper and lower case.
+                                                              (line   6)
+* LR box:                                picture.             (line 103)
+* LR mode:                               Modes.               (line  16)
 * lrbox:                                 lrbox.               (line   6)
 * lshort document:                       About this document. (line  41)
-* lualatex command:                      TeX engines.         (line  29)
+* ltugboat class:                        tugboat template.    (line   6)
+* lualatex command:                      TeX engines.         (line  30)
+* LuaTeX:                                TeX engines.         (line  30)
+* m-width:                               Units of length.     (line  38)
+* macro package, LaTeX as:               Overview.            (line  11)
+* macron accent:                         Accents.             (line  34)
+* macron accent, math:                   Math accents.        (line  14)
+* macros2e package:                      \makeatletter & \makeatother.
+                                                              (line  39)
+* Madsen, Lars:                          eqnarray.            (line   6)
+* make a box:                            \mbox & \makebox.    (line   6)
+* makeindex:                             makeindex.           (line   6)
+* makeindex program:                     makeindex.           (line   6)
+* makeindex, style file:                 makeindex.           (line  18)
+* making a title page:                   titlepage.           (line   6)
+* making paragraphs:                     Making paragraphs.   (line   6)
+* marginal notes:                        Marginal notes.      (line   6)
+* masculine ordinal symbol:              Text symbols.        (line 144)
+* matching brackets:                     \left & \right.      (line   6)
+* matching parentheses:                  \left & \right.      (line   6)
+* math accents:                          Math accents.        (line   6)
 * math environment:                      math.                (line   6)
 * math environment <1>:                  Math formulas.       (line   6)
+* math formulas:                         Math formulas.       (line   6)
+* math functions:                        Math functions.      (line   6)
+* math miscellany:                       Math miscellany.     (line   6)
+* math mode:                             Modes.               (line  26)
+* math mode, entering:                   Math formulas.       (line   6)
+* math mode, spacing:                    Spacing in math mode.
+                                                              (line   6)
+* math symbols:                          Math symbols.        (line   6)
+* math, bold:                            Font styles.         (line 128)
+* mathtools package:                     Math formulas.       (line  86)
+* mathtools package <1>:                 Over- and Underlining.
+                                                              (line  45)
+* MetaPost package:                      \line.               (line  36)
+* mfirstuc package:                      Upper and lower case.
+                                                              (line  45)
+* mhchem package:                        Subscripts & superscripts.
+                                                              (line  62)
+* Millimeter:                            Units of length.     (line  27)
 * minipage environment:                  minipage.            (line   6)
+* minipage, creating a:                  minipage.            (line   6)
+* minted package:                        tabbing.             (line 146)
+* minted package <1>:                    verbatim.            (line  31)
+* minted package <2>:                    \verb.               (line  42)
+* mirrors of CTAN:                       CTAN.                (line  20)
 * mm:                                    Units of length.     (line  27)
+* modes:                                 Modes.               (line   6)
+* monospace font:                        Font styles.         (line  96)
+* moving arguments:                      \protect.            (line  19)
+* mpfootnote counter:                    \footnote.           (line  62)
 * mu:                                    Units of length.     (line  49)
+* mu, math unit:                         Units of length.     (line  49)
+* multicolumn text:                      \twocolumn.          (line   6)
+* multilingual support:                  Accents.             (line   6)
+* multind package:                       Indexes.             (line  32)
+* multiplication, discretionary:         \*.                  (line   6)
+* name:                                  \newglossaryentry.   (line  43)
+* NBSP:                                  ~.                   (line   6)
+* nested \include, not allowed:          \include & \includeonly.
+                                                              (line 104)
+* new class commands:                    Class and package construction.
+                                                              (line   6)
+* new command, check:                    Class and package commands.
+                                                              (line  21)
+* new command, definition:               Class and package commands.
+                                                              (line  96)
+* new commands, defining:                \newcommand & \renewcommand.
+                                                              (line   6)
+* new commands, defining <1>:            \providecommand.     (line   6)
+* new line, output as input:             \obeycr & \restorecr.
+                                                              (line   6)
+* new line, starting:                    \\.                  (line   6)
+* new line, starting (paragraph mode):   \newline.            (line   6)
+* new page, starting:                    \newpage.            (line   6)
+* non-English characters:                Additional Latin letters.
+                                                              (line   6)
+* notes in the margin:                   Marginal notes.      (line   6)
 * notitlepage option:                    Document class options.
                                                               (line  49)
+* null delimiter:                        \left & \right.      (line   6)
+* numbered items, specifying counter:    \usecounter.         (line   6)
+* numerals, old-style:                   Font styles.         (line 132)
+* oblique font:                          Font styles.         (line  93)
+* oe ligature:                           Additional Latin letters.
+                                                              (line  48)
+* ogonek:                                Accents.             (line  71)
+* old-style numerals:                    Font styles.         (line 132)
+* one-column output:                     \onecolumn.          (line   6)
 * onecolumn option:                      Document class options.
                                                               (line  78)
 * oneside option:                        Document class options.
@@ -12778,307 +17018,1050 @@
                                                               (line  78)
 * openbib option:                        Document class options.
                                                               (line  49)
+* opening quote:                         Text symbols.        (line  41)
 * openright option:                      Document class options.
                                                               (line  78)
+* OpenType fonts:                        TeX engines.         (line   6)
+* options, class:                        Class and package commands.
+                                                              (line  66)
+* options, color package:                Color package options.
+                                                              (line   6)
+* options, command line:                 Command line options.
+                                                              (line   6)
+* options, document class:               Document class options.
+                                                              (line   6)
+* options, document class <1>:           Class and package structure.
+                                                              (line   6)
+* options, global:                       Additional packages. (line  15)
+* options, graphics package:             Graphics package options.
+                                                              (line   6)
+* options, package:                      Class and package structure.
+                                                              (line   6)
+* options, package <1>:                  Class and package commands.
+                                                              (line  66)
+* ordinals, feminine and masculine:      Text symbols.        (line 144)
+* oslash:                                Additional Latin letters.
+                                                              (line  44)
+* outer paragraph mode:                  Modes.               (line  47)
+* overbar accent:                        Accents.             (line  34)
+* overdot accent, math:                  Math accents.        (line  26)
+* overlining:                            Over- and Underlining.
+                                                              (line   6)
+* overview of LaTeX:                     Overview.            (line   6)
+* package file layout:                   Class and package structure.
+                                                              (line   6)
+* package options:                       Class and package structure.
+                                                              (line   6)
+* package options <1>:                   Class and package commands.
+                                                              (line  66)
+* package, algorithm2e:                  tabbing.             (line 146)
+* package, amsfonts:                     Math formulas.       (line  86)
+* package, amsmath:                      array.               (line  55)
+* package, amsmath <1>:                  array.               (line  66)
+* package, amsmath <2>:                  displaymath.         (line  22)
+* package, amsmath <3>:                  equation.            (line  20)
+* package, amsmath <4>:                  theorem.             (line  28)
+* package, amsmath <5>:                  Math formulas.       (line  86)
+* package, amsmath <6>:                  Dots.                (line  37)
+* package, amsmath <7>:                  Math functions.      (line 111)
+* package, amsmath <8>:                  Colon character & \colon.
+                                                              (line  15)
+* package, amsmath <9>:                  Colon character & \colon.
+                                                              (line  19)
+* package, amsthm:                       theorem.             (line  28)
+* package, amsthm <1>:                   \rule.               (line  18)
+* package, appendix:                     \appendix.           (line  29)
+* package, array (package):              array.               (line  77)
+* package, Asymptote:                    \line.               (line  36)
+* package, Asymptote <1>:                \strut.              (line  62)
+* package, Asymptote <2>:                \mbox & \makebox.    (line  73)
+* package, babel:                        \chapter.            (line  71)
+* package, babel <1>:                    thebibliography.     (line  53)
+* package, babel <2>:                    Accents.             (line   6)
+* package, babel <3>:                    \today.              (line  13)
+* package, babel <4>:                    Table of contents etc..
+                                                              (line  80)
+* package, babel <5>:                    \index.              (line  56)
+* package, bigfoot:                      Footnotes of footnotes.
+                                                              (line   6)
+* package, bm:                           \boldmath & \unboldmath.
+                                                              (line  32)
+* package, cleveref:                     Cross references.    (line  38)
+* package, cleveref <1>:                 \ref.                (line  29)
+* package, cleveref <2>:                 \footnotemark.       (line  48)
+* package, cprotect:                     verbatim.            (line  26)
+* package, cprotect <1>:                 \verb.               (line  45)
+* package, datetime:                     \today.              (line  27)
+* package, dcolumn:                      array.               (line  77)
+* package, enumitem:                     list.                (line 253)
+* package, envlab:                       \makelabels.         (line  55)
+* package, etoolbox:                     Class and package commands.
+                                                              (line 110)
+* package, eurosym:                      Text symbols.        (line 125)
+* package, fancyhdr:                     Page styles.         (line  12)
+* package, fancyhdr <1>:                 \pagestyle.          (line  13)
+* package, fancyvrb:                     tabbing.             (line 146)
+* package, fancyvrb <1>:                 verbatim.            (line  37)
+* package, flafter:                      Floats.              (line  82)
+* package, float:                        Floats.              (line  52)
+* package, geometry:                     Document class options.
+                                                              (line  40)
+* package, geometry <1>:                 Document class options.
+                                                              (line  44)
+* package, hyperref:                     \footnotemark.       (line  48)
+* package, hyperref <1>:                 \footnotemark.       (line  57)
+* package, hyperref <2>:                 \pagenumbering.      (line  45)
+* package, hyperref <3>:                 Command line input.  (line  10)
+* package, indentfirst:                  \part.               (line  50)
+* package, indentfirst <1>:              \chapter.            (line  58)
+* package, indentfirst <2>:              \section.            (line  60)
+* package, indentfirst <3>:              \subsection.         (line  48)
+* package, indentfirst <4>:              \subsubsection & \paragraph & \subparagraph.
+                                                              (line  61)
+* package, indentfirst <5>:              \indent & \noindent. (line  48)
+* package, index:                        \index.              (line 101)
+* package, listings:                     tabbing.             (line 146)
+* package, listings <1>:                 verbatim.            (line  31)
+* package, listings <2>:                 \verb.               (line  42)
+* package, macros2e:                     \makeatletter & \makeatother.
+                                                              (line  39)
+* package, mathtools:                    Math formulas.       (line  86)
+* package, mathtools <1>:                Over- and Underlining.
+                                                              (line  45)
+* package, MetaPost:                     \line.               (line  36)
+* package, mfirstuc:                     Upper and lower case.
+                                                              (line  45)
+* package, mhchem:                       Subscripts & superscripts.
+                                                              (line  62)
+* package, minted:                       tabbing.             (line 146)
+* package, minted <1>:                   verbatim.            (line  31)
+* package, minted <2>:                   \verb.               (line  42)
+* package, multind:                      Indexes.             (line  32)
+* package, pict2e:                       \line.               (line  36)
+* package, polyglossia:                  Accents.             (line   6)
+* package, polyglossia <1>:              \today.              (line  13)
+* package, polyglossia <2>:              Table of contents etc..
+                                                              (line  80)
+* package, polyglossia <3>:              \index.              (line  56)
+* package, PSTricks:                     \line.               (line  36)
+* package, sagetex:                      Command line options.
+                                                              (line  62)
+* package, setspace:                     Low-level font commands.
+                                                              (line 118)
+* package, showidx:                      Indexes.             (line  32)
+* package, siunitx:                      ~.                   (line  32)
+* package, symbols:                      Math symbols.        (line   6)
+* package, textcase:                     Upper and lower case.
+                                                              (line  42)
+* package, textcomp:                     Font styles.         (line 132)
+* package, TikZ:                         \line.               (line  36)
+* package, TikZ <1>:                     \strut.              (line  62)
+* package, TikZ <2>:                     \mbox & \makebox.    (line  72)
+* package, titlesec:                     \part.               (line  54)
+* package, titlesec <1>:                 \chapter.            (line  79)
+* package, titlesec <2>:                 \section.            (line  64)
+* package, titlesec <3>:                 \subsection.         (line  52)
+* package, titlesec <4>:                 \subsubsection & \paragraph & \subparagraph.
+                                                              (line  65)
+* package, tocbibbind:                   Table of contents etc..
+                                                              (line  91)
+* package, tocloft:                      Table of contents etc..
+                                                              (line  91)
+* package, ulem:                         Over- and Underlining.
+                                                              (line  15)
+* package, url:                          \verb.               (line  38)
+* package, verbatimbox:                  verbatim.            (line  37)
+* packages, loading additional:          Additional packages. (line   6)
+* page break, forcing:                   \pagebreak & \nopagebreak.
+                                                              (line   6)
+* page break, preventing:                \pagebreak & \nopagebreak.
+                                                              (line   6)
+* page breaking:                         Page breaking.       (line   6)
+* page layout parameters:                Page layout parameters.
+                                                              (line   6)
+* page number, cross referencing:        \pageref.            (line   6)
+* page numbering style:                  \pagenumbering.      (line   6)
+* page style, this page:                 \thispagestyle.      (line   6)
+* page styles:                           Page styles.         (line   6)
+* page, colored:                         Colored pages.       (line   6)
+* page_precedence:                       makeindex.           (line 143)
+* paired delimiters:                     \left & \right.      (line   6)
+* paragraph:                             Sectioning.          (line   6)
+* paragraph <1>:                         \subsubsection & \paragraph & \subparagraph.
+                                                              (line   6)
+* paragraph indentation:                 \parindent & \parskip.
+                                                              (line   6)
+* paragraph indentation, in minipage:    minipage.            (line 104)
+* paragraph indentations in quoted text: quotation & quote.   (line   6)
+* paragraph indentations in quoted text, omitting: quotation & quote.
+                                                              (line   6)
+* paragraph mode:                        Modes.               (line  12)
+* paragraph mode <1>:                    \parbox.             (line   6)
+* paragraph symbol:                      Text symbols.        (line  45)
+* paragraph, ending:                     \par.                (line   6)
+* paragraph, in a box:                   \parbox.             (line   6)
+* paragraphs:                            Making paragraphs.   (line   6)
+* parameters, for footnotes:             \footnote.           (line  34)
+* parameters, page layout:               Page layout parameters.
+                                                              (line   6)
+* part:                                  Sectioning.          (line   6)
+* part <1>:                              \part.               (line   6)
 * pc:                                    Units of length.     (line  14)
+* PDF graphic files:                     Graphics package configuration.
+                                                              (line   6)
+* PDF graphic files <1>:                 \includegraphics.    (line   6)
 * pdflatex command:                      Output files.        (line  20)
+* pdfTeX:                                Output files.        (line  20)
+* pdfTeX engine:                         TeX engines.         (line  13)
+* period, abbreviation-ending:           \@.                  (line   6)
+* period, centered, in text:             Text symbols.        (line 147)
+* period, sentence-ending:               \@.                  (line   6)
+* period, spacing after:                 \@.                  (line   6)
+* pica:                                  Units of length.     (line  14)
+* pict2e package:                        \line.               (line  36)
+* pict2e package <1>:                    \line.               (line  36)
 * picture environment:                   picture.             (line   6)
+* pictures, creating:                    picture.             (line   6)
+* pilcrow:                               Text symbols.        (line  45)
+* placement of floats:                   Floats.              (line  31)
+* plural:                                \newglossaryentry.   (line  51)
+* PNG files:                             Graphics package configuration.
+                                                              (line   6)
+* PNG files <1>:                         \includegraphics.    (line   6)
+* poetry, an environment for:            verse.               (line   6)
+* Point:                                 Units of length.     (line  10)
+* polish l:                              Additional Latin letters.
+                                                              (line  36)
+* polyglossia package:                   Accents.             (line   6)
+* polyglossia package <1>:               \today.              (line  13)
+* polyglossia package <2>:               Table of contents etc..
+                                                              (line  80)
+* polyglossia package <3>:               \index.              (line  56)
+* portrait orientation:                  Document class options.
+                                                              (line  60)
+* position, in picture:                  picture.             (line  77)
+* positional parameter:                  \newcommand & \renewcommand.
+                                                              (line  52)
+* postamble:                             makeindex.           (line  54)
+* postscript, in letters:                \ps.                 (line   6)
+* pounds symbol:                         Text symbols.        (line  49)
+* preamble:                              makeindex.           (line  50)
+* preamble, defined:                     Starting and ending. (line  22)
+* prompt, *:                             Recovering from errors.
+                                                              (line  23)
+* pronunciation:                         Overview.            (line  24)
+* PSTricks package:                      \line.               (line  36)
 * pt:                                    Units of length.     (line  10)
-* quotation environment:                 quotation and quote. (line   6)
-* quote environment:                     quotation and quote. (line   6)
+* quad:                                  Spacing in math mode.
+                                                              (line  51)
+* question mark, upside-down:            Text symbols.        (line 150)
+* quotation environment:                 quotation & quote.   (line   6)
+* quotation marks, French:               Text symbols.        (line  31)
+* quote environment:                     quotation & quote.   (line   6)
+* quote, single straight:                Text symbols.        (line 165)
+* quote, straight base:                  Text symbols.        (line 169)
+* quoted text with paragraph indentation, displaying: quotation & quote.
+                                                              (line   6)
+* quoted text without paragraph indentation, displaying: quotation & quote.
+                                                              (line   6)
+* radical:                               \sqrt.               (line   6)
+* ragged left text:                      \raggedleft.         (line   6)
+* ragged left text, environment for:     flushright.          (line   6)
+* ragged right text:                     \raggedright.        (line   6)
+* ragged right text, environment for:    flushleft.           (line   6)
+* redefining environments:               \newenvironment & \renewenvironment.
+                                                              (line   6)
+* reference, forward:                    Cross references.    (line  27)
+* references, resolving forward:         Output files.        (line  33)
+* registered symbol:                     Text symbols.        (line 172)
+* relation, text above:                  \stackrel.           (line   6)
+* remarks in the margin:                 Marginal notes.      (line   6)
 * report class:                          Document classes.    (line  11)
-* secnumdepth counter:                   Sectioning.          (line  47)
+* reporting bugs:                        About this document. (line  21)
+* reserved characters:                   Reserved characters. (line   6)
+* resizing:                              \scalebox.           (line   6)
+* resizing <1>:                          \resizebox.          (line   6)
+* right angle quotation marks:           Text symbols.        (line  31)
+* right arrow, in text:                  Text symbols.        (line 175)
+* right brace, in text:                  Text symbols.        (line  90)
+* right quote:                           Text symbols.        (line  56)
+* right quote, double:                   Text symbols.        (line 156)
+* right quote, single:                   Text symbols.        (line 162)
+* right-hand equation numbers:           Document class options.
+                                                              (line  63)
+* right-justifying text:                 \raggedleft.         (line   6)
+* right-justifying text, environment for: flushright.         (line   6)
+* ring accent:                           Accents.             (line  75)
+* ring accent, math:                     Math accents.        (line  35)
+* robust commands:                       \protect.            (line   6)
+* roman font:                            Font styles.         (line  84)
+* root file:                             Splitting the input. (line  10)
+* roots:                                 \sqrt.               (line   6)
+* rotating graphics:                     \rotatebox.          (line   6)
+* rotating text:                         \rotatebox.          (line   6)
+* rotation:                              \rotatebox.          (line   6)
+* row, tabbing:                          tabbing.             (line  46)
+* rubber lengths, defining new:          \newlength.          (line   6)
+* running header and footer:             Page layout parameters.
+                                                              (line   6)
+* running header and footer style:       \pagestyle.          (line   6)
+* sagetex package:                       Command line options.
+                                                              (line  62)
+* sans serif font:                       Font styles.         (line  90)
+* Scaled point:                          Units of length.     (line  36)
+* scaling:                               \scalebox.           (line   6)
+* scaling <1>:                           \resizebox.          (line   6)
+* script fonts:                          Calligraphic.        (line   6)
+* script letters for math:               Font styles.         (line  78)
+* secnumdepth:                           Sectioning.          (line  62)
+* secnumdepth counter:                   Sectioning.          (line  63)
+* section:                               Sectioning.          (line   6)
+* section <1>:                           \section.            (line   6)
+* section number, cross referencing:     \ref.                (line   6)
+* section numbers, printing:             Sectioning.          (line  63)
+* section symbol:                        Text symbols.        (line  60)
+* section, redefining:                   \@startsection.      (line   6)
+* sectioning commands:                   Sectioning.          (line   6)
+* sectioning, part:                      \part.               (line   6)
+* series, of fonts:                      Low-level font commands.
+                                                              (line  48)
+* setspace package:                      Low-level font commands.
+                                                              (line 118)
+* setting counters:                      \setcounter.         (line   6)
+* shapes, of fonts:                      Low-level font commands.
+                                                              (line  88)
+* sharp S letters:                       Additional Latin letters.
+                                                              (line  52)
+* showidx package:                       Indexes.             (line  32)
+* simulating typed text:                 verbatim.            (line   6)
+* single angle quotation marks:          Text symbols.        (line  31)
+* single guillemets:                     Text symbols.        (line  31)
+* single left quote:                     Text symbols.        (line 159)
+* single low-9 quotation mark:           Text symbols.        (line  53)
+* single quote, straight:                Text symbols.        (line 165)
+* single right quote:                    Text symbols.        (line 162)
+* siunitx package:                       ~.                   (line  32)
+* sizes of text:                         Font sizes.          (line   6)
+* skip register, plain TeX:              \newlength.          (line   6)
+* slanted font:                          Font styles.         (line  93)
 * slides class:                          Document classes.    (line  11)
+* sloppypar:                             sloppypar.           (line   6)
+* sloppypar environment:                 sloppypar.           (line   6)
+* small caps font:                       Font styles.         (line  87)
+* sort:                                  \newglossaryentry.   (line  55)
 * sp:                                    Units of length.     (line  36)
+* space, hard:                           ~.                   (line   6)
+* space, inserting horizontal:           \hss.                (line   6)
+* space, inserting vertical:             \addvspace.          (line   6)
+* space, negative thin:                  \thinspace & \negthinspace.
+                                                              (line   6)
+* space, thin:                           \thinspace & \negthinspace.
+                                                              (line   6)
+* space, unbreakable:                    ~.                   (line   6)
+* space, vertical:                       \vspace.             (line   6)
+* spaces:                                Spaces.              (line   6)
+* spaces, ignore around commands:        \ignorespaces & \ignorespacesafterend.
+                                                              (line   6)
+* spacing within math mode:              Spacing in math mode.
+                                                              (line   6)
+* spacing, inter-sentence:               \frenchspacing.      (line   6)
+* spacing, inter-sentence <1>:           \normalsfcodes.      (line   6)
+* Spanish ordinals, feminine and masculine: Text symbols.     (line 144)
+* special characters:                    Reserved characters. (line   6)
+* special characters <1>:                Additional Latin letters.
+                                                              (line   6)
+* special insertions:                    Special insertions.  (line   6)
+* specifier, float placement:            Floats.              (line  31)
+* splitting the input file:              Splitting the input. (line   6)
+* square root:                           \sqrt.               (line   6)
+* stack math:                            \stackrel.           (line   6)
+* star-variants, commands:               \@ifstar.            (line   6)
+* starred form, defining new commands:   \newcommand & \renewcommand.
+                                                              (line  25)
+* starting a new page:                   \newpage.            (line   6)
+* starting a new page and clearing floats: \clearpage & \cleardoublepage.
+                                                              (line   6)
+* starting and ending:                   Starting and ending. (line   6)
+* starting on a right-hand page:         \clearpage & \cleardoublepage.
+                                                              (line   6)
+* sterling symbol:                       Text symbols.        (line  49)
+* straight double quote, base:           Text symbols.        (line 169)
+* straight quote, base:                  Text symbols.        (line 169)
+* straight single quote:                 Text symbols.        (line 165)
+* stretch, infinite horizontal:          \hfill.              (line   6)
+* stretch, infinite vertical:            \vfill.              (line   6)
+* stretch, omitting vertical:            \raggedbottom.       (line   6)
+* strut:                                 \strut.              (line   6)
+* styles of text:                        Font styles.         (line   6)
+* styles, page:                          Page styles.         (line   6)
+* subparagraph:                          Sectioning.          (line   6)
+* subparagraph <1>:                      \subsubsection & \paragraph & \subparagraph.
+                                                              (line   6)
+* subscript:                             Subscripts & superscripts.
+                                                              (line   6)
+* subsection:                            Sectioning.          (line   6)
+* subsection <1>:                        \subsection.         (line   6)
+* subsubsection:                         \subsubsection & \paragraph & \subparagraph.
+                                                              (line   6)
+* superscript:                           Subscripts & superscripts.
+                                                              (line   6)
+* symbol:                                \newglossaryentry.   (line  59)
+* symbols package:                       Math symbols.        (line   6)
+* symbols, boldface:                     \boldmath & \unboldmath.
+                                                              (line   6)
+* symbols, math:                         Math symbols.        (line   6)
+* symbols, text:                         Text symbols.        (line   6)
+* tab stops, using:                      tabbing.             (line   6)
 * tabbing environment:                   tabbing.             (line   6)
 * table environment:                     table.               (line   6)
+* table of contents entry, manually adding: \addcontentsline. (line   6)
+* table of contents file:                Output files.        (line  43)
+* table of contents, avoiding footnotes: Footnotes in section headings.
+                                                              (line   6)
+* table of contents, creating:           Table of contents etc..
+                                                              (line   6)
+* table of contents, sectioning numbers printed: Sectioning.  (line  74)
+* tables, creating:                      table.               (line   6)
 * tabular environment:                   tabular.             (line   6)
-* textcomp package:                      Text symbols.        (line   6)
+* template, article:                     article template.    (line   6)
+* template, beamer:                      beamer template.     (line   6)
+* template, book:                        book template.       (line   6)
+* template, book <1>:                    Larger book template.
+                                                              (line   6)
+* template, TUGboat:                     tugboat template.    (line   6)
+* templates, document:                   Document templates.  (line   6)
+* terminal input/output:                 Terminal input/output.
+                                                              (line   6)
+* TeX logo:                              Text symbols.        (line  63)
+* text symbols:                          Text symbols.        (line   6)
+* text, resizing:                        \scalebox.           (line   6)
+* text, resizing <1>:                    \resizebox.          (line   6)
+* text, scaling:                         \scalebox.           (line   6)
+* text, scaling <1>:                     \resizebox.          (line   6)
+* textcase package:                      Upper and lower case.
+                                                              (line  42)
+* textcomp package:                      Font styles.         (line 132)
+* textcomp package <1>:                  Text symbols.        (line   6)
+* thanks, for titlepage:                 \maketitle.          (line  57)
 * thebibliography environment:           thebibliography.     (line   6)
 * theorem environment:                   theorem.             (line   6)
+* theorem-like environment:              \newtheorem.         (line   6)
+* theorems, defining:                    \newtheorem.         (line   6)
+* theorems, typesetting:                 theorem.             (line   6)
+* thin space:                            Spacing in math mode.
+                                                              (line  32)
+* thin space <1>:                        \thinspace & \negthinspace.
+                                                              (line   6)
+* thin space, negative:                  Spacing in math mode.
+                                                              (line  46)
+* thin space, negative <1>:              \thinspace & \negthinspace.
+                                                              (line   6)
+* thorn, Icelandic letter:               Additional Latin letters.
+                                                              (line  56)
+* three-quarters em-dash:                Text symbols.        (line 178)
+* tie:                                   ~.                   (line   6)
+* tie-after accent:                      Accents.             (line  81)
+* TikZ package:                          \line.               (line  36)
+* TikZ package <1>:                      \strut.              (line  62)
+* TikZ package <2>:                      \mbox & \makebox.    (line  72)
+* tilde accent:                          Accents.             (line  46)
+* tilde accent, math:                    Math accents.        (line  38)
+* tilde, ASCII, in text:                 Text symbols.        (line  69)
+* title page, separate or run-in:        Document class options.
+                                                              (line  71)
+* title pages, creating:                 titlepage.           (line   6)
+* title, for titlepage:                  \maketitle.          (line  64)
 * titlepage environment:                 titlepage.           (line   6)
 * titlepage option:                      Document class options.
                                                               (line  49)
+* titles, making:                        \maketitle.          (line   6)
+* titlesec package:                      \part.               (line  54)
+* titlesec package <1>:                  \chapter.            (line  79)
+* titlesec package <2>:                  \section.            (line  64)
+* titlesec package <3>:                  \subsection.         (line  52)
+* titlesec package <4>:                  \subsubsection & \paragraph & \subparagraph.
+                                                              (line  65)
+* tocbibbind package:                    Table of contents etc..
+                                                              (line  91)
+* tocdepth:                              Sectioning.          (line  73)
+* tocdepth counter:                      Sectioning.          (line  74)
+* tocloft package:                       Table of contents etc..
+                                                              (line  91)
+* today's date:                          \today.              (line   6)
+* tombstone:                             \rule.               (line  13)
 * topmargin:                             Page layout parameters.
-                                                              (line 124)
+                                                              (line 125)
 * topnumber:                             Floats.              (line 138)
 * topnumber <1>:                         Floats.              (line 139)
 * totalnumber:                           Floats.              (line 142)
 * totalnumber <1>:                       Floats.              (line 143)
+* trademark symbol:                      Text symbols.        (line 181)
+* transcript file:                       Output files.        (line  28)
+* TrueType fonts:                        TeX engines.         (line   6)
+* TUGboat template:                      tugboat template.    (line   6)
+* two-column output:                     \twocolumn.          (line   6)
+* two-thirds em-dash:                    Text symbols.        (line 184)
 * twocolumn option:                      Document class options.
                                                               (line  78)
 * twoside option:                        Document class options.
                                                               (line  78)
+* type styles:                           Font styles.         (line   6)
+* typed text, simulating:                verbatim.            (line   6)
+* typeface sizes:                        Font sizes.          (line   6)
+* typefaces:                             Fonts.               (line   6)
+* typewriter font:                       Font styles.         (line  96)
+* typewriter labels in lists:            description.         (line  36)
+* ulem package:                          Over- and Underlining.
+                                                              (line  15)
+* umlaut accent:                         Accents.             (line  23)
+* underbar:                              Accents.             (line  51)
+* underlining:                           Over- and Underlining.
+                                                              (line   6)
+* underscore, in text:                   Text symbols.        (line 187)
+* Unicode input, native:                 TeX engines.         (line   6)
+* units, of length:                      Units of length.     (line   6)
+* unofficial nature of this manual:      About this document. (line  17)
+* unordered lists:                       itemize.             (line   6)
+* uppercase:                             Upper and lower case.
+                                                              (line   6)
+* url package:                           \verb.               (line  38)
+* using BibTeX:                          Using BibTeX.        (line   6)
 * usrguide official documentation:       About this document. (line  36)
+* UTF-8:                                 TeX engines.         (line   6)
+* variables, a list of:                  Counters.            (line   6)
+* vector symbol, math:                   Math accents.        (line  41)
 * verbatim environment:                  verbatim.            (line   6)
+* verbatim text:                         verbatim.            (line   6)
+* verbatim text, inline:                 \verb.               (line   6)
+* verbatimbox package:                   verbatim.            (line  37)
 * verse environment:                     verse.               (line   6)
+* vertical bar, double, in text:         Text symbols.        (line  81)
+* vertical bar, in text:                 Text symbols.        (line  78)
+* vertical mode:                         Modes.               (line  34)
+* vertical space:                        \vspace.             (line   6)
+* vertical space <1>:                    \addvspace.          (line   6)
+* vertical space before paragraphs:      \parindent & \parskip.
+                                                              (line   6)
+* visible space:                         \verb.               (line  31)
+* visible space symbol, in text:         Text symbols.        (line 190)
+* weights, of fonts:                     Low-level font commands.
+                                                              (line  58)
+* white space:                           Spaces.              (line   6)
+* wide hat accent, math:                 Math accents.        (line  44)
+* wide tilde accent, math:               Math accents.        (line  47)
+* widths, of fonts:                      Low-level font commands.
+                                                              (line  70)
+* writing external files:                filecontents.        (line   6)
+* writing letters:                       Letters.             (line   6)
+* x-height:                              Units of length.     (line  38)
 * xdvi command:                          Output files.        (line  10)
-* xdvipdfmx:                             TeX engines.         (line  38)
-* xelatex command:                       TeX engines.         (line  38)
+* xdvipdfmx:                             TeX engines.         (line  39)
+* xelatex command:                       TeX engines.         (line  39)
+* XeTeX:                                 TeX engines.         (line  39)
+* xindy:                                 makeindex.           (line 153)
+* xindy program:                         makeindex.           (line 153)
 
 
 
 Tag Table:
-Node: Top1702
-Node: About this document3580
-Node: Overview5440
-Node: Starting and ending6940
-Ref: Starting & ending7075
-Node: Output files8061
-Node: TeX engines10307
-Node: LaTeX command syntax12745
-Node: Environment14579
-Node: Declaration15652
-Node: \makeatletter and \makeatother16038
-Node: \@ifstar18231
-Node: Document classes21060
-Node: Document class options22383
-Node: Additional packages25482
-Node: Class and package construction26113
-Node: Class and package structure27565
-Node: Class and package commands29859
-Node: Fonts47384
-Ref: Typefaces47487
-Node: Font styles47815
-Node: Font sizes52243
-Node: Low-level font commands53474
-Node: Layout58581
-Node: \onecolumn59079
-Node: \twocolumn59410
-Node: \flushbottom63805
-Node: \raggedbottom64905
-Node: Page layout parameters65441
-Node: Floats71139
-Node: Sectioning77604
-Ref: Sectioning/secnumdepth78925
-Node: \@startsection79335
-Ref: \@startsection/name80607
-Ref: \@startsection/level81067
-Ref: \@startsection/indent82138
-Ref: \@startsection/beforeskip82401
-Ref: \@startsection/afterskip83922
-Ref: \@startsection/style85233
-Node: Cross references89069
-Node: \label90935
-Node: \pageref92482
-Node: \ref93152
-Node: Environments93841
-Node: abstract95844
-Node: array97433
-Node: center99691
-Node: \centering101332
-Node: description102704
-Node: displaymath104891
-Node: document106669
-Node: \AtBeginDocument107099
-Node: \AtEndDocument107723
-Node: enumerate108367
-Node: eqnarray111164
-Node: equation113218
-Node: figure113888
-Node: filecontents115700
-Node: flushleft117453
-Node: \raggedright117946
-Node: flushright118505
-Node: \raggedleft119003
-Node: itemize119560
-Node: letter123061
-Node: list123299
-Node: \item135965
-Node: trivlist137218
-Node: math138746
-Node: minipage139052
-Node: picture140244
-Node: \circle144539
-Node: \makebox (picture)144882
-Node: \framebox (picture)145588
-Node: \dashbox146078
-Node: \frame146601
-Node: \line146927
-Node: \linethickness147385
-Node: \thicklines147806
-Node: \thinlines148116
-Node: \multiput148418
-Node: \oval148785
-Node: \put149506
-Node: \shortstack149797
-Node: \vector150271
-Node: quotation and quote150585
-Node: tabbing151792
-Node: table157730
-Node: tabular159157
-Node: \multicolumn166365
-Node: \vline170250
-Node: \cline171595
-Node: \hline172279
-Node: thebibliography172962
-Node: \bibitem174576
-Node: \cite175334
-Node: \nocite175853
-Node: Using BibTeX176141
-Node: theorem177650
-Node: titlepage178036
-Node: verbatim179326
-Node: \verb179965
-Node: verse180515
-Node: Line breaking181009
-Node: \\182106
-Node: \obeycr & \restorecr183144
-Node: \newline183546
-Node: \- (hyphenation)184380
-Node: \discretionary184995
-Node: \fussy185287
-Node: \sloppy185677
-Node: \hyphenation186004
-Node: \linebreak & \nolinebreak186629
-Node: Page breaking187281
-Node: \cleardoublepage187889
-Node: \clearpage188318
-Node: \newpage188615
-Node: \enlargethispage188846
-Node: \pagebreak & \nopagebreak189373
-Node: Footnotes190067
-Node: \footnote191321
-Node: \footnotemark193117
-Node: \footnotetext194361
-Node: Footnotes in a table194851
-Node: Footnotes in section headings196708
-Node: Footnotes of footnotes197564
-Node: Multiple reference to footnotes198331
-Node: Footnote parameters199189
-Node: Definitions199939
-Node: \newcommand & \renewcommand200816
-Node: \providecommand204652
-Node: \newcounter205313
-Node: \newlength206284
-Node: \newsavebox206931
-Node: \newenvironment & \renewenvironment207542
-Node: \newtheorem211902
-Node: \newfont215391
-Node: \protect216956
-Node: \ignorespaces & \ignorespacesafterend219342
-Node: Counters222091
-Node: \alph \Alph \arabic \roman \Roman \fnsymbol223691
-Node: \usecounter225763
-Node: \value226595
-Node: \setcounter227538
-Node: \addtocounter228024
-Node: \refstepcounter228489
-Node: \stepcounter229147
-Node: \day \month \year229489
-Node: Lengths230034
-Node: Units of length231824
-Node: \setlength233318
-Node: \addtolength233722
-Node: \settodepth234040
-Node: \settoheight234331
-Node: \settowidth234628
-Node: Predefined lengths234936
-Node: Making paragraphs235451
-Node: \indent236023
-Node: \noindent236485
-Node: \parskip236994
-Node: Marginal notes237252
-Node: Math formulas239064
-Node: Subscripts & superscripts240848
-Node: Math symbols242186
-Node: Math functions267515
-Node: Math accents268458
-Node: Spacing in math mode269430
-Node: Math miscellany270897
-Node: Modes273447
-Node: \ensuremath275287
-Node: Page styles276203
-Node: \maketitle276697
-Node: \pagenumbering277767
-Node: \pagestyle278263
-Node: \thispagestyle279404
-Node: Spaces279710
-Node: \hspace280580
-Node: \hfill281535
-Node: \spacefactor281927
-Node: \(SPACE) and \@284639
-Ref: \AT284782
-Node: \frenchspacing286259
-Node: \normalsfcodes286875
-Node: \(SPACE) after control sequence287064
-Node: \thinspace287975
-Node: \/288295
-Node: \hrulefill \dotfill289477
-Node: \addvspace290470
-Node: \bigskip \medskip \smallskip291516
-Node: \vfill292408
-Node: \vspace293277
-Node: Boxes294270
-Node: \mbox294982
-Node: \fbox and \framebox295269
-Node: lrbox296073
-Node: \makebox296431
-Node: \parbox297151
-Node: \raisebox298719
-Node: \savebox299316
-Node: \sbox299731
-Node: \usebox300180
-Node: Color300441
-Node: Color package options301285
-Node: Color models302927
-Node: Commands for color305236
-Node: Define colors305651
-Node: Colored text306366
-Node: Colored boxes308741
-Node: Colored pages310180
-Node: Graphics310873
-Node: Graphics package options312992
-Node: Graphics package configuration315744
-Node: \graphicspath316531
-Node: \DeclareGraphicsExtensions319454
-Node: \DeclareGraphicsRule321247
-Node: Commands for graphics324436
-Node: \includegraphics324941
-Node: \rotatebox337967
-Node: \scalebox340762
-Node: \resizebox341814
-Node: Special insertions343006
-Node: Reserved characters343810
-Node: Upper and lower case345011
-Node: Symbols by font position346926
-Node: Text symbols347546
-Node: Accents350994
-Node: Additional Latin letters353536
-Ref: Non-English characters353707
-Node: \rule354724
-Node: \today355153
-Node: Splitting the input355907
-Node: \include356671
-Node: \includeonly357262
-Node: \input357775
-Node: Front/back matter358270
-Node: Tables of contents358475
-Node: \addcontentsline359536
-Node: \addtocontents360554
-Node: Glossaries361087
-Node: Indexes361606
-Node: Letters363239
-Node: \address366917
-Node: \cc367787
-Node: \closing368205
-Node: \encl368516
-Node: \location368931
-Node: \makelabels369200
-Node: \name370201
-Node: \opening370431
-Node: \ps370771
-Node: \signature371060
-Node: \telephone372152
-Node: Terminal input/output372517
-Node: \typein372782
-Node: \typeout373367
-Node: Command line373990
-Node: Document templates374942
-Node: beamer template375349
-Node: book template376000
-Node: tugboat template376368
-Node: Concept Index378732
-Node: Command Index441503
+Node: Top1701
+Node: About this document3519
+Node: Overview5371
+Node: Starting and ending6920
+Ref: Starting & ending7055
+Node: Output files8232
+Ref: output files dvi8511
+Ref: output files pdf9022
+Ref: output files log9345
+Ref: output files aux9542
+Node: TeX engines10511
+Ref: tex engines latex10860
+Ref: tex engines lualatex11692
+Ref: tex engines xelatex12177
+Node: LaTeX command syntax12981
+Node: Environment14824
+Node: Declaration15893
+Node: \makeatletter & \makeatother16277
+Node: \@ifstar18429
+Node: CTAN21214
+Node: Document classes22616
+Ref: document classes article23056
+Ref: document classes book23144
+Ref: document classes letter23329
+Ref: document classes report23405
+Ref: document classes slides23557
+Node: Document class options23939
+Node: Additional packages27021
+Node: Class and package construction27652
+Node: Class and package structure29102
+Node: Class and package commands31393
+Node: Fonts49007
+Ref: Typefaces49110
+Node: Font styles49438
+Node: Font sizes53703
+Node: Low-level font commands55322
+Ref: low level font commands fontencoding55606
+Ref: low level font commands fontfamily56162
+Ref: low level font commands fontseries56927
+Ref: low level font commands fontshape58079
+Ref: low level font commands fontsize58376
+Ref: low level font commands baselinestretch58901
+Ref: low level font commands linespread59610
+Ref: low level font commands selectfont59860
+Ref: low level font commands usefont60186
+Node: Layout60429
+Node: \onecolumn60927
+Node: \twocolumn61286
+Ref: twocolumn columnsep61909
+Ref: twocolumn columnseprule62158
+Ref: twocolumn columnwidth62454
+Ref: twocolumn dbltopfraction63020
+Ref: twocolumn dblfloatpagefraction63963
+Ref: twocolumn dblfloatsep64210
+Ref: twocolumn dbltextfloatsep64515
+Ref: twocolumn dbltopnumber64698
+Node: \flushbottom65663
+Node: \raggedbottom66763
+Node: Page layout parameters67299
+Ref: page layout parameters columnsep67502
+Ref: page layout parameters columnseprule67502
+Ref: page layout parameters columnwidth67502
+Ref: page layout parameters headheight67756
+Ref: page layout parameters headsep67923
+Ref: page layout parameters footskip68236
+Ref: page layout parameters linewidth68570
+Ref: page layout parameters marginparpush68923
+Ref: page layout parameters marginsep68923
+Ref: page layout parameters marginparwidth68923
+Ref: page layout parameters oddsidemargin69963
+Ref: page layout parameters evensidemargin69963
+Ref: page layout parameters paperheight70500
+Ref: page layout parameters paperwidth70726
+Ref: page layout parameters textheight70950
+Ref: page layout parameters textwidth71339
+Ref: page layout parameters hsize72268
+Ref: page layout parameters topmargin72474
+Ref: page layout parameters topskip72778
+Node: Floats72994
+Ref: floats bottomfraction77362
+Ref: floats floatpagefraction77489
+Ref: floats textfraction77600
+Ref: floats topfraction77802
+Ref: floats floatsep78054
+Ref: floats intextsep78164
+Ref: floats textfloatsep78379
+Ref: floats bottomnumber78643
+Ref: floats dbltopnumber78751
+Ref: floats topnumber78870
+Ref: floats totalnumber78974
+Node: Sectioning79503
+Ref: sectioning secnumdepth82236
+Ref: Sectioning/secnumdepth82236
+Ref: sectioning tocdepth82837
+Ref: Sectioning/tocdepth82837
+Node: \part83882
+Node: \chapter86058
+Node: \section89832
+Node: \subsection93099
+Node: \subsubsection & \paragraph & \subparagraph95813
+Node: \appendix98470
+Node: \frontmatter & \mainmatter & \backmatter99760
+Node: \@startsection101101
+Ref: startsection name102478
+Ref: \@startsection/name102478
+Ref: startsection level102932
+Ref: \@startsection/level102932
+Ref: startsection indent103812
+Ref: \@startsection/indent103812
+Ref: startsection beforeskip104075
+Ref: \@startsection/beforeskip104075
+Ref: startsection afterskip105596
+Ref: \@startsection/afterskip105596
+Ref: startsection style106907
+Ref: \@startsection/style106907
+Node: Cross references110613
+Node: \label112706
+Node: \pageref114526
+Node: \ref115316
+Node: Environments116292
+Node: abstract118294
+Node: array119883
+Node: center122775
+Node: \centering124527
+Node: description126024
+Node: displaymath128239
+Node: document130026
+Node: \AtBeginDocument130456
+Node: \AtEndDocument131080
+Node: enumerate131724
+Ref: enumerate enumi133587
+Ref: enumerate enumii133587
+Ref: enumerate enumiii133587
+Ref: enumerate enumiv133587
+Ref: enumerate labelenumi133985
+Ref: enumerate labelenumii133985
+Ref: enumerate labelenumiii133985
+Ref: enumerate labelenumiv133985
+Node: eqnarray134524
+Node: equation136519
+Node: figure137187
+Node: filecontents139341
+Node: flushleft141088
+Node: \raggedright142105
+Node: flushright143303
+Node: \raggedleft144039
+Node: itemize144829
+Ref: itemize labelitemi146051
+Ref: itemize labelitemii146051
+Ref: itemize labelitemiii146051
+Ref: itemize labelitemiv146051
+Ref: itemize leftmargin146893
+Ref: itemize leftmargini146893
+Ref: itemize leftmarginii146893
+Ref: itemize leftmarginiii146893
+Ref: itemize leftmarginiv146893
+Ref: itemize leftmarginv146893
+Ref: itemize leftmarginvi146893
+Node: letter148297
+Node: list148535
+Ref: list makelabel150980
+Ref: list itemindent152364
+Ref: list itemsep152501
+Ref: list labelsep153153
+Ref: list labelwidth153316
+Ref: list leftmargin154327
+Ref: list listparindent155180
+Ref: list parsep155411
+Ref: list partopsep155914
+Ref: list rightmargin156712
+Ref: list topsep156897
+Ref: list beginparpenalty160472
+Ref: list itempenalty160571
+Ref: list endparpenalty160675
+Node: \item161547
+Node: trivlist162798
+Node: math164326
+Node: minipage164632
+Node: picture169910
+Node: \put176379
+Node: \multiput176944
+Node: \qbezier177683
+Node: \graphpaper178608
+Node: \line179402
+Node: \linethickness181366
+Node: \thinlines181815
+Node: \thicklines182226
+Node: \circle182610
+Node: \oval183150
+Node: \shortstack184126
+Node: \vector185523
+Node: \makebox (picture)186439
+Node: \framebox (picture)187621
+Node: \frame189094
+Node: \dashbox189534
+Node: quotation & quote190669
+Node: tabbing191565
+Node: table197558
+Node: tabular199651
+Ref: tabular arrayrulewidth205995
+Ref: tabular arraystrech206235
+Ref: tabular doublerulesep206456
+Ref: tabular tabcolsep206592
+Node: \multicolumn207113
+Node: \vline210972
+Node: \cline212363
+Node: \hline213073
+Node: thebibliography213755
+Node: \bibitem216165
+Node: \cite218440
+Node: \nocite220090
+Node: Using BibTeX220574
+Node: theorem222729
+Node: titlepage223651
+Node: verbatim224934
+Node: \verb226444
+Node: verse228264
+Node: Line breaking229491
+Node: \\230857
+Node: \obeycr & \restorecr233290
+Node: \newline234084
+Node: \- (hyphenation)235113
+Node: \discretionary236751
+Node: \fussy & \sloppy237639
+Node: sloppypar238422
+Node: \hyphenation239568
+Node: \linebreak & \nolinebreak240162
+Node: Page breaking241309
+Node: \clearpage & \cleardoublepage243338
+Node: \newpage244858
+Node: \enlargethispage246156
+Node: \pagebreak & \nopagebreak247112
+Node: Footnotes248778
+Node: \footnote249924
+Ref: footnote footnoterule251192
+Ref: footnote footnotesep251803
+Node: \footnotemark252869
+Node: \footnotetext255208
+Node: Footnotes in section headings255809
+Node: Footnotes in a table256642
+Node: Footnotes of footnotes259564
+Node: Definitions260268
+Node: \newcommand & \renewcommand261145
+Node: \providecommand266375
+Node: \newcounter267521
+Node: \newlength269248
+Node: \newsavebox270070
+Node: \newenvironment & \renewenvironment270986
+Node: \newtheorem276310
+Node: \newfont279882
+Node: \protect281118
+Node: \ignorespaces & \ignorespacesafterend283504
+Node: Counters286242
+Node: \alph \Alph \arabic \roman \Roman \fnsymbol287943
+Node: \usecounter290597
+Node: \value291456
+Node: \setcounter292509
+Node: \addtocounter293105
+Node: \refstepcounter293559
+Node: \stepcounter294228
+Node: \day & \month & \year294774
+Node: Lengths295585
+Node: Units of length299938
+Ref: units of length pt300141
+Ref: units of length pc300263
+Ref: units of length in300286
+Ref: units of length bp300312
+Ref: units of length cm300443
+Ref: units of length mm300465
+Ref: units of length dd300487
+Ref: units of length cc300519
+Ref: units of length sp300544
+Ref: Lengths/em300575
+Ref: Lengths/en300575
+Ref: Lengths/ex300575
+Ref: units of length em300575
+Ref: units of length en300575
+Ref: units of length ex300575
+Node: \setlength301431
+Node: \addtolength302208
+Node: \settodepth303170
+Node: \settoheight303960
+Node: \settowidth304754
+Node: Making paragraphs305533
+Node: \par307182
+Node: \indent & \noindent309027
+Node: \parindent & \parskip310561
+Node: Marginal notes311596
+Ref: marginal notes marginparpush312996
+Ref: marginal notes marginparsep313109
+Ref: marginal notes marginparwidth313241
+Node: Math formulas313590
+Node: Subscripts & superscripts317758
+Node: Math symbols319916
+Node: Blackboard bold346083
+Node: Calligraphic346855
+Node: \boldmath & \unboldmath347427
+Node: Dots348941
+Ref: ellipses cdots349363
+Ref: ellipses ddots349510
+Ref: ellipses ldots349599
+Ref: ellipses vdots350020
+Node: Math functions351206
+Node: Math accents352850
+Node: Over- and Underlining353749
+Node: Spacing in math mode355576
+Ref: spacing in math mode thickspace356508
+Ref: spacing in math mode medspace356600
+Ref: Spacing in math mode/\thinspace356696
+Ref: spacing in math mode thinspace356696
+Ref: spacing in math mode negthinspace357177
+Ref: spacing in math mode quad357375
+Ref: spacing in math mode qquad357631
+Node: Math miscellany357729
+Node: Colon character & \colon358288
+Node: \*358981
+Node: \frac359565
+Node: \left & \right359945
+Node: \sqrt361119
+Node: \stackrel361714
+Node: Modes361987
+Ref: modes paragraph mode362437
+Ref: modes lr mode362633
+Ref: modes math mode363239
+Ref: modes vertical mode363574
+Ref: modes internal vertical mode363745
+Ref: modes inner paragraph mode364218
+Ref: modes outer paragraph mode364218
+Node: \ensuremath364634
+Node: Page styles365339
+Node: \maketitle366102
+Node: \pagenumbering369112
+Node: \pagestyle371100
+Node: \thispagestyle374602
+Node: Spaces375559
+Node: \enspace & \quad & \qquad377000
+Node: \hspace377914
+Node: \hfill379752
+Node: \hss380816
+Node: \spacefactor381510
+Node: \@384897
+Ref: \AT384997
+Node: \frenchspacing386937
+Node: \normalsfcodes387772
+Node: \(SPACE)388019
+Node: ~389654
+Node: \thinspace & \negthinspace392124
+Node: \/393067
+Node: \hrulefill & \dotfill394373
+Node: \bigskip & \medskip & \smallskip395729
+Ref: bigskip396547
+Ref: medskip396751
+Ref: smallskip396960
+Node: \bigbreak & \medbreak & \smallbreak397621
+Node: \strut398607
+Node: \vspace401801
+Node: \vfill403364
+Node: \addvspace404292
+Node: Boxes406290
+Node: \mbox & \makebox406996
+Ref: mbox makebox depth408211
+Ref: mbox makebox height408211
+Ref: mbox makebox width408211
+Ref: mbox makebox totalheight408211
+Node: \fbox & \framebox410305
+Ref: fbox framebox fboxrule411618
+Ref: fbox framebox fboxsep411808
+Node: \parbox412897
+Node: \raisebox415201
+Ref: raisebox depth416164
+Ref: raisebox height416164
+Ref: raisebox width416164
+Ref: raisebox totalheight416164
+Node: \sbox & \savebox416878
+Node: lrbox419844
+Node: \usebox420666
+Node: Color421072
+Node: Color package options421916
+Node: Color models423562
+Ref: color models cmyk424359
+Ref: color models gray424722
+Ref: color models rgb424871
+Ref: color models RGB425208
+Ref: color models named425583
+Node: Commands for color425871
+Node: Define colors426286
+Node: Colored text427011
+Node: Colored boxes429409
+Node: Colored pages430798
+Node: Graphics431491
+Node: Graphics package options433618
+Node: Graphics package configuration436371
+Node: \graphicspath437173
+Node: \DeclareGraphicsExtensions440064
+Node: \DeclareGraphicsRule441832
+Node: Commands for graphics445018
+Node: \includegraphics445523
+Ref: includegraphics width450573
+Ref: includegraphics height451104
+Ref: includegraphics totalheght451510
+Ref: includegraphics keepaspectratio451774
+Ref: includegraphics viewport453460
+Ref: includegraphics trim453830
+Ref: includegraphics clip454286
+Ref: includegraphics page454546
+Ref: includegraphics pagebox454637
+Ref: includegraphics interpolate455502
+Ref: includegraphics quiet455707
+Ref: includegraphics draft455868
+Ref: includegraphics bb456673
+Ref: includegraphics bbllx457071
+Ref: includegraphics bblly457071
+Ref: includegraphics bburx457071
+Ref: includegraphics bbury457071
+Ref: includegraphics natwidth457213
+Ref: includegraphics natheight457213
+Ref: includegraphics hiresbb457399
+Ref: includegraphics type458161
+Ref: includegraphics ext458201
+Ref: includegraphics read458304
+Ref: includegraphics command458421
+Node: \rotatebox458666
+Node: \scalebox461497
+Node: \resizebox462553
+Node: Special insertions463745
+Node: Reserved characters464547
+Node: Upper and lower case465749
+Node: Symbols by font position467664
+Node: Text symbols468284
+Node: Accents472285
+Node: Additional Latin letters474300
+Ref: Non-English characters474471
+Node: \rule475488
+Node: \today476660
+Node: Splitting the input477596
+Node: \endinput479337
+Node: \include & \includeonly480604
+Node: \input484826
+Node: Front/back matter486041
+Node: Table of contents etc.486374
+Node: \addcontentsline490110
+Node: \addtocontents492952
+Node: \nofiles494543
+Node: Indexes495275
+Node: \index496903
+Node: makeindex502018
+Ref: makeindex preamble503686
+Ref: makeindex postamble503826
+Ref: makeindex group skip503911
+Ref: makeindex letheadflag504231
+Ref: makeindex lethead prefix504695
+Ref: makeindex lethead suffix504847
+Ref: makeindex item 0504995
+Ref: makeindex item 1505075
+Ref: makeindex item 2505150
+Ref: makeindex item 01505228
+Ref: makeindex item x1505333
+Ref: makeindex item 12505538
+Ref: makeindex item x2505646
+Ref: makeindex delim 0505806
+Ref: makeindex delim 1505936
+Ref: makeindex delim 2506066
+Ref: makeindex delim n506192
+Ref: makeindex delim r506327
+Ref: makeindex line max506435
+Ref: makeindex indent space506570
+Ref: makeindex indent length506665
+Ref: makeindex page precedence506850
+Node: \printindex507724
+Node: Glossaries508196
+Node: \newglossaryentry510163
+Node: \gls511632
+Node: Letters512426
+Node: \address516053
+Node: \cc516864
+Node: \closing517306
+Node: \encl517620
+Node: \location518034
+Node: \makelabels518298
+Node: \name520615
+Node: \opening520856
+Node: \ps521137
+Node: \signature521426
+Node: \telephone522654
+Node: Terminal input/output523019
+Node: \typein523284
+Node: \typeout524533
+Node: Command line525577
+Node: Command line options527635
+Node: Command line input531177
+Node: Recovering from errors533041
+Node: Document templates534375
+Node: beamer template534820
+Node: article template535474
+Node: book template535901
+Node: Larger book template536382
+Node: tugboat template537868
+Node: Index540239
+Ref: Command Index540325
 
 End Tag Table

Modified: trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/ChangeLog
===================================================================
--- trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/ChangeLog	2018-07-04 21:25:46 UTC (rev 48134)
+++ trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/ChangeLog	2018-07-04 21:26:44 UTC (rev 48135)
@@ -1,3 +1,313 @@
+2018-07-03  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi Do a CTAN release following the checklist in the
+	file CTAN.  Zip file contents from "make dist" looks OK to me.
+
+2018-07-02  Karl Berry  <karl at freefriends.org>
+
+	* latex2e.texi: typos, underfull boxes, mirror wording.
+
+2018-07-02  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi:  Finished checking entries against
+	latex2e-reference.  Removed that item from xx list.
+	(CTAN) Added section.
+
+2018-07-02  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi:Check entries against
+	latex2e-reference.  Through "Modes".
+
+2018-07-01  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi:Check entries against
+	latex2e-reference.  Through the \t's.
+
+2018-07-01  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi:Check entries against
+	latex2e-reference.  Through the \m's.
+
+2018-06-30  Karl Berry  <karl at freefriends.org>
+
+	* latex2e.texi (Index): Merge General Index and Concept Index.
+
+	* latex2e.texi (\bigskip & \medskip & \smallskip): one
+	anchor for each.
+
+2018-06-30  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi:Try adding anchors that have URL's that
+	are easy to figure out.  Add them in a couple of places, notably
+	in lists of parameters.
+	(Predefined lengths) Delete, moving contents to \mbox & \makebox.
+
+2018-06-29  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi: Put @noindent's following
+	@end examples where they are needed in PDF.
+
+2018-06-29  Karl Berry  <karl at freefriends.org>
+
+	* latex2e.texi (Command line options) <-interaction>:
+	use @var{mode} to avoid overfull box in index. Use - for printed
+	output, and no @ftable.
+	(common.texi): minimize url.
+
+2018-06-28  Karl Berry  <karl at freefriends.org>
+
+	* latex2e.texi (Command line): both - and -- work in TL,
+	and, I hope, in MiKTeX.
+
+2018-06-29  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi: Under- and underfull lines in PDF
+	are gone.
+
+2018-06-29  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi: Fix over- and underfull lines in PDF.
+	Through page 100.
+
+2018-06-28  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (Command line)  Fix synopsis calling syntax.  Added
+	examples of putting commands on the command line,
+	and of recovering from errors.  This finishes latex-info; I have
+	removed it from the todo's.
+
+2018-06-27  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (Terminal input/output) Added synopsis, examples.
+	(Command line)  Give synopsis calling syntax.  Expanded
+	into sections the command options, including a discussion of shell
+	escape.  Put in stub for putting commands on the command line,
+	and for recovering from errors.
+
+2018-06-26  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (Front/back matter)  Expanded the entries for the
+	table of contents, for the index, and for the glossaries.  Added
+	many examples, adjusted wording.  Added description of options for
+	.isty files.
+
+2018-06-21  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (Special insertions)  Rearranged the lists so that
+        the examples come first.  That eases finding things for readers, since
+	all examples are in the same place vertically.  Added Unicode for
+	HTML where available.
+
+2018-06-20  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (\sbox & \savebox)  Combined the two.  Added examples,
+	adjusted wording
+	(lrbox)  Adjust wording.
+	(\usebox)  Adjust wording, add error messages.
+
+2018-06-19  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (\strut)  Added.
+	(\mbox & \makebox)  Add examples, cross-references, adjust wording.
+	(\fbox & \framebox)  Change name, add examples, adjust wording.
+
+2018-06-18  Karl Berry  <karl at freefriends.org>
+
+	* latex2e.texi: let's make "uppercase" and "lowercase" one word?
+	Break some long (>=80 chars) lines, though many remain.
+
+2018-06-17  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (Spaces)  Do vertical spacing commands.
+	Add subsections for \bigskip & \medskip & \smallskip, and the
+	\bigbreak, etc.  Add examples, particularly tricky was \addvspace.
+
+2018-06-16  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (Spaces)  Did horizontal spacing commands.
+	Add subsections for \hss and for tie, ~.  Change the two subsections
+	on \(SPACE) to one, giving \@ its own subsection.  Add examples, adjust
+	wording, add error messages.
+        (\mbox & \makebox) Combine the two sections into one.  This needs more
+	work, including examples and error messages.
+
+2018-06-12  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (Sectioning)  Add subsections for \appendix and for
+	\frontmatter & \mainmatter & \backmatter.  List the sectioning
+	parameters secnumdepth and tocdepth.  Add Larger book template in
+	part as example of frontmatter, appendix, etc.  Also add article
+	template.  Adjust wording of some other sections, such as Tables
+	of Contents, to fit changes. Add examples.  Adjust wording of main
+	Sectioning section.
+
+2018-06-11  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (Sectioning)  Make subsections for \part, \chapter,
+	\section, etc.  Add examples.  Adjust wording of main section.
+
+2018-06-09  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (Math miscellany)  Move dots to separate subsection
+	under Math symbols.  Move \overline, etc. to separate subsection
+	after Math accents.  Move \imath and \jmath to Math symbols.
+	Change rest to a menu, with synopses and examples, and error
+	messages where appropriate.  Adjust wording.
+
+2018-06-07  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (\pagestyle)  Add description of mechanism,
+	with example.  Modify description of \makeboth, \makeright.
+	* graphics/Makefile  Add.  Make the graphics.
+	(list.eps) Have it generated by Asymptote, to make it smaller
+	and vector.
+
+2018-06-07  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (\pagenumbering)  Add gobble, examples, refs to
+	page styles and counters.
+	(\maketitle)  Improve example to contain all four declarations.
+
+2018-06-06  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (Math spacing)  Adjust wording.
+	(Page styles)  Add example, adjust wording.
+
+2018-06-06  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (Math functions)  Make the @math{...} stuff not
+	appear in the HTML.  Add comment about amsmath allowing users to
+	create their own.
+	(Math accents)  Make the @math{...} stuff not
+	appear in the HTML.
+
+2018-06-05  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (Math formulas)  Adjust wording, including a suggestion
+	that new math docs should use the AMS packages.  Add subsection to
+	symbols for Caligraphic, \boldmath, and blackboard bold.
+
+2018-06-04  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (Modes)  Include all six modes, with the vertical ones.
+	Adjust wording.
+	(Making paragraphs) Add \par.  Combine \noindent and \indent.
+	Add \parindent to \parskip.
+
+2018-06-01  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (Page breaking)  Next in latex-info.  Adjust wording.
+	Add examples and a few error messages.
+	(\clearpage & \cleardoublepage) Combine the two into one.
+
+2018-06-01  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (Line breaking)  Next in latex-info (split with
+	page breaking).  Adjust wording. Add examples and a few error
+	messages.  Adjust wording.
+	(sloppypar) Add.
+
+2018-06-01  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (Letters)  Next in latex-info.  Adjust wording.
+	(\mlabel) Brought text from fr on customization of label
+	printing, added example.
+
+2018-05-31  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (Lengths)  Next in latex-info is Lengths.
+        Adjust entries, adding examples and error messages.
+	(Definitions) \newlength adjusted, examples added.  Make
+	synopses fit pattern elsewhere, including adding case of
+	no square brackets.  Adjust wording of optargdefault in both
+	\newcommand and \newenvironment.
+
+2018-05-30  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (footnote)  Next in latex-info is Footnotes.
+	Fold examples together into Footnotes in Tables subsection.  Move
+	Parameters subsection material to \footnote.  Adjust wording.
+
+2018-05-29  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (thebibliography)  Add examples.  Adjust wording.
+
+2018-05-28  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (picture)  Add examples.  Adjust wording.
+	Add menu items, readjust menu order.  Add examples for many
+	menu subjects and adjust wording.
+
+2018-05-24  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (verbatim)  Expand on problems putting
+	it in argument of macros, add examples.
+	(verse)  Adjust wording.
+
+2018-05-23  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi Continue going through latex-info.  Through that
+	doc's Environments.  Adjust wording as it arises.
+	(minipage, parbox) Expand on options, add examples.
+
+2018-05-19  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi Continue going through latex-info.  Through that
+	doc's Cross References, Commands, Page Layout.  Adjust wording
+	as it arises, including adding error messages.
+
+2018-05-18  Karl Berry  <karl at freefriends.org>
+
+	* text: "GNU/Linux", @TeX{} Live, MiK at TeX{}, just @samp.
+
+2018-05-17  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi Going through http://ctan.org/pkg/latex-info
+	(CTAN package latex-info), making sure this doc has everything
+	the older one has.  So far, Counters done.  Also adjust wording
+	as it arises.
+
+2018-05-17  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* latex2e.texi (\include & \includeonly)  Combine the two.  Include
+	discussion of many edge cases, with examples.
+	(Splitting the input)  Add typical case example.
+	(\endinput)  Added.
+	(\input)  Adjust wording to fit changes.
+
+2018-05-04  Vincent Belaïche  <vincent.belaiche at biosency.com>
+
+	* latex2e-fr.texi (Color): Translate node Color from Jim's r609 —
+	subnodes need further translation work.
+
+2018-04-30  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* Makefile (dist)  Add latex2e-es.pdf.
+	* latex2e.texi (list)  Add h0 description accidentally omitted.
+	(picture)  Add additional synopsis, adjust wording.
+
+2018-03-22  Vincent Belaïche  <vincent.belaiche at biosency.com>
+
+	* latex2e-fr.texi (All document): Use « tapuscrit » instead or as
+	an alternartive to « machine à écrire » for tt font family.
+	(Top, Color, Graphics): Add Color and Graphics nodes and sub-nodes
+	thereof, without translation.
+	(description): Translate edits from Jim r609 2018-03-04
+
+	* latex2e.texi (description): @var{}-ify « text of first item »
+	and « text of second item »
+	(description): « labeled list of items » -> « list of labeled items »
+	(Color package options): @code{}-ify « color » in title, as it is
+	the package name.
+	(Graphics package options, Graphics package configuration):
+	@code{}-ify « graphics » in title, as it is the package name.
+
+2018-03-21  Jim Hefferon  <jhefferon at smcvt.edu>
+
+	* -- Prepare upload distribution to CTAN with correct file mtimes.
+	* makedist.sh  Delete.  (Better to use Makefile)
+	* CTAN Create Notes on uploading a distribution.
+
 2018-03-28  Karl Berry  <karl at freefriends.org>
 
 	* Makefile (dist): rm zip file before remaking it;
@@ -54,7 +364,7 @@
 	* latex2e.texi (list environment): Move list parameters to this
 	entry.
 
-2018-01-02  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2018-01-02  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (thebibliography, Upper and lower case): Align
 	on Karl's r598 edits of 2017-10-29.
@@ -65,7 +375,7 @@
 	* latex2e.texi: typos, wording.
 	* aspell.en.pws: more exceptions.
 
-2017-10-17  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-10-17  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (document header): Uppercase title 1st
 	letter. Make PlainTeX a flag, not sure what the best translation
@@ -76,15 +386,15 @@
 	(\providecommand): Add Jim's edits of r348 2015-05-29.
 	(\newcommand & \renewcommand): Typo.
 	(\newenvironment & \renewenvironment): typo.
-	(\newsavebox): Use \xAB\xA0baquet\xA0\xBB rather than \xAB\xA0bac\xA0\xBB to translate
-	\xAB\xA0bin\xA0\xBB.
+	(\newsavebox): Use « baquet » rather than « bac » to translate
+	« bin ».
 	(Special insertions, Non-English characters): Rename node
-	\xAB\xA0Non-English characters\xA0\xBB to \xAB\xA0Additional Latin letters\xA0\xBB. Add an
+	« Non-English characters » to « Additional Latin letters ». Add an
 	anchor for backward compatibility.
 
 	* latex2e.texi (Document class options): Add @PkgIndex{geometry}.
 
-2017-10-08  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-10-08  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi: Mark tabbing node translation from French as TODO.
 	(thebibliography): Fix description about \refname, as sometimes it
@@ -95,7 +405,7 @@
 	(thebibliography): Fix description about \refname, as sometimes it
 	is also \bibname.
 
-2017-10-06  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-10-06  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi:  Make EnvIndex and PkgIndex macro usable on the
 	same line as text.
@@ -109,7 +419,7 @@
 	algorithm2e and listings packages.
 	(Upper and lower case): Mention textcase package.
 
-2017-10-04  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-10-04  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (tabbing): Partial translation of tabbing node
 	rewrite, and add examples.
@@ -123,7 +433,7 @@
 	(table): Typo.
 
 
-2017-10-03  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-10-03  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (Class and package commands): Typo.
 	(quotation and quote): Typoes.
@@ -133,7 +443,7 @@
 	* latex2e.texi,
 	* latex2e-fr.texi (Low-level font commands): remove width percentages.
 
-2017-08-22  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-08-22  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi: push iftexthenelse macro and HAS-MATH flag to common.texi
 	(Low-level font commands): Restore cmss & cmtt. `@dmn{}%' -> `%'.
@@ -143,7 +453,7 @@
 
 	* common.texi: push iftexthenelse macro and HAS-MATH flag to common.texi
 
-2017-08-22  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-08-22  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (Low-level font commands): Refer to
 	https://ctan.org/pkg/encguide.  Use multitables to achieve Jim's
@@ -157,7 +467,7 @@
 	Jim's r363 edits of 2015-06-16, as well as my edits on top of them
 	to latex2e.texi made in this revision.
 
-2017-08-09  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-08-09  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* NEWS-fr: Typoes.
 
@@ -169,12 +479,12 @@
 	* latex2e.texi: (\@startsection) Added defaults for book, article,
 	and report classes.
 
-2017-08-08  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-08-08  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* README-fr: Convert from latin-9 to utf-8 to comply with CTAN
 	requirements.
 
-2017-08-08  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-08-08  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* Makefile.1: rename README-fr to README in the zipped archive.
 
@@ -184,13 +494,13 @@
 	* README-fr: Typoes. Extend the leading English part fo the French
 	readme to comply with CTAN requirements.
 
-2017-08-08  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-08-08  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* README-fr: Port GNA! -> Puszcza. `non officiel' -> `officieux'
 	for consistency with manual. Mention other people translate
 	`moving argument' by `argument mouvant'.
 
-2017-08-08  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-08-08  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* NEWS-fr: Add delivery note --- translated from Jim's, thank you
 	Jim!
@@ -205,7 +515,7 @@
 
 	* latex2e-fr.{dbk,.dvi,.html,.info,.pdf,.texi,.txt,.xml}: Compilation for August 2017  delivery to CTAN.
 
-2017-08-08  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-08-08  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi: Update version & copyright notice for August 2017 delivery to CTAN.
 
@@ -223,7 +533,7 @@
 
 	* latex2e.texi: copyright 2017.
 
-2017-08-01  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-08-01  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (Environment, Declaration, \makeatletter and \makeatother)
 	(\@@ifstar, \@@startsection): put a sectionning title to node.
@@ -258,7 +568,7 @@
 	(Sectioning): Add anchor to secnumdepth counter for reference from
 	\@@startsection node.
 
-2017-07-31  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-07-31  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (Class and package commands): Add \CheckCommand
 	and \DeclareRobustCommand as per Jim's r568 2017-07-30 edits + my
@@ -269,7 +579,7 @@
 	(Class and package commands/\DeclareRobustCommand): Improve
 	existing description. Add mention to etoolbox macros.
 
-2017-07-31  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-07-31  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* Makefile.1: Extend check-dw to handle other languages. Add
 	target help.
@@ -282,7 +592,7 @@
 	* latex2e.texi (document header): update version.
 
 
-2017-07-31  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-07-31  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* Makefile.1: Add targets <lang><format>, like enpdf, frpdf,
 	eninfo, etc...
@@ -294,8 +604,8 @@
 	`http://ctan.org/...'.  Reword `non officiel' -> `officieux'.
 	(Overview): Take edits from Jim's r412+413 of 2015-08-21.
 	(Starting and ending): Typo. rewording `sections' -> `rubriques'.
-	(Output files): English quotes ``\xA0'' to French quotes
-	\xAB\xA0\xBB. Concerning .log, add @dfn{fichier journal} (the French for
+	(Output files): English quotes `` '' to French quotes
+	« ». Concerning .log, add @dfn{fichier journal} (the French for
 	``log file''). Typo. Translate leftover English in .lot/.lof/.toc
 	cindex.
 	(@TeX{} engines): @TeX{} -> @TeX{} de base --- ie Plain- at TeX{}. Typo.
@@ -312,7 +622,7 @@
 	(displaymath): Take edits from Jim's r412 2015-08-21, plus my
 	modifications to latex2e.texi.
 	(picture): `sections' -> `rubriques'.
-	(\oval): English quotes ``\xA0'' to French quotes \xAB\xA0\xBB.
+	(\oval): English quotes `` '' to French quotes « ».
 	(table): Exchange order of \caption and \label in example to align
 	on the English version.
 	(Units of length): Translate to French leftover English @cindex
@@ -369,7 +679,7 @@
 	* latex2e.texi: (\@ifstar): Translate from the French version.
 	(\@startsection): Move to Sectioning.
 
-2017-07-27  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-07-27  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* Makefile.1 (compare-nodes, compare-nodes-fr, compare-nodes-es):
 	new targets to compare node lists between languages. compare-nodes
@@ -376,7 +686,7 @@
 	is made a synonym of compare-nodes-fr because the Spanish
 	translation does not reuse the same node names.
 
-2017-07-26  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-07-26  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (<header comment>): Add reference to
 	https://www.latex-project.org/help/books/lc2fr-apb.pdf, as far as
@@ -461,7 +771,7 @@
 
 	* latex2e.texi: added class and package commands from clsguide.pdf.
 
-2017-06-09  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2017-06-09  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (abstract): typo.
 	(\raggedleft): typo.
@@ -489,7 +799,7 @@
 
 	(tugboat template): update.
 
-2016-11-24  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-11-24  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-es.texi: Place the English license in the @copying
 	section, and push the translation to an annex.
@@ -506,7 +816,7 @@
 	* Makefile (txt_files): Remove license.texi from the list of files
 	to zip into the distributed archive.
 
-2016-11-23  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-11-23  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* license.texi: dos2unix + svn propset svn:eol-style to LF.
 
@@ -529,7 +839,7 @@
 	* Makefile.1: Add check-license-<lang> targets to check that the
 	license is same as in license.texi
 
-2016-11-21  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-11-21  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* ltx-help.el (latex-help-file): Make this variable a defcustom
 	for selecting the manuel translation.
@@ -549,11 +859,11 @@
 	license.texi, make it delimited by @comment's.
 	(\cc): Add `, as in:' before example.
 
-2016-11-19  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-11-19  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* license.texi: Ooops... add this file.
 
-2016-11-19  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-11-19  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.{xml,dvi,html,info,pdf,txt}: Make these files again
 	for the license.
@@ -571,7 +881,7 @@
 
 	* Makefile (txt_files): Add license.texi file.
 
-2016-11-18  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-11-18  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* Makefile.1: Make variable txt_tiles a macro, so that NEWS-fr and
 	README-fr be delivered instead of NEWS and README for target
@@ -579,7 +889,7 @@
 
 	* NEWS-fr: add news for November 2016 CTAN delivery.
 
-2016-11-18  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-11-18  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.{xml,dvi,html,info,pdf,txt}: Make these files.
 
@@ -597,7 +907,7 @@
 
 	* Makefile.1 (spell-$(1)): Take in edit by Karl (rev 546) on Makefile
 
-2016-11-15  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-11-15  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (Math miscellany): Use `math' instead of `text' for
 	the @var{...} name.
@@ -612,11 +922,11 @@
 
 	* Makefile (spell): A-Z intended in range.
 
-2016-09-14  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-09-14  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.{dbk,html,info,txt,xml,pdf}: Update French manuals.
 
-2016-09-13  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-09-13  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (\@@ifstar): New node.
 
@@ -623,13 +933,13 @@
 	* latex2e.texi (\makeatletter and \makeatother): Comment that
 	documenting \@ifstar is TODO.
 
-2016-09-13  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-09-13  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (\newcommand & \renewcommand, Spaces)
 	(\(SPACE) and \@@, \(SPACE) after control sequence): Complete
 	taking on Karl's rev497 edits.
 
-2016-09-13  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-09-13  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (\discretionary, Footnotes in section headings)
 	(\newcommand & \renewcommand, Math miscellany, \(SPACE) and \@@)
@@ -637,7 +947,7 @@
 	(\(SPACE) after control sequence): Rename node --- old name was
 	``\(SPACE) after CS'' --- as per Karl's rev497 edits.
 
-2016-09-12  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-09-12  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (Document class options): Remove @dmn{...} for
 	``inches''.
@@ -648,7 +958,7 @@
 	(Floats): Indicate that ``Here'' means ``Ici'', and fix left-over
 	non translated word ``For''.
 
-2016-09-09  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-09-09  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (Document class options): @dmn{...}-ize the units
 	in the text from Jim's rev383 changes.
@@ -667,14 +977,14 @@
 	@dmn{...}-ize the units.
 	(Math symbols): Fix typo in \uplus entry.
 
-2016-09-07  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-09-07  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi: Same changes as in latex2e.texi
 	(Document class options): Minor editorial change.
 	(\newenvironment & \renewenvironment): Align on Karl's rev538
-	change, ie clarify that @var{d\xE9butd\xE9f} and @var{find\xE9f} are
-	executed within a group. Rename @var{d\xE9butd\xE9f} and @var{find\xE9f} to
-	@var{d\xE9fd\xE9but} and @var{d\xE9ffin}
+	change, ie clarify that @var{débutdéf} and @var{findéf} are
+	executed within a group. Rename @var{débutdéf} and @var{findéf} to
+	@var{défdébut} and @var{déffin}
 
 	* latex2e.texi: new iftexthenelse macro.
 	(Footnotes in a table): Minor editorial change to avoid overfull hbox.
@@ -687,7 +997,7 @@
 	by ``processed'' because not only execution but also expansion
 	prior to it happens within a group.
 
-2016-09-05  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-09-05  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (\newenvironment & \renewenvironment): Add an
 	@findex for ``group''.
@@ -703,11 +1013,11 @@
 	https://mail.gna.org/listinfo/latexrefman-discuss is for archives
 	and subsription.
 
-2016-09-04  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-09-04  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi: Whole file, suppress any trailing blanks.
 
-2016-09-04  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-09-04  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (Top): Fix translation of sub node menu entry text.
 	(Overview): Fix spelling. Fix leftover English. ``paquetage de
@@ -748,7 +1058,7 @@
 	\mathsection \mathsterling \mathunderscore \mathunderscore.
 	(Text symbols): add \textsection, \textquotesingle.
 
-2016-04-12  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-04-12  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (Document class options): Improve wording by
 	reusing package variable @var{pkg} in the synopsis description.
@@ -767,11 +1077,11 @@
 	`\@var{cmd}'. Fix typoes.
 	(\newenvironment & \renewenvironment): nargs starting from 0
 	rather than from 1. Fix typoes. `argument positionnel' ->
-	`param\xE8tre positionnel'.
+	`paramètre positionnel'.
 	(Reserved characters): `\backslash' -> `\textbackslash' in the
 	@findex in accordance with description. Fix typoes.
 
-2016-04-12  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-04-12  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (top comment, Top): Make version under quotes to
 	avoid incorrect French ``de Avril 2016'' or ``du Avril 2016''
@@ -782,24 +1092,24 @@
 	notice up to 2016.
 
 	* latex2e-fr.texi (top comment): `Copyright' -> `Tous droits
-	r\xE9serv\xE9s \xA9' + add ``Vincent Bela\xEFche'' as translator.
+	réservés ©' + add ``Vincent Belaïche'' as translator.
 
-2016-04-11  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-04-11  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-es.texi (top comment, Using BibTeX): Replace CTAN
 	central server URLs by mirror URLs, after a comment by Petra
-	R\xFCbe-Pugliese.
+	Rübe-Pugliese.
 
 	* latex2e-fr.texi (top comment, Output files, Using BibTeX):
 	Replace CTAN central server URLs by mirror URLs, after a comment
-	by Petra R\xFCbe-Pugliese.
+	by Petra Rübe-Pugliese.
 	(Output files, Using BibTeX): Typoes.
 
 	* latex2e.texi (top comment, Output files): Replace CTAN central
 	server URLs by mirror URLs, after a comment by Petra
-	R\xFCbe-Pugliese.
+	Rübe-Pugliese.
 
-2016-04-08  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-04-08  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* NEWS: Add NEWS entry for the Apr 2016 release --- assuming
 	English will be released also.
@@ -807,12 +1117,12 @@
 	* Makefile.1 (dist-xx, dist): Fix pior check that there aren't any
 	uncommited changes before making the zip.
 
-2016-04-07  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-04-07  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.{dbk,html,info,txt,xml,pdf}: Update French manuals
 	for distribution 2016-04-08 to CTAN.
 
-2016-04-07  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-04-07  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi: Updated @set UPDATED.
 
@@ -863,7 +1173,7 @@
 		make tag TAG=foo "MESSAGE=Some message"
 
 
-2016-04-04  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-04-04  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi: Add EnvIndex macro to make indexing environments
 	consistent and throughout the manual. Replace any @findex of an
@@ -879,10 +1189,10 @@
 	* latex2e-es.texi: Same as latex2e.texi.
 	(filecontents): Align to latest text in latex2e{,-fr}.texi.
 
-2016-04-02  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-04-02  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-es.texi: Add @BES and @BESU macro definitions.
-	(S\xEDmbolos de Texto): Use @BES macro rather than @math for
+	(Símbolos de Texto): Use @BES macro rather than @math for
 	\textperiodcentered so that the other-than-PDF is clean. `$' ->
 	`\$' for \textdollar.
 
@@ -893,7 +1203,7 @@
 	\@startsection example for solving the overfull hbox in the PDF
 	output.
 	* latex2e-fr.texi (Text symbols): \textquestiondown
-	Typo. \textexclamdown `haut en bas' -> `culbut\xE9'. Use @BES macro
+	Typo. \textexclamdown `haut en bas' -> `culbuté'. Use @BES macro
 	rather than @math for \textperiodcentered and \trademark so that
 	the other-than-PDF is clean. `$' -> `\$' for \textdollar. `marque
 	de fabrique' -> `marque de commerce' for \texttrademark.
@@ -900,14 +1210,14 @@
 	(\@@startsection): re-indent \@startsection example for solving
 	the overfull hbox in the PDF output, and fix some wrong reference.
 
-2016-03-31  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-03-31  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.{dbk,dvi,html,info,pdf,texi,txt,xml}: make fr.
 
-2016-03-29  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-03-29  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (Line breaking): Improve translation of
-	break/breaking, use `saut/sauter \xE0' rather than `rupture/rompre'.
+	break/breaking, use `saut/sauter à' rather than `rupture/rompre'.
 	(Spaces): Typo.
 	(Special insertions): Typo.
 	(Text symbols): Fix typo adding `comp' into
@@ -923,7 +1233,7 @@
 	`\textcapitalcompwordmark' and `\textascendercompwordmark'
 
 
-2016-03-17  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-03-17  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	Reword descrition of \epsilon and \varepsilon.
 
@@ -933,15 +1243,15 @@
 	``script small letter''.
 
 	* latex2e-fr.texi (Math symbols): About \varepsilon ``en forme de
-	3 retourn\xE9'' -> ``minuscule de ronde''.
+	3 retourné'' -> ``minuscule de ronde''.
 
-2016-03-15  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-03-15  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (Math symbols): Fix compilation errors.
 
 	* latex2e-fr.texi (Math symbols): Fix compilation errors.
 
-2016-03-14  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-03-14  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi Define flags NotInPlainTeX, NeedsAMSSymb and
 	NeedsSTIX, in order to factorize text of `Math symbols' node.
@@ -954,7 +1264,7 @@
 	* latex2e-fr.texi (Math symbols): Progress translation of this
 	node and make same changes as for latex2e.texi.
 
-2016-03-08  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-03-08  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (Top): Typoe in `Modes' menu entry.
 	(eqnarray): `or' -> `ou'.
@@ -975,11 +1285,11 @@
 	(\ensuremath): new node.
 	(Text symbols): Add pilcrow character for \P, similar change for \S.
 
-2016-03-06  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-03-06  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (Math symbols): Progress translation of this node.
 
-2016-02-29  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-02-29  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (\circle): Use term ``disque'', in addition to
 	``cercle plein'' (solid circle). @dmn{...}-ify unit.
@@ -986,7 +1296,7 @@
 	(\makebox (picture)): Typo.
 	(Math symbols): Progress translation of this node.
 
-2016-02-22  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-02-22  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (Text symbols): Fix @code{'}->@code{''} for \textquotedblright
 	(Splitting the input): @dfn{...}-ify `root file' and add it to concept index
@@ -993,10 +1303,10 @@
 	(\include): Replace `See next section' -> `See @ref{\includeonly}'.
 	(\includeonly): `@var{file}s' -> `@var{file1}, @var{file2}, @dots{}'
 
-	* latex2e-fr.texi (\alph \Alph \arabic \roman \Roman \fnsymbol): `croix-mortuaire' -> `ob\xE8le'
+	* latex2e-fr.texi (\alph \Alph \arabic \roman \Roman \fnsymbol): `croix-mortuaire' -> `obèle'
 	(Math symbols): Progress translation of this node.
 	(Text symbols): Start translation of this node.
-	(\thinspace): `imbriqu\xE9' -> `embo\xEEt\xE9', as per Cahier GUTenberg #49 glossary
+	(\thinspace): `imbriqué' -> `emboîté', as per Cahier GUTenberg #49 glossary
 	(Text symbols): Fix @code{'}->@code{''} for \textquotedblright
 	(Splitting the input, \include, \includeonly, \input): Translate these nodes.
 	(Splitting the input): @dfn{...}-ify `root file' and add it to concept index
@@ -1003,13 +1313,13 @@
 	(\include): Replace `See next section' -> `See @ref{\includeonly}'.
 	(\includeonly): `@var{file}s' -> `@var{file1}, @var{file2}, @dots{}'
 
-2016-02-15  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-02-15  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (\noindent): `..' -> `...'.
 
 	* latex2e-fr.texi (About this document, @LaTeX{} command syntax)
 	(Document class options, Document class options)
-	(Page\xA0layout\xA0parameters, Sectioning, enumerate, \item, \line)
+	(Page layout parameters, Sectioning, enumerate, \item, \line)
 	(\thicklines, \thinlines, \cite, \newtheorem, \newtheorem, \newtheorem)
 	(\alph \Alph \arabic \roman \Roman \fnsymbol, \signature): @tie{} -> UTF-8
 	unbreakable space.
@@ -1020,7 +1330,7 @@
 	(Math symbols): Progress translation + @tie{} -> UTF-8 unbreakable
 	space.
 
-2016-02-11  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-02-11  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (abstract): @code{...}-ify words `article' &
 	`report' when they refer to classes.
@@ -1034,10 +1344,10 @@
 	(\@@startsection): `@var{indent}' -> `@var{retrait}', indent(ation) -> retrait or renfoncement.
 	(Document class options): Added flegn concerns display mode formula only.
 	(Environments): `mise en vedette' -> `en hors texte'
-	(abstract): `abtracts' -> `r\xE9sum\xE9', and update translating this
+	(abstract): `abtracts' -> `résumé', and update translating this
 	node as per Jim's rev 486 of 2015-12-05T13:22:45+01 edit.
 	(Environment): Ellipsis `..' -> `...', and add
-	`Voir\xA0 at ref{Environments} pour une liste des environnements.' as
+	`Voir @ref{Environments} pour une liste des environnements.' as
 	per Jim's rev 486 of 2015-12-05T13:22:45+01 edit.
 	(array): Update translation ad per Jim's edits rev 391 of
 	2015-08-02T22:57:00+02 and with fixes from rev 469 by Karl of
@@ -1064,7 +1374,7 @@
 	* latex2e.texi (array): the directive is just p{...}, not @p{...}.
 	Noted by Vincent.
 
-2016-02-08  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-02-08  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (lrbox): Use Synopsis instead of in-line
 	@code{...}. `cmd' -> `\@var{cmd}'. @ref{...}-ify @code{\sbox}.
@@ -1093,12 +1403,12 @@
 	(lrbox): Translate this node.
 	(\raisebox): Complete translation of this node.
 	(Front/back matter): Typo.
-	(Tables of contents): `article' -> `entr\xE9e', as per Cahier GUTenberg #49 glossary.
+	(Tables of contents): `article' -> `entrée', as per Cahier GUTenberg #49 glossary.
 	(\addcontentsline): Translate this node, with same edits as in latex2e.texi.
 	(\addtocontents): Translate this node.
 	(Glossaries): Translate this node.
 	(Indexes): Translate this node, with same edits as in latex2e.texi.
-	(Letters): Typoes. `cl\xF4ture' -> `salutation'. Typo. Complete
+	(Letters): Typoes. `clôture' -> `salutation'. Typo. Complete
 	translation with same edits as in latex2e.texi.
 	(\address): Translate this node.
 	(\cc): Translate this node.
@@ -1108,7 +1418,7 @@
 	(\makelabels): Typo.
 	(\opening): Typo.
 
-2016-02-05  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-02-05  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (Line breaking, \discretionary): Add node
 	\discreionary, need completion.
@@ -1122,7 +1432,7 @@
 	(Page breaking): Translate this node.
 	(\protect): Translate this node, with same changes as in latex2e.texi.
 
-2016-02-04  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-02-04  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (Spacing in math mode):  Add @xref{\thinspace} to
 	the \thinspace entry.
@@ -1139,7 +1449,7 @@
 	example. Make TeX output only when compilation is with TeX and fix
 	some of the examples.
 
-2016-02-02  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-02-02  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi: Reword copyright notice from
 	Automatic-translation French to real French.
@@ -1180,7 +1490,7 @@
 	* latex2e.texi (\newcommand & \renewcommand): mention "\ "
 	after control sequences, as noted by Vincent.
 
-2016-01-27  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-01-27  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (Marginal notes): Typoes.
 	(Subscripts & superscripts): Typo.
@@ -1222,7 +1532,7 @@
 	* aspell.en.pws: add more exceptions.
 	* latex2e.texi: fix typos, refilling.
 
-2016-01-15  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2016-01-15  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (\setlength, \addtolength, \settodepth)
 	(\settoheight, \settowidth): Place synopsis in a Synopsis
@@ -1242,7 +1552,7 @@
 	(Symbols by font position): Add this node, after update made to
 	latex2e.texi
 
-2015-12-14  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2015-12-14  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (Top): section->rubrique, sectionement->rubricage
 	(@LaTeX{} command syntax): Add node ``\makeatletter and \makeatother''.
@@ -1315,7 +1625,7 @@
 
 	* latex2e.texi (\makeatletter and \makeatother): Adjust wording.
 
-2015-11-26  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2015-11-26  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (\newsavebox, \newtheorem, \newfont): Complete
 	translation of this node, and align on latest English version.
@@ -1335,7 +1645,7 @@
 	position.  Distinguish between output in text body font and
 	output in typewriter font.
 
-2015-11-09  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2015-11-09  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (\newcommand & \renewcommand): Introduce the
 	concept of positional parameter.
@@ -1346,7 +1656,7 @@
 	letters and character `*'. Use the term positional parameter, and
 	tell that expansion is within begdefn, not within environment,
 	which was misleading. @samp{...}-ify `Shakespear' outside of
-	@example... at end\xA0example.
+	@example... at end example.
 
 	* latex2e-fr.texi (Output files): Typo.
 	(tabular): Typoes.
@@ -1354,7 +1664,7 @@
 	(\newenvironment & \renewenvironment): Complete the translation
 	and make the same text improvements as in latex2e.texi.
 
-2015-11-06  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2015-11-06  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (\parbox): Tell that `position=m' equates the
 	default behaviour.
@@ -1361,7 +1671,7 @@
 
 	* latex2e.texi (\parbox): Same as latex2e-fr.texi.
 
-2015-11-05  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2015-11-05  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (\fussy): Typo.
 
@@ -1369,16 +1679,16 @@
 	(\verb): Clean-up left over English words.
 	(\obeycr & \restorecr, \fussy, \sloppy): Translate this node.
 
-2015-11-04  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2015-11-04  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (tabular): wording `@code{*-expression}' -> `@code{*}-expression'.
 
 	* latex2e-fr.texi (tabular): Complete translation of this node.
 
-2015-11-03  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2015-11-03  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (\parbox): Correct description of \parbox vertical
-	alignment after comment from Denis Bitouz\xE9.
+	alignment after comment from Denis Bitouzé.
 
 	* latex2e-fr.texi (\parbox): Same as for latex2e.texi.
 
@@ -1389,11 +1699,11 @@
 	* latex2e.texi (throughout): consistently use ... instead of
 	.. for code ellipses.
 
-2015-10-27  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2015-10-27  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (enumerate): Typo.
 	(itemize): Restore missing example.
-	(thebibliography): `label' -> `\xE9tiquette', `cite_key' ->
+	(thebibliography): `label' -> `étiquette', `cite_key' ->
 	`clef_de_cite'. Change wording concerning `\refname' in standard classes.
 	(\bibitem, \cite, \nocite, Using BibTeX, theorem): Translate this node.
 	(\cleardoublepage, \newpage): Improve wording `page actuelle' ->
@@ -1438,7 +1748,7 @@
 	* latex2e.texi (Footnotes): Add remark that getting biblio
 	references in footnotes depends on the bibliographic style.
 
-2015-10-11  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2015-10-11  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (Page breaking): Translate menu entries
 	(\cleardoublepage, \clearpage, \newpage, \enlargethispage)
@@ -1451,7 +1761,7 @@
 	* latex2e.texi (\cleardoublepage, \clearpage): Clarify that only
 	pending floating tables & figures are cleared.
 	(\newpage): `see @code{\clearpage} above' -> `@pxref{\clearpage}'
-	(Footnotes): Make the exact quotation of No\xEBl Coward, and correct
+	(Footnotes): Make the exact quotation of Noël Coward, and correct
 	his first name spelling.
 
 2015-10-11  Jim Hefferon  <jhefferon at smcvt.edu>
@@ -1468,7 +1778,7 @@
 	* latex2e.texi (\makelabels): Add more on how to customize
 	label sizes, etc.
 
-2015-10-09  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2015-10-09  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi (Environments): Merge menu entries for nodes
 	quote & quotations after Jim's edits of 2015-09-28
@@ -1481,7 +1791,7 @@
 	* latex2e.texi (Footnotes in a section heading): Add node,
 	provide examples.
 
-2015-10-08  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2015-10-08  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (\makelabels): @var{...}-ify argument 'to addess',
 	and @code{...}-ify class name.
@@ -1544,7 +1854,7 @@
 
 	* latex2e.texi (Letters): Add synopsis, examples.
 
-2015-09-22  Vincent Bela\xEFche  <vincent.belaiche at gmail.com>
+2015-09-22  Vincent Belaïche  <vincent.belaiche at gmail.com>
 
 	* latex2e-fr.texi (filecontents): Add Jim's 2015-09-18 (r439) edits.
 	(\addvspace): Add Jim's 2015-09-13 (r432) edits.
@@ -1560,7 +1870,7 @@
 	* latex2e-{es,fr}.{dbk,html,info,txt,xml}: Compile these files
 	again, because of eol problem.
 
-2015-09-21  Vincent Bela\xEFche  <vincent.belaiche at gmail.com>
+2015-09-21  Vincent Belaïche  <vincent.belaiche at gmail.com>
 
 	* latex2e-{es,fr}.{dbk,dvi,html,info,pdf,txt,xml}: Compile these files
 
@@ -1570,7 +1880,7 @@
 
 	* latex2e.texi (filecontents): Corrections suggested by JB.
 
-2015-09-17  Vincent Bela\xEFche  <vincent.belaiche at gmail.com>
+2015-09-17  Vincent Belaïche  <vincent.belaiche at gmail.com>
 
 	* ChangeLog: Correct typo on Jim's surname Hefferson->Hefferon.
 
@@ -1589,7 +1899,7 @@
 
 	* latex2e.texi (Subscripts & superscripts): Add examples.
 
-2015-09-15  Vincent Bela\xEFche  <vincent.belaiche at gmail.com>
+2015-09-15  Vincent Belaïche  <vincent.belaiche at gmail.com>
 
 	* latex2e.texi (Starting and ending): Add @cindex environment
 	(Spaces, \(SPACE) and \@@, \(SPACE) after CS): Move text how to
@@ -1602,7 +1912,7 @@
 	changes as for latex2e.texi.
         (Overview): add @: after some abbrev ending periods.
 	(Font styles): Follow Karl's changes of
-	2015-04-26, "deux choses tr\xE8s diff\xE9rentes"->"deux constructions
+	2015-04-26, "deux choses très différentes"->"deux constructions
 	sans relation l'une avec l'autre"
 	(Starting and ending): Follows Karl's change of 2015-04-26
 	(\- (hyphenation)): Translate this node.
@@ -1626,7 +1936,7 @@
 
 	* latex2e.texi (\noindent): Add example.
 
-2015-09-14  Vincent Bela\xEFche  <vincent.belaiche at gmail.com>
+2015-09-14  Vincent Belaïche  <vincent.belaiche at gmail.com>
 
 	* latex2e.texi (Spacing in math mode): Add missing @findex entries
 	for \thickspace, \medspace & \thinspace. Typo tht->that.
@@ -1689,7 +1999,7 @@
 	* latex2e.texi (Spacing in math mode): Move math mode lengths
 	to here and add whether they work also in text mode.
 
-2015-09-04  Vincent Bela\xEFche  <vincent.belaiche at gmail.com>
+2015-09-04  Vincent Belaïche  <vincent.belaiche at gmail.com>
 
 	* latex2e-fr.texi: Add macroes BES & BESU to support compilation of math symbols with texi2pdf.
 	(Symbolic footnotes): Complete translation of this node
@@ -1714,7 +2024,7 @@
 	(\makebox): reword is specified->can be overriden, because width is optional.
 	(\makebox): @code{...}-ify environment name picture.
 
-2015-08-29  Vincent Bela\xEFche  <vincent.belaiche at gmail.com>
+2015-08-29  Vincent Belaïche  <vincent.belaiche at gmail.com>
 
 	* latex2e-fr.texi (\linethickness): Typo.
 	(\thicklines, \thinlines, \shortstack, \/, \hrulefill)
@@ -1727,7 +2037,7 @@
 	 (\addvspace): @var{...}-ify word `length'.
 
 
-2015-08-27  Vincent Bela\xEFche  <vincent.belaiche at gmail.com>
+2015-08-27  Vincent Belaïche  <vincent.belaiche at gmail.com>
 
 	* latex2e.texi (Units of length): Use `@dmn{...}' rather than
 	`@tie{}...' in new node added by Jim.
@@ -1736,11 +2046,11 @@
 
 	* latex2e.texi (Units of length): Add new node in Lengths.
 
-2015-08-25  Vincent Bela\xEFche  <vincent.belaiche at gmail.com>
+2015-08-25  Vincent Belaïche  <vincent.belaiche at gmail.com>
 
 	* latex2e.texi (tabular): typo : horozontal->horizontal.
 
-2015-08-24  Vincent Bela\xEFche  <vincent.belaiche at gmail.com>
+2015-08-24  Vincent Belaïche  <vincent.belaiche at gmail.com>
 
 	* latex2e.texi (picture): (width,height)(x offset,y offset)->(@var{width}, at var{height})(@var{xoffset}, at var{yoffset})
 	(picture): make position a concept index entry, and @dfn{...}-ize it.
@@ -1750,7 +2060,7 @@
 	(picture): Translate this node.
 	(\framebox (picture)): @var{width}->@var{largeur}
 
-2015-08-23  Vincent Bela\xEFche  <vincent.belaiche at gmail.com>
+2015-08-23  Vincent Belaïche  <vincent.belaiche at gmail.com>
 
 	* latex2e-fr.texi (file preamble): Add comment about glossary
 	resources useful for French translation
@@ -1761,7 +2071,7 @@
 	(\centering): typo
 	(flushleft, \raggedright): Improve wording.
 	(flushright, \raggedleft): Translate these nodes.
-	(quotation, Making paragraphs): ligne blanche->ligne \xE0 blanc
+	(quotation, Making paragraphs): ligne blanche->ligne à blanc
 
 	* latex2e.texi (Floats): typo insert comma.
 	(Floats): figure->float
@@ -1790,7 +2100,7 @@
 	with issues.  Shrink the figure and table nodes by the common
 	material.
 
-2015-08-20  Vincent Bela\xEFche  <vincent.belaiche at gmail.com>
+2015-08-20  Vincent Belaïche  <vincent.belaiche at gmail.com>
 
 	* latex2e-fr.texi (Output files, @TeX{} engines, \line)
 	(Glossaries): Remove @acronym on Karl's request
@@ -1807,7 +2117,7 @@
 
 	* Makefile (xref_suffixes): no auxs or tocs.
 
-2015-08-19  Vincent Bela\xEFche  <vincent.belaiche at gmail.com>
+2015-08-19  Vincent Belaïche  <vincent.belaiche at gmail.com>
 
 	* latex2e.texi (flushleft): string->control sequence.
 
@@ -1898,7 +2208,7 @@
 	* latex2e.texi (center, \centering): Add detail, including
 	distinguishing the two and examples.
 
-2015-08-05  Vincent Bela\xEFche  <vincent.belaiche at gmail.com>
+2015-08-05  Vincent Belaïche  <vincent.belaiche at gmail.com>
 
 	* latex2e.texi (\indent): remove "width of" concering concerning
 	\parindent length.
@@ -1935,7 +2245,7 @@
 	* latex2e.texi (vline, cline, hline): Add examples.  Also describe
 	how columns are counted.
 
-2015-07-30  Vincent Bela\xEFche  <vincent.belaiche at gmail.com>
+2015-07-30  Vincent Belaïche  <vincent.belaiche at gmail.com>
 
 	* latex2e-fr.texi (Top): Correct menu item French translation for "Making paragraphs"
 	(itemize): typo, remove left-over English word "dash"
@@ -1944,7 +2254,7 @@
 
 	* latex2e.texi (Text symbols): Correct -- for --- for en-dash
 
-2015-07-29  Vincent Bela\xEFche  <vincent.belaiche at gmail.com>
+2015-07-29  Vincent Belaïche  <vincent.belaiche at gmail.com>
 
 	* latex2e-es.texi (Acentos): Make references between \underbar and \b.
 
@@ -1987,7 +2297,7 @@
 	the unicode glyph to the start of each entry to make
 	easier scanning for the desired symbol.
 
-2015-07-08  Vincent Bela\xEFche  <vincent.belaiche at gmail.com>
+2015-07-08  Vincent Belaïche  <vincent.belaiche at gmail.com>
 
 	* latex2e-fr.texi (Line breaking, \savebox): Translation to French.
 	(Sectioning): Typo.
@@ -2294,7 +2604,7 @@
 	* latex2e.texi (\alph \Alph \arabic \roman \Roman \fnsymbol):
 	\Roman for second @item.  Typo reported by Jose Atria.
 
-2014-11-19  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2014-11-19  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi: Progress translation to French
 
@@ -2304,12 +2614,12 @@
 	(node filecontents): Make it clear that it is about
 	files not documents.
 
-2014-10-20  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2014-10-20  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* Makefile: Add target `check' to compile each manual once with tex
 	and once with makeinfo. This is faster than using target `all'.
 
-2014-10-19  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2014-10-19  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (\setcounter): replace @var{\counter} by @var{counter}
 
@@ -2318,7 +2628,7 @@
 	* latex2e-fr.texi (\setcounter): Same change as latex2e.texi.
 	Progress Translation to French.
 
-2014-10-17  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2014-10-17  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-es.texi (\pagenumbering): use @backslashchar{} within
 	@vincentb in order to compile with tex.
@@ -2336,7 +2646,7 @@
 
 	* latex2e-es.texi (\put): @vincentb, not @vincenb.
 
-2014-09-25  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2014-09-25  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (\put): Make coordinates within @var{...} and add
 	explicit reference to them in the text.
@@ -2348,7 +2658,7 @@
 	* latex2e-fr.texi (nodes \put, \usebox): Same as
 	latex2e.texi. Progress translation to French.
 
-2014-09-19  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2014-09-19  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (document header): Set @documentencoding and
 	@documentlanguage.
@@ -2374,7 +2684,7 @@
 	* latex2e-fr.texi: Similar changes as latex2e.texi. Progress
 	translation to French.
 
-2014-09-10  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2014-09-10  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (\thinspace): em -> @dmn{em}.
 
@@ -2382,7 +2692,7 @@
 
 	* latex2e-fr.texi:  Progress translation to French.
 
-2014-09-08  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2014-09-08  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-fr.texi: Progress translation to French.
 
@@ -2390,7 +2700,7 @@
 	make by' by `The box made by'.
 	(node Math miscellany): correct typo `for examp*l*e'.
 
-2014-08-30  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2014-08-30  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e-es.texi (\vector): correct bug involved by renaming
 	y-slop/x-slop to declivex/declivey --- as I used @vincentb macro
@@ -2397,7 +2707,7 @@
 	encapsulation to mark my change, it made \ of \vector no longer a
 	"other" character.
 
-2014-08-29  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2014-08-29  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* Makefile: add definition of variable all, for clean to work. Add
 	squeaky as a synonym of realclean. Add in comment generic line for
@@ -2408,12 +2718,12 @@
 	* latex2e.texi (node Page layout parameters): correct typo clase -> classes
 	(node array): `in that row' -> `in each row of that column
 
-	* latex2e-es.texi (node array): `el n\xFAmero de elementos y deben
+	* latex2e-es.texi (node array): `el número de elementos y deben
 	tener el formato' -> `cual formato debe tener cada linea en esta
 	columna'
 
 
-2014-08-24  Vincent Bela\xEFche  <vincentb1 at users.sourceforge.net>
+2014-08-24  Vincent Belaïche  <vincentb1 at users.sourceforge.net>
 
 	* latex2e.texi (node Boxes): add @code{...} encapsulation.
 	(\dashbox): replace @code{...} by @var{...} for \dashbox
@@ -2426,7 +2736,7 @@
 
 	* latex2e-es.texi (node Cajas): same as latex2e.texi.
 	(\dashbox): same as latex2e.texi. Rename parameter
-	@var{dlargo} to @var{glargo}, with 'g' for gui\xF3n (aka
+	@var{dlargo} to @var{glargo}, with 'g' for guión (aka
 	dash).
 	(nodes \line & Glossarios): same as latex2e.texi.
 	(\makebox of picture): same as latex2e.texi.
@@ -2439,7 +2749,7 @@
 	(\vector): same as latex2e.texi.
 	Progress further translation to French.
 
-2014-08-17  Vincent Bela\xEFche  <vincent.b.1 at hotmail.fr>
+2014-08-17  Vincent Belaïche  <vincent.b.1 at hotmail.fr>
 
 	* latex2e.texi: (node Layout) Add @code{...} around \headheight
 	and \footskip in `Page layout parameters' menu entry
@@ -2449,7 +2759,7 @@
 	* latex2e-fr.texi: Same change as in latex2e.texi. Continue
 	progressing translation to French.
 
-2014-08-11  Vincent Bela\xEFche  <vincent.b.1 at hotmail.fr>
+2014-08-11  Vincent Belaïche  <vincent.b.1 at hotmail.fr>
 
 	* latex2e.texi: Add @code{...} encapsulation in some places to
 	class names letter, slides, book, report, article, and to
@@ -2462,23 +2772,23 @@
 	translation to French.
 
 
-2014-08-10  Vincent Bela\xEFche  <vincent.b.1 at hotmail.fr>
+2014-08-10  Vincent Belaïche  <vincent.b.1 at hotmail.fr>
 
 	* latex2e.texi: (Overview) change wording about case sensitivity.
 
-	* latex2e-es.texi: (Descripci\xF3n) same change change as for latex2e.texi about case sensitivity.
+	* latex2e-es.texi: (Descripción) same change change as for latex2e.texi about case sensitivity.
 
 	* latex2e-fr.texi: (Overview) same change change as for
 	latex2e.texi about case sensitivity. (Whole document) Put in place
 	same structure as for original and progress translation.
 
-2014-08-01  Vincent Bela\xEFche  <vincent.b.1 at hotmail.fr>
+2014-08-01  Vincent Belaïche  <vincent.b.1 at hotmail.fr>
 
 	* latex2e-fr.texi: Creation --- still very approximate & preliminary...
 
 	* Makefile: Make it generic
 
-2014-07-20  Vincent Bela\xEFche  <vincent.b.1 at hotmail.fr>
+2014-07-20  Vincent Belaïche  <vincent.b.1 at hotmail.fr>
 
 	* latex2e.texi (\LaTeXe),
 	* latex2e-es.texi (\LaTeXe): document LaTeX2e log.
@@ -2493,7 +2803,7 @@
 	(Font styles): mention my disagreement with the oft-stated
 	notion that \tt, et al., are "obsolete".
 
-2014-02-27  Vincent Bela\xEFche  <vincent.b.1 at hotmail.fr>
+2014-02-27  Vincent Belaïche  <vincent.b.1 at hotmail.fr>
 
 	* latex2e.texi (filecontents): Clarify that LaTeX2e default
 	filecontents environment DOES NOT overwrite existing files, you
@@ -2501,12 +2811,12 @@
 
 	* latex2e-es.texi (filecontents): Align on the English version.
 
-2014-02-26  Vincent Bela\xEFche  <vincent.b.1 at hotmail.fr>
+2014-02-26  Vincent Belaïche  <vincent.b.1 at hotmail.fr>
 
 	* latex2e-es.texi: Align Spanish translation with changes made by
 	Karl on 2014-02-23, and also some changes done before that.
 
-2014-02-25  Vincent Bela\xEFche  <vincent.b.1 at hotmail.fr>
+2014-02-25  Vincent Belaïche  <vincent.b.1 at hotmail.fr>
 
 	* latex2e.texi: Correct typo, rm duplicate 2014 in copyright notice.
 

Modified: trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/Makefile
===================================================================
--- trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/Makefile	2018-07-04 21:25:46 UTC (rev 48134)
+++ trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/Makefile	2018-07-04 21:26:44 UTC (rev 48135)
@@ -1,4 +1,4 @@
-# $Id: Makefile 614 2018-03-28 22:21:21Z karl $
+# $Id: Makefile 617 2018-04-30 14:16:52Z jimhefferon $
 # Public domain.  Originally written 2006, Karl Berry.
 # Makefile for latexrefman.
 
@@ -92,7 +92,7 @@
 	zip -q $(dist) \
 $(addprefix latex2e-help-texinfo/, $(txt_files) \
                           latex2e.texi common.texi $(en_mi_output) latex2e.pdf) \
-$(addprefix latex2e-help-texinfo/spanish/,  $(es_mi_output)) \
+$(addprefix latex2e-help-texinfo/spanish/,  $(es_mi_output) latex2e-es.pdf) \
 $(addprefix latex2e-help-texinfo/latex2e-figures/,  $(figure_files)) \
 $(addprefix latex2e-help-texinfo/graphics/,  README $(figure_source_files))
 	rm -rf latex2e-help-texinfo

Modified: trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/NEWS
===================================================================
--- trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/NEWS	2018-07-04 21:25:46 UTC (rev 48134)
+++ trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/NEWS	2018-07-04 21:26:44 UTC (rev 48135)
@@ -4,6 +4,25 @@
 Spanish translation originally from Nacho Pacheco (currently unmaintained).
 French translation originally from Vincent Belaiche.
 
+Changes in July 2018 release:
+
+We have gone through the two documents latex-info and
+latex2e-reference and checked that any information in those documents
+is in this one.
+
+There have also been other changes, including switching to a single
+unified index, a more uniform entry format, and many more examples and
+error messages.  There are a number of entirely new entries such as
+ones on \strut, caligraphic math fonts, \boldmath, and blackboard
+bold.  There have also been adjustments to the organization such as
+having separate sections for \part, \chapter, etc., and some
+combinations such as that of \clearpage and \cleardoublepage.
+
+In addition, there were many bug fixes, including greatly shrinking
+the size of one of the graphics.
+
+----------------------------------------------------------------
+
 Changes in April 2018 release:
 
 There is a new chapter on color and a new chapter on graphics
@@ -12,6 +31,7 @@
 diagram of the parameters, and a description of the tabbing
 environment.
 
+
 ----------------------------------------------------------------
 Changes in Aug 2017 release:
 

Modified: trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/aspell.en.pws
===================================================================
--- trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/aspell.en.pws	2018-07-04 21:25:46 UTC (rev 48134)
+++ trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/aspell.en.pws	2018-07-04 21:26:44 UTC (rev 48135)
@@ -1,54 +1,176 @@
 personal_ws-1.1 en 0
+AAF
+ArtBox
 Avant
+BD
+BES
+BESU
 Biemesderfer
+BleedBox
 Botway
+CTAN's
+CropBox
+EE
+EF
 EnvIndex
+FC
 Garde
+Halmos
 Kleene
 LAH
 Lappish
 Martinsen
+MediaBox
+NeedsAMSSymb
+NeedsSTIX
+NotInPlainTeX
+O'Brian
 Overstrike
+PkgIndex
+Supremum
+TrimBox
 ae
+afterskip
 arabic
 aring
+arrayrulewidth
+arraystrech
 ary
+baselinestretch
+bb
+bbllx
+bblly
+bburx
+bbury
+beforeskip
+beginparpenalty
+bigfoot
+bigski
+bigskip
+bigskipamount
+bm
 bowtie
 bp
+builtin
+cdots
 cmd
+columnsep
+columnseprule
+columnwidth
 coproduct
+cosecant
 cp
+cprotect
+datetime
+dblfloatpagefraction
+dcolumn
+ddagger
+ddots
 del
+delim
+doublerulesep
+doublestruck
 dvi
 dvitype
 eg
 ek
+endparpenalty
 eng
+enumi
+enumii
+enumiii
+enumiv
 env
+envlab
+errorstop
+errorstopmode
 eth
+evensidemargin
 executivepaper
 f's
+fbox
+fboxrule
 fd
 fleqn
+floatpagefraction
 fn
 fnsymbol
+fontencoding
+fontfamily
+fontseries
+fontshape
+footmisc
+footnoterule
+footnotesep
+footskip
 greek
 hacek
+headheight
+headsep
+hiresbb
+homomorphism
 hungarian
+idx
+ifstar
+indentfirst
 indexspace
+infinum
 intercolumn
+itemindent
+itempenalty
+itemsep
 lR
+labelenumi
+labelenumii
+labelenumiii
+labelenumiv
+labelitemi
+labelitemii
+labelitemiii
+labelitemiv
+labelsep
+labelwidth
+ldots
 leadsto
+leftmargin
+leftmargini
+leftmarginii
+leftmarginiii
+leftmarginiv
+leftmarginv
+leftmarginvi
 legalpaper
+lethead
+letheadflag
 letterpaper
 lhd
+linespread
+listparindent
+lr
 lrbox
 lunate
+makeidx
+makelabel
+marginparpush
+marginparsep
+marginparwidth
+marginsep
+medskipamount
+medspace
+mfirstuc
+mhchem
 mho
+mistyped
 mpfootnote
+multind
 multiset
+mx
+natheight
+natwidth
+negthinspace
 niques
 notitlepage
+oddsidemargin
 oe
 onecolumn
 oo
@@ -56,62 +178,77 @@
 openbib
 openright
 oslash
+outdent
 overbar
 overdot
+overlines
+overlining
+pagebox
 pagebreak
 pagestyle
+paperheight
+paperwidth
+parsep
+partopsep
+pict
+pixelation
 printindex
 ptr
+radians
+rescale
 revemptyset
 rhd
+rightmargin
 secnumdepth
+selectfont
+setspace
+showidx
+smallskip
+smallskipamount
 sp
 sqsubset
 sqsupset
+startsection
+subitem
+subitems
+subregion
 superscripted
+tabcolsep
 teck
 tecks
+texi
 texinfo
+textcase
+textheight
 textstyle
 th
+thickspace
 titlepage
+tocbibbind
+tocdepth
+tocloft
 topmargin
+topsep
+topskip
+totalheght
+totalheight
 twocolumn
 twoside
+ulem
 underbar
+underbrace
+unlabelled
 unlhd
 unrhd
 upharpoonright
+usefont
 usrguide
 varnothing
+vdots
+verbatimbox
 vert
 xdv
 xelatex
+xindy
 xyz
 zet
-ddagger
-footmisc
-setspace
-showidx
-makeidx
-multind
-datetime
-PkgIndex
-afterskip
-beforeskip
-ifstar
-textcase
-startsection
-mfirstuc
-texi
-outdent
-ArtBox
-BleedBox
-builtin
-CropBox
-MediaBox
-pixelation
-radians
-rescale
-subregion
-TrimBox

Modified: trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/common.texi
===================================================================
--- trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/common.texi	2018-07-04 21:25:46 UTC (rev 48134)
+++ trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/common.texi	2018-07-04 21:26:44 UTC (rev 48135)
@@ -1,4 +1,6 @@
- at set LTXREFMAN_HOME_PAGE http://puszcza.gnu.org.ua/software/latexrefman/
+ at c $Id$
+ at c Public domain.
+ at set LTXREFMAN_HOME_PAGE puszcza.gnu.org.ua/software/latexrefman
 @set LTXREFMAN_BUGS latexrefman@@tug.org
 @clear HAS-MATH 
 @iftex

Modified: trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/graphics/README
===================================================================
--- trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/graphics/README	2018-07-04 21:25:46 UTC (rev 48134)
+++ trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/graphics/README	2018-07-04 21:26:44 UTC (rev 48135)
@@ -1,4 +1,8 @@
 This directory contains the source for the graphics used in the document.
-Note that different TeXinfo output formats require different graphic
-formats.  In particular, one such format is .txt.  Those graphics are
-stored with their matching ones in .pdf or .png or .eps.
\ No newline at end of file
+
+The asy/ directory contains the source for graphics produced with
+Asymptote.
+
+TeXinfo wants the graphics in ../latex2e-figures/.  Note that
+different TeXinfo output formats require different graphic formats.
+

Modified: trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/graphics/asy/list.asy
===================================================================
--- trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/graphics/asy/list.asy	2018-07-04 21:25:46 UTC (rev 48134)
+++ trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/graphics/asy/list.asy	2018-07-04 21:26:44 UTC (rev 48135)
@@ -1,5 +1,5 @@
 import settings;
-settings.outformat="pdf";
+// settings.outformat="pdf";
 
 unitsize(1pt);
 

Added: trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e-figures/list.eps
===================================================================
--- trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e-figures/list.eps	                        (rev 0)
+++ trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e-figures/list.eps	2018-07-04 21:26:44 UTC (rev 48135)
@@ -0,0 +1,1302 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: dvips(k) 5.995 Copyright 2015 Radical Eye Software
+%%Title: list_.dvi
+%%CreationDate: Fri Jun  8 10:35:27 2018
+%%Pages: 1
+%%PageOrder: Ascend
+%%BoundingBox: 189 310 422 481
+%%HiResBoundingBox: 189.816995 310.126502 421.183005 480.873498
+%%DocumentFonts: CMTI7 CMMI8 CMR6
+%%EndComments
+%DVIPSWebPage: (www.radicaleye.com)
+%DVIPSCommandLine: dvips -R -Pdownload35 -D600 -O61.417bp,185.327bp
+%+ -T612bp,792bp -tletterSize -q -olist_.ps list_.dvi
+%DVIPSParameters: dpi=600
+%DVIPSSource:  TeX output 2018.06.08:1035
+%%BeginProcSet: tex.pro 0 0
+%!
+/TeXDict 300 dict def TeXDict begin/N{def}def/B{bind def}N/S{exch}N/X{S
+N}B/A{dup}B/TR{translate}N/isls false N/vsize 11 72 mul N/hsize 8.5 72
+mul N/landplus90{false}def/@rigin{isls{[0 landplus90{1 -1}{-1 1}ifelse 0
+0 0]concat}if 72 Resolution div 72 VResolution div neg scale isls{
+landplus90{VResolution 72 div vsize mul 0 exch}{Resolution -72 div hsize
+mul 0}ifelse TR}if Resolution VResolution vsize -72 div 1 add mul TR[
+matrix currentmatrix{A A round sub abs 0.00001 lt{round}if}forall round
+exch round exch]setmatrix}N/@landscape{/isls true N}B/@manualfeed{
+statusdict/manualfeed true put}B/@copies{/#copies X}B/FMat[1 0 0 -1 0 0]
+N/FBB[0 0 0 0]N/nn 0 N/IEn 0 N/ctr 0 N/df-tail{/nn 8 dict N nn begin
+/FontType 3 N/FontMatrix fntrx N/FontBBox FBB N string/base X array
+/BitMaps X/BuildChar{CharBuilder}N/Encoding IEn N end A{/foo setfont}2
+array copy cvx N load 0 nn put/ctr 0 N[}B/sf 0 N/df{/sf 1 N/fntrx FMat N
+df-tail}B/dfs{div/sf X/fntrx[sf 0 0 sf neg 0 0]N df-tail}B/E{pop nn A
+definefont setfont}B/Cw{Cd A length 5 sub get}B/Ch{Cd A length 4 sub get
+}B/Cx{128 Cd A length 3 sub get sub}B/Cy{Cd A length 2 sub get 127 sub}
+B/Cdx{Cd A length 1 sub get}B/Ci{Cd A type/stringtype ne{ctr get/ctr ctr
+1 add N}if}B/CharBuilder{save 3 1 roll S A/base get 2 index get S
+/BitMaps get S get/Cd X pop/ctr 0 N Cdx 0 Cx Cy Ch sub Cx Cw add Cy
+setcachedevice Cw Ch true[1 0 0 -1 -.1 Cx sub Cy .1 sub]{Ci}imagemask
+restore}B/D{/cc X A type/stringtype ne{]}if nn/base get cc ctr put nn
+/BitMaps get S ctr S sf 1 ne{A A length 1 sub A 2 index S get sf div put
+}if put/ctr ctr 1 add N}B/I{cc 1 add D}B/bop{userdict/bop-hook known{
+bop-hook}if/SI save N @rigin 0 0 moveto/V matrix currentmatrix A 1 get A
+mul exch 0 get A mul add .99 lt{/QV}{/RV}ifelse load def pop pop}N/eop{
+SI restore userdict/eop-hook known{eop-hook}if showpage}N/@start{
+userdict/start-hook known{start-hook}if pop/VResolution X/Resolution X
+1000 div/DVImag X/IEn 256 array N 2 string 0 1 255{IEn S A 360 add 36 4
+index cvrs cvn put}for pop 65781.76 div/vsize X 65781.76 div/hsize X}N
+/dir 0 def/dyy{/dir 0 def}B/dyt{/dir 1 def}B/dty{/dir 2 def}B/dtt{/dir 3
+def}B/p{dir 2 eq{-90 rotate show 90 rotate}{dir 3 eq{-90 rotate show 90
+rotate}{show}ifelse}ifelse}N/RMat[1 0 0 -1 0 0]N/BDot 260 string N/Rx 0
+N/Ry 0 N/V{}B/RV/v{/Ry X/Rx X V}B statusdict begin/product where{pop
+false[(Display)(NeXT)(LaserWriter 16/600)]{A length product length le{A
+length product exch 0 exch getinterval eq{pop true exit}if}{pop}ifelse}
+forall}{false}ifelse end{{gsave TR -.1 .1 TR 1 1 scale Rx Ry false RMat{
+BDot}imagemask grestore}}{{gsave TR -.1 .1 TR Rx Ry scale 1 1 false RMat
+{BDot}imagemask grestore}}ifelse B/QV{gsave newpath transform round exch
+round exch itransform moveto Rx 0 rlineto 0 Ry neg rlineto Rx neg 0
+rlineto fill grestore}B/a{moveto}B/delta 0 N/tail{A/delta X 0 rmoveto}B
+/M{S p delta add tail}B/b{S p tail}B/c{-4 M}B/d{-3 M}B/e{-2 M}B/f{-1 M}
+B/g{0 M}B/h{1 M}B/i{2 M}B/j{3 M}B/k{4 M}B/w{0 rmoveto}B/l{p -4 w}B/m{p
+-3 w}B/n{p -2 w}B/o{p -1 w}B/q{p 1 w}B/r{p 2 w}B/s{p 3 w}B/t{p 4 w}B/x{
+0 S rmoveto}B/y{3 2 roll p a}B/bos{/SS save N}B/eos{SS restore}B end
+
+%%EndProcSet
+%%BeginProcSet: texps.pro 0 0
+%!
+TeXDict begin/rf{findfont dup length 1 add dict begin{1 index/FID ne 2
+index/UniqueID ne and{def}{pop pop}ifelse}forall[1 index 0 6 -1 roll
+exec 0 exch 5 -1 roll VResolution Resolution div mul neg 0 0]FontType 0
+ne{/Metrics exch def dict begin Encoding{exch dup type/integertype ne{
+pop pop 1 sub dup 0 le{pop}{[}ifelse}{FontMatrix 0 get div Metrics 0 get
+div def}ifelse}forall Metrics/Metrics currentdict end def}{{1 index type
+/nametype eq{exit}if exch pop}loop}ifelse[2 index currentdict end
+definefont 3 -1 roll makefont/setfont cvx]cvx def}def/ObliqueSlant{dup
+sin S cos div neg}B/SlantFont{4 index mul add}def/ExtendFont{3 -1 roll
+mul exch}def/ReEncodeFont{CharStrings rcheck{/Encoding false def dup[
+exch{dup CharStrings exch known not{pop/.notdef/Encoding true def}if}
+forall Encoding{]exch pop}{cleartomark}ifelse}if/Encoding exch def}def
+end
+
+%%EndProcSet
+%%BeginProcSet: special.pro 0 0
+%!
+TeXDict begin/SDict 200 dict N SDict begin/@SpecialDefaults{/hs 612 N
+/vs 792 N/ho 0 N/vo 0 N/hsc 1 N/vsc 1 N/ang 0 N/CLIP 0 N/rwiSeen false N
+/rhiSeen false N/letter{}N/note{}N/a4{}N/legal{}N}B/@scaleunit 100 N
+/@hscale{@scaleunit div/hsc X}B/@vscale{@scaleunit div/vsc X}B/@hsize{
+/hs X/CLIP 1 N}B/@vsize{/vs X/CLIP 1 N}B/@clip{/CLIP 2 N}B/@hoffset{/ho
+X}B/@voffset{/vo X}B/@angle{/ang X}B/@rwi{10 div/rwi X/rwiSeen true N}B
+/@rhi{10 div/rhi X/rhiSeen true N}B/@llx{/llx X}B/@lly{/lly X}B/@urx{
+/urx X}B/@ury{/ury X}B/magscale true def end/@MacSetUp{userdict/md known
+{userdict/md get type/dicttype eq{userdict begin md length 10 add md
+maxlength ge{/md md dup length 20 add dict copy def}if end md begin
+/letter{}N/note{}N/legal{}N/od{txpose 1 0 mtx defaultmatrix dtransform S
+atan/pa X newpath clippath mark{transform{itransform moveto}}{transform{
+itransform lineto}}{6 -2 roll transform 6 -2 roll transform 6 -2 roll
+transform{itransform 6 2 roll itransform 6 2 roll itransform 6 2 roll
+curveto}}{{closepath}}pathforall newpath counttomark array astore/gc xdf
+pop ct 39 0 put 10 fz 0 fs 2 F/|______Courier fnt invertflag{PaintBlack}
+if}N/txpose{pxs pys scale ppr aload pop por{noflips{pop S neg S TR pop 1
+-1 scale}if xflip yflip and{pop S neg S TR 180 rotate 1 -1 scale ppr 3
+get ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg TR}if xflip
+yflip not and{pop S neg S TR pop 180 rotate ppr 3 get ppr 1 get neg sub
+neg 0 TR}if yflip xflip not and{ppr 1 get neg ppr 0 get neg TR}if}{
+noflips{TR pop pop 270 rotate 1 -1 scale}if xflip yflip and{TR pop pop
+90 rotate 1 -1 scale ppr 3 get ppr 1 get neg sub neg ppr 2 get ppr 0 get
+neg sub neg TR}if xflip yflip not and{TR pop pop 90 rotate ppr 3 get ppr
+1 get neg sub neg 0 TR}if yflip xflip not and{TR pop pop 270 rotate ppr
+2 get ppr 0 get neg sub neg 0 S TR}if}ifelse scaleby96{ppr aload pop 4
+-1 roll add 2 div 3 1 roll add 2 div 2 copy TR .96 dup scale neg S neg S
+TR}if}N/cp{pop pop showpage pm restore}N end}if}if}N/normalscale{
+Resolution 72 div VResolution 72 div neg scale magscale{DVImag dup scale
+}if 0 setgray}N/@beginspecial{SDict begin/SpecialSave save N gsave
+normalscale currentpoint TR @SpecialDefaults count/ocount X/dcount
+countdictstack N}N/@setspecial{CLIP 1 eq{newpath 0 0 moveto hs 0 rlineto
+0 vs rlineto hs neg 0 rlineto closepath clip}if ho vo TR hsc vsc scale
+ang rotate rwiSeen{rwi urx llx sub div rhiSeen{rhi ury lly sub div}{dup}
+ifelse scale llx neg lly neg TR}{rhiSeen{rhi ury lly sub div dup scale
+llx neg lly neg TR}if}ifelse CLIP 2 eq{newpath llx lly moveto urx lly
+lineto urx ury lineto llx ury lineto closepath clip}if/showpage{}N
+/erasepage{}N/setpagedevice{pop}N/copypage{}N newpath}N/@endspecial{
+count ocount sub{pop}repeat countdictstack dcount sub{end}repeat
+grestore SpecialSave restore end}N/@defspecial{SDict begin}N
+/@fedspecial{end}B/li{lineto}B/rl{rlineto}B/rc{rcurveto}B/np{/SaveX
+currentpoint/SaveY X N 1 setlinecap newpath}N/st{stroke SaveX SaveY
+moveto}N/fil{fill SaveX SaveY moveto}N/ellipse{/endangle X/startangle X
+/yrad X/xrad X/savematrix matrix currentmatrix N TR xrad yrad scale 0 0
+1 startangle endangle arc savematrix setmatrix}N end
+
+%%EndProcSet
+%%BeginProcSet: color.pro 0 0
+%!
+TeXDict begin/setcmykcolor where{pop}{/setcmykcolor{dup 10 eq{pop
+setrgbcolor}{1 sub 4 1 roll 3{3 index add neg dup 0 lt{pop 0}if 3 1 roll
+}repeat setrgbcolor pop}ifelse}B}ifelse/TeXcolorcmyk{setcmykcolor}def
+/TeXcolorrgb{setrgbcolor}def/TeXcolorgrey{setgray}def/TeXcolorgray{
+setgray}def/TeXcolorhsb{sethsbcolor}def/currentcmykcolor where{pop}{
+/currentcmykcolor{currentrgbcolor 10}B}ifelse/DC{exch dup userdict exch
+known{pop pop}{X}ifelse}B/GreenYellow{0.15 0 0.69 0 setcmykcolor}DC
+/Yellow{0 0 1 0 setcmykcolor}DC/Goldenrod{0 0.10 0.84 0 setcmykcolor}DC
+/Dandelion{0 0.29 0.84 0 setcmykcolor}DC/Apricot{0 0.32 0.52 0
+setcmykcolor}DC/Peach{0 0.50 0.70 0 setcmykcolor}DC/Melon{0 0.46 0.50 0
+setcmykcolor}DC/YellowOrange{0 0.42 1 0 setcmykcolor}DC/Orange{0 0.61
+0.87 0 setcmykcolor}DC/BurntOrange{0 0.51 1 0 setcmykcolor}DC
+/Bittersweet{0 0.75 1 0.24 setcmykcolor}DC/RedOrange{0 0.77 0.87 0
+setcmykcolor}DC/Mahogany{0 0.85 0.87 0.35 setcmykcolor}DC/Maroon{0 0.87
+0.68 0.32 setcmykcolor}DC/BrickRed{0 0.89 0.94 0.28 setcmykcolor}DC/Red{
+0 1 1 0 setcmykcolor}DC/OrangeRed{0 1 0.50 0 setcmykcolor}DC/RubineRed{
+0 1 0.13 0 setcmykcolor}DC/WildStrawberry{0 0.96 0.39 0 setcmykcolor}DC
+/Salmon{0 0.53 0.38 0 setcmykcolor}DC/CarnationPink{0 0.63 0 0
+setcmykcolor}DC/Magenta{0 1 0 0 setcmykcolor}DC/VioletRed{0 0.81 0 0
+setcmykcolor}DC/Rhodamine{0 0.82 0 0 setcmykcolor}DC/Mulberry{0.34 0.90
+0 0.02 setcmykcolor}DC/RedViolet{0.07 0.90 0 0.34 setcmykcolor}DC
+/Fuchsia{0.47 0.91 0 0.08 setcmykcolor}DC/Lavender{0 0.48 0 0
+setcmykcolor}DC/Thistle{0.12 0.59 0 0 setcmykcolor}DC/Orchid{0.32 0.64 0
+0 setcmykcolor}DC/DarkOrchid{0.40 0.80 0.20 0 setcmykcolor}DC/Purple{
+0.45 0.86 0 0 setcmykcolor}DC/Plum{0.50 1 0 0 setcmykcolor}DC/Violet{
+0.79 0.88 0 0 setcmykcolor}DC/RoyalPurple{0.75 0.90 0 0 setcmykcolor}DC
+/BlueViolet{0.86 0.91 0 0.04 setcmykcolor}DC/Periwinkle{0.57 0.55 0 0
+setcmykcolor}DC/CadetBlue{0.62 0.57 0.23 0 setcmykcolor}DC
+/CornflowerBlue{0.65 0.13 0 0 setcmykcolor}DC/MidnightBlue{0.98 0.13 0
+0.43 setcmykcolor}DC/NavyBlue{0.94 0.54 0 0 setcmykcolor}DC/RoyalBlue{1
+0.50 0 0 setcmykcolor}DC/Blue{1 1 0 0 setcmykcolor}DC/Cerulean{0.94 0.11
+0 0 setcmykcolor}DC/Cyan{1 0 0 0 setcmykcolor}DC/ProcessBlue{0.96 0 0 0
+setcmykcolor}DC/SkyBlue{0.62 0 0.12 0 setcmykcolor}DC/Turquoise{0.85 0
+0.20 0 setcmykcolor}DC/TealBlue{0.86 0 0.34 0.02 setcmykcolor}DC
+/Aquamarine{0.82 0 0.30 0 setcmykcolor}DC/BlueGreen{0.85 0 0.33 0
+setcmykcolor}DC/Emerald{1 0 0.50 0 setcmykcolor}DC/JungleGreen{0.99 0
+0.52 0 setcmykcolor}DC/SeaGreen{0.69 0 0.50 0 setcmykcolor}DC/Green{1 0
+1 0 setcmykcolor}DC/ForestGreen{0.91 0 0.88 0.12 setcmykcolor}DC
+/PineGreen{0.92 0 0.59 0.25 setcmykcolor}DC/LimeGreen{0.50 0 1 0
+setcmykcolor}DC/YellowGreen{0.44 0 0.74 0 setcmykcolor}DC/SpringGreen{
+0.26 0 0.76 0 setcmykcolor}DC/OliveGreen{0.64 0 0.95 0.40 setcmykcolor}
+DC/RawSienna{0 0.72 1 0.45 setcmykcolor}DC/Sepia{0 0.83 1 0.70
+setcmykcolor}DC/Brown{0 0.81 1 0.60 setcmykcolor}DC/Tan{0.14 0.42 0.56 0
+setcmykcolor}DC/Gray{0 0 0 0.50 setcmykcolor}DC/Black{0 0 0 1
+setcmykcolor}DC/White{0 0 0 0 setcmykcolor}DC end
+
+%%EndProcSet
+%%BeginFont: CMR6
+%!PS-AdobeFont-1.0: CMR6 003.002
+%%Title: CMR6
+%Version: 003.002
+%%CreationDate: Mon Jul 13 16:17:00 2009
+%%Creator: David M. Jones
+%Copyright: Copyright (c) 1997, 2009 American Mathematical Society
+%Copyright: (<http://www.ams.org>), with Reserved Font Name CMR6.
+% This Font Software is licensed under the SIL Open Font License, Version 1.1.
+% This license is in the accompanying file OFL.txt, and is also
+% available with a FAQ at: http://scripts.sil.org/OFL.
+%%EndComments
+FontDirectory/CMR6 known{/CMR6 findfont dup/UniqueID known{dup
+/UniqueID get 5000789 eq exch/FontType get 1 eq and}{pop false}ifelse
+{save true}{false}ifelse}{false}ifelse
+11 dict begin
+/FontType 1 def
+/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def
+/FontName /CMR6 def
+/FontBBox {-20 -250 1193 750 }readonly def
+/PaintType 0 def
+/FontInfo 9 dict dup begin
+/version (003.002) readonly def
+/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050<http://www.ams.org>\051, with Reserved Font Name CMR6.) readonly def
+/FullName (CMR6) readonly def
+/FamilyName (Computer Modern) readonly def
+/Weight (Medium) readonly def
+/ItalicAngle 0 def
+/isFixedPitch false def
+/UnderlinePosition -100 def
+/UnderlineThickness 50 def
+end readonly def
+/Encoding 256 array
+0 1 255 {1 index exch /.notdef put} for
+dup 48 /zero put
+dup 49 /one put
+dup 50 /two put
+dup 51 /three put
+dup 52 /four put
+dup 53 /five put
+readonly def
+currentdict end
+currentfile eexec
+D9D66F633B846AB284BCF8B0411B772DE5CE3DD325E55798292D7BD972BD75FA
+0E079529AF9C82DF72F64195C9C210DCE34528F540DA1FFD7BEBB9B40787BA93
+51BBFB7CFC5F9152D1E5BB0AD8D016C6CFA4EB41B3C51D091C2D5440E67CFD71
+7C56816B03B901BF4A25A07175380E50A213F877C44778B3C5AADBCC86D6E551
+E6AF364B0BFCAAD22D8D558C5C81A7D425A1629DD5182206742D1D082A12F078
+0FD4F5F6D3129FCFFF1F4A912B0A7DEC8D33A57B5AE0328EF9D57ADDAC543273
+C01924195A181D03F5054A93B71E5065F8D92FE23794D2DAE339BA29C1C6F656
+1DEF13780383DAE38A868377CC7D396B2A05F341AEE0F8BD0A0191F51AD11A4D
+2E927B848A1EF2BA15CFBE57A51E3AF07598275195C9613041F71C1AF39E61F9
+EFD5F6512FBDA76E29DE6B508F62F5CF9F73F5288DF1C7B0B82C92D3B6358BAD
+EC3CA20BDE55DAA7CC58004AA86B6CBF8C410D8287E88BF20588A39309C2B703
+CED322F030AA6069869064486CA651DA054FF3F5E56534CA358B0829A6B954D8
+9103436E6B06DAD1658BD4A95AB41343B01F5866FC87C4EDFC71F1477C98F8E1
+1DCF27EF743FF90BF918AB8C4E5AC35841E2F745480E5EDE1C1DEAFAD8D0018D
+2C1F1CFCAD9F6609859DEDFD1648A6CD23D8ABB80747F94899F17C8F3E6CA55A
+E176F19CDFDAA0D7C920B3A72051A4745560AC81978C92459EEE5AFE85AB247A
+32981139CBE352B248F4BE5F73503A084A3E91F05328EE521D9669E44E202584
+5407E7846F9FEE3D54EA18FFB144BF2D6803BF65AE402034B3CDBB40DD24217A
+3CE0E95E2717CACD603A958187C42B3558AA38D6B6390EEEDD396F96E6041FCF
+6F8888221AFA87EAD79F46E0E32CAED91E6C8500879AB6E580C581E8C8CE9B68
+2BB5EFE2604E8DCB2432D39D75EE556969F1B2FBDF6A4BC72D106AA7CF22C268
+464027898B311613E06E1584707F262F71D9F49D2149306A88E02BC60BBD6BDB
+EF41D90F19197BA9AEF32B5E63D5B9FF41B5602F9F786E76621DA54D574981AB
+87A72081EA05D6C6BA940EFEBD0904EA4E77BBCE17E20B42E1722617E0F6EF32
+F1ACDE9D758594E9C81049CCC10605A27C2A06872FBA9F159CB155609B496ADA
+4886F478E44029B5E620DE8319E257697E93E1CDFD27D560E2E4D34507020E2C
+D9FF06BFA14E056D81DF701FAC3ACE4BE6C098AE116E079F0044391EC1661F6E
+7A93B9320BD7F91E8FD2E8EB3F5CAE997D5CDD35107A1D35302260D1499B8B65
+39625B7925F97D917B66BAFEEA992873F07220714F192839948CEA080BDB9A03
+77B9DD032273DDB5629CB28B5D8797EDEFDBC601823E038384C90C79012A7D96
+8F27784DA15BACE21501C26E3AFA5DCCE81B52B0ABAF71A35D33103EA86F2415
+A39A830D559C5C6CA7423945BD3DFA942B20A06D7A8D8671F9831DBB52907AB4
+4E54776D29C6085CD9970B6DD21DD3EA8EB09C49CBEC6CDCEEB0BBB1B8827109
+3BDE64DDA024D67F098D6C1998506DDFF7907ABAADA1C39C759C850E0C6F8E89
+A392D1C9329ACFFA92D361218D75E115F70A47C53B73B356D703E9C499AAD098
+AA9C8119EE9E9708A9EA3049E976FA19AD04210D5F6092C7903FD155113F3A3F
+269B746560F70970AC9F8D09956E0E84DACE4112C4E7C7F6B3F0B63D26EFF95E
+2B2E9699D16BC8AFC4AD9113AA3A974C9E82E877288CF71E9169D2DCC61AAAA6
+C536E5604EF0716F6487292BBB677518504B52C63822BED3BD5FD14EB41EE6A8
+AD4B6CF90D39F98E12A765B645CBA3E8552FB9A986390212CE119E7C3DD675AC
+17BD006144BEC534DA2A860188619F17589008409C5A309CB83FBA70F6446B6E
+2B56991B6A03B1DE10C621591CEE45BECA27C54BC8B4F1754A9E8F660812710E
+117850E1BB6FD89BB13F8CE391C43DA89EA67E9C3E7A4697790EA26B0E4E2E80
+DCA508873A7AFFC11B8C02EF86C2316E8D8B6BCEA37F81A3A87546705F070C3B
+9D4D28C366CEBC1EE485B8E2357DBE46E86C87B9939DADA60888AA9F1B92FECC
+CC1C198DDB594BB70A8FE690ECAC21A414BAC89BF019F34D2A130F485EAE35B7
+2A10C67EA3A48A4D9734759CC93AD85C6A570500AE5AC9973FC76EFA06BF5DDC
+26E20E28D16B50957EE01AF2653F8D860817967AA5A9BF9BF7ABCDA710E9F34F
+4F0EBCC32B3C9C2971F6225D2DAA6A451366B83F32B2ACB83E746D365B2DE38D
+C1AB7447FE7B37F9630E410E5D8F0ECE74DF46C538947B3A167AD9F3E4A7EB3D
+60F5425AE75AC3A27D39311DA35696C3DC7282AF1532E7AECE63D13DDA0296A2
+01487185FDF1875AEF55A36C17D6A8DD329279D229259463A2F05CB7A874374B
+E2320E1F6CFECB9C1CE62FF468C29751ACD9754AF1EABE8E7696C2888914416E
+235B6766F20FFBEFF285277B639A51EA2F2E30D207BC891B00F0436008F980E0
+9EEE7FB375BB069B9E0BA11DA951A99D8E60B4F920A0495C247FA7DE904765AB
+DB5C3B2D634757E43EDD6FAA4DB3C67F82D6853E1170F0B2D8CE496DD4E72B0D
+28277BEF172F1402959F64527F9B640619F04416DDB9D05FB2ACD019CB9C119E
+E544D24EA6DAC5C69785394EA50E6EC9AAA9E14B904EAF29A733C6D7942B63F4
+85729686742F26DEF78DF0DA1CA7CEFBB684F4CAD99021A3B3D1FE03B9C5A4B1
+BD04CAC89BB91B11952A2B17A61789BEE0C54B46C03FE9A1AE73D17CF94BA30A
+237C29D414C3BCE8E3E2DDF83C0BD59DCB66C4D2C3DE73DA8378F3C6C8035D28
+7464399857E57651A53E9C4AA68DFCA91B2376CF98AC5290FDB9BDAD9EF1604E
+9B0A70EDDA1E564B6D2456E7BC722454ACA8C4950FDD44B6EB9AD01169A9F845
+B06A0DDB7897C847A5B1F42258AECF3807AE936C8F52C3A7A0A85D68160AE442
+FE81543DA6702D76AB6E8701F80DFC1D87C961E350D0E52AB2A298B9E5908600
+7E14D2A87309043CBF13F69AEAAB1BC239DEA88EB5176624F6046664B1D2691F
+FBB2071D3706F97DCCA355A6DCC4D09FD35DC078FBAAF672FFDECEC61050A120
+10B5A96629041303FD01ACCC7686165DED6AA712FF8E5E85DE33C4E7D877C49C
+6C469A90410BAF60BE65ECD91CDC2EE7AC0CA8BA7B53865F26092BFCAA0BCA77
+B80DC51DAD09C93C8DD8E43502B4B68F3D5918C3492196292447732BA90F5AB4
+9F5E1D634ADE1CCAAD028DE5EBA9535F6FC5908DBD2D643E0A7E059C8C386FDC
+E72659C0033F535C0D7F6B98D0335552D0BF3C6E302B672A5EAADFCEF81912E3
+8F54E6FB7EC2B325125159713D0AC50DEE3673B9B148643727E94C80971A2E73
+5E1E13237BE69C84FC039DCE02ECE2668AFD047F21A61BB94A9F498C9FE5CDEA
+B274B40728B6F6CA9B6C15BAAF92F465B0D7311B46545CBA90D874839443CCB9
+3110F052EB247B24B45A3D2FA6FBC7EB2A4BEC2A5892914B3C5EA3F4F9B9DCBF
+6F932D95700E045B49E4B1F2C9D2A42CF39CA2F5A2654E6E8E6E92473D28AACD
+5E35C6705EA728F704F5996D286BED433F976AB7E018621A577AED7C0AC0A84E
+A032FE1869F603E6F20386E3A190A30A21EA886249ECF8CDDE2C33D73BA8647A
+3DCA7A8DD9E8EC8D9A415D126BA38B6771C489DFC419303EE9C1B83FBFB3A0B8
+97D64F30E4BCBEC24DF603FF3BF541E00D5804B6B6543D3D2B661CC551D497A9
+9DFFF535AF424B2F3150BB39AAE8CDB306AAD37767BA10BADB031DC2FAB16955
+EE78342CCC0E8B5976BF98F215461A8C6F63EBE6E2F1A1104662DDE53388CB51
+8B44F3534853B8095F3B746A2459C2EF800FB1EF7F235EBAA9731E3AB3BE4369
+1D3636E3ADD5BDF0C34FA80E90D8A1DDE770943FD196E0A7C5F1FAF6970B34C6
+4673AACA6B2B5C12B9608521AE736C1F4B97209B063D991300ED5AF3D7F27E76
+68E0B858FD8BFF86581E2B9548C691E3E5D9EC4D39C9715CDE86C7D22223CCEB
+8A38C776A30AF14912390A7546DBECECD7A687D4F08646E57A12C80DCA022B7A
+33399761A50B8E0ABEFA1163EDEC3DFB5DA3248792EEEDD894872D4E6814B4C3
+548BAFCDE0CABBCDB97EC6D1BA47F2E77CC1389BF19D73661749AC33F46A618E
+A665A85776545BF9662F2179D7BFD604FA8EF4700591AF3AEC647E27B24B76F3
+133F9198DC15C1AED830E737909E43EB91C334C44BA35810007A3888E33F5DA5
+B3B2C35481C648AFE630CC3E08F77744E401B2934E407D1EC17ECE737606B076
+F8DE8EF3344F57495EF49D11580D6FB28AE0B1422521B320843B13467501CAE2
+3DB93D7BB779F73B6AA30050DA74BDBC3F8DBB30F32EAFD07734A151BB2BAED5
+C9B1F790059339B64BB4146470F30928C9A49AE88906BD6FDB7431A4B50809CE
+0F67ABA01CDCC2320B0B097187B9299E3D80CDD7BB5DD5BFA7B28D924C5633C5
+45A23CCEE097C41C3759C1FA8DBA0DD95034BCA89BD23FAC18C70093F40FF2F8
+0FAC5DD4835F2DFD40540E9A9E9FD951A8AF2CB766597DE00147B163BACFB7E6
+EFDA4DED594F1C746D8B46A1145E0E4058F5917B3F21E9BEBDE745EE72CDCA64
+FB31EF7A2E55265F32559480E2B6726D3DE26FFC97EB4E3160F117E890C4B2E5
+8DF310E6A728ABA85540F571C024F8DD58E1D7827FE97CED5EB31547EBC36415
+02B8C0E10B7E37D816F01D56A364B8552CBFAAA95BC4BDDCFDE91CE0EF005B4B
+7AB56FFB47A093AEDF0DE1EA48FC8103CA3CA1470864D2693E360006D05668A8
+AA422CCCED20DCEEBEA5CE0DA1EFB00FB93E922B18124FA11A88D0F6E0F719DA
+57603DD5DA42E1C56C2FD9E5415AA199D4F334C151C1157E75C107FBBFCEB706
+5F4EA47A29B54ED8CAEB8DDA2F53D2A703B95487619780A52DA1270011648A28
+AA64338E04AA5B92C1EDF3D8DA34FA6D227A0325EA6F22E9B38B6338C657BB21
+CD4C582DC04010330F62923F817E4EDC6E5C0E6500F2A975A8A95BAA30C4A134
+BB31B5AC45A2E7F6E9CDFC810D41344C4F606049445F8E93D74271C1E29DF7CB
+5459593BA28AECF64D903D3E4D77CF5C04B06DE44A41EE4D9FC769854503AC85
+69E4A5106E84016DE3D59865D4AB30BD6C9E45C45DCB5408421CC50CD6179C85
+34E55CC70FBD8FEFE9F1D5160664981716E3BC7F24B6F54E0323D9BC4B692971
+24419EE62D8B0BA726E2B4294A9A76F328B8101DA29E78BD5C4AC383350FE196
+4D42DB1653637D19530124858950C22F1E9CF5BC07D46B7A58CDE19CC88DCD2E
+7FE4EEFD8AA6047E919823C8CAB2EF5274F45E861E6508CC11A8AA90AED2403A
+B2BF1315C2157B3B50A3685205D93E40906EEE9DE5985405974BCE0B84BB37DB
+080A45C5237B269B93C0A7CF294A18B45464A41F604C494CBEF829A381155CFD
+71CEEA54CC39EEDB6DF58A9896246B09F95DC6BC40BA6916AAB5ED3D24F66154
+3662F8978FC63DA9280FF7ADB09EA5BA79D3B66E0C88BEC1EDD78DA93839073A
+A4D7B0E627000C4ABA76C47CCFEE92E319315333A5584A951E34C55412049C4A
+A5569FE65A006F77B416E0530AB6A8E7AD6C72340AD4CE25937158FABB2153EA
+281E1D840206F5DA38E00815E9081F81DAB9FAA8F4DAB305867AC84735DB4F52
+A36129929BD2084A8EA37BB6889695204BF7290B68D5E722540BF8A276F8BB6D
+451D582EE59D2FF03F6B97DDE05FA00C3D375D2D0AAC8FE298F85CC067B15481
+48D70B6A0354C705715B891915FE8EA45244677B9FCE81E72D66177E309F3F83
+F744B9EA9E55C3B30DEC6E5E03B3988FD526A82A5E8E1DC79127FC62B2FA7949
+B3AD3148868DE22BD4B5708E32CEAAE6ADEED1F463EAB9692411E18F8D6BF391
+126B2700B4CF3B59D02E3F8795130C96285A63FCD1E0F647ACB1D35E9C58BD01
+1DD06BABA00CA4343BEBEDBE677E053E9732B33A7495DF51782A07DA07F5646C
+770C957AD915CC70BA8E08BE7A1F4E6BA5BB9C603E38F6FB0A2578471C4D02F4
+283069856D926B9076EC73AA39CEB0A061AFF1575C7093FDAC9F89C3DC06EA45
+06F3C2A3BC9FF21128B10CB758DF0F099B459A5264A8C24C098110D2BA1A8532
+8FAE146A91BA7D033F591AB1A94B8A6FE0FFB610F698D216D58B4EF6C87B1524
+8037CBB7E23D8550A620341C6625A1A2ECE7CEE2598D66277F857231A36155E3
+984F147783E9B93975AC38A29F2FBCF704C8A04AD84C3E04A12D2321FA56811A
+5B6744813CCC187968C5C26BB8D3E6615A912FA5369C01CCF8C0DB790593B190
+1A90CFB5339B8771F325C5FC448D36C7312B11A15A8635BAB59CF3CAD176131E
+026F6E141B2619EF7F3048750CC9291397F141591EEC8B612D6656DD34DB54D6
+DBDD303CED74BE76664E7DC86FCFEEF2001C9DBA56418FB61F589566A47AF36E
+C94671C5E8939AF9F4D53C0DE7142B7B63C86AAFA65877EBBB48C64589AFB2CB
+1280AC099FC48058855CBDEB6C2D2A0D092267996591DC3B5EC8252984E9B27D
+2E9EDE8CD8303F0905DBFCAE497DE1B755B924452CDE11CF4F20893DD6FF7251
+427F520FE00580DAF1703FD968E0F8ECCDE618E1EA5820EE6CFED97C78864EF6
+26FAFEEE194A268F24249D44829AA360D731C34DC285501E966A959180718F72
+6330E4CC060588A2F65AE64A720DCAA818D49D4440F5D0B6C1F6C3A107E12445
+F1BED2D3FCBB87A9597F01C7332AA79143564056219BF87D4B907A04F77621AD
+054935E883B2B137D3D1C4BC792E8335CA08B6D83227F35736C41312A0BB077A
+60FC6488C5E02FD51A10AC113D4EF70038C649C1677B2204A77F2ECBE9B3C341
+F4126BECBCA61E3F3801F9188A3775924A62D30FB096B440286FA655EBA00A74
+9A4162904BEA07CE68EE76018346DEEE20839C9A2FF71179B58E1D4AB30856B5
+F5D97295A097174467010B15D733AAC5813CAA633746B430B1AAF9F997FDAAFD
+436844D1A56B8E25A89D2CC4BA6EE7ABD167818FD4F6C747E07B262C99EE2C35
+323F0B471586CA50F54C6381B052B15B0C58C19DEA82C0CA29F00400B727419B
+2379979CDCBFA966AD513FA903160C571C3BF1BA239540B11EF2371A3880837C
+6D6CA2F374280CFA1586427AE975A2AEC34244874E4D441DBAC6CD1828841C91
+069AA87FAE849C5DC7C9EC1B9876E59F3CCDF8BB23D939F5348D7486934BFB02
+CC5A22541ED352616830A510DE7732E5D8F7E785BBD31C2BC9D348CE5632654D
+2C1740F89D57FB2AA1FD8FA3304EA03F757BB8F498ED98E48485722E78D97B12
+A05F3A28438084D1CF90AC4C3FFCD7B3365941C45E1E02CB13CA1E99F7FA1D00
+1C9D489D5C95F019AB4CE89FA3B6604473DBD2CE8E278969E0A0FCBCE68C23F6
+9381882443D3FC16966555FC222F3FC4B1207522201AB7A15A7A6F22CDC9D392
+360BF4C95DAD35770E0AC7E5EFF015F2C74ED7391F40EC94B8D1C163B5DEE5B3
+911A20C2625AD3B24BD94D2A42405E655DA47D3F94F882CA2F479437B4E0BE71
+8AFA4482C6FB270F8D05B4599A01403DAAA90C01DF3AA7C2BC7E66AB6AA833AD
+FB6E5EE13E45CC7CE7E200FBFE639F9CFFF5D08512C02764997FD28368969BFB
+0876F236EF6189BE73AD827332DF1B2EADEAC0ED3B939CE5BC3CEC78975FC636
+44FCBC2CCF4396AC7343EC62E0E4F3DFFA2B880BF31D93ADFE201BE9CCEC8BA5
+0B9B919E05B851E0909968DA259EECC6AA0743F25247978CC09C28C4F878E29A
+5070E4023BCE95FE0ACCCC01D0EE219FA8344E8F6D7D4347563BF8AC030B9097
+41F24D4BC9494915A82EE9FD37FBB6A46BF077B728FB569B1258CEA5F51F36BE
+4F4D0F890D782E44748CA3FE8C8A515998371D9C7D2311F192B4B7E7C68FC6EE
+3F7136714C282A2570FE591F247A08319CE9EF1E43274E4E57166E31A2ECA506
+85350DA31AA4C33C9687F5210BA225EA1007C444FBFA2126769767E47A967884
+9F68589E4BAA9ED32A7A466DE35554C132810C68ABDAE536D9D884352F28EA02
+8A555D2CE11F30598F44A65E2D86B43ECCBDEED9E4E5B5B7DCDA20EAA09D9FF7
+422FC91F2201431A9E8FC624FF44D26C0100183D77BC7E6B1A6CFBD3FA8BABC1
+AE4CB0FD382E26BE0A83169B46D91429DCB746A0326243E212F802AF6A56C709
+6E70C6C7CF3FECCB1FD2D9A72599897FA4D73C59F4F6F92DFBD30E980A4FFFD4
+BCCF3638857C25472CC6221ABFBB26602F8C5D135AB07FE01241F14D1682A113
+D876FCE18651F51480956EAD45C917536EAF056883375D5EDD537A622AEFF068
+AA9843D4DB84EE629E9FF471F29791E13AAC5C9BE03A7718A3C9D9471AFFCC9F
+DC488F544302CEA37537315B50B51D8D6F1E0BEC0CBACF6768CC965B44356F09
+3B8D5E21CBDB8B8632C2EF3A0968DB6CCABD111CF636FA9F1426140E18DD9BD4
+C5D34017A12D8C3FE14305A52FCF07E05C524137918FAD1BC6520550910C4B09
+6DD603E9F8B0FB54CF49EB5D4C9BC1AD170D4968AC5A5555EAF8475807DC3997
+5B85610B2D9A35F77E288F704637F6FCA5BAB15E6B5EB62E489645CCFEB03678
+47575BAB9DA79E0B4A74DA4FD947065224628BE90D4D8FE238068EDC9878A637
+AC12A32B2D587844F40FD2CFF0CF71F0F345F5D079DB03AC9F62F515A9F82DEF
+AD6142B8FA3B7584C4248A63E8798077B2A869929F1C42A33B0F15FDD13E2984
+747975A3B2AB758385383114916F0957D8AC7CA5E883B1C02A8391167FA1AECA
+41189AD4E2DE4D013802F2D8A52B4A9CA7588D4C5727A2A8385AD70EE0711F92
+A2D824646B0178FB7C2440DF10C79CDEBD4BA5003418FF59D34990A603D05127
+6CB5C7A58634007AB3F4AEDD8ED599245E3640A7CCFF5BDB5B5C17FCB58F7802
+A50315C6D1272BA25783A3A44341C3D18DC30B08FB085A74CD2112AB78F9F7E5
+B66C0F6ABD6B864A2678B0F880D1027A1310DF443AF1AC33BCEA9B97C217A9C6
+B17DAC9C619EECD2BE5D4872299BD56670FACC102D5C86BFA2E9912365C05261
+978C8626ABE3F84CC9DC5A9D0F8124F7D37902FE16D472EE0653FCF39D977883
+BDE383BA97294A2D910278CC1F3759DCF04AAB18384AD6F54D7919DDB7C78FF9
+90ED9B7BDD7E38813234D0FA6CAF6489FB0B941D69C94750E1DDEC285AA5B23E
+3DEE1AB7DF1D5DC0378397D85EB58F61662EFBDDAF8D93CC91D3D762D40AC8B6
+6771AFE1880350F109DC37ECC8EB78BF1B0D2FB9A5467F3B0CA8390E2BC7AAF8
+F1AFC68371E4F92D3C4B73F59C29D1A283F6D94781C9092EA41359FAA70677BD
+DE9E2C55EAA5DF6C5E0EC677B9FDDCBE6D80597DEC8240E415F460780114F938
+8B94EBFA75974941C4AC925CACE0E6591100E2E4C36FE00852E85C8F33AEA3F6
+AA9B05177F4AC309156E1000FF98A2522CA26DBDCD7129F34E451E6851B3E7ED
+D0671F7B76BCBD48A930A379C8048D4566346C8B61F55BA05790128B0848A5C2
+F5AD37766A15CBCD676C8F96464DEE6A73E98F085551162E17D108421D2DDC0D
+4325AA4DD56A9B0FF23B79CF13FFAEB921D0F46DA1372F40D5720C0B198ABE91
+23B8BA7665E9178678F67DEB7F84C14A01AEE494B826A15967C3D876F79F618E
+8BC450591BB8A052315EF34776CA7DFD89018D68D93BBD84E12E9FC05620904D
+F37391CFE6F648A7F922CCEA2D36CF37BD8DE022B4774A6F684DAE841E557485
+41E00B81FB13E16EB2FBD8B4BD8D14940CE689A3F111
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+cleartomark
+{restore}if
+%%EndFont 
+%%BeginFont: CMMI8
+%!PS-AdobeFont-1.0: CMMI8 003.002
+%%Title: CMMI8
+%Version: 003.002
+%%CreationDate: Mon Jul 13 16:17:00 2009
+%%Creator: David M. Jones
+%Copyright: Copyright (c) 1997, 2009 American Mathematical Society
+%Copyright: (<http://www.ams.org>), with Reserved Font Name CMMI8.
+% This Font Software is licensed under the SIL Open Font License, Version 1.1.
+% This license is in the accompanying file OFL.txt, and is also
+% available with a FAQ at: http://scripts.sil.org/OFL.
+%%EndComments
+FontDirectory/CMMI8 known{/CMMI8 findfont dup/UniqueID known{dup
+/UniqueID get 5087383 eq exch/FontType get 1 eq and}{pop false}ifelse
+{save true}{false}ifelse}{false}ifelse
+11 dict begin
+/FontType 1 def
+/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def
+/FontName /CMMI8 def
+/FontBBox {-24 -250 1110 750 }readonly def
+/PaintType 0 def
+/FontInfo 10 dict dup begin
+/version (003.002) readonly def
+/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050<http://www.ams.org>\051, with Reserved Font Name CMMI8.) readonly def
+/FullName (CMMI8) readonly def
+/FamilyName (Computer Modern) readonly def
+/Weight (Medium) readonly def
+/ItalicAngle -14.04 def
+/isFixedPitch false def
+/UnderlinePosition -100 def
+/UnderlineThickness 50 def
+/ascent 750 def
+end readonly def
+/Encoding 256 array
+0 1 255 {1 index exch /.notdef put} for
+dup 104 /h put
+dup 118 /v put
+readonly def
+currentdict end
+currentfile eexec
+D9D66F633B846AB284BCF8B0411B772DE5CE3C05EF98F858322DCEA45E0874C5
+45D25FE192539D9CDA4BAA46D9C431465E6ABF4E4271F89EDED7F37BE4B31FB4
+7934F62D1F46E8671F6290D6FFF601D4937BF71C22D60FB800A15796421E3AA7
+72C500501D8B10C0093F6467C553250F7C27B2C3D893772614A846374A85BC4E
+BEC0B0A89C4C161C3956ECE25274B962C854E535F418279FE26D8F83E38C5C89
+974E9A224B3CBEF90A9277AF10E0C7CAC8DC11C41DC18B814A7682E5F0248674
+11453BC81C443407AF41AF8A831A85A700CFC65E2181BCBFBA9B440A6DD72BF8
+97084C906B05FAD969086ED21AF0AA1471613182B26117D7494DD9F9270EF3ED
+8DA4D957225F75D060237B6DAAD5A0AE3E702B3D1C437835B93B8AF1F9E7D966
+E739CF3AD5E256F90286A34069E5BB4122F94F18F3485658D0D25B938522A879
+8215A417CA2CBD20F71C5C5FCDE21EEA7BB27876D93BA667868A419287FE59BC
+F538980597DBBA743DBBDBEBC61E3286DA7977833DC8BFC5E52FF5DF5EFD9A92
+D070EB769E31E760A50FDE012DC0057835E8B9B046FCC83F1A0C40326AFB4E3A
+0CC3BFA35FCC64E32854F32EB7DF10A19F95830136BBB8139DE1663B7FD790CE
+464EA431AC109FCA0E03F3E0D355FAE20AC8774D6B1CE233C27680C77DDA7356
+560A27C75993E8C980CD1E3B0683F7E8A05119B3AD567DAB4851B66E418687B7
+F9B21B3BEF607918D5973421B68E65DFD8B6C8DFDCF1CAFE2637D365148EBCE3
+FA4CC00052A2A522205EA3AE3461CEE02042E1A3F11467CB6C8C849B200CCE3D
+0BC188EC7B934CBBC0AE2BF5DEA228181DBF0F774119F313516E7D97FF532621
+9278F856C166CA6547504F34991D588A0631A5CD06363F3FEE9FA0772C783447
+ECD0A200929CB58EBFB6B72008E4082B5D14AA560C24915B9463A92F38237886
+C35CBB2D4DD6D0CA8C1D4EC46093041C6181C2F6586EE3E7D4E647A107B6DB23
+DAD9AB5A0C2905455FE58075EFF6B48597078BFCCDD84812B98986F34987CE49
+7EFB19814F2A58B0233A59331F6F8EB66401F04EE7B1ECAD9BC90A2BCEBE213D
+DDDB1F75C83609ED6A669A0CED58B2E269E76ECF73616D94F13CF827C9BF354A
+E82202988DCFE856786B8AE569AFF3105B55C72C58D310FFC0E10B2ABAC8DB06
+40D5F72E54770E9DED1AF4616008595B8481E3D9AF4191CC9A5BFD9DDD01C9F1
+FE7165D21E488DB40879E863D470CB31CA06E5B5F1F8C3CCE04B697CEB0F3557
+ECAA358D2EC2B370519CE06138FA702314BA01F1F33881825EAE1230098BB3C9
+59666983275CA4E8D9DB34979F86535577E79393A72F84B0F768FE8C92692907
+15E9FE9894E98A0EBEA490CBC8C7E5A9F3E43B24C2C5A4BCD71DAAD3CC0B8B82
+AC13933543E295C163F61C9FD18371CB514493F90BF7FB460C029B8DD2E2BF05
+FD66B451DF277864DE1EE42100BF29E01A50258C2758F3EDE211BB3457B8243C
+20BE72983FD6FA2581C5A953D94381E32E80D6D6095F2E93A5455C101BA71E8C
+E560D4694E4C167EFA25FB1E9D214AEA745CE34CAA5468FAEF8F6BDB6C6BE8F4
+3D58836C26A2392E4C4DECE284A90DDB3858A16D6135FED655A600929DE71605
+6CA32F6851A2A6F71A9DF3D5D657593BB729CBCA2F4B059365B7263DC08AB211
+9C547096E6427F6AA53CB2EB87DF0AFE2ABCDBD15D7EF228D3396413B83C6B4A
+79E41F9BA55A2688F62A10472675E5658F151F9FD6634EC94EC0682C17448024
+CC1633077C07A93E4DA8749D974FB8F4332B5DECF97D749C10DB60D4C90ACBFA
+E65AE928C88BAE19234690EEABDB30BEDCEF2660D7464D5071058C30C572A2BC
+7DEE5384BD7614A4BEC4C84E18CF7EC81C810256E8CE6520466C033E2A36D3D3
+5D6074B3857415011D8D9D49A474D994571CDBB89AF92BEA879BEBAF67663F5C
+17ACAE809C2231EDD0A76641BA52FA7B19A2798D54A4A9B62C42F9905851229F
+2CEE0191C8AA5AC12BB0CE9E5E3E862683AB57DBB4AAD6AC0FA8BA4F408D41E0
+755F72B82B7C18EC6B13995BF7AFD66AF4BA0EA7523DA8B75EE751744EBA9CA4
+4E8BC1FB37734503A5B24FB9F2C2D07A47CFC477F02413D55BD7DC180B0344E8
+50248801FA6BE26C97F397797F5F9DF762967E7CD92CCB8B2E587C92177619A4
+BF8046CBC72C6E69DC78B8CB6B7381A290080EF59F5B9F29C1167B261C932E9D
+010D2D14BB425D157F22BC0305770AECC5BC80000F8CCFB9930255A68F299ED9
+D3B5B83A2CC00E3305EB281E1A7054734661B175C6CA0AF168790985F173DF03
+A8693B677BAFE23C3CF833FF6463B136FC370E4F0C29E322DBEF637F62C33CD9
+B0A8338FD67EC628E3BF2FCBF7CF0347D5CBA1DBE6DE878DD670176B85F69EF2
+3C5CCA1BD2B8A385F113EF1CE522F5A6AE053B9C1E39408C9459DE3E7FE2C4ED
+77F026B0081BB80D40185458139C16333EA27F43EF1204BFBF80BC5301B2A3AD
+B10F7EFBB4F5B7E04DA1167F68BB6D4049440B0F57385FF0A95E72760C6A12F8
+1335BB31CB74081FBAA319180DC00113CF50CC5A41D2E751E055DA1429CD75BB
+0060C21CED634FDA106C49A12B356129D010E29F2919301AA7F80222AF3905ED
+672FF85C9897A70241E8DDB9A53034B6BB44E140D9E739848E7A782F24B98AC8
+00DA09EBE4532787E5CF3ED815705F659D8E52DC2C2D4949374A3BF192BEEB99
+1D9A90A4F3250BF8A1FD40D91F5B34AF2CC561FD02FED712500B24330D87DA9E
+4AA46B6E34BCB40B1F73A1DDE07E002B9478E9651D2BF85E67585B6ED812BE03
+A594874A235B1C1840C4BF4BA6D863583D8C12DB49EF7F8CC24DCBB6B21FBCA9
+378F3E2DC406291AB324571F76E0805DF8826090F0E8B50599CA58D124653D16
+16C782B01C91A6F3DA6346482E3163D28D95EA49866360147296838A3FD0CC53
+920F91D895F839CB61FFD2FBA296CA4C6304EEE579782AE5FD33D0FA652BA7E2
+CEC7C01DD0D3E0D56E6177EE5F609A396F7FC8EADABB465DBA7F384E215C4DCB
+E64F807A50A461545107F9C3F7D7CC7D33E6EBD6D9228B1DCBFEF160703E6129
+0DCED8D45DD54E2A36E698A616E7906A50901E453BDB2A363EB77144E9EA6F2B
+6BD927495EB0EBA5755165707CCFBF8759CE5856881117C7F3EF6D494EDDA7EF
+E499BCA56C86467AC573DA9C2724FCC74BEB331E736FB093DCB67DAD42296655
+415D110F2729BD1D55E5C9CCE2E724116F45FB2E66AE0F790258851A5C808762
+68B8A110BD326F8D3EC45004E7CC08DA42F6CB80A6B6E7C286F139534A275BCD
+2F812993DD9C9A1AEB5E7E4BDB4805DFF3A7030263AB060C9B74F0C25C5B9005
+965284884450CC2815DF28D5F9B0496DC7A3AA85E1E42741E1538797175C28D9
+FD904699C771FB066397FFDEE8E8DD1ABBDF67E6BFEF95BB700A7C1BA91354C5
+42EC3864F6E19B379E79A1CC3C786C0DA146C6B0B8E507ED58DBB1F12F613A98
+0E1F8967991427A22ED323901C4B83336CD343212131E8B59C2F5D232702ACC5
+7891BFD4EBA5D0FA35AEF9F3520CA82D121BF6885BBDAF15248A9E4649ADB94D
+0735CC4D14E1D7275427D00C8E709579612F7F74DB6FC218C10C278CC63E2AE2
+37EC996B10C0229D687F0DB5E38A8C4DAFB3DD8A9E7ED37186FEFC97790A1EA6
+636A88FA9FB4D282234BAAD301A1F3AD33F252C5EEC49410562FC52809CEC466
+A0F6D148E9AF19D6DA2337C8283FBFF6005C37AAEB0B7F7217A8DC6F949B9984
+72DEF163E4D5ECE4288404448C96A7FF0AC76F732D50AD63A1D286C9180E80E7
+C218B1F48E3034FCABA6BF262CEECC284AC29E9F3CA1CFC1639A681ED66C1FBA
+666F073D45C84A286E05FF809D4764FE819B6A330E73695CCF2F448B4D4EB4B3
+F63E94EC289807A2F9A1159CF328C002B467B19D6E9454CCE36FC19E0A214190
+B251818DD456EF658B0398E275514B72D9C1DA5F806EABCF1DD56BC025D69FC8
+A0C2FAAC1892B64D2AF79EA2F57F103CA623E440307600D50E783FAA998EBD40
+51D23A0CEFF8D8649B48B982DC38D613F882DCCAE5F51233A641B3CFD783F830
+D984F116DEA3ED8F0D3369AE629A006BAD4523F8E3C7C6B39A6C972508B67AE9
+32613F28CCFFC4BBC86CF31A0C25C786554F7A1F3DE97F5CFD1A941F775067A4
+784385E2D02EE1FF886701B1E87D966D3F500E15591A5012E645837FE2DBE3E6
+A3D375C6CA0ADBF96B33EC3FCFFFD888D7344B31D40427B8A8BED0FEC6FBE038
+1FB5F0714C4B5A0E607E215B5B7F76ACF0FEAA4C9790EB7E13C0E3933B7C63FE
+5B934EA34F4B741C3667BF1735C685CECA63507E6FB9EB06AA010311F12AC1AB
+4CE3FE8D1EA1EDB3C700BEBA516FC71D740B1CA1A60D4578003973CC3EE21DB1
+58FB1CF7E2EAEB2A4A6C742EBC3575EE6378531C6EFA6E6986E68B8E25CEEA67
+A59623FC1ED2ADDA9D72DBA627D179E47DC7F5551E07EA4D54ADB6CC8109D340
+7279F288E552EFD79C17DA3431E53EED66D16F24BF86468C2FE7EFF421560500
+12FB048D6CE2F370BE4E560F8B4AA12362ACFEBC839351C1D5100C625B14CFDC
+747B66082D4AD5474A63EA0054E9C3E6295AF6B133348487B0471395857F4B73
+4BF8337DCE2FE2E1A4EAD7E7BEDC822BDDCE42B79B308C11897C98E3ADE253CD
+09CEEEC0CB1DB66AB072E36E1E04911F40B535B0FD85982C21B8A587D65C38D2
+DBC5A07A0A26DFFF7460F10781069490AC1B611CF7312A14B4AA6005A4582C5D
+336BCC30EB47749193BE8D457A43F54204B070DF5AC2057B6437E23705C7FE8F
+7BB150560F7044BE3E48EFDDA539FEEFB0D2A7856CD4E405FCE0F5EB190D91AE
+578E2EDEB9ECA218573BB1A8EF116043A27DD17A4047BCCC7C5F3C563A910778
+45ABCA32C7347E6180ACC86F9D665FF025DD8AF514FC3724B5C3510F3C37E0AC
+5101D1667C6ED4E8F37F06CC2BDF66CB5A9FB7C52CAD26344FD1557571336A1E
+1E340EBA149B4EB99016D1A411FB874914AAB2A415CE3F5FDFBBF5AFD7959B9F
+CB127BDC68D2A2F3F07FF3D4FF32046C0371CD2E68A6471E46B08413FC3C7A80
+A107EEE57979DB387B2206D2810DB310B7232B2DAA385256C8A58964B512003F
+A0C24ED21809E2576229627278118107B9C32345C1EE8C0CFB452CA362379369
+31320DEB5371037AFAD093B61E8AC7A6DCF7D49C7F8EC32DC0ECEAFD7E892810
+039570D2956289B15E078C2545911BF535F72F7DAC619BBDEEFA855BBAA81704
+18F7D351B0936357085A32157AD8E27438A58B2397D69264E748B0B8D01B33F4
+D04DC59326A7DED39E247A1C1A1AE49382BDBDE9478A1CB48F88BDF14A268B40
+A40B9FBFC4C87FD3DF1EB2464C3C14E36CA41E09EE0A9B75FEB0769F9ECEB1BA
+EBF73B818427FACDBC33BB95B9654F31C59A766E931C698A8608F15290FCDBD3
+5C535D9036A19CB7B55BF54E96F9B2206DC71624E2E55FE632FDFDEC8757AEA3
+1D83D190ABED5E7A7AAE2F41FCEBC7C18626BF58F9E9F02FBAE0C8AA85E9DB21
+A3D8907522DCBAE4923C6A2A09FD2F08FE32215C544AB577B337D929E625E704
+E041C2381AFCFEA37F3133B6CA20093EFD457C772E428325E56C9CBCC447EF9A
+05A8C3F28017DD4FFACC51B38E4896C5044266EAB4EB7C13FE855E790DCF8A17
+B61B1D30DD866BC57397EF6297C4891451FD6A5C6AD6D7446F58F56A68650908
+224D9F4C31C6906FD29BB51DC947465B808438E6260325752808963C808A4AAD
+60422ADD62CAF315F6AE92FACEC55D5B682089AC0BC051CE1E2C06A3874736CF
+0DB5F7C8F178479E4F11665402781D80397C75456F5CDF0A4F382A19EC6AD64F
+71A9275264800E178F212269154DD8352167C57EBC0A38BE794AAD1601C8E541
+7E1AB8E969A76E1EB4092644958FEA2AD29635E70C4DFE2EB0D9B3E1644FAAD9
+B27AD5466EFAC724718962B62E7B8C32F412B69DFFEB792587D571FB5C591D95
+4CD441662CD1B07595E245FA537FA9EB5A20A97E5C9251EED22C9961B48B25ED
+85BB7524F635F9CBA3714C6D60A6BF920C45A64F4C366C1F9D22F53084997C9A
+EFE2D79FBE3347111F5093E271DB7E3770B35D253DAF93653F6A23FA145AD775
+AF11E188EA0428137D9A14542E3EDA6F7B2E5AA86C9F3D3649A85ED2F020C696
+01A339FE6D7E42BC548C8F92A4E3809C67A986C99418772403D16D0E8662595A
+1F37563671D6DA0F36CAC99DAA8FEA215DF7D45E61314915A30A22FCA86A50D5
+2FF2EF08E240F9FAC030D92BDFBE40F1972DF413E6B452024CD11792BFDAA2D7
+C82716528AD4B3D637BB43E748336DCC86A952BE96F1EA423E31340FCACDC1EB
+02EE932F58734AF3A5B2279361B63F1D824EE3BA9F4D2EC7B33A300A1CE8CA43
+24616444176DB8099D85AC68329B1F85E4B5B16F3B396FE2AE7774F3065D0203
+AA140DC128D6F935C44733EF585F89E8639A2096A225A2E5E49D447D8AF9FD44
+CF6C1BAD5C5E5262AECC5543EC8199B00B72BE32A0F110F64A1D0D5CCEF38FD1
+155D6198E9A343702F8ECF5052333272CAC2FE016681E12745CBE14E1065EFD5
+407DA3686080989F6F6D650A9F1EB3A813B070C30C0D3B4A1E9C206E2E4DFD51
+D8DCBE9AECF956640A2E79F1B4FD0EB8E0449AE1B8FFEBC43275743B4D7F6605
+0673B61EB3189E74F51F3780A91E6A5C6464C8CF7D563D9958D46F39B1A12087
+6BBD4898BA9ABA468AE1F24115891FD3CBC2195F75958E26DF8BF1B93F7B521A
+C12112237AB23A8E5A7B7D0DC4C53692B35F3CD813EB463C0BD3A6486B0476C6
+3B36DA71FE512E5745D097FD4AF5D056E434DEE2AF926B2EE79F7FC4FEFD4130
+BB4B4BE01E5C720325A4884507CB51CBA4FFB615B78A4182444F0ECBE4161A58
+E86FE1DA2E39C2BECBCF1F1D7B9B776A26078FC252128FA8108CB83F673CFD37
+CCDA493234FB93E1550EF8D2DC049ED95B00A8A57834B024B277D3DF062E748C
+B61F183F2D72AD075474F8165528CE75E4F40B38B0FAAE45751C1907F8D31619
+E88EAB02EEED415F3EE3BC5BECC6AF565D34E0BA2958FF337A2B06012DD1858E
+C53DE52C108BD5AAB76C882198C72CDCC958D68EA8FD26F76F04EC1A08B2AC3F
+A6D0E8724D2656555DBC0C8C42A3E22ACA7E1BC8E9F897D9AB692E0FB9EC32EC
+59E31CCA4516A3C3BFD5411BAC3DEDCE374D48681CE7D67DEAB93F5B5C5290AC
+FEB29C5EA2C98095692873D36C7DA24847B66F31E4CA4C7AE5C79D7CE4F0532B
+78620582E3731A2A6533A03E7155B33E7CD142FE79F72721862EDB24959B9783
+F834CB616FFCB2A23497BA6D99AE34DC459A2F7B3E4DA2B54BED118ADCD92178
+66C40F4E60F6E1327D5DBCA645A2A7C770807E6D7E47E1265C753F8793BD2D1E
+BDCD749CC24D4AF9315A93F01180A0F9A7F420DA1B87664DA5FD967131273271
+9DCC45C3D57EB9B8AF14771E8E751D88B98D2FFDC72F5011D402EC34FD010ACF
+D3B0660304725191D64FEE106253FCB3470F1A16EB7B45C1489D3534BF94F740
+C2781DAFA5E8A9E7B25A85BD7935DF3ADDE08C960E283D8FC3976FDB4085DBB4
+B6B35FB239C28C785B18BE4FC98F3A5F410F562DB5FCA04E8074E4E790F4265E
+F88117B3D0833AFAE6E8B8A71D7731BA6F14FD6F217EDA3F8CC687A494FC3914
+B84FDC37C8C335AB1E7E0BEC7FB6B7A595C50CF8F0080C8D461BCB8B579A5155
+F963B6587873FA31C3A6572740C63EFBE58A2EBB723B7517D2A243F6CB08A038
+54F4DF0F6692022B2EE8C6F6B73735ED3166BAC58D9216A06EA6FC7B63B20031
+D0F0F99D83D9030B413C2360DD2C553E34BD67851B743C3FDA676AD63C5BD759
+9131358C6BCDF05FCC048F4EBB9005899ACDD8E9EC9BB8C5A08E83485047D263
+0ED69B4D1869A38068FDA03524022A1D32FA2AE0BF728D2A654E52B6A6C90A3A
+725F86627D7C3EC5AF5AC512976D35FE42AACA3FECB401788D0BFFD9F4743BB2
+EC5B4E7891F216DCA5A69E917A171E0069A03FB214ED307DE947225049D46E0C
+4707503F09811A597A9113921AAC23AB1CAA9866F81A02BDF349FAB129F23E86
+E384C043053055938D42ACBF9F0EE86CEBEB011BD5BB7D5930759026189A89A9
+B624BC5B352DAD55CFCB8BE6CF6F215CCF778E33BBE1B009AF1164AEF12E6291
+751E80E442E02B6DFCAF461AD0D85D55418213AD799202BEE639539608AEAB5C
+E79FCA432371DECA10E944D61CE9FCDEA9C63660707C51C106DCAA26441CAE1E
+F97D8D39B4E98F17FDD23593A47A024666C12D287999B20A7037D99C8AE6A439
+EAAE5BCA24CFDCDF282662465DDB5F517F68E1E98E014A65A8965F181DC4F92D
+99A23967140584BB90B11BBF728D6F490D1D6E508D50E0B60DE153247ED8AD89
+B34C493DF0206D7F9A44FDEFCBCCCF8CF3091178BFDC44CCC4E34552234137B9
+807ABD0127FE86124F4B06D767EDA738561CB96E9A859FB6390F692CBB1ADCE4
+5EFA1DDDDFED75081C25CBA2D7AB7490541CAA841028DCD2AC018F14D15F13AD
+1E0C3141ECEC7DE632338200CB78BBBD75E2241F364C840813BE533FD657E769
+E7E1AA82CF50BAE74B5F96354BACF1C3B23A6F9789AC77853368BB1392ECF9B0
+EBC4DA2EBC70FC8C18603D1F321EB003F8D5DB8760026011BA197DE07BB55DFA
+91231B4F3A35628FF5F9BEC978CA8C18FB0A8D87ED476280DA7C3704F9934E1D
+B76C4C06FBBB5DE16E19AE576D7954C220FAEA25D03471F99F1A95658F0197AE
+433B5CAD501D88B5E87EE29E2E1B5F1A8CF11E35AF988A1B78618897EBE0448D
+BE398302B445924D8D9A4962BC428320D924CB0D4BE15813333C6C1771F00F67
+
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+cleartomark
+{restore}if
+%%EndFont 
+%%BeginFont: CMTI7
+%!PS-AdobeFont-1.0: CMTI7 003.002
+%%Title: CMTI7
+%Version: 003.002
+%%CreationDate: Mon Jul 13 16:17:00 2009
+%%Creator: David M. Jones
+%Copyright: Copyright (c) 1997, 2009 American Mathematical Society
+%Copyright: (<http://www.ams.org>), with Reserved Font Name CMTI7.
+% This Font Software is licensed under the SIL Open Font License, Version 1.1.
+% This license is in the accompanying file OFL.txt, and is also
+% available with a FAQ at: http://scripts.sil.org/OFL.
+%%EndComments
+FontDirectory/CMTI7 known{/CMTI7 findfont dup/UniqueID known{dup
+/UniqueID get 5000825 eq exch/FontType get 1 eq and}{pop false}ifelse
+{save true}{false}ifelse}{false}ifelse
+11 dict begin
+/FontType 1 def
+/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def
+/FontName /CMTI7 def
+/FontBBox {-27 -250 1268 750 }readonly def
+/PaintType 0 def
+/FontInfo 9 dict dup begin
+/version (003.002) readonly def
+/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050<http://www.ams.org>\051, with Reserved Font Name CMTI7.) readonly def
+/FullName (CMTI7) readonly def
+/FamilyName (Computer Modern) readonly def
+/Weight (Medium) readonly def
+/ItalicAngle -14.04 def
+/isFixedPitch false def
+/UnderlinePosition -100 def
+/UnderlineThickness 50 def
+end readonly def
+/Encoding 256 array
+0 1 255 {1 index exch /.notdef put} for
+dup 44 /comma put
+dup 70 /F put
+dup 76 /L put
+dup 83 /S put
+dup 97 /a put
+dup 98 /b put
+dup 99 /c put
+dup 100 /d put
+dup 101 /e put
+dup 102 /f put
+dup 103 /g put
+dup 104 /h put
+dup 105 /i put
+dup 108 /l put
+dup 109 /m put
+dup 110 /n put
+dup 111 /o put
+dup 112 /p put
+dup 114 /r put
+dup 115 /s put
+dup 116 /t put
+dup 117 /u put
+dup 118 /v put
+dup 119 /w put
+readonly def
+currentdict end
+currentfile eexec
+D9D66F633B846AB284BCF8B0411B772DE5CE32340DC6F28AF40857E4451976E7
+5182433CF9F333A38BD841C0D4E68BF9E012EB32A8FFB76B5816306B5EDF7C99
+8B3A16D9B4BC056662E32C7CD0123DFAEB734C7532E64BBFBF5A60336E646716
+EFB852C877F440D329172C71F1E5D59CE9473C26B8AEF7AD68EF0727B6EC2E0C
+02CE8D8B07183838330C0284BD419CBDAE42B141D3D4BE492473F240CEED931D
+46E9F999C5CB3235E2C6DAAA2C0169E1991BEAEA0D704BF49CEA3E98E8C2361A
+4B60D020D325E4C2450F3BCF59223103D20DB6943DE1B57C525641D2B175DB6E
+FE5425043CA62CE886B802B23F41D33FF06CB9EAB7DCFEE2AB63C1333D9B042F
+B0A32D7634E2BC65BD7B7C53695C585079EBE138B40ED4BC7D06B30C88B5E0C8
+E93FF20138D513B24866986C4A633304FC4945EA8A6C6BFFBA1FDCC8F7474BA3
+D997548C23060E15A15687E9B58A8D2E2D749776BA364A2E28FB03DA767645CF
+34BC9E787E5D3A5B05F67D169D710592108F4647A0004F71159950253FCF9A25
+028DBDB4FCDB2AB5F17E49A5DEE3C366C693E0784A4D036F92FC97F1C0A0C08D
+E3FD9FB57AA80ADCBF047193DC787C35FB3237AB63613A9244727FB93754EDFC
+323A8B936100717C26AFD2A4EC3F66C438FECC2D6EC4C2728ED313AFE51896DE
+9BB5E98049A4940FE2EC90074C0EF991AD2073AE06B7AA62C2D6A1E74E72D3D3
+739BF7461E7AD856263A57673F6C7E33C07E330A9486B20BC9FE4D2908DBAE9C
+1078C36AD01B070C267BE3A1C8D1212DEC9CB71683F464783AA3503DD646FFF8
+C0D859A4356E4995246790E5A2FFE5D46CDCE889E32516264498AE92D769897C
+A8E5FCA9C15392A3AC0BEE3573EE14EABE243E07F10E33BCFB4CDFC7AEFEAB6C
+F62C21EE29CFAA994A575D56C692C6E040FABBFBC5C0C79A23174E728658C967
+A64D87103716B3D29D724DAFFFD2DB429F9C60EA4CE589C3B5FDFC57297CE277
+80E9A72FFED79394E57C4CE22C5CD55433B3BB329F78F35B25BB3F635DD11897
+75C1BE2A808F26E0840D95A04FE7FE0A85B2513745D1FCA46A54BC1EABF596B4
+F0344BE1A8297EC0E7932E1C82051868BF9A463ABFE0C63ED8F0760A44DEB196
+4643D15E499017B5BCC3D28C576A2E0523BC3C282FC3D078B4F944B22506D29D
+8EADCD89A7E73BBA812C34E4D2728C387AFFD3BC4776236A1DD646ACF4ABD7FF
+6A09AFC5EEDFC35F3E9A3C0BE49425D85B0E1A935DD5C076062888DA3B4DBD7C
+72BD35B29BBF1042EC8A64E64AC472D3E446FFC36FE86ED8B95B65E6756EBF02
+FFB1FA08D7CDD1A5104AFDDBAB721951E5BB5D091BE3F827DE1D2667ABFF201F
+AFEFEC030C90440D358259A25A2BC111BB56B3E53E5BE0AC8E366CF112C289A5
+48442A1E48C0115DF1119349ACB1FE6983D805071DC20D576D9267AACA497EFE
+CEF2593A4AC5AF2167627B00C5EA97D125EB8A47E58CD9B213D74F2D37F8E474
+D9E3EFE626E138F6B09EC1B90E207C2DE0539CF5AAB4A5CDC331B295D8202562
+8482DA317D4BA1404A291D299E0A0F6024696EA9225E4C7B15839F733EC4BFFD
+E85B7CE1F0883A5A0B4544E534015E25DF3BF5305682C20B1625C3C6A5700087
+72969CBE2D79712C8EBB9F9776DA3D6A7A35C79C6508F8962B1E34007F4F9EB3
+E4BBED40B4C76C56974838F6296ACFE974A249F80FFD668AA8159841E46DE0D2
+6A5BA7E19B006D7DECFE918E0B792F4D0C04FA774F6B399E165F7687B4962646
+2595E5B24DAAA8BB1BF33B972776A258F3D039FFA6CAC49B3274F193070D95EF
+B96B07A2C5A413FE43C59F6D8F843795472ABE1F73107C0F5A5B9274CFF2346E
+7627355D5E7B3B3451C89DF5572F4E9BDCAF526425B34D71875B515E62DA8609
+B45B1BEA5002053BC1F0896E9FBFC00A83FC660BBC5258426108155DA6C00024
+AAF2DA69949B5DB8D9EA06A599F2B277E45DB331C6BC2F40660A33BB33FA468C
+9F8C6B65CB2E273BE3E076B0C57680E227163C6183C06A4308A0285526E98445
+8763C550EE9422B987AF5EA62E89630C007C63E4BB5FFF01BC59793A20DDD35C
+BFB5C79B5416EF06B967B572F3C58ECB0A3798C438778F42DCE24943ED290743
+6CD8F32177192AD8EF12373CA6E493DA0F045C1CFDDCD49F6E4C067324CA0A3B
+389CFF8E2C408D8A4083427D4DD8CE33ACB202800A75E581404334E3A910EE37
+9B6DBD1D296C8C164B7B9E1B744A09AAB39963E396F5EAF36D7A02FAC04A666F
+6184E9CD0BC31B6C3ECD327960336FB1F9F9EB3B63284E0BEFF29DF468916260
+15E6DC9206DDD65F43D75762520C3D6D221FBCBC530EA8ACD715995411F785DD
+212848B1DAF379667F67763E6E4AEDE090130D1632153135992A292A12541702
+3CCECE5CC690C755E8D6F4FEB9D0C1F5C7BE9E5388520CFB9F705F227E131FD2
+ECF6FAEAF05ADC9D7343FCB8CDA6CACF0A89DA6E2F0F58DD74ACD2A670F3AAAC
+51C82B11ACF98BBCD1D1DC49E6A8B9815116137E9DE4E3975D3363779165F11A
+4EE8B49058750A45DF8D3548CB628EF51A05B36FE8317A864CC5126C073A056F
+A1F3DFC27F4A5516782E58C26CDBB2C24693F66FA7BDE6430184675C5BDE38B8
+FB08777618A8057F0B8102B14A9122214037FB150322003A0B4EC789F94863C4
+7DB0F028D37EBE23863834060E0E7A557B97E9C83B3D1765C08A86A5BC59EAF9
+356A0B1A4652044F5757B3CAF077A53D09FAC644D69B3C8FF220E23AC9461FAF
+3EDCE217FC3222278BFBFAE76E8A3BE95920C58711CE421E21B3208438871E76
+468EABB998E3B8C5A914F2E6D8F3A8390A3F3802843FF261BD4629F369E1E5ED
+9A94C4B2724D31091117DBF20F6857873BFCCFEC228FDF1F42DE699A5B3F6633
+00EFE62983F273CF97E171823BD3A4B2275D0D7B4980357B1CA613F8383C90FC
+080A28C3CA09B30FB156C508C88DA67EA995A4805C0F56A0169CE2F4F165BC67
+75D9256A9A182D17804CC75DC09E4195DADA5AB7410132B32AC9FFBD8E91F0EC
+5E16F90B4845926B31240ED66CF7E7B30B09A2F0A8B5321E1D41A85C5BC9592B
+81E62AB9E1C7689F5F3DD004B32D2F2DFCFF536FA73B708EEB1EC50431F01831
+497CF6907E3E0AE42240C1F95CF761BD7C6D063805D473C94371C07CA1065F38
+B6B75779F8B4B08993CD240F4ECA804E083034BA706FC89997A900A368D1F65C
+E4D4035CA5F16EE160DA90FE84F81DFDD7B89928BBA041CE048841E96F90934B
+877CC64D608B2AEC9BEE8B80A0E5181EB32F93463F93E7A2EA94AE70A60CFB8E
+94FB7B11A47D9F8CD338296F9B8993BCE0B89AECB520FCE80452B8C5668A7BE1
+65484C4F33340EAE118D1DD35772DCA7EE26E9D3097832357431FA2EC7AB1FC9
+50E5C8CF1AC6CE26AC96066F5E1141461BC4E9B5D9E8238D6344C201FE1AB5A9
+EA45B0714D1BE5DC27C06046BA9A3715129D41065DA246AA3CA2B2C81B1AD030
+1218981023F8F5C0C500FCA63C4F745CEC91A8DA9B80BDB28DFC525950F82EC2
+E7867CA9E096DA38FF5CE0DE0DDF7033F4CD1EBE11273B1373B76168930EBBFD
+0A80E139FA67DAD2DE2F3F5A8233BBEB24354254171B18D4195F613047E63686
+90FE10D47434A7DD0C619F2514DC5A46A4075E7B8BA6677E38956368F84158A0
+CB37CF43C2E48A3856C0BA0F69BCD63F6782D8475D955566104C34C0453E01F0
+9AA0091C9BEB71FCF385D90027C0E69AD0EB7C91B61B2976E31BF9D9AAE65588
+498881E5F9AD116E6D4DEAE2182FB848DCED82868355E08D395E1AD26EDB5C24
+9B92294E3DF2D11314DA237CDF52A5689AA1FA4E49C4A82381E5C8638B9186CB
+633333610FF4112D7D02C3CA9AA6B44F5CAC4582EA66542B552A88598A759F3B
+E3DBC0443A40B25DEFC7DC0114E5465FEBC3543E82494CA44FF09613103941F4
+6BA67CE6FFA9BE0FE7A71A1BC60ED190BED3C0B3E7A7702520631D0A730231E5
+F3B53095017F80525DC287F0A8400E1630A3D92F076A13E5E3D947F9F0277FCB
+890123AF04932938C6938D7533D2429E580566681049AFD0AC057B59708BADF0
+8FC7E5DF40CBD80F49503331A81A5C56375F5BFB4C4BCA6FC94B7C6FAFAEF6DA
+93C704F907BF8558173DAAA78588CD8C7D1B13F838AE94C4E5152C29CBC171C5
+B8B3146FB0CE369F0B0CEAE5EC657E60E74321BAA347D2307CC55DCFE06E47BF
+FFDB7A813FC6D30C0FCE5BD3E77393CFC51B38EF275C84C866E69CA9C74C9AB4
+A6A6DC7D12DB626552D87856DDD69AD28AECDC9756A00A0D32257A43D6E9CDAB
+C8127E06C4FB513129926FF0395F0CC1C2D808C97635D33BA2F8C833F2F84F66
+3B05BDE41F950EEDEE73DF90F644ECD7A72CB2CFEC1FCF17A867E0B0C0F5A7AA
+59AF4501570A50EB302F85E542BD29ABA6D74332400F4C8365C3C9E988752F99
+B839B7A0F630C740BE32D1486981D8000FF636C90F694FE379FC0709EE7CC746
+F883810903E238C932073A90AC78E8F7DF9583C1152C559A6CCD3E5C7C0BCAB9
+73AF3DFA8615A7F299FCF7CE7206D5F4B9040D387CD3C52DBD08E0E9A80C9616
+5EA0EB493768C53E93FCE41BCCE064A047BE8C050266583ABAFED74E2B968BF8
+6CE1507105B9503D6FC29CE61BF07ED568B0F1497796B6CF781E7262762C1675
+F25E86F56CBD7E68B03350481DEFD02438DCFBB7EE50FF276387740E79E5CFB2
+CD7A6FA367377707DF63029ECDEC47A4EAD2C87CF75E4A9112444FB2B5BE55B6
+C25515FF648509AD54D739CDF040FCC34B6A88788E0372528E9B112FDB8C7843
+5D557151B6FCEE99F53BD5FFF13026B95ECBAC75A0EF4F856D2F150817B0CC7E
+20AB39ACEDC30E1B777C6F06D3B893DAC73FAEEDD93EFE3346C6255DEE89E26D
+E279834A7C2FF9FC63E5BB9AF74295CC5F8C6CEE33046B00DAB455A40FD74A3F
+B7D9B4251448507F2463443E9141E68D6C244EE00D1E009E7F739AA650C7A651
+4901CBF31A83D7A188F7980E74F75BE0EBBDAF01F106293F5E56FE9A440E5CF5
+89C2C6FD9026198136C5F0B51DC53C878577C932E2B2B549B3FEA7B8D12CAC8F
+B975965E6805C79A02A08779D78D582548412620F69F70908E351852CBE389B8
+A2084B98B072902E74E59ABE2E32531475866B3C5E515DD140B3BD06F77FE41F
+8D7ABAD142B5DD71CE0FB171D93C72C1C113397D5C6BCA124297997581284FDF
+3655C15DEF9EBEFB6EBA58153BAB51631CF70FF79180B28411419303B349E7B5
+CFB24E53E6383A11041562E4F938100EA504B10FE0B58D0036273D44AEA380C8
+D14901EACF5B826685E27B15D9C81F0C6E4581DFA876650C6F708A65937DBC9E
+D53DA2057F6796D4CF06F7ACDAA3858386DB21B6E14CE1A4351C9B190BE38A5D
+2A59CABDAA767FCE533243C6129DBC22634E979EDADD3B8E9B6C9407ADED11CB
+E7DE1E57DA279A804612FF97E38F78A88B9A65186D33DE5043F2681518036CB6
+05F77954E61B7231819803D8DB4FF8DB67F56A47893D2A65549AA44BB38739F9
+C34A17A00ED72D004C627212B84D5B521CE8160C0F4D6836F02F7FBDA4F7B159
+94A7A9719AFF6F28060D6798C25325F9B383F7BEFB70397BF0720C9D4DEE43CE
+5A278D83310ACE58573A5C3A8B5CBBF50727556FED673F0E6D3D362B9A406127
+A35F11282B39178A7157A0AD5E3F6B324D8C83805C6F12659EC333C89B849631
+4CBAECBD29AAB3075239D0D3840D49EE57C23AE53DEEFA123810371BA2F44EBF
+C8DC4BD214933E60B17971AFA46F64389621AE2037946772D7357164850C7EEF
+9454DC7000DBA7F66EBF61BC00C46ACFE18C346C984477181FD298E5A2EA60C8
+BDCAED5006C6DAE30796D7FE32FFB67EA010C68701A0310C07F97F04B928AA48
+7964C458ECC4EC69A47DE4035AA97F97DD83E0BB9013833154D013E84204D9B7
+FCFD0804760635839FB6CAD93935654EE8C9B7AC136DEE00EDD88D693A50FE11
+2FE74E9B91DF1B2B4CD1E0E4AB2533A56CC0AD18305753A244620CD879ECB18D
+473DABE960D6ACDFC3FC0ACB06A42DCCA04D73E18CD6E53123869411140CC9BB
+06F7B54717E6437979E88248F7364602F4117968131676F4B8B05AE44FB24B2A
+517FD4A7E3FAC0848F01788425C9497445B09F50FAA7DD10718F74DD7EAE0435
+83AA8BB6BB68247DF6862EA85923F1FB13EB660D9F361989AE7D2F6E4C720D80
+7B3D28C17D150ED27A89B5DD2C53DB1C1FCFC9DDE0AAF18FEF819FCF7EB75616
+610CA0101EBDFE9FBF4A9A2A0687071331B07DB41E666F7186E5AA42BBA3D76D
+9E2C0A1172F00DA496C9145ECB1CC5C900593C5BBFDB66C73B65A69B8E9887CB
+7E8E4D4137123E9E22D1F08CB3B7CBDBE40A36D4C51FDEAB241B7C00BD0D2B7B
+D493700B99FD83DAEBBA8E35A1B01105FEED52E133271E1F9FF215DA20CEAF59
+FFB2D74563ED4317B3C56E3F58F367FA2D285916CA08CE517EDD722E8B06CDA5
+F59F90BB13E2579B133C2D645F5DF5EEAE8A18D6115DB17DBADE038B8DEC5D71
+B71F9203ADBDAC8CDE2A75ED88219E4D32847F1D5B1C0B74D6E03B74CF27DBC2
+B4A0A1828F238B498664555F6DCB51A05ACB5F4669BFFF59D90ED267113C3CE4
+BB7AA57C660229728175C2E11D451C4F132572CA8895D3963528AB7F4B65E4B7
+F359DFC14A05E2211538FB21B4D0DC4AAB98F06AED736CCA3662CCBA0D937B3E
+DEC8B155790F5A37CEC51BF0A85A309871028A67C2C3C451FED7FA0D45FE2437
+B1C1550DBE4A512AFEA4679A30FA62B0BD33925AB97798CCC88AF9F5066ED9A0
+818B1FD2A2954709907475074CAAC88363706F7C4AF74800974BFA1F0A080B34
+8438DCD198325C68E88D3579FD298ED4F6C747E0335D2A4218BF03D95E6ECBC2
+80A094FB09A5FB86923D79197F001EB06D4640CEEC20FD2340926619393DE5CA
+EEDB2FEBE0818CE00B01ECB5834DB9395671C985FADC459805E29A7E640049C7
+E70F06036015E4C4D1F6EF105AA6D1414F6DDF186D2B751F3DAB51F03819A8BC
+1BF747716A4B3150E2FD10C1FF5009739F7FDF01980167219D33534D77945B09
+1A12A93E748613E9998276569D1D97134980ABADCE4511795EA176B1F5358235
+909E52F8512E6BDFB95AE41ABE56D672FA606B69D8361438805548ADFBB35F1E
+CCF286DD2C100E646AB14FD73A283903D0DDD8CD8DC214A665B117C9D263C716
+DA3460FC43621B9176D2E7E4920C4A068D6C13DBD4BCC1D4E7F790A8F9FFD349
+EB48FFDB1B70376756E41C75EB4956CC901C6901BDC7F3F4AE48660E59B7B3F9
+818F4D87D4D9DAAF84B4D947F0DA57CCDF44D2C03FC9BDC48B2D2311B140DA11
+3485996DEC121F96567B91F2FD7AA9B39DE9504C23A6BD69A07E00C52A5A8B80
+A42C8D10E764C3F9ACF723D221D29CF701E8CB168B50699BC434EB3793C19457
+78EBBD462218F249BC2CB3B97315EDF9A1209C817EE4BFAFEDFDA894B8808B26
+CA587CB7739FB7A91B9FFF302E727AD2EFE0BA46EF95A1F21A9C32B2B4F4FAA2
+1F7036CCAA6ACAF7440FCD1E571DA4AED838F9EF1007EF7B8248981B8B15165F
+733A0B6FB8D697B5758FF0E632246938A19BA25F3D5594C7EEE79D45A48972A6
+8F66701041F42F42563CF2C57E9E9C173C365EBB414895045085951648719AC4
+CFD520A335DE30DE06E7D13107EDEA3C4BEA82335E6063F2C47953AB23288ACA
+F9A9010EBB8BC97EF4B1A21FC6670A8DCBF67943B672F7782D3EF1BC773C95E1
+3523B5197F0E8920EDA0A2A4A857DF028AC0399DF5BB1E95642D39F8FF740370
+3C8E4E80F6E4A00CC55A13A6C722A77268F33FA16B94230CDF2109F52AC97282
+65ABE9C3BD2AA33CAFB4A4D61E38C422B2D40594991D943CE33A001A3144CAA1
+C4F19CBB5816A386B974E6EE262FAF03D89E764E46770A5E0555FA377DFA6880
+F5561CF5C10F8B6903DE178403A99C3B384FAA94F2C41CF57CC08E9DE58EB1EE
+977C88AE260A1A8FFFC3C6838AC1204F34A6A16569177D6B1C7CE73513EB6E72
+F1C7FCFA2AC432ED575511FDBE6AFB2CD1B7B1450CF9149C462D21871C2B71EA
+BAC5FA16E2FC2C82A5A8D5FE0BB2929C94EC4E0AB0128AB0E039B398A8725A85
+6FD9955EFF184CDF0D4AC4BA0F149F94780A7AF45966CE61C3C6ED17DDB168B8
+19D94661A4B9F006F5A760CA9C1E90707C6BEDB17D8085B34A1C93BAF583784C
+9025373205FAD4DC2F375E4FE3966718C3D0F2E9E4C29E7DB59AF202E7FD8EDE
+4CB4C8D5BB135922C8E7AB8F01601F79B2D6FD7DBDF3E2B37C6204E3D0E1FD3B
+82CE6284842FB976F64C98C19C8635B0769DBBC790B1E0B6FEEE1E3DF06973DB
+C08C1F72289D2F0A54A5A324FF8985B9D8C79AA99EFB7EAFCDFDAC149C3B8C46
+5362CA8E91B3C759943797C24CC83176CE2A8A97423A8BD29076BAEC3567CD7E
+AFDFADA9448F18A849D36116364F6521EB538AE28E6235227D5C3994B89E4721
+F5E6D8E78641CA4885EC4E8528B65F700014A3928640F97B6E66D0A2557B6A75
+D56EFA3BE861CC3E59BEF6214465171F3AF199BD0D0607E288476F8874C3D0D6
+FE8A7BBCDD4A16D28A01220C3342EEB5B0EDBFB492B0FA293548259A71BE986D
+C684DC85CA1FE50DC5FDEC8808060D53DB3233DF0ACB6545CF5DBDB4522F78E4
+959E4F46DE9143DE8DD9E484A4B58BA42EF184E62320BF52DA962F9F96D45D53
+8AFC9313865395952A5BE05CFD2E64CCB7910CE96D98F0401D2545E91A714011
+D4C65481568095223DD17BFF0E2A57BE9E9ABB27BC3ED3DE8BB2F0EB912E8982
+C30643888301E7CB1B58931A9B48A285A4BEC3524A9974D6BE189566C71F41B7
+DEE0CBCF56B94BF2CD3EDFBAF79771B4E47D07EA87D17B7C29511257F0F75617
+B4E9A1CC9903F77FC2001FAE85A41C4215921DCC7DC1B64C805443BE3FFFE10C
+FB8A4B6F1C139A5F06001C7E18C9E5760DB4204396F64C93EBC26226D2C5314B
+220E41CE7FF9D1EDFBC63A3D2218AAE5C298367762268EA62AB6E070CA3D4BC4
+C387C0384C0EA5631F2115665ADAB01B8A10B189A2E004EC219E5167325FC3DB
+07071BFDD132A722E8C751A92FEFA44C8B4A38DB969CF3A6D73163AE3827BE44
+B5547194E7E742003F399A3A0685D5FC0AF280F61F2C74DD2AE9F0DA14F72DBF
+839696BF65DBEEA92DB84EC2BD4A5373E902D9BEE2D0E2B0E4B6438D14E4381F
+A384E486F99D472B999F114D0907B1303F32C58628460071D2EDA0B1C22FA10C
+D75CE6121B70EF238C02844A25EE2506414C2A560C9BE1B289BB6791EB733B71
+421FDF8F047598F5B8C20C41993678D75A8FF23D6730E8F7893F60477424481C
+B073F97D6B86397F1A5A34C2BAB339C344B10CC99C555DECFC9E54573DE574D9
+4CFF68CFE61F02DCDEA27799833DB4CDA70175A79F1553B0306DA28CD88263FA
+5D068D414B265C5D6D6A9F072EC0B1D3388AC4734A64C9D645AC5A268C22F588
+F01B8B586C50269D1F14662E32118402E335266088C021835E9433259E3BE9E1
+EE2381121F704821AD58D0FFCA0C440B7D7640BF60D180AE2A7514B8F681533D
+5AFDC50961BB22A42CEF287C090E607EEF88C164262C42BF59A803ADAC9059AB
+EE59E1A2BF60F5DB2DCA7962DE2DCE2EABCF22EB1B352BB1916886DBC5F8587F
+F35F9DA3134C9B6BB2C3015D861753600E35A4972A21ABBE32DCDDF4CEC68BE4
+095C9876F17FD2ACDCB7D06127CDE6E15456FEA4D06862C63FDF9D82A7C4B3B0
+A8D7876B9D277D19A7F7B6DEFFD2BDB332BA7AF15EB64CEB36807BFACD0CE4AC
+C11931C79E284CEFD51F4C854D99717E5848573090A6EC3C1801968260D6359F
+B43B2165AC565753B609500E6AA7ED9D6362E7102C6432CC257470F4478E6D1E
+87BEC5095F3DC77EF728DA9040281C33DC25E1A30DEB6D4A863D811387950906
+63659E94661ACF6BC62250249502EB7CBD42FF4D89B53D139835B4BE7FEEC789
+405E2E8DB8AB6B30F43217012DDC857DAE74C19133AB57C8BD266F62CE0CE327
+028FF800F58AC877194C094E3594DD32CC67119D4730935C9643467E5528D7AC
+CA4BC8C0761088CA0358A926BD8ACE9649295CDC13F0C303713FB5514E2AF3EB
+CD03AA8C94DC87BB9331797889A6001118E544E8C9ED366CEBB095359DA06F48
+C3FDF479E0967D10952D66FCFC044C873C29625BE7388595671E7087A001546B
+75FF2BBC1007FF0AD68CF138213C323814F44D491515983C11F0C889890A2BAD
+C5F6F1D9FDCA4D43C1A83EA3D860557E17C9E7D83DC3D954D34F9E36248DFE20
+160B09E92B180516F5AD6684CE04E5023C89298BB85AF78E26CA8EE28B910091
+F78F703F0ECDA93E316B319D0F9C0751BE4AE67E5CB086BF1993576942D44BFA
+0717FAD45F8EE235E2C5E273C598146C3BCEF766E8398A597E560C16D5454F4B
+80907212EB05D63A559F0C4748C56DAC8C02E51F523B10227872048FB95C90CA
+5F7B7158AC0C7CDE269A6EBFD100EDB4ECA15AE3E80C78DB7A3017E3195B13E7
+804871BE399EB080295A85A353B869CDA0B7B7088B979D16F61E158E799D5061
+0BA4A3679B0AA26D6F86A2878B2E9AEDD3E67164014CCD8E0003E4D8C85622E6
+2F79E81E11A24F21E329A74FFC61668E611A81EC57E60F25398D93A96959CBF2
+B07E0DA6666F7B46A3F5653B53572A026DA739104E30F65647DB0D7C9E6D0EAB
+839A6B28ED0AE9B95D452DEAAD26C9C9DA3B31B2213C398C4F061DF5EEB1E9E7
+C3F9E00B493A693D149C5DFDBD4BA080C8FE7936460E1FD9CF53798CF1AE3E05
+C78CD1061D7C4FEB11278622DD023D8E5C05E1EA5472763418A5412AE4929047
+BF43A7FF86E08A255705A916CE0E986039CCB9F751B9232320621BB4CC41573A
+1164016DD6C83A647F315B895877A948717896300FA3C49D0D014762F84D0F9C
+42FD21111DDB9A760DBFCCD5613ED1AE782B90EA74922650D6A6B834304370E9
+7BD3183325613AC3F6EAE6186CBAA01D23212556673BEDD027AAB5D72F17E7F7
+E8654669090256A8E3709CCB3182D0984A66E3208CE1E0230926DCDF68E837EF
+909115B850CE52EE98AF204C7E2AEE5D6BBC69B59704F5D42C205D6DE4ED3B81
+5AE4228D23927B27C5ACC80B0331684D251E294BEBF15B42D672529A28AA30C3
+FDCCAFA50C99C854057A64E2ACB945130C6BDC14FBCED321834ACC049C44769C
+E1DBB2A3D6D12580D567687E249AAEA999C119B7F26F3A1FB958AA85F93F470D
+7CF59EDC898890BECFE187EB718FE926DA3DCC39A89A6247F6776FC1EF2285B3
+1678F8E1D1B278AB18F58F671A6AB5FBFBDC234A4405656461C02EEB746227DC
+6EAB29F04C72AE1A995137F69CBE9CF91B65E479804F7A413C12DBB20DDDAC1E
+C87D8CEF2F67A2733072A591CF26850DA8F8F51659BD2112211B488395A82B1E
+D1CBEBB7D672ED43E23B3877C28809828BDCE6CB235135E85240F26FAD84F58C
+747E2D995AD419110ADE37334DA16A7F998958F639A68B6C12CAC2CCE47BFF6E
+283488C2FEEEADF02140D1D52CFD0BE15577A77643EEB5EFC3BDD1DE2DCEE6ED
+DC492919ED3C337598BB530507D04A25AA0A4AD438AE9E074340F39D71B3DD70
+DAE82DC1E9257070F1574F75F87C69E1169C1571B7E4EFDAB129D252B8E7427E
+A2FB5A660DA06184A0E7BBF220A49F941F6DCBB95E69954779015B7A627E5F3B
+67931AB1281078633603A8D86E11E487296B24DA58FBB97B1C1BB1A4AC42C2DE
+EE098817A62200CBA35693EC38271E0290E772F46A12322AB3C2C369475B5FCC
+99A48569A4D53F40680172CE5D8D2F272D20BA1E42A76FC8058D6973FE3F00CC
+5C51AF070350766E29A79AD6AC46E88E67D603AA38F03E8B518E0EE97E190232
+585F78C6BFDF7C2727E3207CB49243E6FB0C584D947C689BC8BC31E7C1A822D2
+974BEAF9DD5AA91C1BFE81D6BAE6C3DB0CA94E944C0E173FEBA8C05DF0CABE65
+1DD0E4BA0E0E38953F74316D441351932ABB43FD521C0D7CEF3A775FA4BB602B
+C801A8B9875FC442DCB3D7121C4FAD9EC275B609291497E771AA9DAAF5368621
+FEDE2248B5E993C72F0B45A08CE27C557BB446465F4C88C509B1F9B25FC05D08
+A372C5018D7A48BE9FAAF616690D68FC7947558B0770AE03EF0F78647085EAC0
+1FA7F87E6028A8BD482CF71C59AA611B54611ED6AD91C0DB5A824A4C2BFAC49F
+3180FDE73DE9AD13D8D86D82C04FFC332768D0C60001521281A812AA1014CEEB
+376925AF1132AE3D59F894F19128329BF80CA775CD80AAB08B6C81164604CF42
+E855CEBA89BC54D95D29C12FE0F0FDC6591843D8CD4D6C65D64E1B0BB686C6D2
+9DFB17E9ECAC39E631888525570127DA289417F073F14A3C9BD3C9C3E4E24BC9
+4ACC185046330FD76B25394502694E5BCB2C77FC8EE7DB648B83B9430F7F6190
+C45FFF098EAD9DD6B174A887FD98C4163AD70358A0AFF3F9A61F8F1F525CFB46
+CBA845FDFED5A2126788BD491458745438C8FCA58A7458994FAAD89BC1A6EF71
+2347D5508534D4EFAE7E7C70378022BB25FBA723F2AFB85B4A4B2EECAA923146
+5566874475C1C6BA95B329C0EBE04B3FFA004DFC2E7F8998EA92A21F3E1F8AA5
+065011DCD34D54B60C31ED6B307E9CF054DD64F08A013F0A9BC2059204F5FEB9
+8D733DD9A957608F520CE15611EF52BF4315921BA9A18D24CD990C30ABA6F2A5
+5FB4608F36EE9C14B2D321F532ADBF4449145A51E7AD9B822B3E7F308DABDBE9
+C9EC1938E4A6E220E6D1D6F4C2B52259B4A549366B05519D1BA625208BAFA621
+6400CCFA4B38208BFF0A1B20E45A0613DF067E2E97451FE68D0F3593321C4E49
+F9BFE74D78E44B7B90FDF841975C69480639ED65777C7C78EF08342DFE8D74D4
+D7B75A5DCB696486F722164197DBCC72F3DE5672EFA8A5E16D8661E01643BAC4
+743424FB0E9D91CDF92CD54B76D86C83882ED85F0723A91F605B350B2353B128
+EB73CCF74A15CD213F8304BE172AD00AA49A53B962C920D94536802C64340FA0
+81C52947FAE0206E337B7FA60F06CEAE4D5895FE774E847D070053CC5D6EAD40
+038789C00E13594AD80ED101E3346FC2AC3937EEFC9FA84EE91805755D52E21B
+71BD5DD0BC9F451DC98FEC0573ADB9F4AE12C4B27D019682CDB573D98D72C9C0
+B8C12A50B0DFA3A0EFDC9956C0031D7B482B6978A4E9A974742855761FB734C3
+3CE47D2BA33A92F39716275DE92626AC17F0E4F84258E3C322BDCC6B7E534ED2
+CFFA40F34588ADD95FB7CCF4D3DF66C4ADB60B0FF8A2DA72416B0C048F2B47C7
+9743A91710E45F57FDDFEDE62063E914DA15CC2A272612BD2230C773EB19C0D2
+9B3ABBBA322DA1345BC8DD0FEE9A84A794B3FAE2FED3DB7901EE67DCD189EC42
+D4836623B19D870D342237512EC17A0CD803DE71861D698112FA4BD24E674437
+5906B47114E9EE291447EA66184B0E4AD907B4055E3FF93D1BDBBDBD11533BAE
+1B75031836C3C5725D5BC4BF62331E08DB5AEAAF3CC14261C7ECBF89164D9CEF
+A20033A3022CFD5CF6977C53550E8E2B945B9279588B79DED0FB4C3983847691
+ADC5995A4B09EA37E4446AA9E0B5C5EF24CCEB349B9AD26339917158027AAF21
+AA44D19BD87C48FF5E1806349BABDFAA86770AE6C436771AC1B2971AFEF850A8
+6F3FCD8F3B22D3460A83D1C32363E147F92C60FD9E989F4A70E580370BA46603
+20971C775917C7645DA4ADF8B2AC1FE4F486CEB10F4D5C16E42D2BB938840A3F
+D24FC54086A737343749BB8120ECCF351F73C96AFD6715969EAC495168CB5870
+BD01DD31FBE2FBFC7D560C0732E2F880BD3EE9CC2D2D574300249762DD0BF5C7
+E078944C350CA202995E52791D5B0A1367C76931883AEF6B63CF122D23B2511A
+0C661F68C9A79433831F18E7E26A218B08509A3BD28246350DEF19D9D90554DD
+CC335494BE7AC6C62962E17AF8180C87899B4F8BA4935090C615FEE7903ADEDC
+4FC1E20A83DFAE933379545F00ADEF974DACBD5538D61F35E15D82FF39830478
+BA2800CF271440B1AF17491501328690EE65A6EA8F5A8C10E7A699E38183AFFC
+A198FE4A21E4A44BF8C18AFE239615A0D38DA3769C837853F521CDE997A41CAC
+D672B6CC07A48BAF14DDF989BD68BD41986872493BEC629F3F39BC741EC1A36E
+CD67B8B73B96328B39A0DFC7A9459718F785FC7A900307FC1D747E8A46ED6BD9
+8895C307135069C7ABC1502B8B73FA95DFD90136DC46FBB4028B6E7242CADC66
+548FAD5A1121EE559C034297EBA71C3CB2FF93E329023B589616FC370F8E8BB7
+1CDBD9950DDAAE99FC86F3BD9111783D288FE27979C77417AAD010892979E24D
+01BD4D3CBA0DF88708B1BC3F8F0479B3F4949B4B4F38B468392EEDEE28571E59
+48590C7DC51098D3B4187D70904C6FEB9065E7BD77B751F8B8ADAE564C5D702C
+FAF8E28BA84953C06431F8305C41AA66EF8312FCA40E04C280FB7F72CA60F45D
+5A1D40A984E6E75ABAC7570457F7C3903D969F69C49AA6AC7C1DDBF42726684C
+C274B9462AE16187E8ABB4B263E20BFA4D592A1B792D1E5944E9F7B9368895B5
+3BDE3CBC271EB88E3665AFF22BF6EFD3C12618512CF0DA5052217FD31B3F34BE
+18294BD6F0EAC7F0C7D32C25DBA6F81A95CE61CD74727E442781FB175C99473D
+B356F69DA08F9A4A86F657B345BE5E13FC46D3A0162E09153D81FAA4BEBD3367
+3C5BA58E2BEAE5CD8A46373C3F068B0C760B522A545F63BE0097ADDF3D174174
+45324DB360E8F96384B6E88F4A611EA486A841F4B4A7F989EF12D590187642DD
+5ED0FD808A7213AD7C0B2D5C6534EA780566F656DE6DAD649CEFE37D036F03D1
+54FC3549F124F2C34CD4D9814F01D58D76187D76CC7D5C79705BE572F14A638B
+880169B5C42C9AB3F72A7DF06D23AFCB74D975A163177BF8673201EF8271775F
+BCAC4FF4FBFBE71983FF8EA4EBCDE52338AECD043C6B1BFA58E937AC0EF8B7A1
+1A49A279FAB598F99DB5FB1F34250127FC54C9193E5477F747C5915F09F38EDA
+4B16D0B0060F241E4C08F08E8BCF0AEDD41905610EB5D3F98C8BBF62098C9FEC
+487AB9C39C01FE8F5A3D1943A154C5599857809E121C477DE5F48A2E3DC5FA37
+C781A777AD5C7A999B31420CD3AAE6C9523290E299D95D273E184F90244BCA33
+8945A1E4F7A90528
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+0000000000000000000000000000000000000000000000000000000000000000
+cleartomark
+{restore}if
+%%EndFont 
+TeXDict begin 40258584 52099344 1000 600 600 (list_.dvi)
+ at start /Fa 202[30 30 30 30 30 30 48[{}6 49.8132 /CMR6
+rf /Fb 137[34 13[41 104[{}2 66.4176 /CMMI8 rf /Fc 136[45
+32 37 23 28 29 1[35 35 38 56 18 2[21 35 32 21 32 35 32
+32 35 13[38 6[43 5[44 25[21 44[{}24 58.1154 /CMTI7 rf
+end
+%%EndProlog
+%%BeginSetup
+%%Feature: *Resolution 600dpi
+TeXDict begin
+%%BeginPaperSize: Letter
+/setpagedevice where
+{ pop << /PageSize [612 792] >> setpagedevice }
+{ /letter where { pop letter } if }
+ifelse
+%%EndPaperSize
+ end
+%%EndSetup
+%%Page: 1 1
+TeXDict begin 1 0 bop Black Black 982 3416 a @beginspecial
+6.810139 @llx -166.761932 @lly 238.176147 @urx 3.985056
+ at ury 2313 @rwi @setspecial
+%%BeginDocument: list_0.eps
+%!PS-Adobe-3.0 EPSF-3.0
+%%BoundingBox: 6 -167 239 4
+%%HiResBoundingBox: 6.81013865 -166.76194 238.176148 3.98505604
+%%Creator: Asymptote 2.372.37
+%%CreationDate: 2018.06.08 10:35:27
+%%Pages: 1
+%%Page: 1 1
+/Setlinewidth {0 exch dtransform dup abs 1 lt {pop 0}{round} ifelse
+idtransform setlinewidth pop} bind def
+newpath 7.06013865 0 moveto
+ 218.864298 0 lineto
+0.5 .setopacityalpha
+0.75 setgray
+7.97011208 Setlinewidth
+0 setlinecap
+1 setlinejoin
+10 setmiterlimit
+stroke
+newpath 7.06013865 -11.9105037 moveto
+ 218.864298 -11.9105037 lineto
+stroke
+newpath 13.0153905 -37.7165951 moveto
+ 42.7916498 -37.7165951 lineto
+stroke
+newpath 47.7543597 -37.7165951 moveto
+ 203.976169 -37.7165951 lineto
+stroke
+newpath 31.8736881 -49.6270989 moveto
+ 203.976169 -49.6270989 lineto
+stroke
+newpath 31.8736881 -61.5376026 moveto
+ 203.976169 -61.5376026 lineto
+stroke
+newpath 36.836398 -77.4182742 moveto
+ 203.976169 -77.4182742 lineto
+stroke
+newpath 13.0153905 -101.239282 moveto
+ 42.7916498 -101.239282 lineto
+stroke
+newpath 47.7543597 -101.239282 moveto
+ 203.976169 -101.239282 lineto
+stroke
+newpath 31.8736881 -113.149785 moveto
+ 203.976169 -113.149785 lineto
+stroke
+newpath 31.8736881 -125.060289 moveto
+ 203.976169 -125.060289 lineto
+stroke
+newpath 7.06013865 -150.866381 moveto
+ 218.864298 -150.866381 lineto
+stroke
+newpath 7.06013865 -162.776884 moveto
+ 218.864298 -162.776884 lineto
+stroke
+newpath 224.81955 -33.7464272 moveto
+ 221.06955 -33.7464272 lineto
+1 .setopacityalpha
+1 0 0 setrgbcolor
+0.5 Setlinewidth
+1 setlinecap
+stroke
+newpath 224.81955 -15.8806716 moveto
+ 221.06955 -15.8806716 lineto
+stroke
+newpath 224.81955 -33.7464272 moveto
+ 224.81955 -15.8806716 lineto
+stroke
+newpath 224.81955 -73.4481063 moveto
+ 221.06955 -73.4481063 lineto
+stroke
+newpath 224.81955 -65.5077705 moveto
+ 221.06955 -65.5077705 lineto
+stroke
+newpath 224.81955 -73.4481063 moveto
+ 224.81955 -65.5077705 lineto
+stroke
+newpath 224.81955 -97.2691138 moveto
+ 221.06955 -97.2691138 lineto
+stroke
+newpath 224.81955 -81.3884422 moveto
+ 221.06955 -81.3884422 lineto
+stroke
+newpath 224.81955 -97.2691138 moveto
+ 224.81955 -81.3884422 lineto
+stroke
+newpath 224.81955 -146.896213 moveto
+ 221.06955 -146.896213 lineto
+stroke
+newpath 224.81955 -129.030457 moveto
+ 221.06955 -129.030457 lineto
+stroke
+newpath 224.81955 -146.896213 moveto
+ 224.81955 -129.030457 lineto
+stroke
+newpath 42.7916498 -30.7688013 moveto
+ 42.7916498 -34.5188013 lineto
+0 0 1 setrgbcolor
+stroke
+newpath 13.0153905 -30.7688013 moveto
+ 13.0153905 -34.5188013 lineto
+stroke
+newpath 42.7916498 -30.7688013 moveto
+ 13.0153905 -30.7688013 lineto
+stroke
+newpath 47.7543597 -30.7688013 moveto
+ 47.7543597 -34.5188013 lineto
+stroke
+newpath 42.7916498 -30.7688013 moveto
+ 42.7916498 -34.5188013 lineto
+stroke
+newpath 47.7543597 -30.7688013 moveto
+ 42.7916498 -30.7688013 lineto
+stroke
+newpath 31.8736881 -84.3660681 moveto
+ 31.8736881 -80.6160681 lineto
+stroke
+newpath 36.836398 -84.3660681 moveto
+ 36.836398 -80.6160681 lineto
+stroke
+newpath 31.8736881 -84.3660681 moveto
+ 36.836398 -84.3660681 lineto
+stroke
+newpath 7.06013865 -132.008083 moveto
+ 7.06013865 -128.258083 lineto
+stroke
+newpath 31.8736881 -132.008083 moveto
+ 31.8736881 -128.258083 lineto
+stroke
+newpath 7.06013865 -132.008083 moveto
+ 31.8736881 -132.008083 lineto
+stroke
+newpath 31.8736881 -132.008083 moveto
+ 31.8736881 -128.258083 lineto
+stroke
+newpath 47.7543597 -132.008083 moveto
+ 47.7543597 -128.258083 lineto
+stroke
+newpath 31.8736881 -132.008083 moveto
+ 47.7543597 -132.008083 lineto
+stroke
+newpath 203.976169 -132.008083 moveto
+ 203.976169 -128.258083 lineto
+stroke
+newpath 218.864298 -132.008083 moveto
+ 218.864298 -128.258083 lineto
+stroke
+newpath 203.976169 -132.008083 moveto
+ 218.864298 -132.008083 lineto
+stroke
+showpage
+%%EOF
+
+%%EndDocument
+ @endspecial 0.000000 TeXcolorgray 1189 2140 a Fc(Surr)m(ounding)26
+b(envir)m(onment,)f(pr)m(e)m(c)m(e)m(ding)e(material)p
+0.000000 TeXcolorgray 1082 2360 a(L)m(ab)m(el)p 0.000000
+TeXcolorgray 244 w(First)j(item)p 0.000000 TeXcolorgray
+1480 2686 a(First)g(item,)f(se)m(c)m(ond)f(p)m(ar)m(agr)m(aph)p
+0.000000 TeXcolorgray 1082 2890 a(L)m(ab)m(el)p 0.000000
+TeXcolorgray 244 w(Se)m(c)m(ond)h(item)p 0.000000 TeXcolorgray
+1191 3298 a(Surr)m(ounding)h(envir)m(onment,)f(fol)s(lowing)i(material)
+p 1.000000 0.000000 0.000000 TeXcolorrgb 2829 2242 a
+Fb(v)2863 2251 y Fa(0)p 1.000000 0.000000 0.000000 TeXcolorrgb
+2829 2615 a Fb(v)2863 2624 y Fa(1)p 1.000000 0.000000 0.000000
+TeXcolorrgb 2829 2780 a Fb(v)2863 2789 y Fa(2)p
+1.000000 0.000000 0.000000 TeXcolorrgb 2829 3185 a Fb(v)2863
+3194 y Fa(3)p 0.000000 0.000000 1.000000 TeXcolorrgb
+1120 2243 a Fb(h)1161 2252 y Fa(0)p 0.000000 0.000000 1.000000
+TeXcolorrgb 1265 2243 a Fb(h)1306 2252 y Fa(1)p
+0.000000 0.000000 1.000000 TeXcolorrgb 1174 2805 a Fb(h)1215
+2814 y Fa(2)p 0.000000 0.000000 1.000000 TeXcolorrgb
+1050 3202 a Fb(h)1091 3211 y Fa(3)p 0.000000 0.000000 1.000000
+TeXcolorrgb 1219 3202 a Fb(h)1260 3211 y Fa(4)p
+0.000000 0.000000 1.000000 TeXcolorrgb 2649 3202 a Fb(h)2690
+3211 y Fa(5)p Black 0.000000 0.000000 1.000000 TeXcolorrgb
+eop end
+%%Trailer
+
+userdict /end-hook known{end-hook}if
+%%EOF

Modified: trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e-figures/list.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e-figures/list.png
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.dbk
===================================================================
--- trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.dbk	2018-07-04 21:25:46 UTC (rev 48134)
+++ trunk/Master/texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.dbk	2018-07-04 21:26:44 UTC (rev 48135)
@@ -4,9 +4,11 @@
   <!ENTITY latex "LaTeX">
 ]>
 <book id="latex2e.dbk" lang="en">
+<!-- $Id$ -->
+<!-- Public domain. -->
         
 
-<title>&latex;2e unofficial reference manual (March 2018)</title>
+<title>&latex;2e unofficial reference manual (July 2018)</title>
 <!-- %**end of header (This is for running Texinfo on a region.) -->
 
 <!-- latex 2.09 commands should all be present now, -->
@@ -13,17 +15,24 @@
 <!-- xx but latex2e stuff is missing. -->
 <!-- xx random list of a few of the missing items is at the end of this file -->
 <!-- -->
-<!-- xx ending a run with errors -->
 <!-- xx ctan, distributions, components of TeX -->
 <!-- xx classes and packages - required, additional, useful; oberdiek; fonts -->
 <!-- -->
-<!-- xx merge http://ctan.org/pkg/latex-info (CTAN package latex-info) -->
-<!-- xx merge http://ctan.org/pkg/latex2e-reference -->
 <!-- xx merge permuted-index -->
 <!-- xx merge latex-manual from savannah -->
 <!-- xx merge display style math -->
-<!-- xx vertical mode, horizontal mode -->
-<!-- xx JH Discuss restricted execution -->
+<!-- xx JH explain nfss somewhere -->
+<!-- xx JH expand BiBTeX -->
+<!-- xx JH expand theorem, AMS math -->
+<!-- xx JH something on code listings -->
+<!-- xx JH ligatures -->
+<!-- xx JH \xspace -->
+<!-- xx JH \stretch -->
+<!-- xx JH \mathstrut -->
+<!-- xx JH \phantom https://tex.stackexchange.com/questions/4519/how-do-i-create-an-invisible-character -->
+<!-- xx JH \baselineskip https://texfaq.org/FAQ-baselinepar -->
+<!-- xx JH \contentsline, \@@dottedtocline? -->
+<!-- xx JH more on \write18, beyond what's mentioned in Command line. -->
 <!-- -->
 <!-- xx The typeset source2e has an index with all kernel -->
 <!-- xx commands, though some are internal and shouldn't be included. -->
@@ -31,7 +40,7 @@
 <!-- xx See also http://ctan.org/pkg/macros2e. -->
 
 <bookinfo><legalnotice><para>This document is an unofficial reference manual for &latex;, a
-document preparation system, version of March 2018.
+document preparation system, version of July 2018.
 </para>
 <para>This manual was originally translated from <filename>LATEX.HLP</filename> v1.0a in
 the VMS Help Library.  The pre-translation version was written by
@@ -67,10 +76,12 @@
 into another language, under the above conditions for modified versions.
 <!-- end of License -->
 </para></legalnotice></bookinfo>
+<!-- Merge into one index (arbitrarily chosen to be the concept index). -->
 
 
+
 <para>This document is an unofficial reference manual for &latex;, a
-document preparation system, version of March 2018.
+document preparation system, version of July 2018.
 </para>
 <para>This manual was originally translated from <filename>LATEX.HLP</filename> v1.0a in
 the VMS Help Library.  The pre-translation version was written by
@@ -115,7 +126,7 @@
 <title>&latex;2e: An unofficial reference manual</title>
 
 <para>This document is an unofficial reference manual (version of
-March 2018) for &latex;2e, a document preparation system.
+July 2018) for &latex;2e, a document preparation system.
 </para>
 
 
@@ -123,11 +134,11 @@
 <chapter label="1" id="About-this-document">
 <title>About this document</title>
 
-<indexterm role="fn"><primary><ulink url="http://puszcza.gnu.org.ua/software/latexrefman/">http://puszcza.gnu.org.ua/software/latexrefman/</ulink> home page</primary></indexterm>
+<indexterm role="cp"><primary>home page for manual</primary></indexterm>
 <para>This is an unofficial reference manual for the &latex;2e document
 preparation system, which is a macro package for the &tex;
 typesetting program (see <link linkend="Overview">Overview</link>).  This document’s home page is
-<ulink url="http://puszcza.gnu.org.ua/software/latexrefman/">http://puszcza.gnu.org.ua/software/latexrefman/</ulink>.  That page has links to the
+<ulink url="puszcza.gnu.org.ua/software/latexrefman">puszcza.gnu.org.ua/software/latexrefman</ulink>.  That page has links to the
 current output in various formats, sources, mailing list archives and
 subscriptions, and other infrastructure.
 </para>
@@ -223,7 +234,7 @@
 <indexterm role="cp"><primary>hello, world</primary></indexterm>
 
 <para>&latex; files have a simple global structure, with a standard beginning
-and ending.  Here is a “hello, world” example:
+and ending.  This is a small example.
 </para>
 <screen>\documentclass{article}
 \begin{document}
@@ -230,10 +241,13 @@
 Hello, \LaTeX\ world.
 \end{document}
 </screen>
+<para>Every &latex; document has a <literal>\begin{document}</literal> line and an
+<literal>\end{document}</literal> line.
+</para>
 <indexterm role="cp"><primary>document class, defined</primary></indexterm>
-<para>Here, the ‘<literal>article</literal>’ is the so-called <firstterm>document class</firstterm>,
-implemented in a file <filename>article.cls</filename>.  Any document class can be
-used.  A few document classes are defined by &latex; itself, and vast
+<para>Here, the ‘<literal>article</literal>’ is the <firstterm>document class</firstterm>.  It is implemented
+in a file <filename>article.cls</filename>.  You can use any document class on your
+system.  A few document classes are defined by &latex; itself, and vast
 array of others are widely available.  See <link linkend="Document-classes">Document classes</link>.
 </para>
 <indexterm role="cp"><primary>preamble, defined</primary></indexterm>
@@ -241,12 +255,13 @@
 <literal>\documentclass</literal> and the <literal>\begin{document}</literal> commands.
 This area is called the <firstterm>preamble</firstterm>.
 </para>
-<para>The <literal>\begin{document} ... \end{document}</literal> is a so-called
+<para>The <literal>\begin{document}</literal>, <literal>\end{document}</literal> pair defines an
 <indexterm role="cp"><primary>environment</primary></indexterm>
 <firstterm>environment</firstterm>; the ‘<literal>document</literal>’ environment (and no others) is
-required in all &latex; documents (see <link linkend="document">document</link>).  &latex;
-provides many environments itself, and many more are defined separately.
-See <link linkend="Environments">Environments</link>.
+required in all &latex; documents (see <link linkend="document">document</link>).  &latex; make
+available to you many environments that are documented here
+(see <link linkend="Environments">Environments</link>).  Many more are available to you from external
+packages, most importantly those available at CTAN (see <link linkend="CTAN">CTAN</link>).
 </para>
 <para>The following sections discuss how to produce PDF or other output from
 a &latex; input file.
@@ -256,7 +271,7 @@
 <sect1 label="2.2" id="Output-files">
 <title>Output files</title>
 
-<para>&latex; produces a main output file and at least two accessory files.
+<para>&latex; produces a main output file and at least two auxiliary files.
 The main output file’s name ends in either <filename>.dvi</filename> or <filename>.pdf</filename>.
 </para>
 <variablelist><varlistentry><term><literal>.dvi</literal>
@@ -266,7 +281,7 @@
 <indexterm role="fn"><primary>dvips command</primary></indexterm>
 <indexterm role="fn"><primary>dvipdfmx command</primary></indexterm>
 <indexterm role="fn"><primary>dvitype command</primary></indexterm>
-<para>If &latex; is invoked with the system command <command>latex</command> then it
+<anchor id="output-files-dvi"/><para>If &latex; is invoked with the system command <command>latex</command> then it
 produces a DeVice Independent file, with extension <filename>.dvi</filename>.  You
 can view this file with a command such as <command>xdvi</command>, or convert
 it to a PostScript <literal>.ps</literal> file with <command>dvips</command> or to a
@@ -279,7 +294,7 @@
 </term><listitem><indexterm role="fn"><primary>.pdf file</primary></indexterm>
 <indexterm role="cp"><primary>pdf&tex;</primary></indexterm>
 <indexterm role="fn"><primary>pdflatex command</primary></indexterm>
-<para>If &latex; is invoked via the system command <command>pdflatex</command>,
+<anchor id="output-files-pdf"/><para>If &latex; is invoked via the system command <command>pdflatex</command>,
 among other commands (see <link linkend="TeX-engines">&tex; engines</link>), then the main output is
 a Portable Document Format (PDF) file.  Typically this is a
 self-contained file, with all fonts and images included.
@@ -291,7 +306,7 @@
 </term><listitem><indexterm role="cp"><primary>transcript file</primary></indexterm>
 <indexterm role="cp"><primary>log file</primary></indexterm>
 <indexterm role="fn"><primary>.log file</primary></indexterm>
-<para>This transcript file contains summary information such as a list of
+<anchor id="output-files-log"/><para>This transcript file contains summary information such as a list of
 loaded packages.  It also includes diagnostic messages and perhaps
 additional information for any errors.
 </para>
@@ -301,7 +316,7 @@
 <indexterm role="cp"><primary>cross references, resolving</primary></indexterm>
 <indexterm role="cp"><primary>forward references, resolving</primary></indexterm>
 <indexterm role="cp"><primary>references, resolving forward</primary></indexterm>
-<para>Auxiliary information is used by &latex; for things such as
+<anchor id="output-files-aux"/><para>Auxiliary information is used by &latex; for things such as
 cross references.  For example, the first time that &latex; finds a
 forward reference—a cross reference to something that has not yet
 appeared in the source—it will appear in the output as a doubled
@@ -321,10 +336,11 @@
 <indexterm role="cp"><primary>table of contents file</primary></indexterm>
 <indexterm role="cp"><primary>contents file</primary></indexterm>
 <para>&latex; may produce yet more files, characterized by the filename
-ending.  These include a <literal>.lof</literal> file that is used to make a list
-of figures, a <literal>.lot</literal> file used to make a list of tables, and a
-<literal>.toc</literal> file used to make a table of contents.  A particular class
-may create others; the list is open-ended.
+ending.  These include a <literal>.lof</literal> file that is used to make a list of
+figures, a <literal>.lot</literal> file used to make a list of tables, and a
+<literal>.toc</literal> file used to make a table of contents (see <link linkend="Table-of-contents-etc_002e">Table of
+contents etc.</link>).  A particular class may create others; the list is
+open-ended.
 </para>
 
 </sect1>
@@ -340,7 +356,7 @@
 
 <para>&latex; is defined to be a set of commands that are run by a &tex;
 implementation (see <link linkend="Overview">Overview</link>).  This section gives a terse
-overview of the main programs.
+overview of the main programs (see also <link linkend="Command-line">Command line</link>).
 </para>
 <variablelist><varlistentry><term><literal>latex</literal>
 </term><term><literal>pdflatex</literal>
@@ -347,7 +363,7 @@
 </term><listitem><indexterm role="cp"><primary>pdf&tex; engine</primary></indexterm>
 <indexterm role="fn"><primary>etex command</primary></indexterm>
 <indexterm role="cp"><primary>e-&tex;</primary></indexterm>
-<para>In &tex; Live (<ulink url="http://tug.org/texlive">http://tug.org/texlive</ulink>), if &latex; is invoked
+<anchor id="tex-engines-latex"/><para>In &tex; Live (<ulink url="http://tug.org/texlive">http://tug.org/texlive</ulink>), if &latex; is invoked
 via either the system command <command>latex</command> or <command>pdflatex</command>,
 then the pdf&tex; engine is run (<ulink url="http://ctan.org/pkg/pdftex">http://ctan.org/pkg/pdftex</ulink>).
 When invoked as <command>latex</command>, the main output is a <filename>.dvi</filename>
@@ -367,7 +383,7 @@
 </listitem></varlistentry><varlistentry><term><literal>lualatex</literal>
 </term><listitem><indexterm role="fn"><primary>lualatex command</primary></indexterm>
 <indexterm role="cp"><primary>Lua&tex;</primary></indexterm>
-<para>If &latex; is invoked via the system command <command>lualatex</command>, the
+<anchor id="tex-engines-lualatex"/><para>If &latex; is invoked via the system command <command>lualatex</command>, the
 Lua&tex; engine is run (<ulink url="http://ctan.org/pkg/luatex">http://ctan.org/pkg/luatex</ulink>).  This
 program allows code written in the scripting language Lua
 (<ulink url="http://luatex.org">http://luatex.org</ulink>) to interact with &tex;’s typesetting.
@@ -381,7 +397,7 @@
 <indexterm role="cp"><primary>Xe&tex;</primary></indexterm>
 <indexterm role="fn"><primary>.xdv file</primary></indexterm>
 <indexterm role="fn"><primary>xdvipdfmx</primary></indexterm>
-<para>If &latex; is invoked with the system command <command>xelatex</command>, the
+<anchor id="tex-engines-xelatex"/><para>If &latex; is invoked with the system command <command>xelatex</command>, the
 Xe&tex; engine is run (<ulink url="http://tug.org/xetex">http://tug.org/xetex</ulink>).  Like Lua&tex;,
 Xe&tex; natively supports UTF-8 Unicode and TrueType and OpenType
 fonts, though the implementation is completely different, mainly using
@@ -458,7 +474,7 @@
   ...
 \end{verse}
 </screen>
-<para>See <link linkend="Environments">Environments</link> for a list of environments. 
+<para>See <link linkend="Environments">Environments</link> for a list of environments. 
 </para>
 <para>The <replaceable>environment name</replaceable> at the beginning must exactly match that at
 the end.  This includes the case where <replaceable>environment name</replaceable> ends in a
@@ -485,8 +501,8 @@
 </para>
 
 </sect2>
-<sect2 label="2.4.3" id="_005cmakeatletter-and-_005cmakeatother">
-<title><literal>\makeatletter</literal> and <literal>\makeatother</literal></title>
+<sect2 label="2.4.3" id="_005cmakeatletter-_0026-_005cmakeatother">
+<title><literal>\makeatletter</literal> & <literal>\makeatother</literal></title>
 
 <para>Synopsis:
 </para>
@@ -531,9 +547,9 @@
 in their names see <ulink url="http://ctan.org/pkg/macros2e">http://ctan.org/pkg/macros2e</ulink>. These macros are
 mainly intended to package or class authors.
 </para>
-<para>The example below is typical.  In the user’s class file is a command
-<literal>\thesis at universityname</literal>.  The user wants to change the
-definition.  These three lines should go in the preamble, before the
+<para>In this example the class file has a command
+<literal>\thesis at universityname</literal> that the user wants to change.  These
+three lines should go in the preamble, before the
 <literal>\begin{document}</literal>.
 </para>
 <screen>\makeatletter
@@ -552,8 +568,8 @@
 <para>Synopsis:
 </para>
 <screen>\newcommand{\mycmd}{\@ifstar{\mycmd at star}{\mycmd at nostar}}
-\newcommand{\mycmd at nostar}[<replaceable>non-starred command number of args</replaceable>]{<replaceable>body of non-starred command</replaceable>} 
-\newcommand{\mycmd at star}[<replaceable>starred command number of args</replaceable>]{<replaceable>body of starred command</replaceable>}
+\newcommand{\mycmd at nostar}[<replaceable>nostar-num-args</replaceable>]{<replaceable>nostar-body</replaceable>} 
+\newcommand{\mycmd at star}[<replaceable>star-num-args</replaceable>]{<replaceable>star-body</replaceable>}
 </screen>
 <para>Many standard &latex; environments or commands have a variant with the
 same name but ending with a star character <literal>*</literal>, an asterisk.
@@ -573,7 +589,7 @@
 same number of arguments or a different number, or no arguments at all.
 As always, in a &latex; document a command using at-sign <literal>@</literal>
 must be enclosed inside a <literal>\makeatletter ... \makeatother</literal> block
-(see <link linkend="_005cmakeatletter-and-_005cmakeatother">\makeatletter and \makeatother</link>).
+(see <link linkend="_005cmakeatletter-_0026-_005cmakeatother">\makeatletter & \makeatother</link>).
 </para>
 <para>This example of <literal>\@ifstar</literal> defines the command <literal>\ciel</literal> and a
 variant <literal>\ciel*</literal>.  Both have one required argument.  A call to
@@ -585,14 +601,15 @@
 \newcommand*{\ciel}{\@ifstar{\ciel at starred}{\ciel at unstarred}}
 </screen>
 <para>In the next example, the starred variant takes a different number of
-arguments than does the unstarred one.  With this definition, Agent
-007’s <literal>``My name is \agentsecret*{Bond},
-\agentsecret{James}{Bond}.''</literal> is equivalent to <literal>``My name is
-\textsc{Bond}, \textit{James} textsc{Bond}.''</literal>
+arguments than the unstarred one.  With this definition, Agent 007’s
+<literal>``My name is \agentsecret*{Bond},
+\agentsecret{James}{Bond}.''</literal> is equivalent to entering the commands
+<literal>``My name is \textsc{Bond}, \textit{James} textsc{Bond}.''</literal>
 </para>
 <screen>\newcommand*{\agentsecret at unstarred}[2]{\textit{#1} \textsc{#2}}
 \newcommand*{\agentsecret at starred}[1]{\textsc{#1}}
-\newcommand*{\agentsecret}{\@ifstar{\agentsecret at starred}{\agentsecret at unstarred}}
+\newcommand*{\agentsecret}{%
+  \@ifstar{\agentsecret at starred}{\agentsecret at unstarred}}
 </screen>
 <para>There are two sometimes more convenient ways to accomplish the work of
 <literal>\@ifstar</literal>.  The <filename>suffix</filename> package allows the construct
@@ -609,6 +626,39 @@
 </sect3>
 </sect2>
 </sect1>
+<sect1 label="2.5" id="CTAN">
+<title>CTAN: Comprehensive &tex; Archive Network</title>
+
+<indexterm role="cp"><primary>CTAN</primary></indexterm>
+
+<para>The Comprehensive &tex; Archive Network, CTAN, is the &tex; and
+&latex; community’s repository of free material.  It is a set of
+Internet sites around the world that offer material related to &latex;
+for download.  Visit CTAN on the web at <ulink url="https://ctan.org">https://ctan.org</ulink>.
+</para>
+<para>This material is organized into packages, discrete bundles that
+typically offer some coherent functionality and are maintained by one
+person or a small number of people.  For instance, many publishers have
+a package that allows authors to format papers to that publisher’s
+specifications.
+</para>
+<para>In addition to the massive holdings, the web site offers features such
+as search by name or by functionality.
+</para>
+<indexterm role="cp"><primary>DANTE e.V.</primary></indexterm>
+<indexterm role="cp"><primary>mirrors of CTAN</primary></indexterm>
+<para>CTAN is not a single site, but instead is a set of sites. One of the
+sites is the core. This site actively manages the material, for
+instance, by accepting uploads of new or updated packages. It is
+hosted by the German &tex; group DANTE e.V. Other sites around the
+world help out by mirroring, that is, automatically syncing their
+collections with the core site and then in turn making their copies
+publicly available. This gives users close to their location better
+access and relieves the load on the core site. The list of mirrors is
+at <ulink url="https://ctan.org/mirrors">https://ctan.org/mirrors</ulink>.
+</para>
+
+</sect1>
 </chapter>
 <chapter label="3" id="Document-classes">
 <title>Document classes</title>
@@ -632,23 +682,23 @@
 see <link linkend="Overview">Overview</link>.)
 </para>
 <variablelist><varlistentry><term><literal>article</literal>
-</term><listitem><para>For a journal article, a presentation, and miscellaneous general use.
+</term><listitem><anchor id="document-classes-article"/><para>For a journal article, a presentation, and miscellaneous general use.
 </para>
 </listitem></varlistentry><varlistentry><term><literal>book</literal>
-</term><listitem><para>Full-length books, including chapters and possibly including front
+</term><listitem><anchor id="document-classes-book"/><para>Full-length books, including chapters and possibly including front
 matter, such as a preface, and back matter, such as an appendix
 (see <link linkend="Front_002fback-matter">Front/back matter</link>).
 </para>
 </listitem></varlistentry><varlistentry><term><literal>letter</literal>
-</term><listitem><para>Mail, optionally including mailing labels 
+</term><listitem><anchor id="document-classes-letter"/><para>Mail, optionally including mailing labels 
 (see <link linkend="Letters">Letters</link>).
 </para>
 </listitem></varlistentry><varlistentry><term><literal>report</literal>
-</term><listitem><para>For documents of length between an <literal>article</literal> and a <literal>book</literal>,
+</term><listitem><anchor id="document-classes-report"/><para>For documents of length between an <literal>article</literal> and a <literal>book</literal>,
 such as technical reports or theses, which may contain several chapters.
 </para>
 </listitem></varlistentry><varlistentry><term><literal>slides</literal>
-</term><listitem><para>For slide presentations—rarely used today.  In its place the
+</term><listitem><anchor id="document-classes-slides"/><para>For slide presentations—rarely used today.  In its place the
 <literal>beamer</literal> package is perhaps the most prevalent (see <link linkend="beamer-template">beamer
 template</link>).
 </para>
@@ -665,9 +715,9 @@
 <indexterm role="cp"><primary>class options</primary></indexterm>
 <indexterm role="cp"><primary>global options</primary></indexterm>
 
-<para>You can specify so-called <firstterm>global options</firstterm> or <firstterm>class options</firstterm> to
-the <literal>\documentclass</literal> command by enclosing them in square brackets.
-To specify more than one <replaceable>option</replaceable>, separate them with a comma, as in:
+<para>You can specify <firstterm>global options</firstterm> or <firstterm>class options</firstterm> to the
+<literal>\documentclass</literal> command by enclosing them in square brackets.  To
+specify more than one <replaceable>option</replaceable>, separate them with a comma.
 </para>
 <screen>\documentclass[<replaceable>option1</replaceable>,<replaceable>option2</replaceable>,...]{<replaceable>class</replaceable>}
 </screen>
@@ -854,7 +904,7 @@
 <para>Inside of a class or package file you can use the at-sign <literal>@</literal> as a
 character in command names without having to surround the code
 containing that command with <literal>\makeatletter</literal> and
-<literal>\makeatother</literal>.  See <link linkend="_005cmakeatletter-and-_005cmakeatother">\makeatletter and \makeatother</link>. This allow
+<literal>\makeatother</literal>.  See <link linkend="_005cmakeatletter-_0026-_005cmakeatother">\makeatletter & \makeatother</link>. This allow
 you to create commands that users will not accidentally redefine.
 Another technique is to preface class- or package-specific commands with
 some string to prevent your class or package from interfering with
@@ -897,7 +947,6 @@
 most of its work: declaring new variables, commands and fonts, and
 loading other files.
 </para></listitem></orderedlist>
-
 <para>Here is a starting class file, which should be saved as <filename>stub.cls</filename>
 where &latex; can find it, for example in the same directory as the
 <filename>.tex</filename> file.
@@ -919,6 +968,7 @@
 of the descriptions here derive from this document), or the tutorial
 <ulink url="https://www.tug.org/TUGboat/tb26-3/tb84heff.pdf">https://www.tug.org/TUGboat/tb26-3/tb84heff.pdf</ulink>.
 </para>
+
 </sect2>
 <sect2 label="3.3.2" id="Class-and-package-commands">
 <title>Class and package commands</title>
@@ -1010,10 +1060,10 @@
 <indexterm role="cp"><primary>package options</primary></indexterm>
 <indexterm role="cp"><primary>options, class</primary></indexterm>
 <indexterm role="cp"><primary>options, package</primary></indexterm>
-<para>Make an option available to a user, for invoking in their
+<para>Make an option available to a user to invoke in their
 <literal>\documentclass</literal> command.  For example, the <literal>smcmemo</literal> class
-could have an option allowing users to put the institutional logo on the
-first page with <literal>\documentclass[logo]{smcmemo}</literal>.  The class file
+could have an option <literal>\documentclass[logo]{smcmemo}</literal> allowing
+users to put the institutional logo on the first page.  The class file
 must contain <literal>\DeclareOption{logo}{<replaceable>code</replaceable>}</literal> (and later,
 <literal>\ProcessOptions</literal>).
 </para>
@@ -1058,14 +1108,14 @@
 </para>
 <indexterm role="cp"><primary>package, <literal>etoolbox</literal></primary></indexterm>
 <indexterm role="cp"><primary><literal>etoolbox</literal> package</primary></indexterm>
- 
-<para>The <literal>etoolbox</literal> package offers commands <literal>\newrobustcmd</literal>,
-<literal>\newrobustcmd*</literal>, <literal>\renewrobustcmd</literal>, <literal>\renewrobustcmd*</literal>,
-<literal>\providerobustcmd</literal>, and <literal>\providerobustcmd*</literal> which are similar
-to <literal>\newcommand</literal>, <literal>\newcommand*</literal>, <literal>\renewcommand</literal>,
-<literal>\renewcommand*</literal>, <literal>\providecommand</literal>, and
-<literal>\providecommand*</literal>, but define a robust <replaceable>cmd</replaceable> with two advantages
-as compared to <literal>\DeclareRobustCommand</literal>:
+<para>The <filename>etoolbox</filename> package offers the commands
+<literal>\newrobustcmd</literal>, <literal>\newrobustcmd*</literal>, as well as the commands
+<literal>\renewrobustcmd</literal>, <literal>\renewrobustcmd*</literal>, and the commands
+<literal>\providerobustcmd</literal>, and <literal>\providerobustcmd*</literal>.  These are
+similar to <literal>\newcommand</literal>, <literal>\newcommand*</literal>,
+<literal>\renewcommand</literal>, <literal>\renewcommand*</literal>, <literal>\providecommand</literal>, and
+<literal>\providecommand*</literal>, but define a robust <replaceable>cmd</replaceable> with two
+advantages as compared to <literal>\DeclareRobustCommand</literal>:
 </para><orderedlist numeration="arabic"><listitem><para>They use the low-level e-&tex; protection mechanism rather than the
 higher level &latex; <literal>\protect</literal> mechanism, so they do not incur
 the slight loss of performance mentioned above, and
@@ -1080,13 +1130,16 @@
 </term></varlistentry><varlistentry><term><literal>\InputIfFileExists{<replaceable>file name</replaceable>}{<replaceable>true code</replaceable>}{<replaceable>false code</replaceable>}</literal>
 </term><listitem><indexterm role="fn"><primary>\IfFileExists</primary></indexterm>
 <indexterm role="fn"><primary>\InputIfFileExists</primary></indexterm>
-<para>Execute <replaceable>true code</replaceable> if &latex; can find the file <filename><replaceable>file
-name</replaceable></filename> and <replaceable>false code</replaceable> otherwise.  In the second case it inputs the
-file immediately after executing <replaceable>true code</replaceable>.  Thus
-<literal>\IfFileExists{img.pdf}{\includegraphics{img.pdf}}{\typeout{WARNING:
-img.pdf not found}}</literal> will include the graphic <filename>img.pdf</filename> if it is
-found but otherwise just give a warning.
+<para>Execute <replaceable>true code</replaceable> if &latex; finds the file <filename><replaceable>file
+name</replaceable></filename> or <replaceable>false code</replaceable> otherwise.  In the first case it executing
+<replaceable>true code</replaceable> and then inputs the file.  Thus the command
 </para>
+<screen>\IfFileExists{img.pdf}{%
+  \includegraphics{img.pdf}}{\typeout{!! img.pdf not found}
+</screen>
+<para>will include the graphic <filename>img.pdf</filename> if it is found and otherwise
+give a warning.
+</para>
 <para>This command looks for the file in all search paths that &latex; uses,
 not only in the current directory.  To look only in the current
 directory do something like <literal>\IfFileExists{./filename}{<replaceable>true
@@ -1110,12 +1163,14 @@
 <!-- and do some actions conditionnally on version later or not to some -->
 <!-- date. -->
 </para>
-<para>If you request a <replaceable>release date</replaceable> and the date of
-the package installed on your system is earlier, then you get a warning
-on the screen and in the log like <literal>You have requested, on input
-line 4, version `2038/01/19' of document class article, but only version
-`2014/09/29 v1.4h Standard LaTeX document class' is available.</literal>
+<para>If you request a <replaceable>release date</replaceable> and the date of the package
+installed on your system is earlier, then you get a warning on the
+screen and in the log like this.
 </para>
+<screen>You have requested, on input line 4, version `2038/01/19' of
+document class article, but only version `2014/09/29 v1.4h
+Standard LaTeX document class' is available.
+</screen>
 <para>The command version <literal>\LoadClassWithOptions</literal> uses the list of
 options for the current class.  This means it ignores any options passed
 to it via <literal>\PassOptionsToClass</literal>.  This is a convenience command
@@ -1147,10 +1202,11 @@
 features, include the optional <replaceable>format date</replaceable> on which those features
 were implemented.  If present it must be in the form <literal>YYYY/MM/DD</literal>.
 If the format version installed on your system is earlier than
-<replaceable>format date</replaceable> then you get a warning like ‘<literal>You have requested
-release `2038/01/20' of LaTeX, but only release `2016/02/01' is
-available.</literal>’
+<replaceable>format date</replaceable> then you get a warning like this.
 </para>
+<screen>You have requested release `2038/01/20' of LaTeX, but only
+release `2016/02/01' is available.
+</screen>
 </listitem></varlistentry><varlistentry><term><literal>\OptionNotUsed</literal>
 </term><listitem><indexterm role="fn"><primary>\OptionNotUsed</primary></indexterm>
 <para>Adds the current option to the list of unused options.  Can only be used
@@ -1180,18 +1236,21 @@
 </para>
 <para>If your own code is bringing in a package twice then you can collapse
 that to once, for example replacing the two
-<literal>\RequirePackage[landscape]{geometry}\RequirePackage[margins=1in]{geometry}</literal>
-with the single
-<literal>\RequirePackage[landscape,margins=1in]{geometry}</literal>.  But if you
-are loading a package that in turn loads another package then you need
-to queue up the options you desire for this other package.  For
-instance, suppose the package <literal>foo</literal> loads the package
-<literal>geometry</literal>.  Instead of
-<literal>\RequirePackage{foo}\RequirePackage[draft]{graphics}</literal> you must
-write <literal>\PassOptionsToPackage{draft}{graphics}
-\RequirePackage{foo}</literal>.  (If <literal>foo.sty</literal> loads an option in conflict
-with what you want then you may have to look into altering its source.)
+<literal>\RequirePackage[landscape]{geometry}</literal> and
+<literal>\RequirePackage[margins=1in]{geometry}</literal> with the single command
+<literal>\RequirePackage[landscape,margins=1in]{geometry}</literal>.
 </para>
+<para>However, imagine that you are loading <filename>firstpkg</filename> and inside that
+package it loads <filename>secondpkg</filename>, and you need the second package to be
+loaded with option <literal>draft</literal>.  Then before doing the first package
+you must queue up the options for the second package, like this.
+</para>
+<screen>\PassOptionsToPackage{draft}{secondpkg}
+\RequirePackage{firstpkg}
+</screen>
+<para>(If <literal>firstpkg.sty</literal> loads an option in conflict with what you want
+then you may have to alter its source.)
+</para>
 <para>These commands are useful for general users as well as class and package
 writers.  For instance, suppose a user wants to load the <literal>graphicx</literal>
 package with the option <literal>draft</literal> and also wants to use a class
@@ -1238,7 +1297,6 @@
 the order of declaration in the class or package. For a package this
 means that the global options are processed first.
 </para>
-
 </listitem></varlistentry><varlistentry><term><literal>\ProvidesClass{<replaceable>class name</replaceable>}[<replaceable>release date</replaceable> <replaceable>brief additional information</replaceable>]</literal>
 </term></varlistentry><varlistentry><term><literal>\ProvidesClass{<replaceable>class name</replaceable>}[<replaceable>release date</replaceable>]</literal>
 </term></varlistentry><varlistentry><term><literal>\ProvidesPackage{<replaceable>package name</replaceable>}[<replaceable>release date</replaceable> <replaceable>brief additional information</replaceable>]</literal>
@@ -1245,13 +1303,13 @@
 </term></varlistentry><varlistentry><term><literal>\ProvidesPackage{<replaceable>package name</replaceable>}[<replaceable>release date</replaceable>]</literal>
 </term><listitem><indexterm role="fn"><primary>\ProvidesClass</primary></indexterm>
 <indexterm role="fn"><primary>\ProvidesPackage</primary></indexterm>
-<para>Identifies the class or package, printing a message to the screen and the log file.
+<para>Identifies the class or package, printing a message to the screen and
+the log file.
 </para>
-<para>When a user writes <literal>\documentclass{smcmemo}</literal> then &latex; loads
-the file <filename>smcmemo.cls</filename>.  Similarly, a user writing
-<literal>\usepackage{test}</literal> prompts &latex; to load the file
-<literal>test.sty</literal>.  If the name of the file does not match the declared
-class or package name then you get a warning.  Thus, if you invoke
+<para>When you load a class or package, for example with
+<literal>\documentclass{smcmemo}</literal> or <literal>\usepackage{test}</literal>, &latex;
+inputs a file.  If the name of the file does not match the class or
+package name declared in it then you get a warning.  Thus, if you invoke
 <literal>\documentclass{smcmemo}</literal>, and the file <filename>smcmemo.cls</filename> has
 the statement <literal>\ProvidesClass{xxx}</literal> then you get a warning like
 <literal>You have requested document class `smcmemo', but the document
@@ -1258,21 +1316,23 @@
 class provides 'xxx'.</literal>  This warning does not prevent &latex; from
 processing the rest of the class file normally.
 </para>
-<para>If you include the optional argument, then you must include the date, before
-the first space if any, and it must have the form <literal>YYYY/MM/DD</literal>. The rest
-of the optional argument is free-form, although it traditionally identifies
-the class, and is written to the screen during compilation and to the
-log file.  Thus, if your file <filename>smcmemo.cls</filename> contains the line
-<literal>\ProvidesClass{smcmemo}[2008/06/01 v1.0 SMC memo class]</literal> and your
-document’s first line is <literal>\documentclass{smcmemo}</literal> then you will
-see <literal>Document Class: smcmemo 2008/06/01 v1.0 SMC memo class</literal>.
+<para>If you include the optional argument then you must include a date,
+before any spaces, of the form <literal>YYYY/MM/DD</literal>. The rest of the
+optional argument is free-form, although it traditionally identifies the
+class, and is written to the screen during compilation and to the log
+file.  Thus, if your file <filename>smcmemo.cls</filename> contains the line
+<literal>\ProvidesClass{smcmemo}[2008/06/01 v1.0 SMC memo class]</literal> and
+your document’s first line is <literal>\documentclass{smcmemo}</literal> then you
+will see <literal>Document Class: smcmemo 2008/06/01 v1.0 SMC memo class</literal>.
 </para>
 <para>The date in the optional argument allows class and package users to ask
-to be warned if the version of the class or package installed on their
-system is earlier than <replaceable>release date</replaceable>, by using the optional arguments
-such as <literal>\documentclass{smcmemo}[2018/10/12]</literal> or
-<literal>\usepackage{foo}[[2017/07/07]]</literal>.  (Note that package users only
-rarely include a date, and class users almost never do.)
+to be warned if the version of the class or package is earlier than
+<replaceable>release date</replaceable>.  For instance, a user could enter
+<literal>\documentclass{smcmemo}[2018/10/12]</literal> or
+<literal>\usepackage{foo}[[2017/07/07]]</literal> to require a class or package
+with certain features by specifying that it must be released no earlier
+than the given date.  (Although, in practice package users only rarely
+include a date, and class users almost never do.)
 </para>
 </listitem></varlistentry><varlistentry><term><literal>\ProvidesFile{<replaceable>file name</replaceable>}[<replaceable>additional information</replaceable>]</literal>
 </term><listitem><indexterm role="fn"><primary>\ProvidesFile</primary></indexterm>
@@ -1287,11 +1347,11 @@
 </term></varlistentry><varlistentry><term><literal>\RequirePackageWithOptions{<replaceable>package name</replaceable>}[<replaceable>release date</replaceable>]</literal>
 </term><listitem><indexterm role="fn"><primary>\RequirePackage</primary></indexterm>
 <indexterm role="fn"><primary>\RequirePackageWithOptions</primary></indexterm>
-<para>Load a package, like the document author command <literal>\usepackage</literal>.
-See <link linkend="Additional-packages">Additional packages</link>. An example is
-<literal>\RequirePackage[landscape,margin=1in]{geometry}</literal>.  Note that the
-&latex; development team strongly recommends use of these commands over
-Plain &tex;’s <literal>\input</literal>; see the Class Guide.
+<para>Load a package, like the command <literal>\usepackage</literal> (see <link linkend="Additional-packages">Additional
+packages</link>). The &latex; development team strongly recommends use of
+these commands over Plain &tex;’s <literal>\input</literal>; see the Class
+Guide.  An example is
+<literal>\RequirePackage[landscape,margin=1in]{geometry}</literal>.
 </para>
 <para>The <replaceable>option list</replaceable>, if present, is a comma-separated list.  The
 <replaceable>release date</replaceable>, if present, must have the form <replaceable>YYYY/MM/DD</replaceable>.  If
@@ -1338,30 +1398,28 @@
 
 <para>The following type style commands are supported by &latex;.
 </para>
-<para>This first group of commands is typically used with an argument, as in
-<literal>\textit{<replaceable>text</replaceable>}</literal>.  In the table below, the corresponding
-command in parenthesis is the “declaration form”, which takes no
-arguments, as in <literal>{\itshape <replaceable>text</replaceable>}</literal>.  The scope of the
-declaration form lasts until the next type style command or the end of
-the current group.
+<para>In the table below the listed commands, the <literal>\text...</literal>  commands,
+is used with an argument, as in <literal>\textit{<replaceable>text</replaceable>}</literal>.  This is
+the preferred form.  But shown after it, in parenthesis, is the
+corresponding declaration form, which is sometimes useful.  This form
+takes no arguments, as in <literal>{\itshape <replaceable>text</replaceable>}</literal>.  The scope of
+the declaration form lasts until the next type style command or the end
+of the current group.  In addition, each has an environment form such as
+<literal>\begin{itshape}...\end{itshape}</literal>.
 </para>
-<para>These commands, in both the argument form and the declaration form,
-are cumulative; e.g., you can say either <literal>\sffamily\bfseries</literal> or
-<literal>\bfseries\sffamily</literal> to get bold sans serif.
+<para>These commands, in both the argument form and the declaration form, are
+cumulative; for instance you can get bold sans serif by saying either of
+<literal>\sffamily\bfseries</literal> or <literal>\bfseries\sffamily</literal>.
 </para>
-<para>You can alternatively use an environment form of the declarations; for
-instance, <literal>\begin{ttfamily}...\end{ttfamily}</literal>.
-</para>
 <indexterm role="fn"><primary>\nocorrlist</primary></indexterm>
 <indexterm role="fn"><primary>\nocorr</primary></indexterm>
-<para>These font-switching commands automatically insert italic corrections
-if needed.  (See <link linkend="_005c_002f">\/</link>, for the details of italic corrections.)
-Specifically, they insert the italic correction unless the following
-character is in the list <literal>\nocorrlist</literal>, which by default consists
-of a period and a comma.  To suppress the automatic insertion of
-italic correction, use <literal>\nocorr</literal> at the start or end of the
-command argument, such as <literal>\textit{\nocorr text}</literal> or
-<literal>\textsc{text \nocorr}</literal>.
+<para>One advantage of these commands is that they automatically insert italic
+corrections if needed (see <link linkend="_005c_002f">\/</link>).  Specifically, they insert the
+italic correction unless the following character is in the list
+<literal>\nocorrlist</literal>, which by default consists of a period and a comma.
+To suppress the automatic insertion of italic correction, use
+<literal>\nocorr</literal> at the start or end of the command argument, such as
+<literal>\textit{\nocorr text}</literal> or <literal>\textsc{text \nocorr}</literal>.
 </para>
 <variablelist><varlistentry><term><literal>\textrm (\rmfamily)</literal>
 </term><listitem><indexterm role="fn"><primary>\textrm</primary></indexterm>
@@ -1424,11 +1482,15 @@
 will be in roman.
 </para>
 <para>&latex; also provides the following commands, which unconditionally
-switch to the given style, that is, are <emphasis>not</emphasis> cumulative.  Also,
-they are used differently than the above commands:
-<literal>{\<replaceable>cmd</replaceable>...}</literal> instead of <literal>\<replaceable>cmd</replaceable>{...}</literal>.  These
-are two unrelated constructs.
+switch to the given style, that is, are <emphasis>not</emphasis> cumulative.  They are
+used as declarations: <literal>{\<replaceable>cmd</replaceable>...}</literal> instead of
+<literal>\<replaceable>cmd</replaceable>{...}</literal>.
 </para>
+<para>(The unconditional commands below are an older version of font
+switching. The earlier commands are an improvement in most
+circumstances. But sometimes an unconditional font switch is precisely
+what you want.)
+</para>
 <variablelist><varlistentry><term><indexterm role="fn"><primary>\bf</primary></indexterm><literal>\bf</literal>
 </term><listitem><indexterm role="cp"><primary>bold font</primary></indexterm>
 <para>Switch to bold face.
@@ -1468,13 +1530,6 @@
 </listitem></varlistentry></variablelist>
 <para>The <literal>\em</literal> command is the unconditional version of <literal>\emph</literal>.
 </para>
-<para>(Some people consider the unconditional font-switching commands, such
-as <literal>\tt</literal>, obsolete and that only the cumulative commands
-(<literal>\texttt</literal>) should be used.  Others think that both sets of
-commands have their place and sometimes an unconditional font switch
-is precisely what you want; for one example,
-see <link linkend="description"><literal>description</literal></link>.)
-</para>
 <para>The following commands are for use in math mode.  They are not
 cumulative, so <literal>\mathbf{\mathit{<replaceable>symbol</replaceable>}}</literal> does not
 create a boldface and italic <replaceable>symbol</replaceable>; instead, it will just be in
@@ -1561,7 +1616,7 @@
 <indexterm role="fn"><primary>\huge</primary></indexterm>
 <indexterm role="fn"><primary>\Huge</primary></indexterm>
 
-<informaltable><tgroup cols="4"><colspec colwidth="21*"></colspec><colspec colwidth="5*"></colspec><colspec colwidth="5*"></colspec><colspec colwidth="5*"></colspec><thead><row><entry><para>Command  </para></entry><entry><para><literal>10pt</literal>  </para></entry><entry><para><literal>11pt</literal>  </para></entry><entry><para><literal>12pt</literal>
+<informaltable><tgroup cols="4"><colspec colwidth="23*"></colspec><colspec colwidth="7*"></colspec><colspec colwidth="7*"></colspec><colspec colwidth="5*"></colspec><thead><row><entry><para>Command  </para></entry><entry><para><literal>10pt</literal>  </para></entry><entry><para><literal>11pt</literal>  </para></entry><entry><para><literal>12pt</literal>
 </para></entry></row></thead><tbody><row><entry><para><literal>\tiny</literal>
 </para></entry><entry><para>5          </para></entry><entry><para>6          </para></entry><entry><para>6
 </para></entry></row><row><entry><para><literal>\scriptsize</literal>
@@ -1583,11 +1638,20 @@
 </para></entry></row><row><entry><para><literal>\Huge</literal>
 </para></entry><entry><para>24.88      </para></entry><entry><para>24.88      </para></entry><entry><para>24.88
 </para></entry></row></tbody></tgroup></informaltable>
-<para>The commands as listed here are “declaration forms”. The scope of
-the declaration form lasts until the next type style command or the
-end of the current group.  You can also use the environment form of
-these commands; for instance, <literal>\begin{tiny}...\end{tiny}</literal>.
+<para>The commands are listed here in declaration forms. You use them by
+declaring them, as with this example.
 </para>
+<screen>\begin{quotation} \small
+  The Tao that can be named is not the eternal Tao.
+\end{quotation}
+</screen>
+<para>The scope of the <literal>\small</literal> lasts until the end of the
+<literal>quotation</literal> environment.  It would also end at the next type style
+command or the end of the current group, so you could enclose it in
+extra curly braces <literal>{\small We are here, we are here, we are
+here!}</literal>.  You can instead use the environment form of these commands;
+for instance, <literal>\begin{tiny}...\end{tiny}</literal>.
+</para>
 
 </sect1>
 <sect1 label="4.3" id="Low_002dlevel-font-commands">
@@ -1602,7 +1666,7 @@
 <!-- xx but it should be complete -->
 <!-- xx something about ultimately reading ENCFAM.fd? -->
 </para>
-<variablelist><varlistentry><term><literal>\fontencoding{<replaceable>encoding</replaceable>}</literal>
+<variablelist><anchor id="low-level-font-commands-fontencoding"/><varlistentry><term><literal>\fontencoding{<replaceable>encoding</replaceable>}</literal>
 </term><listitem><indexterm role="fn"><primary>\fontencoding</primary></indexterm>
 <para>Select the font encoding, the encoding of the output font. There are a
 large number of valid encodings.  The most common are <literal>OT1</literal>,
@@ -1613,7 +1677,7 @@
 hyphenate words containing accented letters. For more, see
 <ulink url="https://ctan.org/pkg/encguide">https://ctan.org/pkg/encguide</ulink>.
 </para>
-</listitem></varlistentry><varlistentry><term><literal>\fontfamily{<replaceable>family</replaceable>}</literal>
+<anchor id="low-level-font-commands-fontfamily"/></listitem></varlistentry><varlistentry><term><literal>\fontfamily{<replaceable>family</replaceable>}</literal>
 </term><listitem><indexterm role="fn"><primary>\fontfamily</primary></indexterm>
 <indexterm role="cp"><primary>families, of fonts</primary></indexterm>
 <indexterm role="cp"><primary>font catalogue</primary></indexterm>
@@ -1620,9 +1684,9 @@
 <para>Select the font family.  The web page
 <ulink url="http://www.tug.dk/FontCatalogue/">http://www.tug.dk/FontCatalogue/</ulink> provides one way to browse
 through many of the fonts easily used with &latex;.  Here are
-examples of some common families:
+examples of some common families.
 </para>
-<informaltable><tgroup cols="2"><colspec colwidth="4*"></colspec><colspec colwidth="31*"></colspec><tbody><row><entry><para><literal>pag</literal>
+<informaltable><tgroup cols="2"><colspec colwidth="4*"></colspec><colspec colwidth="37*"></colspec><tbody><row><entry><para><literal>pag</literal>
 </para></entry><entry><para>Avant Garde
 </para></entry></row><row><entry><para><literal>fvs</literal>
 </para></entry><entry><para>Bitstream Vera Sans
@@ -1664,7 +1728,7 @@
 </para></entry><entry><para>Zapf Chancery
 </para></entry></row></tbody></tgroup></informaltable>
 
-</listitem></varlistentry><varlistentry><term><literal>\fontseries{<replaceable>series</replaceable>}</literal>
+<anchor id="low-level-font-commands-fontseries"/></listitem></varlistentry><varlistentry><term><literal>\fontseries{<replaceable>series</replaceable>}</literal>
 </term><listitem><indexterm role="fn"><primary>\fontseries</primary></indexterm>
 <indexterm role="cp"><primary>series, of fonts</primary></indexterm>
 <para>Select the font series.  A <firstterm>series</firstterm> combines a <firstterm>weight</firstterm> and a
@@ -1708,7 +1772,6 @@
 <para>The possible values for width, individually, are (the meaning and
 relationship of these terms varies with individual typefaces):
 </para>
-
 <informaltable><tgroup cols="2"><colspec colwidth="2*"></colspec><colspec colwidth="15*"></colspec><tbody><row><entry><para><literal>uc</literal>
 </para></entry><entry><para>Ultra condensed
 </para></entry></row><row><entry><para><literal>ec</literal>
@@ -1728,7 +1791,6 @@
 </para></entry></row><row><entry><para><literal>ux</literal>
 </para></entry><entry><para>Ultra expanded
 </para></entry></row></tbody></tgroup></informaltable>
-
 <para>When forming the <replaceable>series</replaceable> string from the weight and width, drop the
 <literal>m</literal> that stands for medium weight or medium width, unless both
 weight and width are <literal>m</literal>, in which case use just one
@@ -1737,7 +1799,7 @@
 </listitem></varlistentry><varlistentry><term><literal>\fontshape{<replaceable>shape</replaceable>}</literal>
 </term><listitem><indexterm role="fn"><primary>\fontshape</primary></indexterm>
 <indexterm role="cp"><primary>shapes, of fonts</primary></indexterm>
-<para>Select font shape. Valid shapes are:
+<anchor id="low-level-font-commands-fontshape"/><para>Select font shape. Valid shapes are:
 </para>
 <informaltable><tgroup cols="2"><colspec colwidth="2*"></colspec><colspec colwidth="19*"></colspec><tbody><row><entry><para><literal>n</literal>
 </para></entry><entry><para>Upright (normal)
@@ -1752,11 +1814,10 @@
 </para></entry></row><row><entry><para><literal>ol</literal>
 </para></entry><entry><para>Outline
 </para></entry></row></tbody></tgroup></informaltable>
-
 <para>The two last shapes are not available for most font families, and
 small caps are often missing as well.
 </para>
-</listitem></varlistentry><varlistentry><term><literal>\fontsize{<replaceable>size</replaceable>}{<replaceable>skip</replaceable>}</literal>
+<anchor id="low-level-font-commands-fontsize"/></listitem></varlistentry><varlistentry><term><literal>\fontsize{<replaceable>size</replaceable>}{<replaceable>skip</replaceable>}</literal>
 </term><listitem><indexterm role="fn"><primary>\fontsize</primary></indexterm>
 <indexterm role="cp"><primary>font size</primary></indexterm>
 <indexterm role="fn"><primary>\baselineskip</primary></indexterm>
@@ -1768,7 +1829,7 @@
 Changing <literal>\baselineskip</literal> directly is inadvisable since its value is
 reset every time a size change happens; see <literal>\baselinestretch</literal>, next.
 </para>
-</listitem></varlistentry><varlistentry><term><literal>\baselinestretch</literal>
+<anchor id="low-level-font-commands-baselinestretch"/></listitem></varlistentry><varlistentry><term><literal>\baselinestretch</literal>
 </term><listitem><indexterm role="fn"><primary>\baselinestretch</primary></indexterm>
 <para>&latex; multiplies the line spacing by the value of the
 <literal>\baselinestretch</literal> parameter; the default factor is 1.  A change
@@ -1787,7 +1848,7 @@
 where that is typically desirable, such as footnotes and figure
 captions.  See the package documentation.
 </para>
-</listitem></varlistentry><varlistentry><term><literal>\linespread{<replaceable>factor</replaceable>}</literal>
+<anchor id="low-level-font-commands-linespread"/></listitem></varlistentry><varlistentry><term><literal>\linespread{<replaceable>factor</replaceable>}</literal>
 </term><listitem><indexterm role="fn"><primary>\linespread</primary></indexterm>
 <para>Equivalent to
 <literal>\renewcommand{\baselinestretch}{<replaceable>factor</replaceable>}</literal>, and
@@ -1795,7 +1856,7 @@
 Best specified in the preamble, or use the <literal>setspace</literal> package, as
 just described.
 </para>
-</listitem></varlistentry><varlistentry><term><literal>\selectfont</literal>
+<anchor id="low-level-font-commands-selectfont"/></listitem></varlistentry><varlistentry><term><literal>\selectfont</literal>
 </term><listitem><indexterm role="fn"><primary>\selectfont</primary></indexterm>
 <para>The effects of the font commands described above do not happen until
 <literal>\selectfont</literal> is called, as in
@@ -1806,7 +1867,7 @@
 
 (see <link linkend="_005cnewcommand-_0026-_005crenewcommand">\newcommand & \renewcommand</link>).
 </para>
-</listitem></varlistentry><varlistentry><term><literal>\usefont{<replaceable>enc</replaceable>}{<replaceable>family</replaceable>}{<replaceable>series</replaceable>}{<replaceable>shape</replaceable>}</literal>
+<anchor id="low-level-font-commands-usefont"/></listitem></varlistentry><varlistentry><term><literal>\usefont{<replaceable>enc</replaceable>}{<replaceable>family</replaceable>}{<replaceable>series</replaceable>}{<replaceable>shape</replaceable>}</literal>
 </term><listitem><indexterm role="fn"><primary>\usefont</primary></indexterm>
 <para>The same as invoking <literal>\fontencoding</literal>, <literal>\fontfamily</literal>,
 <literal>\fontseries</literal> and <literal>\fontshape</literal> with the given parameters,
@@ -1833,12 +1894,15 @@
 <indexterm role="fn"><primary>\onecolumn</primary></indexterm>
 <indexterm role="cp"><primary>one-column output</primary></indexterm>
 
+<para>Synopsis:
+</para>
+<screen>\onecolumn
+</screen>
 <para>Start a new page and produce single-column output.  If the document is
 given the class option <literal>onecolumn</literal> then this is the default
-behavior (see <link linkend="Document-class-options">Document class options</link>).
+behavior (see <link linkend="Document-class-options">Document class options</link>).  This command is fragile
+(see <link linkend="_005cprotect">\protect</link>).
 </para>
-<para>This command is fragile (see <link linkend="_005cprotect">\protect</link>).
-</para>
 
 </sect1>
 <sect1 label="5.2" id="_005ctwocolumn">
@@ -1855,24 +1919,23 @@
 </screen>
 <para>Start a new page and produce two-column output. If the document is given
 the class option <literal>twocolumn</literal> then this is the default
-(see <link linkend="Document-class-options">Document class options</link>).
+(see <link linkend="Document-class-options">Document class options</link>).  This command is fragile
+(see <link linkend="_005cprotect">\protect</link>).
 </para>
 <para>If the optional <replaceable>prelim one column text</replaceable> argument
 is present, it is typeset in one-column mode before the two-column
 typesetting starts.
 </para>
-<para>This command is fragile (see <link linkend="_005cprotect">\protect</link>).
-</para>
 <para>These parameters control typesetting in two-column output:
 </para>
 <variablelist><varlistentry><term><indexterm role="fn"><primary>\columnsep</primary></indexterm><literal>\columnsep</literal>
-</term><listitem><para>The distance between columns. The default is 35pt.  Change it with a
+</term><listitem><anchor id="twocolumn-columnsep"/><para>The distance between columns. The default is 35pt.  Change it with a
 command such as <literal>\setlength{\columnsep}{40pt}</literal> You must change
 it before the two column environment starts; in the preamble is a good
 place.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\columnseprule</primary></indexterm><literal>\columnseprule</literal>
-</term><listitem><para>The width of the rule between columns. The rule appears halfway between
+</term><listitem><anchor id="twocolumn-columnseprule"/><para>The width of the rule between columns. The rule appears halfway between
 the two columns.  The default is 0pt, meaning that there is no rule.
 Change it with a command such as
 <literal>\setlength{\columnseprule}{0.4pt}</literal>, before the two-column
@@ -1879,7 +1942,7 @@
 environment starts.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\columnwidth</primary></indexterm><literal>\columnwidth</literal>
-</term><listitem><para>The width of a single column.  In one-column mode this is equal to
+</term><listitem><anchor id="twocolumn-columnwidth"/><para>The width of a single column.  In one-column mode this is equal to
 <literal>\textwidth</literal>.  In two-column mode by default &latex; sets the
 width of each of the two columns to be half of <literal>\textwidth</literal> minus
 <literal>\columnsep</literal>.
@@ -1891,7 +1954,7 @@
 and see <link linkend="table">table</link>). &latex; places starred floats at the top of a page.
 The following parameters control float behavior of two-column output.
 </para>
-<variablelist><varlistentry><term><indexterm role="fn"><primary>\dbltopfraction</primary></indexterm><literal>\dbltopfraction</literal>
+<variablelist><anchor id="twocolumn-dbltopfraction"/><varlistentry><term><indexterm role="fn"><primary>\dbltopfraction</primary></indexterm><literal>\dbltopfraction</literal>
 </term><listitem><para>The maximum fraction at the top of a two-column page that may be
 occupied by two-column wide floats.  The default is 0.7, meaning that
 the height of a <literal>table*</literal> or <literal>figure*</literal> environment must not
@@ -1908,15 +1971,15 @@
 </listitem><listitem><para>Increase the value of <literal>\dbltopfraction</literal> to a suitably large number,
 to avoid going to float pages so soon.
 </para></listitem></itemizedlist>
-<para>You can redefine it, for instance with
+<para>You can redefine it, as with
 <literal>\renewcommand{\dbltopfraction}{0.9}</literal>.
 </para>
-</listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\dblfloatpagefraction</primary></indexterm><literal>\dblfloatpagefraction</literal>
+<anchor id="twocolumn-dblfloatpagefraction"/></listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\dblfloatpagefraction</primary></indexterm><literal>\dblfloatpagefraction</literal>
 </term><listitem><para>For a float page of two-column wide floats, this is the minimum fraction
 that must be occupied by floats, limiting the amount of blank space.
 &latex;’s default is <literal>0.5</literal>.  Change it with <literal>\renewcommand</literal>.
 </para>
-</listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\dblfloatsep</primary></indexterm><literal>\dblfloatsep</literal>
+<anchor id="twocolumn-dblfloatsep"/></listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\dblfloatsep</primary></indexterm><literal>\dblfloatsep</literal>
 </term><listitem><para>On a float page of two-column wide floats, this length is the distance
 between floats, at both the top and bottom of the page.  The default is
 <literal>12pt plus2pt minus2pt</literal> for a document set at <literal>10pt</literal> or
@@ -1923,12 +1986,12 @@
 <literal>11pt</literal>, and <literal>14pt plus2pt minus4pt</literal> for a document set at
 <literal>12pt</literal>.
 </para>
-</listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\dbltextfloatsep</primary></indexterm><literal>\dbltextfloatsep</literal>
+<anchor id="twocolumn-dbltextfloatsep"/></listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\dbltextfloatsep</primary></indexterm><literal>\dbltextfloatsep</literal>
 </term><listitem><para>This length is the distance between a multi-column float at the top or
 bottom of a page and the main text.  The default is <literal>20pt plus2pt
 minus4pt</literal>.
 </para>
-</listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\dbltopnumber</primary></indexterm><literal>\dbltopnumber</literal>
+<anchor id="twocolumn-dbltopnumber"/></listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\dbltopnumber</primary></indexterm><literal>\dbltopnumber</literal>
 </term><listitem><para>On a float page of two-column wide floats, this counter gives the
 maximum number of floats allowed at the top of the page.  The &latex;
 default is <literal>2</literal>.
@@ -2015,7 +2078,7 @@
 </term><listitem><indexterm role="fn"><primary>\columnsep</primary></indexterm>
 <indexterm role="fn"><primary>\columnseprule</primary></indexterm>
 <indexterm role="fn"><primary>\columnwidth</primary></indexterm>
-<para>The distance between the two columns, the width of a rule between the
+<anchor id="page-layout-parameters-columnsep"/><anchor id="page-layout-parameters-columnseprule"/><anchor id="page-layout-parameters-columnwidth"/><para>The distance between the two columns, the width of a rule between the
 columns, and the width of the columns, when the document class option
 <literal>twocolumn</literal> is in effect (see <link linkend="Document-class-options">Document class options</link>).
 See <link linkend="_005ctwocolumn">\twocolumn</link>.
@@ -2022,13 +2085,13 @@
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\headheight</primary></indexterm><literal>\headheight</literal>
 </term><listitem><indexterm role="fn"><primary>\headheight</primary></indexterm>
-<para>Height of the box that contains the running head.  The default in the
+<anchor id="page-layout-parameters-headheight"/><para>Height of the box that contains the running head.  The default in the
 <literal>article</literal>, <literal>report</literal>, and <literal>book</literal> classes is ‘<literal>12pt</literal>’,
 at all type sizes.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\headsep</primary></indexterm><literal>\headsep</literal>
 </term><listitem><indexterm role="fn"><primary>\headsep</primary></indexterm>
-<para>Vertical distance between the bottom of the header line and the top of
+<anchor id="page-layout-parameters-headsep"/><para>Vertical distance between the bottom of the header line and the top of
 the main text.  The default in the <literal>article</literal> and <literal>report</literal>
 classes is ‘<literal>25pt</literal>’.  In the <literal>book</literal> class the default is: if the
 document is set at 10pt then it is ‘<literal>0.25in</literal>’, and at 11pt and 12pt
@@ -2036,7 +2099,7 @@
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\footskip</primary></indexterm><literal>\footskip</literal>
 </term><listitem><indexterm role="fn"><primary>\footskip</primary></indexterm>
-<para>Distance from the baseline of the last line of text to the baseline of
+<anchor id="page-layout-parameters-footskip"/><para>Distance from the baseline of the last line of text to the baseline of
 the page footer.  The default in the <literal>article</literal> and <literal>report</literal>
 classes is ‘<literal>30pt</literal>’.  In the <literal>book</literal> class the default is: when
 the type size is 10pt the default is ‘<literal>0.35in</literal>’, while at 11pt it is
@@ -2044,7 +2107,7 @@
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\linewidth</primary></indexterm><literal>\linewidth</literal>
 </term><listitem><indexterm role="fn"><primary>\linewidth</primary></indexterm>
-<para>Width of the current line, decreased for each nested <literal>list</literal>
+<anchor id="page-layout-parameters-linewidth"/><para>Width of the current line, decreased for each nested <literal>list</literal>
 (see <link linkend="list">list</link>).  That is, the nominal value for <literal>\linewidth</literal> is to
 equal <literal>\textwidth</literal> but for each nested list the <literal>\linewidth</literal>
 is decreased by the sum of that list’s <literal>\leftmargin</literal> and
@@ -2059,7 +2122,7 @@
 </term><listitem><indexterm role="fn"><primary>\marginparpush</primary></indexterm>
 <indexterm role="fn"><primary>\marginsep</primary></indexterm>
 <indexterm role="fn"><primary>\marginparwidth</primary></indexterm>
-<para>The minimum vertical space between two marginal notes, the horizontal
+<anchor id="page-layout-parameters-marginparpush"/><anchor id="page-layout-parameters-marginsep"/><anchor id="page-layout-parameters-marginparwidth"/><para>The minimum vertical space between two marginal notes, the horizontal
 space between the text body and the marginal notes, and the horizontal
 width of the notes.
 </para>
@@ -2087,7 +2150,7 @@
 </term><term><indexterm role="fn"><primary>\evensidemargin</primary></indexterm><literal>\evensidemargin</literal>
 </term><listitem><indexterm role="fn"><primary>\oddsidemargin</primary></indexterm>
 <indexterm role="fn"><primary>\evensidemargin</primary></indexterm>
-<para>The <literal>\oddsidemargin</literal> is the extra distance between the left side of
+<anchor id="page-layout-parameters-oddsidemargin"/><anchor id="page-layout-parameters-evensidemargin"/><para>The <literal>\oddsidemargin</literal> is the extra distance between the left side of
 the page and the text’s left margin, on odd-numbered pages when the
 document class option <literal>twoside</literal> is chosen and on all pages when
 <literal>oneside</literal> is in effect.  When <literal>twoside</literal> is in effect, on
@@ -2100,21 +2163,21 @@
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\paperheight</primary></indexterm><literal>\paperheight</literal>
 </term><listitem><indexterm role="fn"><primary>\paperheight</primary></indexterm>
-<para>The height of the paper, as distinct from the height of the print area.
-It is normally set with a document class option, as in
+<anchor id="page-layout-parameters-paperheight"/><para>The height of the paper, as distinct from the height of the print area.
+Normally set with a document class option, as in
 <literal>\documentclass[a4paper]{article}</literal> (see <link linkend="Document-class-options">Document class
 options</link>).
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\paperwidth</primary></indexterm><literal>\paperwidth</literal>
 </term><listitem><indexterm role="fn"><primary>\paperwidth</primary></indexterm>
-<para>The width of the paper, as distinct from the width of the print area.
-It is normally set with a document class option, as in
+<anchor id="page-layout-parameters-paperwidth"/><para>The width of the paper, as distinct from the width of the print area.
+Normally set with a document class option, as in
 <literal>\documentclass[a4paper]{article}</literal> (see <link linkend="Document-class-options">Document class
 options</link>).
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\textheight</primary></indexterm><literal>\textheight</literal>
 </term><listitem><indexterm role="fn"><primary>\textheight</primary></indexterm>
-<para>The normal vertical height of the page body.  If the document is set at
+<anchor id="page-layout-parameters-textheight"/><para>The normal vertical height of the page body.  If the document is set at
 a nominal type size of 10pt then for an <literal>article</literal> or <literal>report</literal>
 the default is ‘<literal>43\baselineskip</literal>’, while for a <literal>book</literal> it is
 ‘<literal>41\baselineskip</literal>’.  At a type size of 11pt the default is
@@ -2123,7 +2186,7 @@
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\textwidth</primary></indexterm><literal>\textwidth</literal>
 </term><listitem><indexterm role="fn"><primary>\textwidth</primary></indexterm>
-<para>The full horizontal width of the entire page body.  For an
+<anchor id="page-layout-parameters-textwidth"/><para>The full horizontal width of the entire page body.  For an
 <literal>article</literal> or <literal>report</literal> document, the default is ‘<literal>345pt</literal>’
 when the chosen type size is 10pt, the default is ‘<literal>360pt</literal>’ at 11pt,
 and it is ‘<literal>390pt</literal>’ at 12pt.  For a <literal>book</literal> document, the default
@@ -2143,14 +2206,14 @@
 <literal>minipage</literal> or <literal>\parbox</literal>.
 </para>
 <indexterm role="fn"><primary>\hsize</primary></indexterm>
-<indexterm role="fn"><primary>\hsize</primary></indexterm>
-<para>This entry is included for completeness: <literal>\hsize</literal> is the &tex;
+<anchor id="page-layout-parameters-hsize"/></listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\hsize</primary></indexterm><literal>\hsize</literal>
+</term><listitem><para>This entry is included for completeness: <literal>\hsize</literal> is the &tex;
 primitive parameter used when text is broken into lines.  It should not
 be used in normal &latex; documents.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\topmargin</primary></indexterm><literal>\topmargin</literal>
 </term><listitem><indexterm role="fn"><primary>topmargin</primary></indexterm>
-<para>Space between the top of the &tex; page (one inch from the top of the
+<anchor id="page-layout-parameters-topmargin"/><para>Space between the top of the &tex; page (one inch from the top of the
 paper, by default) and the top of the header.  The value is computed
 based on many other parameters: <literal>\paperheight − 2in −
 \headheight − \headsep − \textheight − \footskip</literal>,
@@ -2158,7 +2221,7 @@
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\topskip</primary></indexterm><literal>\topskip</literal>
 </term><listitem><indexterm role="fn"><primary>\topskip</primary></indexterm>
-<para>Minimum distance between the top of the page body and the baseline of
+<anchor id="page-layout-parameters-topskip"/><para>Minimum distance between the top of the page body and the baseline of
 the first line of text.  For the standard classes, the default is the
 same as the font size, e.g., ‘<literal>10pt</literal>’ at a type size of 10pt.
 </para>
@@ -2272,65 +2335,67 @@
 </para>
 <variablelist><varlistentry><term><indexterm role="fn"><primary>\bottomfraction</primary></indexterm><literal>\bottomfraction</literal>
 </term><listitem><indexterm role="fn"><primary>\bottomfraction</primary></indexterm>
-<para>The maximum fraction of the page allowed to be occupied by floats at
+<anchor id="floats-bottomfraction"/><para>The maximum fraction of the page allowed to be occupied by floats at
 the bottom; default ‘<literal>.3</literal>’.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\floatpagefraction</primary></indexterm><literal>\floatpagefraction</literal>
 </term><listitem><indexterm role="fn"><primary>\floatpagefraction</primary></indexterm>
-<para>The minimum fraction of a float page that must be occupied by floats;
+<anchor id="floats-floatpagefraction"/><para>The minimum fraction of a float page that must be occupied by floats;
 default ‘<literal>.5</literal>’.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\textfraction</primary></indexterm><literal>\textfraction</literal>
 </term><listitem><indexterm role="fn"><primary>\textfraction</primary></indexterm>
-<para>Minimum fraction of a page that must be text; if floats take up too
+<anchor id="floats-textfraction"/><para>Minimum fraction of a page that must be text; if floats take up too
 much space to preserve this much text, floats will be moved to a
 different page.  The default is ‘<literal>.2</literal>’.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\topfraction</primary></indexterm><literal>\topfraction</literal>
 </term><listitem><indexterm role="fn"><primary>\topfraction</primary></indexterm>
-<para>Maximum fraction at the top of a page that may be occupied before
+<anchor id="floats-topfraction"/><para>Maximum fraction at the top of a page that may be occupied before
 floats; default ‘<literal>.7</literal>’.
 </para></listitem></varlistentry></variablelist>
-<para>Parameters relating to vertical space around floats (change them with
-<literal>\setlength{<replaceable>parameter</replaceable>}{<replaceable>length expression</replaceable>}</literal>):
+<para>Parameters relating to vertical space around floats (change them with a
+command of the form <literal>\setlength{<replaceable>parameter</replaceable>}{<replaceable>length
+expression</replaceable>}</literal>):
 </para>
 <variablelist><varlistentry><term><indexterm role="fn"><primary>\floatsep</primary></indexterm><literal>\floatsep</literal>
 </term><listitem><indexterm role="fn"><primary>\floatsep</primary></indexterm>
-<para>Space between floats at the top or bottom of a page; default
+<anchor id="floats-floatsep"/><para>Space between floats at the top or bottom of a page; default
 ‘<literal>12pt plus2pt minus2pt</literal>’.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\intextsep</primary></indexterm><literal>\intextsep</literal>
 </term><listitem><indexterm role="fn"><primary>\intextsep</primary></indexterm>
-<para>Space above and below a float in the middle of the main text; default
+<anchor id="floats-intextsep"/><para>Space above and below a float in the middle of the main text; default
 ‘<literal>12pt plus2pt minus2pt</literal>’ for 10 point and 11 point documents,
 and ‘<literal>14pt plus4pt minus4pt</literal>’ for 12 point documents.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\textfloatsep</primary></indexterm><literal>\textfloatsep</literal>
 </term><listitem><indexterm role="fn"><primary>\textfloatsep</primary></indexterm>
-<para>Space between the last (first) float at the top (bottom) of a page;
+<anchor id="floats-textfloatsep"/><para>Space between the last (first) float at the top (bottom) of a page;
 default ‘<literal>20pt plus2pt minus4pt</literal>’.
 </para></listitem></varlistentry></variablelist>
-<para>Counters relating to the number of floats on a page (change them with
-<literal>\setcounter{<replaceable>ctrname</replaceable>}{<replaceable>natural number</replaceable>}</literal>):
+<para>Counters relating to the number of floats on a page (change them with a
+command of the form <literal>\setcounter{<replaceable>ctrname</replaceable>}{<replaceable>natural
+number</replaceable>}</literal>):
 </para>
 <variablelist><varlistentry><term><indexterm role="fn"><primary>bottomnumber</primary></indexterm><literal>bottomnumber</literal>
 </term><listitem><indexterm role="fn"><primary>bottomnumber</primary></indexterm>
-<para>Maximum number of floats that can appear at the bottom of a text page;
+<anchor id="floats-bottomnumber"/><para>Maximum number of floats that can appear at the bottom of a text page;
 default 1.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>dbltopnumber</primary></indexterm><literal>dbltopnumber</literal>
 </term><listitem><indexterm role="fn"><primary>dbltopnumber</primary></indexterm>
-<para>Maximum number of full-sized floats that can appear at the top of a
+<anchor id="floats-dbltopnumber"/><para>Maximum number of full-sized floats that can appear at the top of a
 two-column page; default 2.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>topnumber</primary></indexterm><literal>topnumber</literal>
 </term><listitem><indexterm role="fn"><primary>topnumber</primary></indexterm>
-<para>Maximum number of floats that can appear at the top of a text page;
+<anchor id="floats-topnumber"/><para>Maximum number of floats that can appear at the top of a text page;
 default 2.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>totalnumber</primary></indexterm><literal>totalnumber</literal>
 </term><listitem><indexterm role="fn"><primary>totalnumber</primary></indexterm>
-<para>Maximum number of floats that can appear on a text page; default 3.
+<anchor id="floats-totalnumber"/><para>Maximum number of floats that can appear on a text page; default 3.
 </para></listitem></varlistentry></variablelist>
 <para>The principal &tex; FAQ entry relating to floats
 <ulink url="http://www.tex.ac.uk/cgi-bin/texfaq2html?label=floats">http://www.tex.ac.uk/cgi-bin/texfaq2html?label=floats</ulink> contains
@@ -2348,67 +2413,624 @@
 <title>Sectioning</title>
 
 <indexterm role="cp"><primary>sectioning commands</primary></indexterm>
+<indexterm role="cp"><primary>part</primary></indexterm>
+<indexterm role="cp"><primary>chapter</primary></indexterm>
+<indexterm role="cp"><primary>section</primary></indexterm>
+<indexterm role="cp"><primary>subsection</primary></indexterm>
+<indexterm role="cp"><primary>paragraph</primary></indexterm>
+<indexterm role="cp"><primary>subparagraph</primary></indexterm>
+<indexterm role="fn"><primary>\part</primary></indexterm>
+<indexterm role="fn"><primary>\chapter</primary></indexterm>
+<indexterm role="fn"><primary>\section</primary></indexterm>
+<indexterm role="fn"><primary>\subsection</primary></indexterm>
+<indexterm role="fn"><primary>\paragraph</primary></indexterm>
+<indexterm role="fn"><primary>\subparagraph</primary></indexterm>
 
-<para>Sectioning commands provide the means to structure your text into units:
+<para>Structure your text into divisions: parts, chapters, sections, etc.  All
+sectioning commands have the same form, one of:
 </para>
-<variablelist><varlistentry><term><indexterm role="fn"><primary>\part</primary></indexterm><literal>\part</literal>
-</term></varlistentry><varlistentry><term><indexterm role="fn"><primary>\chapter</primary></indexterm><literal>\chapter</literal>
-</term><listitem><para>(<literal>report</literal> and <literal>book</literal> class only)
-</para></listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\section</primary></indexterm><literal>\section</literal>
-</term></varlistentry><varlistentry><term><indexterm role="fn"><primary>\subsection</primary></indexterm><literal>\subsection</literal>
-</term></varlistentry><varlistentry><term><indexterm role="fn"><primary>\subsubsection</primary></indexterm><literal>\subsubsection</literal>
-</term></varlistentry><varlistentry><term><indexterm role="fn"><primary>\paragraph</primary></indexterm><literal>\paragraph</literal>
-</term></varlistentry><varlistentry><term><indexterm role="fn"><primary>\subparagraph</primary></indexterm><literal>\subparagraph</literal>
-</term></varlistentry></variablelist>
-<para>All sectioning commands take the same general form, e.g.,
-</para>
-<screen>\chapter[<replaceable>toctitle</replaceable>]{<replaceable>title</replaceable>}
+<screen><replaceable>sectioning-command</replaceable>{<replaceable>title</replaceable>}
+<replaceable>sectioning-command</replaceable>*{<replaceable>title</replaceable>}
+<replaceable>sectioning-command</replaceable>[<replaceable>toc-title</replaceable>]{<replaceable>title</replaceable>}
 </screen>
-<para>In addition to providing the heading <replaceable>title</replaceable> in the main text, the
-section title can appear in two other places:
+<para>For instance, declare the start of a subsection as with
+<literal>\subsection{Motivation}</literal>.
 </para>
-<orderedlist numeration="arabic"><listitem><para>The table of contents.
-</para></listitem><listitem><para>The running head at the top of the page.
-</para></listitem></orderedlist>
-<para>You may not want the same text in these places as in the main text.
-To handle this, the sectioning commands have an optional argument
-<replaceable>toctitle</replaceable> that, when given, specifies the text for these other
-places.
+<para>The table has each <replaceable>sectioning-command</replaceable> in &latex;.  All are
+available in all of &latex;’s standard document classes <literal>book</literal>,
+<literal>report</literal>, and <literal>article</literal>, except that <literal>\chapter</literal> is
+not available in <literal>article</literal>.
 </para>
+<informaltable><tgroup cols="3"><colspec colwidth="25*"></colspec><colspec colwidth="25*"></colspec><colspec colwidth="40*"></colspec><thead><row><entry><para>Sectioning unit  </para></entry><entry><para>Command  </para></entry><entry><para>Level 
+</para></entry></row></thead><tbody><row><entry><para>Part
+</para></entry><entry><para><literal>\part</literal>  </para></entry><entry><para>-1 (<literal>book</literal>, <literal>report</literal>), 0 (<literal>article</literal>)
+</para></entry></row><row><entry><para>Chapter
+</para></entry><entry><para><literal>\chapter</literal>   </para></entry><entry><para>0
+</para></entry></row><row><entry><para>Section
+</para></entry><entry><para><literal>\section</literal>   </para></entry><entry><para>1 
+</para></entry></row><row><entry><para>Subsection
+</para></entry><entry><para><literal>\subsection</literal>   </para></entry><entry><para>2 
+</para></entry></row><row><entry><para>Subsubsection
+</para></entry><entry><para><literal>\subsubsection</literal>   </para></entry><entry><para>3  
+</para></entry></row><row><entry><para>Paragraph
+</para></entry><entry><para><literal>\paragraph</literal>   </para></entry><entry><para>4  
+</para></entry></row><row><entry><para>Subparagraph
+</para></entry><entry><para><literal>\subparagraph</literal>   </para></entry><entry><para>5  
+</para></entry></row></tbody></tgroup></informaltable>
 <indexterm role="cp"><primary><literal>*</literal>-form of sectioning commands</primary></indexterm>
-<para>Also, all sectioning commands have <literal>*</literal>-forms that print
-<replaceable>title</replaceable> as usual, but do not include a number and do not make an
-entry in the table of contents.  For instance:
+<para>All these commands have a <literal>*</literal>-form that prints <replaceable>title</replaceable> as usual
+but is not numbered and does not make an entry in the table of contents.
+An example of using this is for an appendix in an <literal>article</literal> .  The
+input <literal>\appendix\section{Appendix}</literal> gives the output ‘<literal>A
+Appendix</literal>’ (see <link linkend="_005cappendix">\appendix</link>).  You can lose the numbering ‘<literal>A</literal>’
+by instead entering <literal>\section*{Appendix}</literal> (articles often omit a
+table of contents and have simple page headers so the other differences
+from the <literal>\section</literal> command may not matter).
 </para>
-<screen>\section*{Preamble}
+<para>The section title <replaceable>title</replaceable> provides the heading in the main text, but
+it may also appear in the table of contents and in the running head or
+foot (see <link linkend="Page-styles">Page styles</link>).  You may not want the same text in these
+places as in the main text.  All of these commands have an optional
+argument <replaceable>toc-title</replaceable> for these other places.
+</para>
+<para>The level number in the table above determines which sectional units are
+numbered, and which appear in the table of contents.  If the sectioning
+command’s <replaceable>level</replaceable> is less than or equal to the value of the counter
+<literal>secnumdepth</literal> then the titles for this sectioning command will be
+numbered (see <link linkend="Sectioning_002fsecnumdepth">Sectioning/secnumdepth</link>).  And, if <replaceable>level</replaceable> is less
+than or equal to the value of the counter <literal>tocdepth</literal> then the table
+of contents will have an entry for this sectioning unit
+(see <link linkend="Sectioning_002ftocdepth">Sectioning/tocdepth</link>).
+</para>
+<para>&latex; expects that before you have a <literal>\subsection</literal> you will have
+a <literal>\section</literal> and, in a book, that before a <literal>\section</literal> you will
+have a <literal>\chapter</literal>.  Otherwise you can get a something like a
+subsection numbered ‘<literal>3.0.1</literal>’.
+</para>
+<para>Two counters relate to the appearance of sectioning commands.
+</para>
+<variablelist><varlistentry><term><indexterm role="fn"><primary>secnumdepth</primary></indexterm><literal>secnumdepth</literal>
+</term><listitem><indexterm role="fn"><primary>secnumdepth counter</primary></indexterm>
+<indexterm role="cp"><primary>section numbers, printing</primary></indexterm>
+<anchor id="sectioning-secnumdepth"/><anchor id="Sectioning_002fsecnumdepth"/><para>Controls which sectioning commands are
+numbered.  Suppress numbering of sectioning at any depth greater than
+<replaceable>level</replaceable> <literal>\setcounter{secnumdepth}{<replaceable>level</replaceable>}</literal>
+(see <link linkend="_005csetcounter">\setcounter</link>).  See the above table for the level numbers.  For
+instance, if the <literal>secnumdepth</literal> is 1 in an <literal>article</literal> then a
+<literal>\section{Introduction}</literal> command will produce output like ‘<literal>1
+Introduction</literal>’ while <literal>\subsection{Discussion}</literal> will produce output
+like ‘<literal>Discussion</literal>’, without the number. &latex;’s default
+<literal>secnumdepth</literal> is 3 in <filename>article</filename> class and  2 in the
+<filename>book</filename> and <filename>report</filename> classes.
+</para>
+</listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>tocdepth</primary></indexterm><literal>tocdepth</literal>
+</term><listitem><indexterm role="fn"><primary>tocdepth counter</primary></indexterm>
+<indexterm role="cp"><primary>table of contents, sectioning numbers printed</primary></indexterm>
+<anchor id="sectioning-tocdepth"/><anchor id="Sectioning_002ftocdepth"/><para>Controls which sectioning units are listed in the table of contents.
+The setting <literal>\setcounter{tocdepth}{<replaceable>level</replaceable>}</literal> makes the
+sectioning units at <replaceable>level</replaceable> be the smallest ones listed
+(see <link linkend="_005csetcounter">\setcounter</link>).  See the above table for the level numbers.  For
+instance, if <literal>tocdepth</literal> is 1 then the table of contents will
+list sections but not subsections.  &latex;’s default
+<literal>secnumdepth</literal> is 3 in <filename>article</filename> class and  2 in the
+<filename>book</filename> and <filename>report</filename> classes.
+</para>
+</listitem></varlistentry></variablelist>
+
+
+<sect1 label="6.1" id="_005cpart">
+<title><literal>\part</literal></title>
+
+<indexterm role="fn"><primary>\part</primary></indexterm>
+<indexterm role="cp"><primary>part</primary></indexterm>
+<indexterm role="cp"><primary>sectioning, part</primary></indexterm>
+
+<para>Synopsis, one of:
+</para>
+<screen>\part{<replaceable>title</replaceable>}
+\part*{<replaceable>title</replaceable>}
+\part[<replaceable>toc-title</replaceable>]{<replaceable>title</replaceable>}
 </screen>
+<para>Start a document part.  The standard &latex; classes <literal>book</literal>,
+<literal>report</literal>, and <literal>article</literal>, all have this command.
+</para>
+<para>This produces a document part, in a book.
+</para>
+<screen>\part{VOLUME I \\
+       PERSONAL MEMOIRS OF  U.\ S.\ GRANT}
+\chapter{ANCESTRY--BIRTH--BOYHOOD.}
+My family is American, and has been for generations,
+in all its branches, direct and collateral.
+</screen>
+<para>In each standard class the <literal>\part</literal> command outputs a part number
+such as ‘<literal>Part I</literal>’, alone on its line, in boldface, and in large
+type.  Then &latex; outputs <replaceable>title</replaceable>, also alone on its line, in
+bold and in even larger type.  In class <literal>book</literal>, the &latex;
+default puts each part alone on its own page. If the book is two-sided
+then &latex; will skip a page if needed to have the new part on an
+odd-numbered page.  In <literal>report</literal> it is again alone on a page, but
+&latex; won’t force it onto an odd-numbered page.  In an <literal>article</literal>
+&latex; does not put it on a fresh page, but instead outputs the part
+number and part title onto the main document page.
+</para>
+<para>The <literal>*</literal> form shows <replaceable>title</replaceable> 
+but it does not show the part number, does not increment the
+<literal>part</literal> counter, and produces no table of contents entry.
+</para>
+<para>The optional argument <replaceable>toc-title</replaceable> will appear as the part title in
+the table of contents (see <link linkend="Table-of-contents-etc_002e">Table of contents etc.</link>) and in running
+headers (see <link linkend="Page-styles">Page styles</link>).  If it is not present then <replaceable>title</replaceable>
+will be there.  This example puts a line break in <replaceable>title</replaceable> but leaves
+out the break in the table of contents.
+</para>
+<screen>\part[Up from the bottom; my life]{Up from the bottom\\ my life}
+</screen>
+<para>For determining which sectional units are numbered and which appear in
+the table of contents, the level number of a part is -1
+(see <link linkend="Sectioning_002fsecnumdepth">Sectioning/secnumdepth</link> and see <link linkend="Sectioning_002ftocdepth">Sectioning/tocdepth</link>).
+</para>
+<indexterm role="cp"><primary>package, <literal>indentfirst</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>indentfirst</literal> package</primary></indexterm>
+
+<para>In the class <literal>article</literal>, if a paragraph immediately follows the part
+title then it is not indented.  To get an indent you can use the package
+<filename>indentfirst</filename>.
+</para>
+<indexterm role="cp"><primary>package, <literal>titlesec</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>titlesec</literal> package</primary></indexterm>
+
+<para>One package to change the behavior of <literal>\part</literal> is <filename>titlesec</filename>.
+See its documentation on CTAN.
+</para>
+
+</sect1>
+<sect1 label="6.2" id="_005cchapter">
+<title><literal>\chapter</literal></title>
+
+<indexterm role="fn"><primary>\chapter</primary></indexterm>
+<indexterm role="cp"><primary>chapter</primary></indexterm>
+
+<para>Synopsis, one of:
+</para>
+<screen>\chapter{<replaceable>title</replaceable>}
+\chapter*{<replaceable>title</replaceable>}
+\chapter[<replaceable>toc-title</replaceable>]{<replaceable>title</replaceable>}
+</screen>
+<para>Start a chapter.  The standard &latex; classes <literal>book</literal> and
+<literal>report</literal> have this command but <literal>article</literal> does not.
+</para>
+<para>This produces a chapter.
+</para>
+<screen>\chapter{Loomings}
+Call me Ishmael.
+Some years ago---never mind how long precisely---having little or no
+money in my purse, and nothing particular to interest me on shore, I
+thought I would sail about a little and see the watery part of
+the world.
+</screen>
+<para>The &latex; default starts each chapter on a fresh page, an
+odd-numbered page if the document is two-sided.  It produces a chapter
+number such as ‘<literal>Chapter 1</literal>’ in large boldface type (the size is
+<literal>\huge</literal>).  It then puts <replaceable>title</replaceable> on a fresh line, in boldface
+type that is still larger (size <literal>\Huge</literal>).  It also increments the
+<literal>chapter</literal> counter, adds an entry to the table of contents
+(see <link linkend="Table-of-contents-etc_002e">Table of contents etc.</link>), and sets the running header
+information (see <link linkend="Page-styles">Page styles</link>).
+</para>
+<para>The <literal>*</literal> form shows <replaceable>title</replaceable> on a fresh line, in boldface.
+But it does not show the chapter number, does not increment the
+<literal>chapter</literal> counter, produces no table of contents entry, and does
+not affect the running header.  (If you use the page style
+<literal>headings</literal> in a two-sided document then the header will be from the
+prior chapter.)  This example illustrates.
+</para>
+<screen>\chapter*{Preamble}
+</screen>
+<para>The optional argument <replaceable>toc-title</replaceable> will appear as the chapter title
+in the table of contents (see <link linkend="Table-of-contents-etc_002e">Table of contents etc.</link>) and in
+running headers (see <link linkend="Page-styles">Page styles</link>).  If it is not present then
+<replaceable>title</replaceable> will be there.  This shows the full name in the chapter
+title,
+</para>
+<screen>\chapter[Weyl]{Hermann Klaus Hugo (Peter) Weyl (1885--1955)}
+</screen>
+<para>but only ‘<literal>Weyl</literal>’ on the contents page.  This puts a line break in
+the title but that doesn’t work well with running headers so it omits
+the break in the contents
+</para>
+<screen>\chapter[Given it all\\ my story]{Given it all\\ my story}
+</screen>
+<para>For determining which sectional units are numbered and which appear in
+the table of contents, the level number of a chapter is 0
+(see <link linkend="Sectioning_002fsecnumdepth">Sectioning/secnumdepth</link> and see <link linkend="Sectioning_002ftocdepth">Sectioning/tocdepth</link>).
+</para>
+<indexterm role="cp"><primary>package, <literal>indentfirst</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>indentfirst</literal> package</primary></indexterm>
+
+<para>The paragraph that follows the chapter title is not indented, as is a
+standard typographical practice.  To get an indent use the package
+<filename>indentfirst</filename>.
+</para>
+<para>You can change what is shown for the chapter number.  To change it to
+something like ‘<literal>Lecture 1</literal>’, put in the preamble either
+<literal>\renewcommand{\chaptername}{Lecture}</literal> or this
+(see <link linkend="_005cmakeatletter-_0026-_005cmakeatother">\makeatletter & \makeatother</link>).
+</para>
+<screen>\makeatletter
+\renewcommand{\@chapapp}{Lecture}
+\makeatother
+</screen>
+<indexterm role="cp"><primary>package, <literal>babel</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>babel</literal> package</primary></indexterm>
+
+<para>To make this change because of the primary language for
+the document, see the package <filename>babel</filename>.
+</para>
+<para>In a two-sided document &latex; puts a chapter on odd-numbered page, if
+necessary leaving an even-numbered page that is blank except for any
+running headers.  To make that page completely blank,
+see <link linkend="_005cclearpage-_0026-_005ccleardoublepage">\clearpage & \cleardoublepage</link>.
+</para>
+<indexterm role="cp"><primary>package, <literal>titlesec</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>titlesec</literal> package</primary></indexterm>
+
+<para>To change the behavior of the <literal>\chapter</literal> command, you can copy its
+definition from the &latex; format file and make adjustments.  But
+there are also many packages on CTAN that address this.  One is
+<filename>titlesec</filename>.  See its documentation, but the example below gives a
+sense of what it can do.
+</para>
+<screen>\usepackage{titlesec}   % in preamble
+\titleformat{\chapter}
+  {\Huge\bfseries}  % format of title
+  {}                % label, such as 1.2 for a subsection
+  {0pt}             % length of separation between label and title
+  {}                % before-code hook
+</screen>
+<para>This omits the chapter number ‘<literal>Chapter 1</literal>’ from the page but unlike
+<literal>\chapter*</literal> it keeps the chapter in the table of contents and the
+running headers.
+</para>
+
+</sect1>
+<sect1 label="6.3" id="_005csection">
+<title><literal>\section</literal></title>
+
+<indexterm role="fn"><primary>\section</primary></indexterm>
+<indexterm role="cp"><primary>section</primary></indexterm>
+
+<para>Synopsis, one of:
+</para>
+<screen>\section{<replaceable>title</replaceable>}
+\section*{<replaceable>title</replaceable>}
+\section[<replaceable>toc-title</replaceable>]{<replaceable>title</replaceable>}
+</screen>
+<para>Start a section.  The standard &latex; classes <literal>article</literal>,
+<literal>book</literal>, and <literal>report</literal> all have this command.
+</para>
+<para>This produces a section.
+</para>
+<screen>In this Part we tend to be more interested in the function,
+in the input-output behavior,
+than in the details of implementing that behavior.
+
+\section{Turing machines}
+Despite this desire to downplay implementation,
+we follow the approach of A~Turing that the
+first step toward defining the set of computable functions
+is to reflect on the details of what mechanisms can do.
+</screen>
+<para>For the standard &latex; classes <literal>book</literal> and <literal>report</literal> the
+default output is like ‘<literal>1.2 <replaceable>title</replaceable></literal>’ (for chapter 1,
+section 2), alone on its line and flush left, in boldface and a
+larger type (the type size is <literal>\Large</literal>).  The same holds in
+<literal>article</literal> except that there are no chapters in that class so it
+looks like ‘<literal>2 <replaceable>title</replaceable></literal>’.
+</para>
+<para>The <literal>*</literal> form shows <replaceable>title</replaceable>.
+But it does not show the section number, does not increment the
+<literal>section</literal> counter, produces no table of contents entry, and does
+not affect the running header.  (If you use the page style
+<literal>headings</literal> in a two-sided document then the header will be from the
+prior section.)
+</para>
+<para>The optional argument <replaceable>toc-title</replaceable> will appear as the section title
+in the table of contents (see <link linkend="Table-of-contents-etc_002e">Table of contents etc.</link>) and in
+running headers (see <link linkend="Page-styles">Page styles</link>).  If it is not present then
+<replaceable>title</replaceable> will be there.  This shows the full name in the title of the
+section,
+</para>
+<screen>\section[Elizabeth~II]{Elizabeth the Second,
+  by the Grace of God of the United Kingdom,
+  Canada and Her other Realms and Territories Queen,
+  Head of the Commonwealth, Defender of the Faith.}
+</screen>
+<para>but only ‘<literal>Elizabeth II</literal>’ on the contents page and in the headers.
+This has a line break in <replaceable>title</replaceable> but that does not work with headers
+so it is omitted from the contents and headers.
+</para>
+<screen>\section[Truth is, I cheated; my life story]{Truth is,
+  I cheated\\my life story}
+</screen>
+<para>For determining which sectional units are numbered and which appear in
+the table of contents, the level number of a section is 1
+(see <link linkend="Sectioning_002fsecnumdepth">Sectioning/secnumdepth</link> and see <link linkend="Sectioning_002ftocdepth">Sectioning/tocdepth</link>).
+</para>
+<indexterm role="cp"><primary>package, <literal>indentfirst</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>indentfirst</literal> package</primary></indexterm>
+
+<para>The paragraph that follows the section title is not indented, as is a
+standard typographical practice.  One way to get an indent is to use the
+package <filename>indentfirst</filename>.
+</para>
+<indexterm role="cp"><primary>package, <literal>titlesec</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>titlesec</literal> package</primary></indexterm>
+
+<para>In general, to change the behavior of the <literal>\section</literal> command, there
+are a number of options.  One is the <literal>\@startsection</literal> command
+(see <link linkend="_005c_0040startsection">\@startsection</link>).  There are also many packages on CTAN that
+address this, including <filename>titlesec</filename>.  See the documentation but the
+example below gives a sense of what they can do.
+</para>
+<!-- credit: egreg https://groups.google.com/forum/#!topic/comp.text.tex/tvc8oM5P4y4 -->
+<screen>\usepackage{titlesec}   % in preamble
+\titleformat{\section}
+  {\normalfont\Large\bfseries}  % format of title
+  {\makebox[1pc][r]{\thesection\hspace{1pc}}} % label
+  {0pt}                   % length of separation between label and title
+  {}                      % before-code hook
+\titlespacing*{\section}
+  {-1pc}{18pt}{10pt}[10pc]
+</screen>
+<para>That puts the section number in the margin.
+</para>
+
+</sect1>
+<sect1 label="6.4" id="_005csubsection">
+<title><literal>\subsection</literal></title>
+
+<indexterm role="fn"><primary>\subsection</primary></indexterm>
+<indexterm role="cp"><primary>subsection</primary></indexterm>
+
+<para>Synopsis, one of:
+</para>
+<screen>\subsection{<replaceable>title</replaceable>}
+\subsection*{<replaceable>title</replaceable>}
+\subsection[<replaceable>toc-title</replaceable>]{<replaceable>title</replaceable>}
+</screen>
+<para>Start a subsection.  The standard &latex; classes <literal>article</literal>,
+<literal>book</literal>, and <literal>report</literal> all have this command.
+</para>
+<para>This produces a subsection.
+</para>
+<screen>We will show that there are more functions than Turing machines and that
+therefore some functions have no associated machine.
+
+\subsection{Cardinality} We will begin with two paradoxes that
+dramatize the challenge to our intuition posed by comparing the sizes of
+infinite sets.
+</screen>
+<para>For the standard &latex; classes <literal>book</literal> and <literal>report</literal> the
+default output is like ‘<literal>1.2.3 <replaceable>title</replaceable></literal>’ (for chapter 1,
+section 2, subsection 3), alone on its line and flush left, in
+boldface and a larger type (the type size is <literal>\large</literal>).  The same
+holds in <literal>article</literal> except that there are no chapters in that class
+so it looks like ‘<literal>2.3 <replaceable>title</replaceable></literal>’.
+</para>
+<para>The <literal>*</literal> form shows <replaceable>title</replaceable>.
+But it does not show the section number, does not increment the
+<literal>section</literal> counter, and produces no table of contents entry.
+</para>
+<para>The optional argument <replaceable>toc-title</replaceable> will appear as the section title
+in the table of contents (see <link linkend="Table-of-contents-etc_002e">Table of contents etc.</link>).  If it is
+not present then <replaceable>title</replaceable> will be there.  This shows the full name in
+the title of the section,
+</para>
+<screen>\subsection[$\alpha,\beta,\gamma$ paper]{\textit{The Origin of
+  Chemical Elements} by R.A.~Alpher, H.~Bethe, and G.~Gamow}
+</screen>
+<para>but only ‘<literal>&#x03B1;,&#x03B2;,&#x03B3;
+paper</literal>’ on the contents page.
+</para>
+<para>For determining which sectional units are numbered and which appear in
+the table of contents, the level number of a subsection is 2
+(see <link linkend="Sectioning_002fsecnumdepth">Sectioning/secnumdepth</link> and see <link linkend="Sectioning_002ftocdepth">Sectioning/tocdepth</link>).
+</para>
+<indexterm role="cp"><primary>package, <literal>indentfirst</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>indentfirst</literal> package</primary></indexterm>
+
+<para>The paragraph that follows the subsection title is not indented, as is a
+standard typographical practice.  One way to get an indent is to use the
+package <filename>indentfirst</filename>.
+</para>
+<indexterm role="cp"><primary>package, <literal>titlesec</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>titlesec</literal> package</primary></indexterm>
+
+<para>There are a number of ways to change the behavior of the
+<literal>\subsection</literal> command.  One is the <literal>\@startsection</literal> command
+(see <link linkend="_005c_0040startsection">\@startsection</link>).  There are also many packages on CTAN that
+address this, including <filename>titlesec</filename>.  See the documentation but the
+example below gives a sense of what they can do.
+</para>
+<screen>\usepackage{titlesec}   % in preamble
+\titleformat{\subsection}[runin]
+  {\normalfont\normalsize\bfseries}  % format of the title
+  {\thesubsection}                   % label
+  {0.6em}                            % space between label and title
+  {}                                 % before-code hook
+</screen>
+<para>That puts the subsection number and <replaceable>title</replaceable> in the first line of
+text.
+</para>
+
+</sect1>
+
+<sect1 label="6.5" id="_005csubsubsection-_0026-_005cparagraph-_0026-_005csubparagraph">
+<title><literal>\subsubsection</literal>, <literal>\paragraph</literal>, <literal>\subparagraph</literal></title>
+
+<indexterm role="fn"><primary>\subsubsection</primary></indexterm>
+<indexterm role="cp"><primary>subsubsection</primary></indexterm>
+<indexterm role="fn"><primary>\paragraph</primary></indexterm>
+<indexterm role="cp"><primary>paragraph</primary></indexterm>
+<indexterm role="fn"><primary>\subparagraph</primary></indexterm>
+<indexterm role="cp"><primary>subparagraph</primary></indexterm>
+
+<para>Synopsis, one of:
+</para>
+<screen>\subsubsection{<replaceable>title</replaceable>}
+\subsubsection*{<replaceable>title</replaceable>}
+\subsubsection[<replaceable>toc-title</replaceable>]{<replaceable>title</replaceable>}
+</screen>
+<para>or one of:
+</para>
+<screen>\paragraph{<replaceable>title</replaceable>}
+\paragraph*{<replaceable>title</replaceable>}
+\paragraph[<replaceable>toc-title</replaceable>]{<replaceable>title</replaceable>}
+</screen>
+<para>or one of:
+</para>
+<screen>\subparagraph{<replaceable>title</replaceable>}
+\subparagraph*{<replaceable>title</replaceable>}
+\subparagraph[<replaceable>toc-title</replaceable>]{<replaceable>title</replaceable>}
+</screen>
+<para>Start a subsubsection, paragraph, or subparagraph.  The standard
+&latex; classes <literal>article</literal>, <literal>book</literal>, and <literal>report</literal> all have
+these commands, although they are not commonly used.
+</para>
+<para>This produces a subsubsection.
+</para>
+<screen>\subsubsection{Piston ring compressors: structural performance}
+Provide exterior/interior wall cladding assemblies
+capable of withstanding the effects of load and stresses from 
+consumer-grade gasoline engine piston rings.
+</screen>
+<para>The default output of each of the three does not change over the
+standard &latex; classes <literal>article</literal>, <literal>book</literal>, and
+<literal>report</literal>.  For <literal>\subsubsection</literal> the <replaceable>title</replaceable> is alone on
+its line, in boldface and normal size type.  For <literal>\paragraph</literal> the
+<replaceable>title</replaceable> is inline with the text, not indented, in boldface and
+normal size type.  For <literal>\subparagraph</literal> the <replaceable>title</replaceable> is inline
+with the text, with a paragraph indent, in boldface and normal size type
+(Because an <literal>article</literal> has no chapters its subsubsections are
+numbered and so it looks like ‘<literal>1.2.3 <replaceable>title</replaceable></literal>’, for
+section 1, subsection 2, and subsubsection 3.  The other
+two divisions are not numbered.)
+</para>
+<para>The <literal>*</literal> form shows <replaceable>title</replaceable>.  But it does not increment the
+associated counter and produces no table of contents entry (and does not
+show the number for <literal>\subsubsection</literal>).
+</para>
+<para>The optional argument <replaceable>toc-title</replaceable> will appear as the division title
+in the table of contents (see <link linkend="Table-of-contents-etc_002e">Table of contents etc.</link>).  If it is
+not present then <replaceable>title</replaceable> will be there.
+</para>
+<para>For determining which sectional units are numbered and which appear in
+the table of contents, the level number of a subsubsection is 3, of
+a paragraph is 4, and of a subparagraph is 5
+(see <link linkend="Sectioning_002fsecnumdepth">Sectioning/secnumdepth</link> and see <link linkend="Sectioning_002ftocdepth">Sectioning/tocdepth</link>).
+</para>
+<indexterm role="cp"><primary>package, <literal>indentfirst</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>indentfirst</literal> package</primary></indexterm>
+
+<para>The paragraph that follows the subsubsection title is not indented, as is a
+standard typographical practice.  One way to get an indent is to use the
+package <filename>indentfirst</filename>.
+</para>
+<indexterm role="cp"><primary>package, <literal>titlesec</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>titlesec</literal> package</primary></indexterm>
+
+<para>There are a number of ways to change the behavior of the these commands.
+One is the <literal>\@startsection</literal> command (see <link linkend="_005c_0040startsection">\@startsection</link>).
+There are also many packages on CTAN that address this, including
+<filename>titlesec</filename>.  See the documentation on CTAN.
+</para>
+
+</sect1>
+
+<sect1 label="6.6" id="_005cappendix">
+<title><literal>\appendix</literal></title>
+
 <indexterm role="fn"><primary>\appendix</primary></indexterm>
-<indexterm role="cp"><primary>appendix, creating</primary></indexterm>
-<para>The <literal>\appendix</literal> command changes the way following sectional units
-are numbered.  The <literal>\appendix</literal> command itself generates no text
-and does not affect the numbering of parts.  The normal use of this
-command is something like
+<indexterm role="cp"><primary>appendix</primary></indexterm>
+<indexterm role="cp"><primary>appendices</primary></indexterm>
+
+<para>Synopsis:
 </para>
-<screen>\chapter{A Chapter}
-…
+<screen>\appendix
+</screen>
+<para>This does not directly produce any output.  But in a book or report it
+declares that subsequent <literal>\chapter</literal> commands start an appendix.  In
+an article it does the same, for <literal>\section</literal> commands.  It also
+resets the <literal>chapter</literal> and <literal>section</literal> counters to 0 in a
+book or report, and in an article resets the <literal>section</literal> and
+<literal>subsection</literal> counters.
+</para>
+<para>In this book
+</para>
+<screen>\chapter{One}  ...
+\chapter{Two}  ...
+ ...
 \appendix
-\chapter{The First Appendix}
+\chapter{Three}  ...
+\chapter{Four}  ...
 </screen>
-<indexterm role="fn"><primary>secnumdepth counter</primary></indexterm>
-<indexterm role="cp"><primary>section numbers, printing</primary></indexterm>
-<anchor id="Sectioning_002fsecnumdepth"/><para>The <literal>secnumdepth</literal> counter controls printing of section numbers.
-The setting
+<para>the first two will generate output numbered ‘<literal>Chapter 1</literal>’ and
+‘<literal>Chapter 2</literal>’.  After the <literal>\appendix</literal> the numbering will be
+‘<literal>Appendix A</literal>’ and ‘<literal>Appendix B</literal>’.  See <link linkend="Larger-book-template">Larger book template</link>
+for another example.
 </para>
-<screen>\setcounter{secnumdepth}{<replaceable>level</replaceable>}
+<indexterm role="cp"><primary>package, <literal>appendix</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>appendix</literal> package</primary></indexterm>
+<para>The <filename>appendix</filename> package adds the command
+<literal>\appendixpage</literal> to put a separate ‘<literal>Appendices</literal>’ in the document
+body before the first appendix, and the command <literal>\addappheadtotoc</literal>
+to do the same in the table of contents.  You can reset the name
+‘<literal>Appendix</literal>’ with a command like
+<literal>\renewcommand{\appendixname}{Specification}</literal>, as well as a
+number of other features.  See the documentation on CTAN.
+</para>
+
+</sect1>
+
+<sect1 label="6.7" id="_005cfrontmatter-_0026-_005cmainmatter-_0026-_005cbackmatter">
+<title><literal>\frontmatter</literal>, <literal>\mainmatter</literal>, <literal>\backmatter</literal></title>
+
+<indexterm role="fn"><primary>\frontmatter</primary></indexterm>
+<indexterm role="cp"><primary>book, front matter</primary></indexterm>
+<indexterm role="fn"><primary>\mainmatter</primary></indexterm>
+<indexterm role="cp"><primary>book, main matter</primary></indexterm>
+<indexterm role="fn"><primary>\backmatter</primary></indexterm>
+<indexterm role="cp"><primary>book, back matter</primary></indexterm>
+<indexterm role="cp"><primary>book, end matter</primary></indexterm>
+
+<para>Synopsis, one of:
+</para>
+<screen>\frontmatter
+\mainmatter
+\backmatter
 </screen>
-<para>suppresses heading numbers at any depth <inlineequation><mathphrase>> <replaceable>level</replaceable></mathphrase></inlineequation>, where
-<literal>chapter</literal> is level zero.  The default <literal>secnumdepth</literal> is 3 in
-&latex;’s <filename>article</filename> class and 2 in the <filename>book</filename> and
-<filename>report</filename> classes.  (See <link linkend="_005csetcounter">\setcounter</link>.)
+<para>Format a <literal>book</literal> class document differently according to which part
+of the document is being produced.  All three commands are optional.
 </para>
+<para>Traditionally, a book’s front matter contains such things as the title
+page, an abstract, a table of contents, a preface, a list of notations,
+a list of figures, and a list of tables.  (Some of these front matter
+pages, such as the title page, are traditionally not numbered.)  The
+back matter may contain such things as a glossary, notes, a
+bibliography, and an index.
+</para>
+<para>The <literal>\frontmatter</literal> declaration makes the pages numbered in
+lowercase roman, and makes chapters not numbered, although each
+chapter’s title appears in the table of contents; if you use other
+sectioning commands here, use the <literal>*</literal>-version (see <link linkend="Sectioning">Sectioning</link>).
+The <literal>\mainmatter</literal> changes the behavior back to the expected
+version, and resets the page number.  The <literal>\backmatter</literal> leaves the
+page numbering alone but switches the chapters back to being not
+numbered.  See <link linkend="Larger-book-template">Larger book template</link> for an example using the three.
+</para>
 
-
-<sect1 label="6.1" id="_005c_0040startsection">
+</sect1>
+<sect1 label="6.8" id="_005c_0040startsection">
 <title><literal>\@startsection</literal></title>
 
 <indexterm role="fn"><primary>\@startsection</primary></indexterm>
@@ -2430,10 +3052,24 @@
 <!-- xx define, and make a cross reference to, secdef. -->
 </para>
 <para>Technically, <literal>\@startsection</literal> has the form
-</para><screen>\@startsection{<replaceable>name</replaceable>}{<replaceable>level</replaceable>}{<replaceable>indent</replaceable>}{<replaceable>beforeskip</replaceable>}{<replaceable>afterskip</replaceable>}{<replaceable>style</replaceable>}*[<replaceable>toctitle</replaceable>]{<replaceable>title</replaceable>}
-</screen><para>(the star <literal>*</literal> is optional), so that issuing
-</para><screen>\renewcommand{\section}{\@startsection{<replaceable>name</replaceable>}{<replaceable>level</replaceable>}{<replaceable>indent</replaceable>}{<replaceable>beforeskip</replaceable>}{<replaceable>afterskip</replaceable>}{<replaceable>style</replaceable>}}
-</screen><para>redefines <literal>\section</literal> to have the form
+</para>
+<screen>\@startsection{<replaceable>name</replaceable>}
+  {<replaceable>level</replaceable>}
+  {<replaceable>indent</replaceable>}
+  {<replaceable>beforeskip</replaceable>}
+  {<replaceable>afterskip</replaceable>}
+  {<replaceable>style</replaceable>}*[<replaceable>toctitle</replaceable>]{<replaceable>title</replaceable>}
+</screen>
+<para>so that issuing
+</para>
+<screen>\renewcommand{\section}{\@startsection{<replaceable>name</replaceable>}
+  {<replaceable>level</replaceable>}
+  {<replaceable>indent</replaceable>}
+  {<replaceable>beforeskip</replaceable>}
+  {<replaceable>afterskip</replaceable>}
+  {<replaceable>style</replaceable>}}
+</screen>
+<para>redefines <literal>\section</literal> to have the form
 <literal>\section*[<replaceable>toctitle</replaceable>]{<replaceable>title</replaceable>}</literal> (here too, the
 star <literal>*</literal> is optional).  See <link linkend="Sectioning">Sectioning</link>.  This implies that
 when you write a command like <literal>\renewcommand{section}{...}</literal>,
@@ -2442,12 +3078,11 @@
 </para>
 <variablelist>
 <varlistentry><term><replaceable>name</replaceable>
-</term><listitem><anchor id="_005c_0040startsection_002fname"/><para>Name of the counter used to number the
-sectioning header.  This counter must be defined separately.  Most
-commonly this is either <literal>section</literal>, <literal>subsection</literal>, or
-<literal>paragraph</literal>.  Although in those three cases the counter name is the
-same as the sectioning command itself, using the same name is not
-required.
+</term><listitem><anchor id="startsection-name"/><anchor id="_005c_0040startsection_002fname"/><para>Name of the counter used to number the sectioning header.  This counter
+must be defined separately.  Most commonly this is either
+<literal>section</literal>, <literal>subsection</literal>, or <literal>paragraph</literal>.  Although in
+those cases the counter name is the same as the sectioning command
+itself, you don’t have to use the same name.
 </para>
 <para>Then <literal>\the</literal><replaceable>name</replaceable> displays the title number and
 <literal>\</literal><replaceable>name</replaceable><literal>mark</literal> is for the page headers.  See the third
@@ -2454,43 +3089,37 @@
 example below.
 </para>
 </listitem></varlistentry><varlistentry><term><replaceable>level</replaceable>
-</term><listitem><anchor id="_005c_0040startsection_002flevel"/><para>An integer giving the depth of the
-sectioning command: 0 for <literal>chapter</literal> (only applies to the standard
-<literal>book</literal> and <literal>report</literal> classes), 1 for <literal>section</literal>, 2 for
-<literal>subsection</literal>, 3 for <literal>subsubsection</literal>, 4 for <literal>paragraph</literal>,
-and 5 for <literal>subparagraph</literal>.  In the <literal>book</literal> and <literal>report</literal>
-classes <literal>part</literal> has level -1, while in the <literal>article</literal> class
-<literal>part</literal> has level 0.
+</term><listitem><anchor id="startsection-level"/><anchor id="_005c_0040startsection_002flevel"/><para>An integer giving the depth of the sectioning command.
+See <link linkend="Sectioning">Sectioning</link> for the list of standard level numbers.
 </para>
-<para>If <replaceable>level</replaceable> is less than or equal to the value of <literal>secnumdepth</literal>
-then the titles for this sectioning command will be numbered.  For
-instance, in an <literal>article</literal>, if <literal>secnumdepth</literal> is 1 then a
-<literal>\section{Introduction}</literal> command will produce output like “1
+<para>If <replaceable>level</replaceable> is less than or equal to the value of the counter
+<literal>secnumdepth</literal> then titles for this sectioning command will be
+numbered (see <link linkend="Sectioning_002fsecnumdepth">Sectioning/secnumdepth</link>).  For instance, if
+<literal>secnumdepth</literal> is 1 in an <literal>article</literal> then the command
+<literal>\section{Introduction}</literal> will produce output like “1
 Introduction” while <literal>\subsection{Discussion}</literal> will produce
 output like “Discussion”, without the number prefix.
-See <link linkend="Sectioning_002fsecnumdepth">Sectioning/secnumdepth</link>.
 </para>
-<para>If <replaceable>level</replaceable> is less than or equal to the value of <replaceable>tocdepth</replaceable> then
-the table of contents will have an entry for this sectioning unit.
-For instance, in an <literal>article</literal>, if <replaceable>tocdepth</replaceable> is 1 then the table of
-contents will list sections but not subsections.
-<!-- xx add, and cross reference to, tocdepth -->
+<para>If <replaceable>level</replaceable> is less than or equal to the value of the counter
+<replaceable>tocdepth</replaceable> then the table of contents will have an entry for this
+sectioning unit (see <link linkend="Sectioning_002ftocdepth">Sectioning/tocdepth</link>).  For instance, in an
+<literal>article</literal>, if <replaceable>tocdepth</replaceable> is 1 then the table of contents will
+list sections but not subsections.
 </para>
 </listitem></varlistentry><varlistentry><term><replaceable>indent</replaceable>
-</term><listitem><anchor id="_005c_0040startsection_002findent"/><para>A length giving the indentation of all
-of the title lines with respect to the left margin.  To have the title
-flush with the margin use <literal>0pt</literal>.  A negative indentation such as
-<literal>-\parindent</literal> will move the title into the left margin.
+</term><listitem><anchor id="startsection-indent"/><anchor id="_005c_0040startsection_002findent"/><para>A length giving the indentation of all of the title lines with respect
+to the left margin.  To have the title flush with the margin use
+<literal>0pt</literal>.  A negative indentation such as <literal>-\parindent</literal> will move
+the title into the left margin.
 </para>
 </listitem></varlistentry><varlistentry><term><replaceable>beforeskip</replaceable>
-</term><listitem><anchor id="_005c_0040startsection_002fbeforeskip"/><para>The absolute value of this length is
-the amount of vertical space that is inserted before this sectioning
-unit’s title.  This space will be discarded if the sectioning unit
-happens to start at the top of a fresh page.  If this number is negative
-then the first paragraph following the header is not indented, if it is
-non-negative then the first paragraph is indented.  (Note that the
-negative of <literal>1pt plus 2pt minus 3pt</literal> is <literal>-1pt plus -2pt minus
--3pt</literal>.)
+</term><listitem><anchor id="startsection-beforeskip"/><anchor id="_005c_0040startsection_002fbeforeskip"/><para>The absolute value of this length is the amount of vertical space that
+is inserted before this sectioning unit’s title.  This space will be
+discarded if the sectioning unit happens to start at the top of a fresh
+page.  If this number is negative then the first paragraph following the
+header is not indented, if it is non-negative then the first paragraph
+is indented.  (Note that the negative of <literal>1pt plus 2pt minus 3pt</literal>
+is <literal>-1pt plus -2pt minus -3pt</literal>.)
 </para>
 <para>For example, if <replaceable>beforeskip</replaceable> is <literal>-3.5ex plus -1ex minus -0.2ex</literal>
 then to start the new sectioning unit, &latex; will add about 3.5 times
@@ -2510,14 +3139,13 @@
 page.)
 </para>
 </listitem></varlistentry><varlistentry><term><replaceable>afterskip</replaceable>
-</term><listitem><anchor id="_005c_0040startsection_002fafterskip"/><para>This is a length.  If <replaceable>afterskip</replaceable>
-is non-negative then this is the vertical space inserted after the
-sectioning unit’s title header.  If it is negative then the title header
-becomes a run-in header, so that it becomes part of the next paragraph.
-In this case the absolute value of the length gives the horizontal space
-between the end of the title and the beginning of the following
-paragraph.  (Note that the negative of <literal>1pt plus 2pt minus 3pt</literal> is
-<literal>-1pt plus -2pt minus -3pt</literal>.)
+</term><listitem><anchor id="startsection-afterskip"/><anchor id="_005c_0040startsection_002fafterskip"/><para>This is a length.  If <replaceable>afterskip</replaceable> is non-negative then this is the
+vertical space inserted after the sectioning unit’s title header.  If it
+is negative then the title header becomes a run-in header, so that it
+becomes part of the next paragraph.  In this case the absolute value of
+the length gives the horizontal space between the end of the title and
+the beginning of the following paragraph.  (Note that the negative of
+<literal>1pt plus 2pt minus 3pt</literal> is <literal>-1pt plus -2pt minus -3pt</literal>.)
 </para>
 <para>As with <replaceable>beforeskip</replaceable>, using a rubber length, with <literal>plus</literal> and
 <literal>minus</literal> components, is good practice here since it gives &latex;
@@ -2534,45 +3162,36 @@
 <literal>afterskip</literal> to cancel part of the <literal>\parskip</literal>.)
 </para>
 </listitem></varlistentry><varlistentry><term><replaceable>style</replaceable>
-</term><listitem><anchor id="_005c_0040startsection_002fstyle"/><para>Controls the styling of the title.  See
-the examples below.  Typical commands to use here are <literal>\centering</literal>,
-<literal>\raggedright</literal>, <literal>\normalfont</literal>, <literal>\hrule</literal>, or
-<literal>\newpage</literal>.  The last command in <replaceable>style</replaceable> may be one such as
-<literal>\MakeUppercase</literal> or <literal>\fbox</literal> that takes one argument. The
+</term><listitem><anchor id="startsection-style"/><anchor id="_005c_0040startsection_002fstyle"/><para>Controls the styling of the title.  See the examples below.  Typical
+commands to use here are <literal>\centering</literal>, <literal>\raggedright</literal>,
+<literal>\normalfont</literal>, <literal>\hrule</literal>, or <literal>\newpage</literal>.  The last command
+in <replaceable>style</replaceable> may be one that takes one argument, such as
+<literal>\MakeUppercase</literal> or <literal>\fbox</literal> that takes one argument.  The
 section title will be supplied as the argument to this command. For
 instance, setting <replaceable>style</replaceable> to <literal>\bfseries\MakeUppercase</literal> would
-produce titles that are bold and upper case.
+produce titles that are bold and uppercase.
 </para></listitem></varlistentry></variablelist>
 <para>These are &latex;’s defaults for the first three sectioning units that
 are defined with <literal>\@startsection</literal>, for the <filename>article</filename>,
-<filename>book</filename>, and <filename>report</filename> classes.
+<filename>book</filename>, and <filename>report</filename> classes.  For section, the <replaceable>level</replaceable> is
+1, the <replaceable>indent</replaceable> is 0pt, the <replaceable>beforeskip</replaceable> is <literal>-3.5ex
+plus -1ex minus -0.2ex</literal>, the <replaceable>afterskip</replaceable> is <literal>2.3ex plus 0.2ex</literal>,
+and the <replaceable>style</replaceable> is <literal>\normalfont\Large\bfseries</literal>.  For
+subsection, the <replaceable>level</replaceable> is 2, the <replaceable>indent</replaceable> is 0pt, the
+<replaceable>beforeskip</replaceable> is <literal>-3.25ex plus -1ex minus -0.2ex</literal>, the
+<replaceable>afterskip</replaceable> is <literal>1.5ex plus 0.2ex</literal>, and the <replaceable>style</replaceable> is
+<literal>\normalfont\large\bfseries</literal>.  For subsubsection, the <replaceable>level</replaceable>
+is 3, the <replaceable>indent</replaceable> is 0pt, the <replaceable>beforeskip</replaceable> is
+<literal>-3.25ex plus -1ex minus -0.2ex</literal>, the <replaceable>afterskip</replaceable> is
+<literal>1.5ex plus 0.2ex</literal>, and the <replaceable>style</replaceable> is
+<literal>\normalfont\normalsize\bfseries</literal>.
 </para>
-<informaltable><tgroup cols="4"><colspec colwidth="10*"></colspec><colspec colwidth="30*"></colspec><colspec colwidth="30*"></colspec><colspec colwidth="30*"></colspec><thead><row><entry></entry><entry><para><literal>section</literal>  </para></entry><entry><para><literal>subsection</literal>  </para></entry><entry><para><literal>subsubsection</literal>
-</para></entry></row></thead><tbody><row><entry><para><link linkend="_005c_0040startsection_002fname"><replaceable>name</replaceable></link>
-</para></entry><entry><para>section          </para></entry><entry><para>subsection          </para></entry><entry><para>subsubsection
-</para></entry></row><row><entry><para><link linkend="_005c_0040startsection_002flevel"><replaceable>level</replaceable></link>
-</para></entry><entry><para>1          </para></entry><entry><para>2          </para></entry><entry><para>3
-</para></entry></row><row><entry><para><link linkend="_005c_0040startsection_002findent"><replaceable>indent</replaceable></link>
-</para></entry><entry><para><literal>0pt</literal>          </para></entry><entry><para><literal>0pt</literal>          </para></entry><entry><para><literal>0pt</literal>
-</para></entry></row><row><entry><para><link linkend="_005c_0040startsection_002fbeforeskip"><replaceable>beforeskip</replaceable></link>
-</para></entry><entry><para><literal>-3.5ex plus -1ex minus -0.2ex</literal>
-</para></entry><entry><para><literal>-3.25ex plus -1ex minus -0.2ex</literal>
-</para></entry><entry><para><literal>-3.25ex plus -1ex minus -0.2ex</literal>
-</para></entry></row><row><entry><para><link linkend="_005c_0040startsection_002fafterskip"><replaceable>afterskip</replaceable></link>
-</para></entry><entry><para><literal>2.3ex plus 0.2ex</literal>
-</para></entry><entry><para><literal>1.5ex plus 0.2ex</literal>
-</para></entry><entry><para><literal>1.5ex plus 0.2ex</literal>
-</para></entry></row><row><entry><para><link linkend="_005c_0040startsection_002fstyle"><replaceable>style</replaceable></link>
-</para></entry><entry><para><literal>\normalfont\Large\bfseries</literal>
-</para></entry><entry><para><literal>\normalfont\large\bfseries</literal>
-</para></entry><entry><para><literal>\normalfont\normalsize\bfseries</literal>
-</para></entry></row></tbody></tgroup></informaltable>
 <para>Here are examples.  They go either in a package or class file or in the
 preamble of a &latex; document.  If you put them in the preamble they
 must go between a <literal>\makeatletter</literal> command and a
 <literal>\makeatother</literal>.  (Probably the error message <literal>You can't use
 `\spacefactor' in vertical mode.</literal>  means that you forgot this.)
-See <link linkend="_005cmakeatletter-and-_005cmakeatother">\makeatletter and \makeatother</link>.
+See <link linkend="_005cmakeatletter-_0026-_005cmakeatother">\makeatletter & \makeatother</link>.
 </para>
 <para>This will put section titles in large boldface type, centered.  It says
 <literal>\renewcommand</literal> because &latex;’s standard classes have already
@@ -2600,7 +3219,9 @@
     {\scshape}% <link linkend="_005c_0040startsection_002fstyle"><replaceable>style</replaceable></link>
   }
 </screen>
-<para>The prior examples redefined existing sectional unit title commands.  This defines a new one, illustrating the needed counter and macros to display that counter.
+<para>The prior examples redefined existing sectional unit title commands.
+This defines a new one, illustrating the needed counter and macros to
+display that counter.
 </para>
 <!-- From https://groups.google.com/forum/#!searchin/comp.text.tex/startsection%7Csort:relevance/comp.text.tex/sB-nTS-oL08/ZZeKYdG0llMJ -->
 <screen>\setcounter{secnumdepth}{6}% show counters this far down
@@ -2625,39 +3246,49 @@
 
 <indexterm role="cp"><primary>cross references</primary></indexterm>
 
-<para>One reason for numbering things such as figures and equations is to
-refer the reader to them, as in “See Figure~3 for more details.”
-</para>
 <indexterm role="cp"><primary>label</primary></indexterm>
-<para>Including the figure number in the source is poor practice since if that
-number changes as the document evolves then you must remember to update
-this reference by hand.  Instead, &latex; has you write a <firstterm>label</firstterm>
-like <literal>\label{eq:GreensThm}</literal> and refer to it with <literal>See
-equation~\ref{eq:GreensThm}</literal>.
+<para>We often want something like ‘<literal>See Theorem~31</literal>’.  But by-hand typing
+the 31 is poor practice.  Instead you should write a <firstterm>label</firstterm> such as
+<literal>\label{eq:GreensThm}</literal> and then <firstterm>reference</firstterm> it, as with
+<literal>See equation~\ref{eq:GreensThm}</literal>.  &latex; will automatically
+work out the number, put it into the output, and will change that number
+later if needed.
 </para>
-<para>&latex; writes the information from the labels to a file with the same
-name as the file containing the <literal>\label{...}</literal> but with an
-<filename>.aux</filename> extension.  (The information has the format
-<literal>\newlabel{<replaceable>label</replaceable>}{{<replaceable>currentlabel</replaceable>}{<replaceable>pagenumber</replaceable>}}</literal>
-where <replaceable>currentlabel</replaceable> is the current value of the macro
-<literal>\@currentlabel</literal> that is usually updated whenever you call
-<literal>\refstepcounter{<replaceable>counter</replaceable>}</literal>.)
+<screen>We will see this with Theorem~\ref{th:GreensThm}. % forward reference
+...
+\begin{theorem} \label{th:GreensThm}
+  ...
+\end{theorem}
+...
+See Theorem~\ref{th:GreensThm} on page~\pageref{th:GreensThm}.
+</screen>
+<para>&latex; tracks cross reference information in a file having the
+extension <filename>.aux</filename> and with the same base name as the file containing
+the <literal>\label</literal>.  So if <literal>\label</literal> is in <filename>calculus.tex</filename> then
+the information is in <filename>calculus.aux</filename>.  &latex; puts the
+information in that file every time it runs across a <literal>\label</literal>.
 </para>
 <indexterm role="cp"><primary>forward reference</primary></indexterm>
 <indexterm role="cp"><primary>reference, forward</primary></indexterm>
-<para>The most common side effect of the prior paragraph happens when your
-document has a <firstterm>forward reference</firstterm>, a <literal>\ref{<replaceable>key</replaceable>}</literal> that
-appears earlier than the associated <literal>\label{<replaceable>key</replaceable>}</literal>; see the
-example in the <literal>\pageref{...}</literal> description.  &latex; gets the
-information for references from the <filename>.aux</filename> file.  If this is the
-first time you are compiling the document then you will get a message
-<literal>LaTeX Warning: Label(s) may have changed. Rerun to get
-cross references right.</literal> and in the output the reference will appear as
-two question marks ‘<literal>??</literal>’, in boldface.  Or, if you change some
-things so the references change then you get the same warning and the
-output contains the old reference information.  The solution in either
-case is just to compile the document a second time.
+<para>The behavior described in the prior paragraph results in a quirk that
+happens when your document has a <firstterm>forward reference</firstterm>, a <literal>\ref</literal>
+that appears before the associated <literal>\label</literal>.  If this is the first
+time that you are compiling the document then you will get ‘<literal>LaTeX
+Warning: Label(s) may have changed. Rerun to get cross references right</literal>’
+and in the output the forward reference will appear as two question
+marks ‘<literal>??</literal>’, in boldface.  A similar thing happens if you
+change some things so the references changes; you get the same warning
+and the output contains the old reference information.  In both cases,
+resolve this by compiling the document a second time.
 </para>
+<indexterm role="cp"><primary>package, <literal>cleveref</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>cleveref</literal> package</primary></indexterm>
+<para>The <literal>cleveref</literal> package enhances &latex;’s
+cross referencing features.  You can arrange that if you enter
+<literal>\begin{thm}\label{th:Nerode}...\end{thm}</literal> then
+<literal>\cref{th:Nerode}</literal> will output ‘<literal>Theorem 3.21</literal>’, without you
+having to enter the “Theorem.”
+</para>
 
 
 <sect1 label="7.1" id="_005clabel">
@@ -2682,28 +3313,37 @@
 distinguished, as usual.
 </para>
 <para>A common convention is to use labels consisting of a prefix and a suffix
-separated by a colon or period.  This helps to avoid accidentally
-creating two labels with the same name, and makes your source more
-readable.  Some commonly-used prefixes:
+separated by a colon or period.  Thus, <literal>\label{fig:Post}</literal> is a
+label for a figure with a portrait of Emil Post.  This helps to avoid
+accidentally creating two labels with the same name, and makes your
+source more readable.  Some commonly-used prefixes:
 </para>
 <variablelist><varlistentry><term><literal>ch</literal>
 </term><listitem><para>for chapters
-</para></listitem></varlistentry><varlistentry><term><literal>sec</literal>
+</para>
+</listitem></varlistentry><varlistentry><term><literal>sec</literal>
+</term><term><literal>subsec</literal>
 </term><listitem><para>for lower-level sectioning commands
-</para></listitem></varlistentry><varlistentry><term><literal>fig</literal>
+</para>
+</listitem></varlistentry><varlistentry><term><literal>fig</literal>
 </term><listitem><para>for figures
-</para></listitem></varlistentry><varlistentry><term><literal>tab</literal>
+</para>
+</listitem></varlistentry><varlistentry><term><literal>tab</literal>
 </term><listitem><para>for tables
-</para></listitem></varlistentry><varlistentry><term><literal>eq</literal>
+</para>
+</listitem></varlistentry><varlistentry><term><literal>eq</literal>
 </term><listitem><para>for equations
 </para></listitem></varlistentry></variablelist>
-<para>Thus, <literal>\label{fig:Euler}</literal> is a label for a figure with a portrait
-of the great man.
+<para>In the auxiliary file the reference information is kept as the text of
+a command of the form
+<literal>\newlabel{<replaceable>label</replaceable>}{{<replaceable>currentlabel</replaceable>}{<replaceable>pagenumber</replaceable>}}</literal>.
+Here <replaceable>currentlabel</replaceable> is the current value of the macro
+<literal>\@currentlabel</literal> that is usually updated whenever you call
+<literal>\refstepcounter{<replaceable>counter</replaceable>}</literal>.
 </para>
-<para>In this example below the key <literal>sec:test</literal> will get the number of the
-current section and the key <literal>fig:test</literal> will get the number of the
-figure.  (Incidentally, put labels after captions in figures and
-tables.)
+<para>Below, the key <literal>sec:test</literal> will get the number of the current
+section and the key <literal>fig:test</literal> will get the number of the figure.
+(Incidentally, put labels after captions in figures and tables.)
 </para>
 <screen>\section{section name}
 \label{sec:test}
@@ -2718,7 +3358,7 @@
 
 </sect1>
 <sect1 label="7.2" id="_005cpageref">
-<title><literal>\pageref{<replaceable>key</replaceable>}</literal></title>
+<title><literal>\pageref</literal></title>
 
 <indexterm role="fn"><primary>\pageref</primary></indexterm>
 <indexterm role="cp"><primary>cross referencing with page number</primary></indexterm>
@@ -2731,11 +3371,15 @@
 <para>Produce the page number of the place in the text where the corresponding
 <literal>\label</literal>{<replaceable>key</replaceable>} command appears.
 </para>
-<para>In this example the <literal>\label{eq:main}</literal> is used both for the
-formula number and for the page number.  (Note that the two references
-are forward references, so this document would need to be compiled twice
-to resolve those.)
+<para>If there is no <literal>\label{<replaceable>key</replaceable>}</literal> then you get something like
+‘<literal>LaTeX Warning: Reference `th:GrensThm' on page 1 undefined on
+input line 11.</literal>’
 </para>
+<para>Below, the <literal>\label{eq:main}</literal> is used both for the formula number
+and for the page number.  (Note that the two references are forward
+references so this document would need to be compiled twice to resolve
+those.)
+</para>
 <screen>The main result is formula~\ref{eq:main} on page~\pageref{eq:main}.
   ...
 \begin{equation} \label{eq:main}
@@ -2745,7 +3389,7 @@
 
 </sect1>
 <sect1 label="7.3" id="_005cref">
-<title><literal>\ref{<replaceable>key</replaceable>}</literal></title>
+<title><literal>\ref</literal></title>
 
 <indexterm role="fn"><primary>\ref</primary></indexterm>
 <indexterm role="cp"><primary>cross referencing, symbolic</primary></indexterm>
@@ -2763,10 +3407,14 @@
 <literal>\label</literal> command (see <link linkend="_005clabel">\label</link>).  It does not produce any text,
 such as the word ‘Section’ or ‘Figure’, just the bare number itself.
 </para>
-<para>In this example, the <literal>\ref{popular}</literal> produces ‘<literal>2</literal>’.  Note
-that it is a forward reference since it comes before
-<literal>\label{popular}</literal>.
+<para>If there is no <literal>\label{<replaceable>key</replaceable>}</literal> then you get something like
+‘<literal>LaTeX Warning: Reference `th:GrensThm' on page 1 undefined on
+input line 11.</literal>’
 </para>
+<para>In this example the <literal>\ref{popular}</literal> produces ‘<literal>2</literal>’.  Note that
+it is a forward reference since it comes before <literal>\label{popular}</literal>
+so this document would have to be compiled twice.
+</para>
 <screen>The most widely-used format is item number~\ref{popular}.
 \begin{enumerate}
 \item Plain \TeX
@@ -2774,7 +3422,13 @@
 \item Con\TeX t
 \end{enumerate}
 </screen>
+<indexterm role="cp"><primary>package, <literal>cleveref</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>cleveref</literal> package</primary></indexterm>
 
+<para>The <filename>cleveref</filename> package includes text such as ‘<literal>Theorem</literal>’ in the
+reference.  See the documentation on CTAN.
+</para>
+
 </sect1>
 </chapter>
 <chapter label="8" id="Environments">
@@ -2872,7 +3526,7 @@
   ...
 \end{array}
 </screen>
-<para>or
+<para>or:
 </para>
 <screen>\begin{array}[<replaceable>pos</replaceable>]{<replaceable>cols</replaceable>}
   <replaceable>column 1 entry</replaceable> &<replaceable>column 2 entry</replaceable> ... &<replaceable>column n entry</replaceable> \\
@@ -2881,26 +3535,42 @@
 </screen>
 <para>Produce a mathematical array.  This environment can only be used in math
 mode, and normally appears within a displayed mathematics environment
-such as <literal>equation</literal> (see <link linkend="equation">equation</link>).  Column entries are
-separated by an ampersand (<literal>&</literal>).  Rows are terminated with
-double-backslashes (see <link linkend="_005c_005c">\\</link>).  
+such as <literal>equation</literal> (see <link linkend="equation">equation</link>).  Inside of each row the
+column entries are separated by an ampersand, (<literal>&</literal>).  Rows are
+terminated with double-backslashes (see <link linkend="_005c_005c">\\</link>).
 </para>
+<para>This example shows a three by three array.
+</para>
+<screen>\begin{equation*}
+  \chi(x) =
+  \left|              % vertical bar fence
+    \begin{array}{ccc}
+      x-a  &-b  &-c  \\
+      -d   &x-e &-f  \\
+      -g   &-h  &x-i
+    \end{array}
+ \right|
+\end{equation*}
+</screen>
 <para>The required argument <replaceable>cols</replaceable> describes the number of columns, their
-alignment, and the formatting of the intercolumn regions.  See
-<link linkend="tabular">tabular</link> for the complete description of <replaceable>cols</replaceable>, and of the
+alignment, and the formatting of the intercolumn regions.  For instance,
+<literal>\begin{array}{rcl}...\end{array}</literal> gives three columns: the
+first flush right, the second centered, and the third flush left.  See
+<link linkend="tabular">tabular</link> for the complete description of <replaceable>cols</replaceable> and of the
 other common features of the two environments, including the optional
 <replaceable>pos</replaceable> argument.
 </para>
 <para>There are two ways that <literal>array</literal> diverges from <literal>tabular</literal>.  The
 first is that <literal>array</literal> entries are typeset in math mode, in
-textstyle (except if the <replaceable>cols</replaceable> definition specifies the column with
-<literal>p{...}</literal>, which causes the entry to be typeset in text mode).
-The second is that, instead of <literal>tabular</literal>’s parameter
-<literal>\tabcolsep</literal>, &latex;’s intercolumn space in an <literal>array</literal> is governed
-by
+textstyle (see <link linkend="Modes">Modes</link>) except if the <replaceable>cols</replaceable> definition specifies
+the column with <literal>p{...}</literal>, which causes the entry to be typeset in
+text mode.  The second is that, instead of <literal>tabular</literal>’s parameter
+<literal>\tabcolsep</literal>, &latex;’s intercolumn space in an <literal>array</literal> is
+governed by
 <indexterm role="fn"><primary>\arraycolsep</primary></indexterm>
 <literal>\arraycolsep</literal>, which gives half the width between columns. The
-default for this is ‘<literal>5pt</literal>’.
+default for this is ‘<literal>5pt</literal>’ so that between two columns comes
+10pt of space.
 </para>
 <indexterm role="cp"><primary>package, <literal>amsmath</literal></primary></indexterm>
 <indexterm role="cp"><primary><literal>amsmath</literal> package</primary></indexterm>
@@ -2914,26 +3584,32 @@
 <literal>Vmatrix</literal> for an array surrounded by double vertical
 bars <literal>||...||</literal>, along with a number of other array constructs.
 </para>
-<para>Here is an example of an array:
+<indexterm role="cp"><primary>package, <literal>amsmath</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>amsmath</literal> package</primary></indexterm>
+
+<para>The next example uses the <filename>amsmath</filename> package.
 </para>
-<screen>\begin{equation}
-  \begin{array}{cr}
-    \sqrt{y}  &12.3 \\
-    x^2       &3.4       
-  \end{array}
-\end{equation}
-</screen>
-<para>The next example works if <literal>\usepackage{amsmath}</literal> is in the
-preamble:
-</para>
-<screen>\begin{equation}
-  \begin{vmatrix}{cc}
+<screen>\usepackage{amsmath}  % in preamble
+
+\begin{equation}    
+  \begin{vmatrix}{cc}  % array with vert lines
     a  &b \\
     c  &d       
   \end{vmatrix}=ad-bc
 \end{equation}
 </screen>
+<indexterm role="cp"><primary>package, <literal>array (package)</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>array (package)</literal> package</primary></indexterm>
 
+<indexterm role="cp"><primary>package, <literal>dcolumn</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>dcolumn</literal> package</primary></indexterm>
+
+<para>There are many packages concerning arrays.  The <filename>array</filename> package has
+many useful extensions, including more column types.  The <filename>dcolumn</filename>
+package adds a column type to center on a decimal point.  For both see
+the documentation on CTAN.
+</para>
+
 </sect1>
 <sect1 label="8.3" id="center">
 <title><literal>center</literal></title>
@@ -2946,16 +3622,18 @@
 <para>Synopsis:
 </para>
 <screen>\begin{center}
-  ... text ...
+  <replaceable>line1</replaceable> \\
+  <replaceable>line2</replaceable> \\
+  ...
 \end{center}
 </screen>
 <para>Create a new paragraph consisting of a sequence of lines that are
-centered within the left and right margins on the current page.  Use
-double-backslash to get a line break at a particular spot (see <link linkend="_005c_005c">\\</link>).
+centered within the left and right margins.  Use
+double-backslash, <literal>\\</literal>, to get a line break (see <link linkend="_005c_005c">\\</link>).
 <indexterm role="fn"><primary>\\ (for <literal>center</literal>)</primary></indexterm>
-If some text environment body is too long to fit on a line, &latex;
-will insert line breaks that avoid hyphenation and avoid stretching or
-shrinking any interword space.
+If some text is too long to fit on a line then &latex; will insert line
+breaks that avoid hyphenation and avoid stretching or shrinking any
+interword space.
 </para>
 <para>This environment inserts space above and below the text body.  See
 <link linkend="_005ccentering">\centering</link> to avoid such space, for example inside a <literal>figure</literal>
@@ -2982,8 +3660,12 @@
   I grew up in that belief.  --Richard Burton 
 \end{center}
 </screen>
-<para>A double backslash after the final line is optional.
+<para>A double backslash after the final line is optional.  If present it
+doesn’t add any vertical space.
 </para>
+<para>In a two-column document the text is centered in a column, not in the
+entire page.
+</para>
 
 
 <sect2 label="8.3.1" id="_005ccentering">
@@ -2992,12 +3674,34 @@
 <indexterm role="fn"><primary>\centering</primary></indexterm>
 <indexterm role="cp"><primary>centering text, declaration for</primary></indexterm>
 
-<para>A declaration that causes material in its scope to be centered.  It is
-most often used inside an environment such as <literal>figure</literal>, or in a
-<literal>parbox</literal>.
+
+<para>Synopsis:
 </para>
+<screen>{\centering ... }
+</screen>
+<para>or
+</para>
+<screen>\begin{group}
+  \centering ...
+\end{group}
+</screen>
+<para>Center the material in its scope.  It is most often used inside an
+environment such as <literal>figure</literal>, or in a <literal>parbox</literal>.
+</para>
+<para>This example’s <literal>\centering</literal> declaration causes the graphic to be
+horizontally centered.
+</para>
+<screen>\begin{figure}
+  \centering
+  \includegraphics[width=0.6\textwidth]{ctan_lion.png}
+  \caption{CTAN Lion}  \label{fig:CTANLion}
+\end{figure}
+</screen>
+<para>The scope of this <literal>\centering</literal> ends with the <literal>\end{figure}</literal>.
+</para>
 <para>Unlike the <literal>center</literal> environment, the <literal>\centering</literal> command does
-not add vertical space above and below the text.
+not add vertical space above and below the text.  That’s its advantage
+in the above example; there is not an excess of space.
 </para>
 <para>It also does not start a new paragraph; it simply changes how &latex;
 formats paragraph units.  If <literal>ww {\centering xx \\ yy} zz</literal> is
@@ -3009,19 +3713,8 @@
 paragraph unit.  Thus, if <literal>{\centering xx \\ yy\par} zz</literal> is
 surrounded by blank lines then it makes a new paragraph with two
 centered lines ‘<literal>xx</literal>’ and ‘<literal>yy</literal>’, followed by a new paragraph with
-‘<literal>zz</literal>’ that is formatted as usual.  See also the following example.
+‘<literal>zz</literal>’ that is formatted as usual.
 </para>
-<para>This example’s <literal>\centering</literal> causes the graphic to be horizontally
-centered.  
-</para>
-<screen>\begin{figure}
-  \centering
-  \includegraphics[width=0.6\textwidth]{ctan_lion.png}
-  \caption{CTAN Lion}  \label{fig:CTANLion}
-\end{figure}
-</screen>
-<para>The scope of the <literal>\centering</literal> ends with the <literal>\end{figure}</literal>.
-</para>
 
 </sect2>
 </sect1>
@@ -3037,20 +3730,18 @@
 <para>Synopsis:
 </para>
 <screen>\begin{description}
-\item[<replaceable>label of first item</replaceable>] text of first item
-\item[<replaceable>label of second item</replaceable>] text of second item
-  ...
+  \item[<replaceable>label of first item</replaceable>] <replaceable>text of first item</replaceable>
+  \item[<replaceable>label of second item</replaceable>] <replaceable>text of second item</replaceable>
+   ...
 \end{description}
 </screen>
-<para>Environment to make a labeled list of items.  Each item’s <replaceable>label</replaceable> is
-typeset in bold, and is flush left so that long labels continue into the
+<para>Environment to make a list of labeled items.  Each item’s <replaceable>label</replaceable> is
+typeset in bold and is flush left, so that long labels continue into the
 first line of the item text.  There must be at least one item; having
 none causes the &latex; error ‘<literal>Something's wrong--perhaps a
 missing \item</literal>’.
 </para>
 <para>This example shows the environment used for a sequence of definitions.
-The labels ‘<literal>lama</literal>’ and ‘<literal>llama</literal>’ come out in boldface with their
-left edges aligned on the left margin.
 </para>
 <screen>\begin{definition}
   \item[lama] A priest.
@@ -3057,6 +3748,9 @@
   \item[llama] A beast.
 \end{definition}
 </screen>
+<para>The labels ‘<literal>lama</literal>’ and ‘<literal>llama</literal>’ are output in boldface, with the
+left edge on the left margin.
+</para>
 <indexterm role="fn"><primary>\item</primary></indexterm>
 <para>Start list items with the <literal>\item</literal> command (see <link linkend="_005citem">\item</link>).  Use the
 optional labels, as in <literal>\item[Main point]</literal>, because there is
@@ -3069,10 +3763,10 @@
 change given in argument style (see <link linkend="Font-styles">Font styles</link>) then it will come
 out bold.  For instance, if the label text calls for typewriter with
 <literal>\item[\texttt{label text}]</literal> then it will appear in bold
-typewriter, if that is available. The simplest way to get non-bold
-typewriter is to use declarative style: <literal>\item[{\tt label
-text}]</literal>.  Similarly, get the standard roman font with <literal>\item[{\rm
-label text}]</literal>.
+typewriter, if that is available. The simplest way around this, in this
+example to get non-bold typewriter, is to use declarative style:
+<literal>\item[{\tt label text}]</literal>.  Similarly, get the standard roman
+font with <literal>\item[{\rm label text}]</literal>.
 </para>
 <para>For other major &latex; labelled list environments, see <link linkend="itemize">itemize</link>
 and <link linkend="enumerate">enumerate</link>.  Unlike those environments, nesting
@@ -3102,7 +3796,7 @@
 <para>Synopsis:
 </para>
 <screen>\begin{displaymath}
-<replaceable>math text</replaceable>
+  <replaceable>mathematical text</replaceable>
 \end{displaymath}
 </screen>
 <para>Environment to typeset the math text on its own line, in display style
@@ -3136,10 +3830,12 @@
 environment honors the <literal>fleqn</literal> option.)
 </para>
 <para>The output from this example is centered and alone on its line. 
-</para><screen>\begin{displaymath}
+</para>
+<screen>\begin{displaymath}
   \int_1^2 x^2\,dx=7/3
 \end{displaymath}
-</screen><para>Also, the integral sign is larger than the inline version  
+</screen>
+<para>Also, the integral sign is larger than the inline version  
 <literal>\( \int_1^2 x^2\,dx=7/3 \)</literal> produces.
 </para>
 
@@ -3211,9 +3907,9 @@
 <para>Synopsis:
 </para>
 <screen>\begin{enumerate}
-\item[<replaceable>optional label of first item</replaceable>] text of first item
-\item[<replaceable>optional label of second item</replaceable>] text of second item
-...
+  \item[<replaceable>optional label of first item</replaceable>] <replaceable>text of first item</replaceable>
+  \item[<replaceable>optional label of second item</replaceable>] <replaceable>text of second item</replaceable>
+  ...
 \end{enumerate}
 </screen>
 <para>Environment to produce a numbered list of items.  The format of the
@@ -3248,15 +3944,15 @@
 the outermost level.
 </para>
 <orderedlist numeration="arabic"><listitem><para>arabic number followed by a period: ‘<literal>1.</literal>’, ‘<literal>2.</literal>’, …
-</para></listitem><listitem><para>lower case letter inside parentheses: ‘<literal>(a)</literal>’, ‘<literal>(b)</literal>’ …
-</para></listitem><listitem><para>lower case roman numeral followed by a period: ‘<literal>i.</literal>’, ‘<literal>ii.</literal>’, …
-</para></listitem><listitem><para>upper case letter followed by a period: ‘<literal>A.</literal>’, ‘<literal>B.</literal>’, …
+</para></listitem><listitem><para>lowercase letter inside parentheses: ‘<literal>(a)</literal>’, ‘<literal>(b)</literal>’ …
+</para></listitem><listitem><para>lowercase roman numeral followed by a period: ‘<literal>i.</literal>’, ‘<literal>ii.</literal>’, …
+</para></listitem><listitem><para>uppercase letter followed by a period: ‘<literal>A.</literal>’, ‘<literal>B.</literal>’, …
 </para></listitem></orderedlist>
 <indexterm role="fn"><primary>\enumi</primary></indexterm>
 <indexterm role="fn"><primary>\enumii</primary></indexterm>
 <indexterm role="fn"><primary>\enumiii</primary></indexterm>
 <indexterm role="fn"><primary>\enumiv</primary></indexterm>
-<para>The <literal>enumerate</literal> environment uses the counters <literal>\enumi</literal> through
+<anchor id="enumerate-enumi"/><anchor id="enumerate-enumii"/><anchor id="enumerate-enumiii"/><anchor id="enumerate-enumiv"/><para>The <literal>enumerate</literal> environment uses the counters <literal>\enumi</literal> through
 <literal>\enumiv</literal> (see <link linkend="Counters">Counters</link>).
 </para>
 <para>For other major &latex; labeled list environments, see
@@ -3269,7 +3965,7 @@
 <indexterm role="fn"><primary>\labelenumii</primary></indexterm>
 <indexterm role="fn"><primary>\labelenumiii</primary></indexterm>
 <indexterm role="fn"><primary>\labelenumiv</primary></indexterm>
-<para>To change the format of the label use <literal>\renewcommand</literal>
+<anchor id="enumerate-labelenumi"/><anchor id="enumerate-labelenumii"/><anchor id="enumerate-labelenumiii"/><anchor id="enumerate-labelenumiv"/><para>To change the format of the label use <literal>\renewcommand</literal>
 (see <link linkend="_005cnewcommand-_0026-_005crenewcommand">\newcommand & \renewcommand</link>) on the commands <literal>\labelenumi</literal>
 through <literal>\labelenumiv</literal>. For instance, this first level list will be
 labelled with uppercase letters, in boldface, and without a trailing
@@ -3299,17 +3995,16 @@
 <indexterm role="cp"><primary>align environment, from <literal>amsmath</literal></primary></indexterm>
 <indexterm role="cp"><primary>amsmath package, replacing <literal>eqnarray</literal></primary></indexterm>
 <indexterm role="cp"><primary>Madsen, Lars</primary></indexterm>
-<para>First, a caveat: the <literal>eqnarray</literal> environment is depreciated.  It has
-infelicities that cannot be overcome, including spacing that is
-inconsistent with other mathematics elements (see the article “Avoid
-eqnarray!” by Lars Madsen
+<para>The <literal>eqnarray</literal> environment is obsolete.  It has infelicities,
+including spacing that is inconsistent with other mathematics elements.
+(See “Avoid eqnarray!” by Lars Madsen
 <ulink url="http://tug.org/TUGboat/tb33-1/tb103madsen.pdf">http://tug.org/TUGboat/tb33-1/tb103madsen.pdf</ulink>).  New documents
 should include the <filename>amsmath</filename> package and use the displayed
 mathematics environments provided there, such as the <literal>align</literal>
-environment.
+environment.  We include a description only for completeness and for
+working with old documents.
 </para>
-<para>Nevertheless, for completeness and for a reference when working with old
-documents, a synopsis:
+<para>Synopsis:
 </para>
 <screen>\begin{eqnarray} 
   <replaceable>first formula left</replaceable>  &<replaceable>first formula middle</replaceable>  &<replaceable>first formula right</replaceable> \\
@@ -3370,21 +4065,22 @@
 <para>Synopsis:
 </para>
 <screen>\begin{equation}
-  math text
+  <replaceable>mathematical text</replaceable>
 \end{equation}
 </screen>
-<para>Make a <literal>displaymath</literal> environment (see <link linkend="displaymath">displaymath</link>) with an
-equation number in the right margin.
+<para>The same as a <literal>displaymath</literal> environment (see <link linkend="displaymath">displaymath</link>)
+except that &latex; puts an equation number flush to the right margin.
+The equation number is generated using the <literal>equation</literal> counter.
 </para>
-<para>The equation number is generated using the <literal>equation</literal> counter.
-</para>
 <para>You should have no blank lines between <literal>\begin{equation}</literal> and
 <literal>\begin{equation}</literal>, or &latex; will tell you that there is a
-missing dollar sign, $<literal>$</literal>.
+missing dollar sign.
 </para>
-<para>Note that the <filename>amsmath</filename> package has extensive displayed equation
-facilities.  Those facilities are the best approach for such output in
-new documents.
+<indexterm role="cp"><primary>package, <literal>amsmath</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>amsmath</literal> package</primary></indexterm>
+
+<para>The package <filename>amsmath</filename> package has extensive displayed equation
+facilities.  New documents should include this package.
 </para>
 
 </sect1>
@@ -3400,27 +4096,34 @@
 <para>Synopsis:
 </para>
 <screen>\begin{figure}[<replaceable>placement</replaceable>]
-  figure body
-\caption[<replaceable>loftitle</replaceable>]{<replaceable>title</replaceable>}
-\label{<replaceable>label}</replaceable>
+  <replaceable>figure body</replaceable>
+  \caption[<replaceable>loftitle</replaceable>]{<replaceable>title</replaceable>}  % optional
+  \label{<replaceable>label}</replaceable>              % optional
 \end{figure}
 </screen>
-<para>or
+<para>or:
 </para>
 <screen>\begin{figure*}[<replaceable>placement</replaceable>]
-  figure body
-\caption[<replaceable>loftitle</replaceable>]{<replaceable>title</replaceable>}
-\label{<replaceable>label}</replaceable>
+  <replaceable>figure body</replaceable>
+  \caption[<replaceable>loftitle</replaceable>]{<replaceable>title</replaceable>}  % optional
+  \label{<replaceable>label}</replaceable>              % optional  
 \end{figure*}
 </screen>
-<para>A class of floats (see <link linkend="Floats">Floats</link>).  Because they cannot be split across
-pages, they are not typeset in sequence with the normal text but instead
-are “floated” to a convenient place, such as the top of a following
-page.
+<para>Figures are for material that is not part of the normal text.  An
+example is material that you cannot have split between two pages, such
+as a graphic.  Because of this, &latex; does not typeset figures in
+sequence with normal text but instead “floats” them to a convenient
+place, such as the top of a following page (see <link linkend="Floats">Floats</link>).
 </para>
-<para>For the possible values of <replaceable>placement</replaceable> and their effect on the 
-float placement algorithm, see <link linkend="Floats">Floats</link>.
+<para>The <replaceable>figure body</replaceable> can consist of imported graphics
+(see <link linkend="Graphics">Graphics</link>), or text, &latex; commands, etc.  It is typeset in a
+<literal>parbox</literal> of width <literal>\textwidth</literal>.
 </para>
+<para>The possible values of <replaceable>placement</replaceable> are <literal>h</literal> for ‘<literal>here</literal>’,
+<literal>t</literal> for ‘<literal>top</literal>’, <literal>b</literal> for ‘<literal>bottom</literal>’, and <literal>p</literal> for
+‘<literal>on a separate page of floats</literal>’.  For the effect of these options on
+the float placement algorithm, see <link linkend="Floats">Floats</link>.
+</para>
 <para>The starred form <literal>figure*</literal> is used when a document is in
 double-column mode (see <link linkend="_005ctwocolumn">\twocolumn</link>).  It produces a figure that
 spans both columns, at the top of the page.  To add the possibility of
@@ -3427,23 +4130,21 @@
 placing at a page bottom see the discussion of <replaceable>placement</replaceable> <literal>b</literal>
 in <link linkend="Floats">Floats</link>.
 </para>
-<para>The figure body is typeset in a <literal>parbox</literal> of width <literal>\textwidth</literal>
-and so it can contain text, commands, etc.
-</para>
 <para>The label is optional; it is used for cross references (see <link linkend="Cross-references">Cross
 references</link>).
 <indexterm role="fn"><primary>\caption</primary></indexterm>
 The optional <literal>\caption</literal> command specifies caption text for the
 figure.  By default it is numbered.  If <replaceable>loftitle</replaceable> is present, it is
-used in the list of figures instead of <replaceable>title</replaceable> (see <link linkend="Tables-of-contents">Tables of
-contents</link>).
+used in the list of figures instead of <replaceable>title</replaceable> (see <link linkend="Table-of-contents-etc_002e">Table of
+contents etc.</link>).
 </para>
-<para>This example makes a figure out of a graphic.  It requires one of the
-packages <filename>graphics</filename> or <filename>graphicx</filename>.  The graphic, with its
-caption, will be placed at the top of a page or, if it is pushed to the
+<para>This example makes a figure out of a graphic.  &latex; will place that
+graphic and its caption at the top of a page or, if it is pushed to the
 end of the document, on a page of floats.
 </para>
-<screen>\begin{figure}[t]
+<screen>\usepackage{graphicx}  % in preamble
+  ...
+\begin{figure}[t]
   \centering
   \includegraphics[width=0.5\textwidth]{CTANlion.png}
   \caption{The CTAN lion, by Duane Bibby}
@@ -3522,19 +4223,36 @@
 <indexterm role="cp"><primary>left-justifying text, environment for</primary></indexterm>
 <indexterm role="cp"><primary>ragged right text, environment for</primary></indexterm>
 
+<para>Synopsis:
+</para>
 <screen>\begin{flushleft}
-<replaceable>line1</replaceable> \\
-<replaceable>line2</replaceable> \\
-...
+  <replaceable>line1</replaceable> \\
+  <replaceable>line2</replaceable> \\
+  ...
 \end{flushleft}
 </screen>
 <indexterm role="fn"><primary>\\ for <literal>flushleft</literal></primary></indexterm>
-<para>The <literal>flushleft</literal> environment allows you to create a paragraph
-consisting of lines that are flush to the left-hand margin and ragged
-right. Each line must be terminated with the string <literal>\\</literal>.
+<para>An environment that creates a paragraph whose lines are flush to the
+left-hand margin, and ragged right. If you have lines that are too long
+then &latex; will linebreak them in a way that avoids hyphenation and
+stretching or shrinking spaces.  To force a new line use a double
+backslash, <literal>\\</literal>.  For the declaration form
+see <link linkend="_005craggedright">\raggedright</link>.
 </para>
+<para>This creates a box of text that is at most 3 inches wide, with the text
+flush left and ragged right.
+</para>
+<screen>\noindent\begin{minipage}{3in}
+\begin{flushleft}
+  A long sentence that will be broken by \LaTeX{}
+    at a convenient spot. \\
+  And, a fresh line forced by the double backslash.
+\end{flushleft}
+\end{minipage}
+</screen>
 
 
+
 <sect2 label="8.12.1" id="_005craggedright">
 <title><literal>\raggedright</literal></title>
 
@@ -3543,10 +4261,21 @@
 <indexterm role="cp"><primary>left-justifying text</primary></indexterm>
 <indexterm role="cp"><primary>justification, ragged right</primary></indexterm>
 
-<para>The <literal>\raggedright</literal> declaration corresponds to the
-<literal>flushleft</literal> environment.  This declaration can be used inside an
-environment such as <literal>quote</literal> or in a <literal>parbox</literal>.
+<para>Synopses:
 </para>
+<screen>{\raggedright  ... }
+</screen>
+<para>or
+</para>
+<screen>\begin{<replaceable>environment</replaceable>} \raggedright
+  ...
+\end{<replaceable>environment</replaceable>}
+</screen>
+<para>A declaration which causes lines to be flush to the left margin and
+ragged right. It can be used inside an environment such as <literal>quote</literal>
+or in a <literal>parbox</literal>.  For the environment form
+see <link linkend="flushleft">flushleft</link>.
+</para>
 <para>Unlike the <literal>flushleft</literal> environment, the <literal>\raggedright</literal>
 command does not start a new paragraph; it only changes how &latex;
 formats paragraph units.  To affect a paragraph unit’s format, the
@@ -3553,6 +4282,17 @@
 scope of the declaration must contain the blank line or <literal>\end</literal>
 command that ends the paragraph unit.
 </para>
+<para>Here <literal>\raggedright</literal> in each second column keeps &latex; from doing
+very awkward typesetting to fit the text into the narrow column.  Note
+that <literal>\raggedright</literal> is inside the curly braces <literal>{...}</literal> to
+delimit its effect.
+</para>
+<screen>\begin{tabular}{rp{2in}}
+  Team alpha  &{\raggedright This team does all the real work.} \\
+  Team beta   &{\raggedright This team ensures that the water
+                cooler is never empty.}                         \\
+\end{tabular}
+</screen>
 
 </sect2>
 </sect1>
@@ -3566,16 +4306,21 @@
 <indexterm role="cp"><primary>right-justifying text, environment for</primary></indexterm>
 
 <screen>\begin{flushright}
-<replaceable>line1</replaceable> \\
-<replaceable>line2</replaceable> \\
-...
+  <replaceable>line1</replaceable> \\
+  <replaceable>line2</replaceable> \\
+  ...
 \end{flushright}
 </screen>
 <indexterm role="fn"><primary>\\ (for <literal>flushright</literal>)</primary></indexterm>
-<para>The <literal>flushright</literal> environment allows you to create a paragraph
-consisting of lines that are flush to the right-hand margin and ragged
-left.  Each line must be terminated with the control sequence <literal>\\</literal>.
+<para>An environment that creates a paragraph whose lines are flush to the
+right-hand margin and ragged left. If you have lines that are too long
+to fit the margins then &latex; will linebreak them in a way that
+avoids hyphenation and stretching or shrinking spaces.  To force a new
+line use a double backslash, <literal>\\</literal>.  For the declaration form
+see <link linkend="_005craggedleft">\raggedleft</link>.
 </para>
+<para>For an example related to this environment, see <link linkend="flushleft">flushleft</link>.
+</para>
 
 
 <sect2 label="8.13.1" id="_005craggedleft">
@@ -3586,10 +4331,21 @@
 <indexterm role="cp"><primary>justification, ragged left</primary></indexterm>
 <indexterm role="cp"><primary>right-justifying text</primary></indexterm>
 
-<para>The <literal>\raggedleft</literal> declaration corresponds to the
-<literal>flushright</literal> environment.  This declaration can be used inside an
-environment such as <literal>quote</literal> or in a <literal>parbox</literal>.
+<para>Synopses:
 </para>
+<screen>{\raggedleft  ... }
+</screen>
+<para>or
+</para>
+<screen>\begin{<replaceable>environment</replaceable>} \raggedleft
+  ...
+\end{<replaceable>environment</replaceable>}
+</screen>
+<para>A declaration which causes lines to be flush to the right margin and
+ragged left. It can be used inside an environment such as <literal>quote</literal>
+or in a <literal>parbox</literal>.  For the environment form
+see <link linkend="flushright">flushright</link>.
+</para>
 <para>Unlike the <literal>flushright</literal> environment, the <literal>\raggedleft</literal>
 command does not start a new paragraph; it only changes how &latex;
 formats paragraph units.  To affect a paragraph unit’s format, the
@@ -3596,6 +4352,8 @@
 scope of the declaration must contain the blank line or <literal>\end</literal>
 command that ends the paragraph unit.
 </para>
+<para>For an example related to this environment, see <link linkend="_005craggedright">\raggedright</link>.
+</para>
 
 </sect2>
 </sect1>
@@ -3609,23 +4367,21 @@
 <indexterm role="cp"><primary>lists of items</primary></indexterm>
 <indexterm role="cp"><primary>unordered lists</primary></indexterm>
 <indexterm role="cp"><primary>bulleted lists</primary></indexterm>
+<indexterm role="cp"><primary>bullet lists</primary></indexterm>
 
 <para>Synopsis:
 </para>
 <screen>\begin{itemize}
-\item[<replaceable>optional label of first item</replaceable>] text of first item
-\item[<replaceable>optional label of second item</replaceable>] text of second item
-...
+  \item[<replaceable>optional label of first item</replaceable>] <replaceable>text of first item</replaceable>
+  \item[<replaceable>optional label of second item</replaceable>] <replaceable>text of second item</replaceable>
+  ...
 \end{itemize}
 </screen>
-<para>The <literal>itemize</literal> environment produces an “unordered”, “bulleted”
-list.  The format of the label numbering depends on the nesting level of
-this environment; see below.  Each <literal>itemize</literal> list environment must
-have at least one item; having none causes the &latex; error
-‘<literal>Something's wrong--perhaps a missing \item</literal>’.
+<para>Produce a list that is unordered, sometimes called a bullet list.  The
+environment must have at least one <literal>\item</literal>; having none causes the
+&latex; error ‘<literal>Something's wrong--perhaps a missing \item</literal>’.
 </para>
-<para>This example gives a two-item list.  As a top-level list each label
-would come out as a bullet, •.
+<para>This gives a two-item list.
 </para>
 <screen>\begin{itemize}
  \item Pencil and watercolor sketch by Cassandra
@@ -3632,6 +4388,9 @@
  \item Rice portrait 
 \end{itemize}
 </screen>
+<para>As a top-level list each label would come out as a bullet, •.
+The format of the labeling depends on the nesting level; see below.
+</para>
 <indexterm role="fn"><primary>\item</primary></indexterm>
 <para>Start list items with the <literal>\item</literal> command (see <link linkend="_005citem">\item</link>).  If you
 give <literal>\item</literal> an optional argument by following it with square
@@ -3645,11 +4404,11 @@
 <indexterm role="fn"><primary>\labelitemii</primary></indexterm>
 <indexterm role="fn"><primary>\labelitemiii</primary></indexterm>
 <indexterm role="fn"><primary>\labelitemiv</primary></indexterm>
-<para>Itemized lists can be nested within one another, up to four levels deep.
+<anchor id="itemize-labelitemi"/><anchor id="itemize-labelitemii"/><anchor id="itemize-labelitemiii"/><anchor id="itemize-labelitemiv"/><para>Itemized lists can be nested within one another, up to four levels deep.
 They can also be nested within other paragraph-making environments, such
 as <literal>enumerate</literal> (see <link linkend="enumerate">enumerate</link>).  The <literal>itemize</literal> environment
 uses the commands <literal>\labelitemi</literal> through <literal>\labelitemiv</literal> to
-produce the default label (this also uses the convention of lower case
+produce the default label (this also uses the convention of lowercase
 roman numerals at the end of the command names that signify the nesting
 level).  These are the default marks at each level.
 </para>
@@ -3670,10 +4429,10 @@
 <indexterm role="fn"><primary>\leftmarginiv</primary></indexterm>
 <indexterm role="fn"><primary>\leftmarginv</primary></indexterm>
 <indexterm role="fn"><primary>\leftmarginvi</primary></indexterm>
-<para>The distance between the left margin of the enclosing environment and
+<anchor id="itemize-leftmargin"/><anchor id="itemize-leftmargini"/><anchor id="itemize-leftmarginii"/><anchor id="itemize-leftmarginiii"/><anchor id="itemize-leftmarginiv"/><anchor id="itemize-leftmarginv"/><anchor id="itemize-leftmarginvi"/><para>The distance between the left margin of the enclosing environment and
 the left margin of the <literal>itemize</literal> list is determined by the
 parameters <literal>\leftmargini</literal> through <literal>\leftmarginvi</literal>.  (Note the
-convention of using lower case roman numerals a the end of the command
+convention of using lowercase roman numerals a the end of the command
 name to denote the nesting level.)  The defaults are: <literal>2.5em</literal> in
 level 1 (<literal>2em</literal> in two-column mode), <literal>2.2em</literal> in level 2,
 <literal>1.87em</literal> in level 3, and <literal>1.7em</literal> in level 4, with smaller
@@ -3695,7 +4454,7 @@
 space between items.  Here is an example defining an <literal>itemize*</literal>
 environment with no extra spacing between items, or between paragraphs
 within a single item (<literal>\parskip</literal> is not list-specific,
-see <link linkend="_005cparskip">\parskip</link>):
+see <link linkend="_005cparindent-_0026-_005cparskip">\parindent & \parskip</link>):
 </para>
 <screen>\newenvironment{itemize*}%
   {\begin{itemize}%
@@ -3728,34 +4487,33 @@
 <para>Synopsis:
 </para>
 <screen>\begin{list}{<replaceable>labeling</replaceable>}{<replaceable>spacing</replaceable>}
-\item[<replaceable>optional label of first item</replaceable>] text of first item
-\item[<replaceable>optional label of second item</replaceable>] text of second item
-...
+  \item[<replaceable>optional label of first item</replaceable>] <replaceable>text of first item</replaceable>
+  \item[<replaceable>optional label of second item</replaceable>] <replaceable>text of second item</replaceable>
+  ...
 \end{list}
 </screen>
-<para>The <literal>list</literal> environment is a generic environment for constructing
-more specialized lists.  It is most often used to create lists via the
-<literal>description</literal>, <literal>enumerate</literal>, and <literal>itemize</literal> environments
-(see <link linkend="description">description</link>, <link linkend="enumerate">enumerate</link>, and <link linkend="itemize">itemize</link>).
+<para>An environment for constructing lists.
 </para>
-<para>Also, many standard &latex; environments that are not visually lists
-are constructed using <literal>list</literal>, including <literal>quotation</literal>,
-<literal>quote</literal>, <literal>center</literal>, <literal>verbatim</literal>, and plenty more
-(see <link linkend="quotation-and-quote">quotation and quote</link>, see <link linkend="center">center</link>, see <link linkend="flushright">flushright</link>).
+<para>Note that this environment does not typically appear in the document
+body.  Most lists created by &latex; authors are the ones that come
+standard: the <literal>description</literal>, <literal>enumerate</literal>, and <literal>itemize</literal>
+environments (see <link linkend="description">description</link>, <link linkend="enumerate">enumerate</link>, and <link linkend="itemize">itemize</link>).
 </para>
-<indexterm role="cp"><primary>package, <literal>enumitem</literal></primary></indexterm>
-<indexterm role="cp"><primary><literal>enumitem</literal> package</primary></indexterm>
-
-<para>The third-party package <literal>enumitem</literal> is useful for customizing lists.
-Here, we describe the <literal>list</literal> environment by defining a new custom
+<para>Instead, the <literal>list</literal> environment is most often used in macros.  For
+example, many standard &latex; environments that do not immediately
+appear to be lists are in fact constructed using <literal>list</literal>, including
+<literal>quotation</literal>, <literal>quote</literal>, and <literal>center</literal> (see <link linkend="quotation-_0026-quote">quotation &
+quote</link>, see <link linkend="center">center</link>).
+</para>
+<para>This uses the <literal>list</literal> environment to define a new custom
 environment.
 </para>
 <screen>\newcounter{namedlistcounter}  % number the items
 \newenvironment{named}
   {\begin{list}
-     {Item~\Roman{namedlistcounter}.} % labeling argument
-     {\usecounter{namedlistcounter}   % spacing argument
-      \setlength{\leftmargin}{3.5em}} % still spacing arg
+     {Item~\Roman{namedlistcounter}.} % labeling 
+     {\usecounter{namedlistcounter}   % set counter
+      \setlength{\leftmargin}{3.5em}} % set spacing 
   }
   {\end{list}}
 
@@ -3765,54 +4523,55 @@
   \item Shows as ``Item~II.''
 \end{named}
 </screen>
-<para>The <literal>list</literal> environment’s mandatory first argument,
-<replaceable>labeling</replaceable>, specifies the default labeling of list items.  It can
-contain text and &latex; commands, as above where it contains both
-‘<literal>Item</literal>’ and ‘<literal>\Roman{...}</literal>’.  &latex; forms the label by
-putting the <replaceable>labeling</replaceable> argument in a box of width
-<literal>\labelwidth</literal>.  If the label is wider than that, the additional
-material extends to the right.  When making an instance of a list you
-can override the default labeling by giving <literal>\item</literal> an optional
-argument by including square braces and the text, as in the above
-<literal>\item[Special label.]</literal>; see <link linkend="_005citem">\item</link>.
+<para>The mandatory first argument <replaceable>labeling</replaceable> specifies the default
+labeling of list items.  It can contain text and &latex; commands, as
+above where it contains both ‘<literal>Item</literal>’ and ‘<literal>\Roman{...}</literal>’.
+&latex; forms the label by putting the <replaceable>labeling</replaceable> argument in a box
+of width <literal>\labelwidth</literal>.  If the label is wider than that, the
+additional material extends to the right.  When making an instance of a
+list you can override the default labeling by giving <literal>\item</literal> an
+optional argument by including square braces and the text, as in the
+above <literal>\item[Special label.]</literal>; see <link linkend="_005citem">\item</link>.
 </para>
+<para>The mandatory second argument <replaceable>spacing</replaceable> has a list of commands.
+This list can be empty.  A command that can go in here is
+<literal>\usecounter{<replaceable>countername</replaceable>}</literal> (see <link linkend="_005cusecounter">\usecounter</link>).  Use this
+to tell &latex; to number the items using the given counter.  The
+counter will be reset to zero each time &latex; enters the environment,
+and the counter is incremented by one each time &latex; encounters an
+<literal>\item</literal> that does not have an optional argument.
+</para>
 <indexterm role="fn"><primary>\makelabel</primary></indexterm>
-<para>The label box is constructed by the command <literal>\makelabel</literal>.  By
-default it positions the contents flush right.  It takes one argument,
-the label.  It typesets the contents in LR mode. An example of changing
-its definition is that to the above example before the definition of the
-<literal>named</literal> environment add
+<anchor id="list-makelabel"/><para>Another command that can go in <replaceable>spacing</replaceable> is
+<literal>\makelabel</literal>, which constructs the label box.  By default it puts
+the contents flush right.  Its only argument is the label, which it
+typesets in LR mode (see <link linkend="Modes">Modes</link>). One example of changing its
+definition is that to the above <literal>named</literal> example, before the
+definition of the environment add
 <literal>\newcommand{\namedmakelabel}[1]{\textsc{#1}}</literal>, and between
 the <literal>\setlength</literal> command and the parenthesis that closes the
 <replaceable>spacing</replaceable> argument also add <literal>\let\makelabel\namedmakelabel</literal>.
 Then the items will be typeset in small caps.  Similarly, changing the
 second code line to <literal>\let\makelabel\fbox</literal> puts the labels inside a
-framed box.  Another example is at the bottom of this entry.
+framed box.  Another example of the <literal>\makelabel</literal> command is below,
+in the definition of the <literal>redlabel</literal> environment.
 </para>
-<para>The mandatory second argument <replaceable>spacing</replaceable> can have a list of
-commands to redefine the spacing parameters for the list, such as
-<literal>\setlength{\labelwidth}{2em}</literal>.  If this argument is empty,
-i.e., <literal>{}</literal>, then the list will have the default spacing given
-below.  To number the items using a counter, put
-<literal>\usecounter{<replaceable>countername</replaceable>}</literal> in this argument
-(see <link linkend="_005cusecounter">\usecounter</link>).
+<para>Also often in <replaceable>spacing</replaceable> are commands to redefine the spacing for the
+list.  Below are the spacing parameters with their default values.
+(Default values for derived environments such as <literal>itemize</literal> can be
+different than the values shown here.) See also the figure that follows
+the list.  Each is a length (see <link linkend="Lengths">Lengths</link>).  The vertical spaces are
+normally rubber lengths, with <literal>plus</literal> and <literal>minus</literal> components,
+to give &tex; flexibility in setting the page.  Change each with a
+command such as <literal>\setlength{itemsep}{2pt plus1pt minus1pt}</literal>.
+For some effects these lengths should be zero or negative.
 </para>
-<para>Below are the spacing parameters for list formatting.  See also the
-figure below.  Each is a length (see <link linkend="Lengths">Lengths</link>).  The vertical
-spaces are normally rubber lengths, with <literal>plus</literal> and <literal>minus</literal>
-components, to give &tex; flexibility in setting the page.  Change
-each with a command such as <literal>\setlength{itemsep}{2pt plus1pt
-minus1pt}</literal>.  For some effects these lengths should be zero or
-negative.  Default values for derived environments such as
-<literal>itemize</literal> can be changed from the values shown here for the basic
-<literal>list</literal>.
-</para>
 <variablelist><varlistentry><term><indexterm role="fn"><primary>\itemindent</primary></indexterm><literal>\itemindent</literal>
-</term><listitem><para>Extra horizontal space indentation, beyond <literal>leftmargin</literal>, of the
+</term><listitem><anchor id="list-itemindent"/><para>Extra horizontal space indentation, beyond <literal>leftmargin</literal>, of the
 first line each item.  Its default value is <literal>0pt</literal>.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\itemsep</primary></indexterm><literal>\itemsep</literal>
-</term><listitem><para>Vertical space between items, beyond the <literal>\parsep</literal>.  The defaults
+</term><listitem><anchor id="list-itemsep"/><para>Vertical space between items, beyond the <literal>\parsep</literal>.  The defaults
 for the first three levels in &latex;’s ‘<literal>article</literal>’, ‘<literal>book</literal>’,
 and ‘<literal>report</literal>’ classes at 10 point size are: <literal>4pt plus2pt
 minus1pt</literal>, <literal>\parsep</literal> (that is, <literal>2pt plus1pt minus1pt</literal>), and
@@ -3824,12 +4583,12 @@
 <literal>\topsep</literal> (that is, <literal>2.5pt plus1pt minus1pt</literal>).
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\labelsep</primary></indexterm><literal>\labelsep</literal>
-</term><listitem><para>Horizontal space between the label and text of an item.
+</term><listitem><anchor id="list-labelsep"/><para>Horizontal space between the label and text of an item.
 The default for &latex;’s ‘<literal>article</literal>’, ‘<literal>book</literal>’,
 and ‘<literal>report</literal>’ classes is <literal>0.5em</literal>.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\labelwidth</primary></indexterm><literal>\labelwidth</literal>
-</term><listitem><para>Horizontal width.  The box containing the label is nominally this wide.
+</term><listitem><anchor id="list-labelwidth"/><para>Horizontal width.  The box containing the label is nominally this wide.
 If <literal>\makelabel</literal> returns text that is wider than this then the first
 line of the item will be indented to make room for this extra material.
 If <literal>\makelabel</literal> returns text of width less than or equal to
@@ -3850,7 +4609,7 @@
 environment.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\leftmargin</primary></indexterm><literal>\leftmargin</literal>
-</term><listitem><para>Horizontal space between the left margin of the enclosing environment
+</term><listitem><anchor id="list-leftmargin"/><para>Horizontal space between the left margin of the enclosing environment
 (or the left margin of the page if this is a top-level list), and the
 left margin of this list.  It must be non-negative.
 </para>
@@ -3867,13 +4626,13 @@
 <literal>2.2em</literal>, and <literal>\leftmarginiii</literal> is <literal>1.87em</literal>.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\listparindent</primary></indexterm><literal>\listparindent</literal>
-</term><listitem><para>Horizontal space of additional line indentation, beyond
+</term><listitem><anchor id="list-listparindent"/><para>Horizontal space of additional line indentation, beyond
 <literal>\leftmargin</literal>, for second and subsequent paragraphs within a list
 item.  A negative value makes this an “outdent”.  Its default value
 is <literal>0pt</literal>.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\parsep</primary></indexterm><literal>\parsep</literal>
-</term><listitem><para>Vertical space between paragraphs within an item.  In the ‘<literal>book</literal>’
+</term><listitem><anchor id="list-parsep"/><para>Vertical space between paragraphs within an item.  In the ‘<literal>book</literal>’
 and ‘<literal>article</literal>’ classes The defaults for the first three levels in
 &latex;’s ‘<literal>article</literal>’, ‘<literal>book</literal>’, and ‘<literal>report</literal>’ classes at 10
 point size are: <literal>4pt plus2pt minus1pt</literal>, <literal>2pt plus1pt
@@ -3883,7 +4642,7 @@
 minus1pt</literal>, <literal>2.5pt plus1pt minus1pt</literal>, and <literal>0pt</literal>.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\partopsep</primary></indexterm><literal>\partopsep</literal>
-</term><listitem><para>Vertical space added, beyond <literal>\topsep</literal>+<literal>\parskip</literal>, to the top
+</term><listitem><anchor id="list-partopsep"/><para>Vertical space added, beyond <literal>\topsep</literal>+<literal>\parskip</literal>, to the top
 and bottom of the entire environment if the list instance is preceded by
 a blank line.  (A blank line in the &latex; source before the list
 changes spacing at both the top and bottom of the list; whether the line
@@ -3898,20 +4657,20 @@
 minus2pt</literal>, and <literal>1pt plus0pt minus1pt</literal>.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\rightmargin</primary></indexterm><literal>\rightmargin</literal>
-</term><listitem><para>Horizontal space between the right margin of the list and the right
+</term><listitem><anchor id="list-rightmargin"/><para>Horizontal space between the right margin of the list and the right
 margin of the enclosing environment.  Its default value is <literal>0pt</literal>.
 It must be non-negative.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\topsep</primary></indexterm><literal>\topsep</literal>
-</term><listitem><para>Vertical space added to both the top and bottom of the list, in addition
-to <literal>\parskip</literal> (see <link linkend="_005cparskip">\parskip</link>).  The defaults for the first three
-levels in &latex;’s ‘<literal>article</literal>’, ‘<literal>book</literal>’, and ‘<literal>report</literal>’
-classes at 10 point size are: <literal>8pt plus2pt minus4pt</literal>, <literal>4pt
-plus2pt minus1pt</literal>, and <literal>2pt plus1pt minus1pt</literal>.  The defaults at 11
-point are: <literal>9pt plus3pt minus5pt</literal>, <literal>4.5pt plus2pt minus1pt</literal>,
-and <literal>2pt plus1pt minus1pt</literal>.  The defaults at 12 point are:
-<literal>10pt plus4pt minus6pt</literal>, <literal>5pt plus2.5pt minus1pt</literal>, and
-<literal>2.5pt plus1pt minus1pt</literal>.
+</term><listitem><anchor id="list-topsep"/><para>Vertical space added to both the top and bottom of the list, in addition
+to <literal>\parskip</literal> (see <link linkend="_005cparindent-_0026-_005cparskip">\parindent & \parskip</link>).  The defaults for
+the first three levels in &latex;’s ‘<literal>article</literal>’, ‘<literal>book</literal>’, and
+‘<literal>report</literal>’ classes at 10 point size are: <literal>8pt plus2pt minus4pt</literal>,
+<literal>4pt plus2pt minus1pt</literal>, and <literal>2pt plus1pt minus1pt</literal>.  The
+defaults at 11 point are: <literal>9pt plus3pt minus5pt</literal>, <literal>4.5pt
+plus2pt minus1pt</literal>, and <literal>2pt plus1pt minus1pt</literal>.  The defaults at 12
+point are: <literal>10pt plus4pt minus6pt</literal>, <literal>5pt plus2.5pt minus1pt</literal>,
+and <literal>2.5pt plus1pt minus1pt</literal>.
 </para>
 </listitem></varlistentry></variablelist>
 <para>This shows the horizontal and vertical distances.
@@ -3956,6 +4715,9 @@
 appears in the source above the environment; whether a blank line
 appears in the source below the environment does not matter.)
 </para>
+</listitem></varlistentry><varlistentry><term><replaceable>h0</replaceable>
+</term><listitem><para><literal>\labelwidth</literal>
+</para>
 </listitem></varlistentry><varlistentry><term><replaceable>h1</replaceable>
 </term><listitem><para><literal>\labelsep</literal>
 </para>
@@ -3989,17 +4751,23 @@
 page break.
 </para>
 <variablelist><varlistentry><term><indexterm role="fn"><primary>\@beginparpenalty</primary></indexterm><literal>\@beginparpenalty</literal>
-</term><listitem><para>The page breaking penalty for breaking before the list (default <literal>-51</literal>).
+</term><listitem><anchor id="list-beginparpenalty"/><para>The page breaking penalty for breaking before the list (default <literal>-51</literal>).
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\@itempenalty</primary></indexterm><literal>\@itempenalty</literal>
-</term><listitem><para>The page breaking penalty for breaking before a list item (default <literal>-51</literal>).
+</term><listitem><anchor id="list-itempenalty"/><para>The page breaking penalty for breaking before a list item (default <literal>-51</literal>).
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\@endparpenalty</primary></indexterm><literal>\@endparpenalty</literal>
-</term><listitem><para>The page breaking penalty for breaking after a list (default <literal>-51</literal>).
+</term><listitem><anchor id="list-endparpenalty"/><para>The page breaking penalty for breaking after a list (default <literal>-51</literal>).
 </para>
 </listitem></varlistentry></variablelist>
+<indexterm role="cp"><primary>package, <literal>enumitem</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>enumitem</literal> package</primary></indexterm>
+
+<para>The package <literal>enumitem</literal> is useful for customizing lists.
+</para>
 <para>This example has the labels in red.  They are numbered, and the left
 edge of the label lines up with the left edge of the item text.
+See <link linkend="_005cusecounter">\usecounter</link>.
 </para>
 <screen>\usepackage{color}
 \newcounter{cnt}  
@@ -4027,7 +4795,8 @@
 <screen>\item text of item
 </screen>
 <para>or
-</para><screen>\item[<replaceable>optional-label</replaceable>] text of item
+</para>
+<screen>\item[<replaceable>optional-label</replaceable>] text of item
 </screen>
 <para>An entry in a list.  The entries are prefixed by a label, whose default
 depends on the list type.
@@ -4130,24 +4899,114 @@
         
 <indexterm role="cp"><primary>minipage, creating a</primary></indexterm>
 
+<para>Synopses:
+</para>
+<screen>\begin{minipage}{<replaceable>width</replaceable>}
+  <replaceable>contents</replaceable>
+\end{minipage}
+</screen>
+<para>or
+</para>
 <screen>\begin{minipage}[<replaceable>position</replaceable>][<replaceable>height</replaceable>][<replaceable>inner-pos</replaceable>]{<replaceable>width</replaceable>}
-<replaceable>text</replaceable>
+  <replaceable>contents</replaceable>
 \end{minipage}
 </screen>
-<para>The <literal>minipage</literal> environment typesets its body <replaceable>text</replaceable> in a
-block that will not be broken across pages.  This is similar to the
-<literal>\parbox</literal> command (see <link linkend="_005cparbox">\parbox</link>), but unlike <literal>\parbox</literal>,
-other paragraph-making environments can be used inside a minipage.
+<para>Put <replaceable>contents</replaceable> into a box that is <replaceable>width</replaceable> wide.  This is like a
+small version of a page; it can contain its own footnotes, itemized
+lists, etc. (There are some restrictions, including that it cannot have
+floats.)  This box will not be broken across pages.  So <literal>minipage</literal>
+is similar to <literal>\parbox</literal> (see <link linkend="_005cparbox">\parbox</link>) but here you can have
+paragraphs.
 </para>
-<!-- (xxref positions) -->
-<para>The arguments are the same as for <literal>\parbox</literal> (see <link linkend="_005cparbox">\parbox</link>).
+<para>This example will be 3 inches wide, and has two paragraphs.
 </para>
+<screen>\begin{minipage}{3in}
+  Stephen Kleene was a founder of the Theory of Computation.
+
+  He was a student of Church, wrote three influential texts,
+  was President of the Association for Symbolic Logic,
+  and won the National Medal of Science.
+\end{minipage}
+</screen>
+<para>See below for a discussion of the paragraph indent inside a
+<literal>minipage</literal>.
+</para>
+<para>The required argument <replaceable>width</replaceable> is a rigid length (see <link linkend="Lengths">Lengths</link>).
+It gives the width of the box into which <replaceable>contents</replaceable> are typeset.
+</para>
+<para>There are three optional arguments, <replaceable>position</replaceable>, <replaceable>height</replaceable>, and
+<replaceable>inner-pos</replaceable>.  You need not include all three. For example, get the
+default <replaceable>position</replaceable> and set the <replaceable>height</replaceable> with
+<literal>\begin{minipage}[c][2.54cm] <replaceable>contents</replaceable> \end{minipage}</literal>.
+(Get the natural height with an empty argument, <literal>[]</literal>.)
+</para>
+<para>The optional argument <replaceable>position</replaceable> governs how the <literal>minipage</literal>
+vertically aligns with the surrounding material.
+</para>
+<variablelist><varlistentry><term><literal>c</literal>
+</term><listitem><para>(synonym <literal>m</literal>) Default.  Positions the <literal>minipage</literal> so its
+vertical center lines up with the center of the adjacent text line (what
+Plain &tex; calls <literal>\vcenter</literal>).
+</para>
+</listitem></varlistentry><varlistentry><term><literal>t</literal>
+</term><listitem><para>Match the top line in the <literal>minipage</literal> with the baseline of the
+surrounding text (Plain &tex;’s <literal>\vtop</literal>.
+</para>
+</listitem></varlistentry><varlistentry><term><literal>b</literal>
+</term><listitem><para>Match the bottom line in the <literal>minipage</literal> with the baseline of the
+surrounding text (Plain &tex;’s <literal>\vbox</literal>.
+</para></listitem></varlistentry></variablelist>
+<para>To see the effects of these, contrast running this
+</para>
+<screen>---\begin{minipage}[c]{0.25in}
+  first\\ second\\ third
+\end{minipage}
+</screen>
+<para>with the results of changing <literal>c</literal> to <literal>b</literal> or <literal>t</literal>.
+</para>
+<para>The optional argument <replaceable>height</replaceable> is a rigid length (see <link linkend="Lengths">Lengths</link>).
+It sets the height of the <literal>minipage</literal>.  You can enter any value
+larger than, or equal to, or smaller than the <literal>minipage</literal>’s natural
+height and &latex; will not give an error or warning.  You can also set
+it to a height of zero or a negative value.
+</para>
+<para>The final optional argument <replaceable>inner-pos</replaceable> controls the placement of
+<replaceable>content</replaceable> inside the box. These are the possible values are (the
+default is the value of <replaceable>position</replaceable>).
+</para>
+<variablelist><varlistentry><term><literal>t</literal>
+</term><listitem><para>Place <replaceable>content</replaceable> at the top of the box.
+</para>
+</listitem></varlistentry><varlistentry><term><literal>c</literal>
+</term><listitem><para>Place it in the vertical center.
+</para>
+</listitem></varlistentry><varlistentry><term><literal>b</literal>
+</term><listitem><para>Place it at the box bottom.
+</para>
+</listitem></varlistentry><varlistentry><term><literal>s</literal>
+</term><listitem><para>Stretch <replaceable>contents</replaceable> out vertically; it must contain vertically
+stretchable space.
+</para>
+</listitem></varlistentry></variablelist>
+<para>The <replaceable>inner-pos</replaceable> argument makes sense when the <replaceable>height</replaceable> options
+is set to a value larger than the <literal>minipage</literal>’s natural height.  To
+see the effect of the options, run this example with the various choices
+in place of <literal>b</literal>.
+</para>
+<screen>Text before
+\begin{center}
+  ---\begin{minipage}[c][3in][b]{0.25\textwidth}
+       first\\ second\\ third
+  \end{minipage}              
+\end{center}
+Text after  
+</screen>
 <indexterm role="cp"><primary>indentation of paragraphs, in minipage</primary></indexterm>
 <indexterm role="cp"><primary>paragraph indentation, in minipage</primary></indexterm>
 <indexterm role="fn"><primary>\parindent</primary></indexterm>
-<para>By default, paragraphs are not indented in the <literal>minipage</literal>
-environment.  You can restore indentation with a command such as
-<literal>\setlength{\parindent}{1pc}</literal> command.
+<para>By default paragraphs are not indented in a <literal>minipage</literal>.  Change
+that with a command such as <literal>\setlength{\parindent}{1pc}</literal> at
+the start of <replaceable>contents</replaceable>.
 </para>
 <indexterm role="cp"><primary>footnotes in figures</primary></indexterm>
 <indexterm role="cp"><primary>figures, footnotes in</primary></indexterm>
@@ -4158,9 +5017,46 @@
 uses the <literal>\mpfootnote</literal> counter instead of the ordinary
 <literal>footnote</literal> counter (see <link linkend="Counters">Counters</link>).
 </para>
-<para>However, don’t put one minipage inside another if you are using
-footnotes; they may wind up at the bottom of the wrong minipage.
+<para>This puts the footnote at the bottom of the table, not the bottom of the
+page.
 </para>
+<screen>\begin{center}           % center the minipage on the line
+\begin{minipage}{2.5in}
+  \begin{center}         % center the table inside the minipage
+    \begin{tabular}{ll}
+      \textsc{Monarch}  &\textsc{Reign}             \\ \hline
+      Elizabeth II      &63 years\footnote{to date} \\
+      Victoria          &63 years                   \\
+      George III        &59 years
+    \end{tabular}
+  \end{center}  
+\end{minipage}
+\end{center}
+</screen>
+<para>If you nest minipages then there is an oddness when using footnotes.
+Footnotes appear at the bottom of the text ended by the next
+<literal>\end{minipage}</literal> which may not be their logical place.
+</para>
+<para>This puts a table containing data side by side with a map graphic.  They
+are vertically centered.
+</para>
+<screen>\newcommand*{\vcenteredhbox}[1]{\begin{tabular}{@{}c@{}}#1\end{tabular}}
+  ...
+\begin{center}
+  \vcenteredhbox{\includegraphics[width=0.3\textwidth]{nyc.png}}
+  \hspace{0.1\textwidth}
+  \begin{minipage}{0.5\textwidth}
+    \begin{tabular}{r|l}
+      \multicolumn{1}{r}{Borough} &Pop (million)  \\ \hline
+      The Bronx      &$1.5$  \\
+      Brooklyn       &$2.6$  \\
+      Manhattan      &$1.6$  \\
+      Queens         &$2.3$  \\
+      Staten Island  &$0.5$  
+    \end{tabular}
+  \end{minipage}              
+\end{center}
+</screen>
 
 </sect1>
 <sect1 label="8.19" id="picture">
@@ -4172,196 +5068,257 @@
 <indexterm role="cp"><primary>creating pictures</primary></indexterm>
 <indexterm role="cp"><primary>pictures, creating</primary></indexterm>
 
+<para>Synopses: 
+</para><screen>\begin{picture}(<replaceable>width</replaceable>,<replaceable>height</replaceable>)
+   <replaceable>picture commands</replaceable> 
+\end{picture}
+</screen>
+<para>or
+</para>
 <screen>\begin{picture}(<replaceable>width</replaceable>,<replaceable>height</replaceable>)(<replaceable>xoffset</replaceable>,<replaceable>yoffset</replaceable>)
-… <replaceable>picture commands</replaceable> …
+  <replaceable>picture commands</replaceable>
 \end{picture}
 </screen>
+<para>An environment to create simple pictures containing lines, arrows,
+boxes, circles, and text.  Note that while this environment is not
+obsolete, new documents typically use much more powerful graphics
+creation systems, such as <literal>TikZ</literal>, <literal>PSTricks</literal>, <literal>MetaPost</literal>,
+or <literal>Asymptote</literal>.  These are not covered in this document; see CTAN.
+</para>
+<para>This shows the parallelogram law for adding vectors.
+</para>
 <indexterm role="fn"><primary>\unitlength</primary></indexterm>
-<para>The <literal>picture</literal> environment allows you to create just about any
-kind of picture you want containing text, lines, arrows and circles.
-You tell &latex; where to put things in the picture by specifying
-their coordinates.  A coordinate is a number that may have a decimal
-point and a minus sign—a number like <literal>5</literal>, <literal>0.3</literal> or
-<literal>-3.1416</literal>.  A coordinate specifies a length in multiples of the
-unit length <literal>\unitlength</literal>, so if <literal>\unitlength</literal> has been set
-to <literal>1cm</literal>, then the coordinate 2.54 specifies a length of 2.54
-centimeters.
+<screen>\setlength{\unitlength}{1cm}
+\begin{picture}(6,6)      % picture box will be 6cm wide by 6cm tall
+  \put(0,0){\vector(2,1){4}}  % for every 2 over this vector goes 1 up
+    \put(2,1){\makebox(0,0)[l]{\ first leg}}
+  \put(4,2){\vector(1,2){2}}
+    \put(5,4){\makebox(0,0)[l]{\ second leg}}  
+  \put(0,0){\line(1,1){6}}
+    \put(3,3){\makebox(0,0)[r]{sum\ }}  
+\end{picture}
+</screen>
+<para>You can also use this environment to place arbitrary material at an
+exact location.
 </para>
-<para>You should only change the value of <literal>\unitlength</literal>, using the
-<literal>\setlength</literal> command, outside of a <literal>picture</literal> environment.
-The default value is <literal>1pt</literal>.
+<screen>\usepackage{color,graphicx}  % in preamble
+  ...
+\begin{center}
+\setlength{\unitlength}{\textwidth} 
+\begin{picture}(1,1)      % leave space, \textwidth wide and tall
+  \put(0,0){\includegraphics[width=\textwidth]{desertedisland.jpg}}
+  \put(0.25,0.35){\textcolor{red}{X Treasure here}}
+\end{picture}
+\end{center}
+</screen>
+<para>The red X will be precisely a quarter of the <literal>\linewidth</literal> from
+the left margin, and <literal>0.35\linewidth</literal> up from the bottom.  Another
+example of this usage is to put similar code in the page header to get
+repeat material on each of a document’s pages.
 </para>
-<indexterm role="cp"><primary>package, <literal>picture</literal></primary></indexterm>
-<indexterm role="cp"><primary><literal>picture</literal> package</primary></indexterm>
-
-<para>The <literal>picture</literal> package redefine the <literal>picture</literal> environment so
-that everywhere a number is used in a <replaceable>picture commands</replaceable> to specify
-a coordinate, one can use alternatively a length. Be aware however that
-this will prevent scaling those lengths by changing <literal>\unitlength</literal>.
+<para>The <literal>picture</literal> environment has one required argument, a pair of
+numbers (<replaceable>width</replaceable>,<replaceable>height</replaceable>).  Multiply these by the value
+<literal>\unitlength</literal> to get the nominal size of the output, the space that
+&latex; reserves on the output page.  This nominal size need not be how
+large the picture really is; &latex; will draw things from the picture
+outside the picture’s box.
 </para>
-
-<indexterm role="cp"><primary>position, in picture</primary></indexterm>
-<para>A <firstterm>position</firstterm> is a pair of coordinates, such as <literal>(2.4,-5)</literal>, specifying
-the point with x-coordinate <literal>2.4</literal> and y-coordinate <literal>-5</literal>.
-Coordinates are specified in the usual way with respect to an origin,
-which is normally at the lower-left corner of the picture.  Note that
-when a position appears as an argument, it is not enclosed in braces;
-the parentheses serve to delimit the argument.
+<para>This environment also has an optional argument
+(<replaceable>xoffset</replaceable>,<replaceable>yoffset</replaceable>).  It is used to shift the origin.  Unlike
+most optional arguments, this one is not contained in square brackets.
+As with the required argument, it consists of two real numbers.
+Multiply these by <literal>\unitlength</literal> to get the point at the lower-left
+corner of the picture.
 </para>
-<para>The <literal>picture</literal> environment has one mandatory argument which is a
-position (<replaceable>width</replaceable>,<replaceable>height</replaceable>), which specifies the size of the
-picture.  The environment produces a rectangular box with these
-<replaceable>width</replaceable> and <replaceable>height</replaceable>.
+<para>For example, if <literal>\unitlength</literal> has been set to <literal>1mm</literal>, the
+command
 </para>
-<para>The <literal>picture</literal> environment also has an optional position argument
-(<replaceable>xoffset</replaceable>,<replaceable>yoffset</replaceable>), following the size argument, that can
-change the origin.  (Unlike ordinary optional arguments, this argument
-is not contained in square brackets.) The optional argument gives the
-coordinates of the point at the lower-left corner of the picture
-(thereby determining the origin).  For example, if <literal>\unitlength</literal>
-has been set to <literal>1mm</literal>, the command
-</para>
 <screen>\begin{picture}(100,200)(10,20)
 </screen>
-<para>produces a picture of width 100 millimeters and height 200
-millimeters, whose lower-left corner is the point (10,20) and whose
-upper-right corner is therefore the point (110,220).  When you first
-draw a picture, you typically omit the optional argument, leaving the
-origin at the lower-left corner.  If you then want to modify your
+<para>produces a box of width 100 millimeters and height 200 millimeters.  The
+picture’s origin is the point (10mm,20mm) and so the lower-left corner
+is there, and the upper-right corner is at (110mm,220mm).  When you
+first draw a picture you typically omit the optional argument, leaving
+the origin at the lower-left corner.  If you then want to modify your
 picture by shifting everything, you can just add the appropriate
 optional argument.
 </para>
-<para>The environment’s mandatory argument determines the nominal size of the
-picture.  This need bear no relation to how large the picture really is;
-&latex; will happily allow you to put things outside the picture, or even
-off the page.  The picture’s nominal size is used by &latex; in determining
-how much room to leave for it.
+<indexterm role="cp"><primary>position, in picture</primary></indexterm>
+<para>Each <replaceable>picture command</replaceable> tells &latex; where to put something by
+naming its position.  A <firstterm>position</firstterm> is a pair such as <literal>(2.4,-5)</literal>
+giving the x- and y-coordinates.  A <firstterm>coordinate</firstterm> is a not a length,
+it is a real number (it may have a decimal point or a minus sign).  It
+specifies a length in multiples of the unit length <literal>\unitlength</literal>,
+so if <literal>\unitlength</literal> has been set to <literal>1cm</literal>, then the coordinate
+2.54 specifies a length of 2.54 centimeters.
 </para>
-<para>Everything that appears in a picture is drawn by the <literal>\put</literal>
-command. The command
+<para>&latex;’s default for <literal>\unitlength</literal> is <literal>1pt</literal>.  it is a rigid
+length (see <link linkend="Lengths">Lengths</link>).  Change it with the <literal>\setlength</literal> command
+(see <link linkend="_005csetlength">\setlength</link>).  Make this change only outside of a <literal>picture</literal>
+environment.
 </para>
-<screen>\put (11.3,-.3){...}
+<para>Coordinates are given with respect to an origin, which is normally at
+the lower-left corner of the picture.  Note that when a position appears
+as an argument, as with <literal>\put(1,2){...}</literal>, it is not enclosed in
+braces since the parentheses serve to delimit the argument.  Also,
+unlike in some computer graphics systems, larger y-coordinates are
+further up the page.
+</para>
+<para>There are four ways to put things in a picture: <literal>\put</literal>,
+<literal>\multiput</literal>, <literal>\qbezier</literal>, and <literal>\graphpaper</literal>.  The most
+often used is <literal>\put</literal>. This
+</para>
+<screen>\put(11.3,-0.3){...}
 </screen>
-<para>puts the object specified by <literal>...</literal> in the
-picture, with its reference point at coordinates <inlineequation><mathphrase>(11.3,-.3)</mathphrase></inlineequation>.
-The reference points for various objects will be described below.
+<para>places the object with its reference point at coordinates
+<inlineequation><mathphrase>(11.3,-0.3)</mathphrase></inlineequation>.  The reference points for various objects will be
+described below.
+<indexterm role="fn"><primary>LR box</primary></indexterm>
+The <literal>\put</literal> command creates an <firstterm>LR box</firstterm> (see <link linkend="Modes">Modes</link>).
+Anything that can go in an <literal>\mbox</literal> (see <link linkend="_005cmbox-_0026-_005cmakebox">\mbox & \makebox</link>) can
+go in the text argument of the <literal>\put</literal> command.  The reference point
+will be the lower left corner of the box.  In this picture
 </para>
-<indexterm role="fn"><primary>lR box</primary></indexterm>
-<para>The <literal>\put</literal> command creates an <firstterm>LR box</firstterm>.  You can put anything
-that can go in an <literal>\mbox</literal> (see <link linkend="_005cmbox">\mbox</link>) in the text argument of
-the <literal>\put</literal> command.  When you do this, the reference point will
-be the lower left corner of the box.
+<screen>\setlength{\unitlength}{1cm}
+...\begin{picture}(1,1)
+  \put(0,0){\line(1,0){1}}
+  \put(0,0){\line(1,1){1}}
+\end{picture}
+</screen>
+<para>the three dots are just slightly left of the point of the angle formed
+by the two lines.  (Also, <literal>\line(1,1){1}</literal> does not call for a
+line of length one; rather the line has a change in the x coordinate of
+1.)
 </para>
-<para>The <literal>picture</literal> commands are described in the following sections.
+<para>The <literal>\multiput</literal>, <literal>qbezier</literal>, and <literal>graphpaper</literal> commands are
+described below.
 </para>
+<para>This draws a rectangle with a wavy top, using <literal>\qbezier</literal> for
+that curve.
+</para>
+<screen>\begin{picture}(3,1.5)
+  \put(0,0){\vector(1,0){8}}  % x axis
+  \put(0,0){\vector(0,1){4}}  % y axis
+  \put(2,0){\line(0,1){3}}       % left side rectangle
+  \put(4,0){\line(0,1){3.5}}     % right side
+  \qbezier(2,3)(2.5,2.9)(3,3.25)
+    \qbezier(3,3.25)(3.5,3.6)(4,3.5)
+  \thicklines                 % below here, lines are twice as thick
+  \put(2,3){\line(4,1){2}}
+  \put(4.5,2.5){\framebox{Trapezoidal Rule}}
+\end{picture}
+</screen>
 
 
-<sect2 label="8.19.1" id="_005ccircle">
-<title><literal>\circle</literal></title>
+<sect2 label="8.19.1" id="_005cput">
+<title><literal>\put</literal></title>
 
-<indexterm role="fn"><primary>\circle</primary></indexterm>
+<indexterm role="fn"><primary>\put</primary></indexterm>
 
 <para>Synopsis:
 </para>
-<screen>\circle[*]{<replaceable>diameter</replaceable>}
+<screen>\put(<replaceable>xcoord</replaceable>,<replaceable>ycoord</replaceable>){<replaceable>content</replaceable>}
 </screen>
-<para>The <literal>\circle</literal> command produces a circle with a diameter as close
-to the specified one as possible.  The <literal>*</literal>-form of the command
-draws a solid circle.
+<para>Place <replaceable>content</replaceable> at the coordinate (<replaceable>xcoord</replaceable>,<replaceable>ycoord</replaceable>).  See
+the discussion of coordinates and <literal>\unitlength</literal> in <link linkend="picture">picture</link>.
+The <replaceable>content</replaceable> is processed in LR mode (see <link linkend="Modes">Modes</link>) so it cannot
+contain line breaks.
 </para>
-<para>Circles up to 40pt can be drawn.
+<para>This includes the text into the <literal>picture</literal>.
 </para>
+<screen>\put(4.5,2.5){Apply the \textit{unpoke} move}
+</screen>
+<para>The reference point, the location (4.5,2.5), is the lower left of the
+text, at the bottom left of the ‘<literal>A</literal>’.
+</para>
 
 </sect2>
-<sect2 label="8.19.2" id="_005cmakebox-_0028picture_0029">
-<title><literal>\makebox</literal></title>
+<sect2 label="8.19.2" id="_005cmultiput">
+<title><literal>\multiput</literal></title>
 
-<indexterm role="fn"><primary>\makebox (for <literal>picture</literal>)</primary></indexterm>
+<indexterm role="fn"><primary>\multiput</primary></indexterm>
 
 <para>Synopsis:
 </para>
-<screen>\makebox(<replaceable>width</replaceable>,<replaceable>height</replaceable>)[<replaceable>position</replaceable>]{<replaceable>text</replaceable>}
+<screen>\multiput(<replaceable>x</replaceable>,<replaceable>y</replaceable>)(<replaceable>delta_x</replaceable>,<replaceable>delta_y</replaceable>){<replaceable>num-copies</replaceable>}{<replaceable>obj</replaceable>}
 </screen>
-<para>The <literal>\makebox</literal> command for the picture environment is similar to
-the normal <literal>\makebox</literal> command except that you must specify a
-<replaceable>width</replaceable> and <replaceable>height</replaceable> in multiples of <literal>\unitlength</literal>.
+<para>Copy <replaceable>obj</replaceable> a total of <replaceable>num-copies</replaceable> times, with an increment of
+<replaceable>delta_x,delta_y</replaceable>.  The <replaceable>obj</replaceable> first appears at position
+<inlineequation><mathphrase>(x,y)</mathphrase></inlineequation>, then at <inlineequation><mathphrase>(x+\delta_x,y+\delta_y)</mathphrase></inlineequation>, and so on.
 </para>
-<para>The optional argument, <literal>[<replaceable>position</replaceable>]</literal>, specifies the quadrant that
-your <replaceable>text</replaceable> appears in.  You may select up to two of the following:
+<para>This draws a simple grid with every fifth line in bold (see also
+<link linkend="_005cgraphpaper">\graphpaper</link>).
 </para>
-<variablelist><varlistentry><term><literal>t</literal>
-</term><listitem><para>Moves the item to the top of the rectangle.
-</para>
-</listitem></varlistentry><varlistentry><term><literal>b</literal>
-</term><listitem><para>Moves the item to the bottom.
-</para>
-</listitem></varlistentry><varlistentry><term><literal>l</literal>
-</term><listitem><para>Moves the item to the left.
-</para>
-</listitem></varlistentry><varlistentry><term><literal>r</literal>
-</term><listitem><para>Moves the item to the right.
-</para>
-</listitem></varlistentry></variablelist>
-<para>See <link linkend="_005cmakebox">\makebox</link>.
-</para>
+<screen>\begin{picture}(10,10)
+  \linethickness{0.05mm}
+  \multiput(0,0)(1,0){10}{\line(0,1){10}} 
+  \multiput(0,0)(0,1){10}{\line(1,0){10}}
+  \linethickness{0.5mm}
+  \multiput(0,0)(5,0){3}{\line(0,1){10}}
+  \multiput(0,0)(0,5){3}{\line(1,0){10}}
+\end{picture}
+</screen>
 
 </sect2>
-<sect2 label="8.19.3" id="_005cframebox-_0028picture_0029">
-<title><literal>\framebox</literal></title>
+<sect2 label="8.19.3" id="_005cqbezier">
+<title><literal>\qbezier</literal></title>
 
-<indexterm role="fn"><primary>\framebox</primary></indexterm>
+<indexterm role="fn"><primary>\qbezier</primary></indexterm>
 
 <para>Synopsis:
 </para>
-<screen>\framebox(<replaceable>width</replaceable>,<replaceable>height</replaceable>)[<replaceable>pos</replaceable>]{...}
+<screen>\qbezier(<replaceable>x1</replaceable>,<replaceable>y1</replaceable>)(<replaceable>x2</replaceable>,<replaceable>y2</replaceable>)(<replaceable>x3</replaceable>,<replaceable>y3</replaceable>)
+\qbezier[<replaceable>num</replaceable>](<replaceable>x1</replaceable>,<replaceable>y1</replaceable>)(<replaceable>x2</replaceable>,<replaceable>y2</replaceable>)(<replaceable>x3</replaceable>,<replaceable>y3</replaceable>)
 </screen>
-<para>The <literal>\framebox</literal> command is like <literal>\makebox</literal> (see previous
-section), except that it puts a frame around the outside of the box
-that it creates.
+<para>Draw a quadratic Bezier curve whose control points are given by the
+three required arguments <literal>(<replaceable>x1</replaceable>,<replaceable>y1</replaceable>)</literal>,
+<literal>(<replaceable>x2</replaceable>,<replaceable>y2</replaceable>)</literal>, and <literal>(<replaceable>x3</replaceable>,<replaceable>y3</replaceable>)</literal>.  That is,
+the curve runs from <replaceable>(x1,y1)</replaceable> to <replaceable>(x3,y3)</replaceable>, is quadratic, and is
+such that the tangent line at <replaceable>(x1,y1)</replaceable> passes through
+<replaceable>(x2,y2)</replaceable>, as does the tangent line at <replaceable>(x3,y3)</replaceable>.
 </para>
-<indexterm role="fn"><primary>\fboxrule</primary></indexterm>
-<indexterm role="fn"><primary>\fboxsep</primary></indexterm>
-<para>The <literal>\framebox</literal> command produces a rule of thickness
-<literal>\fboxrule</literal>, and leaves a space <literal>\fboxsep</literal> between the rule
-and the contents of the box.
+<para>This draws a curve from the coordinate (1,1) to (1,0).
 </para>
-
-</sect2>
-<sect2 label="8.19.4" id="_005cdashbox">
-<title><literal>\dashbox</literal></title>
-
-<indexterm role="fn"><primary>\dashbox</primary></indexterm>
-
-<para>Draws a box with a dashed line.  Synopsis:
-</para>
-<screen>\dashbox{<replaceable>dlen</replaceable>}(<replaceable>rwidth</replaceable>,<replaceable>rheight</replaceable>)[<replaceable>pos</replaceable>]{<replaceable>text</replaceable>}
+<screen>\qbezier(1,1)(1.25,0.75)(1,0)  
 </screen>
-<para><literal>\dashbox</literal> creates a dashed rectangle around <replaceable>text</replaceable> in a
-<literal>picture</literal> environment.  Dashes are <replaceable>dlen</replaceable> units long, and the
-rectangle has overall width <replaceable>rwidth</replaceable> and height <replaceable>rheight</replaceable>.
-The <replaceable>text</replaceable> is positioned at optional <replaceable>pos</replaceable>.  <!-- xxref positions. -->
+<para>The curve’s tangent line at (1,1) contains (1.25,0.75), as does the
+curve’s tangent line at (1,0).
 </para>
-<para>A dashed box looks best when the <replaceable>rwidth</replaceable> and <replaceable>rheight</replaceable> are
-multiples of the <replaceable>dlen</replaceable>.
+<para>The optional argument <replaceable>num</replaceable> gives the number of calculated
+intermediate points.  The default is to draw a smooth curve whose
+maximum number of points is <literal>\qbeziermax</literal> (change this value with
+<literal>\renewcommand</literal>).
 </para>
 
 </sect2>
-<sect2 label="8.19.5" id="_005cframe">
-<title><literal>\frame</literal></title>
+<sect2 label="8.19.4" id="_005cgraphpaper">
+<title><literal>\graphpaper</literal></title>
 
-<indexterm role="fn"><primary>\frame</primary></indexterm>
-
+<indexterm role="fn"><primary>\graphpaper</primary></indexterm>
 <para>Synopsis:
 </para>
-<screen>\frame{<replaceable>text</replaceable>}
+<screen>\graphpaper(<replaceable>x_init</replaceable>,<replaceable>y_init</replaceable>)(<replaceable>x_dimen</replaceable>,<replaceable>y_dimen</replaceable>)
+\graphpaper[<replaceable>spacing</replaceable>](<replaceable>x_init</replaceable>,<replaceable>y_init</replaceable>)(<replaceable>x_dimen</replaceable>,<replaceable>y_dimen</replaceable>)
 </screen>
-<para>The <literal>\frame</literal> command puts a rectangular frame around <replaceable>text</replaceable>.
-The reference point is the bottom left corner of the frame.  No extra
-space is put between the frame and the object.
+<para>Draw a coordinate grid.  Requires the <literal>graphpap</literal> package.
+The grid’s origin is <literal>(<replaceable>x_init</replaceable>,<replaceable>y_init</replaceable>)</literal>.
+Grid lines come every <replaceable>spacing</replaceable> units (the default is 10).
+The grid extends <replaceable>x_dimen</replaceable> units to the right and <replaceable>y_dimen</replaceable> units up.
+All arguments must be positive integers.
 </para>
+<para>This make a grid with seven vertical lines and eleven horizontal lines.
+</para>
+<screen>\usepackage{graphpap}    % in preamble
+  ...
+\begin{picture}(6,20)    % in document body
+  \graphpaper[2](0,0)(12,20)
+\end{picture}
+</screen>
+<para>The lines are numbered every ten units.
+</para>
 
 </sect2>
-<sect2 label="8.19.6" id="_005cline">
+<sect2 label="8.19.5" id="_005cline">
 <title><literal>\line</literal></title>
 
 <indexterm role="fn"><primary>\line</primary></indexterm>
@@ -4368,73 +5325,133 @@
 
 <para>Synopsis:
 </para>
-<screen>\line(<replaceable>xslope</replaceable>,<replaceable>yslope</replaceable>){<replaceable>length</replaceable>}
+<screen>\line(<replaceable>x_run</replaceable>,<replaceable>y_rise</replaceable>){<replaceable>travel</replaceable>}
 </screen>
-<para>The <literal>\line</literal> command draws a line with the given <replaceable>length</replaceable> and
-slope <replaceable>xslope</replaceable>/<replaceable>yslope</replaceable>.
+<para>Draw a line.  It slopes such that it vertically rises <replaceable>y_rise</replaceable> for
+every horizontal <replaceable>x_run</replaceable>.  The <replaceable>travel</replaceable> is the total horizontal
+change — it is not the length of the vector, it is the change in
+<inlineequation><mathphrase>x</mathphrase></inlineequation>.  In the special case of vertical lines, where
+(<replaceable>x_run</replaceable>,<replaceable>y_rise</replaceable>)=(0,1), the <replaceable>travel</replaceable> gives the change in
+<inlineequation><mathphrase>y</mathphrase></inlineequation>.
 </para>
+<para>This draws a line starting at coordinates (1,3).
+</para>
+<screen>\put(1,3){\line(2,5){4}}
+</screen>
+<para>For every over 2, this line will go up 5.  Because <replaceable>travel</replaceable>
+specifies that this goes over 4, it must go up 10.  Thus its
+endpoint is <inlineequation><mathphrase>(1,3)+(4,10)=(5,13)</mathphrase></inlineequation>.  In particular, note that
+<inlineequation><mathphrase><replaceable>travel</replaceable>=4</mathphrase></inlineequation> is not the length of the line, it is the change in
+<inlineequation><mathphrase>x</mathphrase></inlineequation>.
+</para>
+<para>The arguments <replaceable>x_run</replaceable> and <replaceable>y_rise</replaceable> are integers that can be
+positive, negative, or zero. (If both are 0 then &latex; treats the
+second as 1.)  With
+<literal>\put(<replaceable>x_init</replaceable>,<replaceable>y_init</replaceable>){\line(<replaceable>x_run</replaceable>,<replaceable>y_rise</replaceable>){<replaceable>travel</replaceable>}}</literal>,
+if <replaceable>x_run</replaceable> is negative then the line’s ending point has a first
+coordinate that is less than <replaceable>x_init</replaceable>.  If <replaceable>y_rise</replaceable> is negative
+then the line’s ending point has a second coordinate that is less than
+<replaceable>y_init</replaceable>.
+</para>
+<para>If <replaceable>travel</replaceable> is negative then you get <literal>LaTeX Error: Bad \line or
+\vector argument.</literal>
+</para>
 <indexterm role="cp"><primary><literal>pict2e</literal> package</primary></indexterm>
 <indexterm role="cp"><primary>graphics packages</primary></indexterm>
-<para>Standard &latex; can only draw lines with <inlineequation><mathphrase><replaceable>slope</replaceable> = x/y</mathphrase></inlineequation>,
-where <inlineequation><mathphrase>x</mathphrase></inlineequation> and <inlineequation><mathphrase>y</mathphrase></inlineequation> have integer values from −6
-through 6.  For lines of any slope, and plenty of other shapes,
-see <literal>pict2e</literal> and many other packages on CTAN.
+<indexterm role="cp"><primary>package, <literal>pict2e</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>pict2e</literal> package</primary></indexterm>
+
+<indexterm role="cp"><primary>package, <literal>TikZ</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>TikZ</literal> package</primary></indexterm>
+
+<indexterm role="cp"><primary>package, <literal>PSTricks</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>PSTricks</literal> package</primary></indexterm>
+
+<indexterm role="cp"><primary>package, <literal>MetaPost</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>MetaPost</literal> package</primary></indexterm>
+
+<indexterm role="cp"><primary>package, <literal>Asymptote</literal></primary></indexterm>
+<indexterm role="cp"><primary><literal>Asymptote</literal> package</primary></indexterm>
+
+<para>Standard &latex; can only draw lines with a limited range of slopes
+because these lines are made by putting together line segments from
+pre-made fonts.  The two numbers <replaceable>x_run</replaceable> and <replaceable>y_rise</replaceable> must have
+integer values from −6 through 6.  Also, they must be
+relatively prime, so that <replaceable>(x_run,y_rise)</replaceable> can be (2,1) but not
+(4,2) (if you choose the latter then instead of lines you get sequences
+of arrowheads; the solution is to switch to the former).  To get lines
+of arbitrary slope and plenty of other shapes in a system like
+<literal>picture</literal>, see the package <filename>pict2e</filename> on CTAN.  Another solution
+is to use a full-featured graphics system such as <filename>TikZ</filename>, or
+<filename>PSTricks</filename>, or <filename>MetaPost</filename>, or <filename>Asymptote</filename>
 </para>
 
 </sect2>
-<sect2 label="8.19.7" id="_005clinethickness">
+<sect2 label="8.19.6" id="_005clinethickness">
 <title><literal>\linethickness</literal></title>
 
 <indexterm role="fn"><primary>\linethickness</primary></indexterm>
 
-<para>The <literal>\linethickness{<replaceable>dim</replaceable>}</literal> command declares the thickness
-of horizontal and vertical lines in a picture environment to be
-<replaceable>dim</replaceable>, which must be a positive length.
+<para>Synopsis:
 </para>
-<para><literal>\linethickness</literal> does not affect the thickness of slanted lines,
-circles, or the quarter circles drawn by <literal>\oval</literal>.
+<screen>\linethickness{<replaceable>dim</replaceable>}
+</screen>
+<para>Declares the thickness of subsequent horizontal and vertical lines in a
+picture to be <replaceable>dim</replaceable>, which must be a positive length
+(see <link linkend="Lengths">Lengths</link>).  It differs from <literal>\thinlines</literal> and
+<literal>\thicklines</literal> in that it does not affect the thickness of slanted
+lines, circles, or ovals.
 </para>
 
 </sect2>
-<sect2 label="8.19.8" id="_005cthicklines">
-<title><literal>\thicklines</literal></title>
+<sect2 label="8.19.7" id="_005cthinlines">
+<title><literal>\thinlines</literal></title>
 
-<indexterm role="fn"><primary>\thicklines</primary></indexterm>
+<indexterm role="fn"><primary>\thinlines</primary></indexterm>
 
-<para>The <literal>\thicklines</literal> command is an alternate line thickness for
-horizontal and vertical lines in a picture environment;
-cf. <link linkend="_005clinethickness">\linethickness</link> and <link linkend="_005cthinlines">\thinlines</link>.
+<para>Declaration to set the thickness of subsequent lines, circles, and ovals
+in a picture environment to be 0.4pt.  This is the default
+thickness, so this command is unnecessary unless the thickness has been
+changed with either <link linkend="_005clinethickness">\linethickness</link> or <link linkend="_005cthicklines">\thicklines</link>.
 </para>
 
 </sect2>
-<sect2 label="8.19.9" id="_005cthinlines">
-<title><literal>\thinlines</literal></title>
+<sect2 label="8.19.8" id="_005cthicklines">
+<title><literal>\thicklines</literal></title>
 
-<indexterm role="fn"><primary>\thinlines</primary></indexterm>
+<indexterm role="fn"><primary>\thicklines</primary></indexterm>
 
-<para>The <literal>\thinlines</literal> command is the default line thickness for
-horizontal and vertical lines in a picture environment;
-cf. <link linkend="_005clinethickness">\linethickness</link> and <link linkend="_005cthicklines">\thicklines</link>.
+<para>Declaration to set the thickness of subsequent lines, circles, and ovals
+in a picture environment to be 0.8pt.  See also
+<link linkend="_005clinethickness">\linethickness</link> and <link linkend="_005cthinlines">\thinlines</link>.  This command is illustrated
+in the Trapezoidal Rule example of <link linkend="picture">picture</link>.
 </para>
 
 </sect2>
-<sect2 label="8.19.10" id="_005cmultiput">
-<title><literal>\multiput</literal></title>
+<sect2 label="8.19.9" id="_005ccircle">
+<title><literal>\circle</literal></title>
 
-<indexterm role="fn"><primary>\multiput</primary></indexterm>
+<indexterm role="fn"><primary>\circle</primary></indexterm>
 
 <para>Synopsis:
 </para>
-<screen>\multiput(<replaceable>x</replaceable>,<replaceable>y</replaceable>)(<replaceable>delta_x</replaceable>,<replaceable>delta_y</replaceable>){<replaceable>n</replaceable>}{<replaceable>obj</replaceable>}
+<screen>\circle{<replaceable>diameter</replaceable>}
+\circle*{<replaceable>diameter</replaceable>}
 </screen>
-<para>The <literal>\multiput</literal> command copies the object <replaceable>obj</replaceable> in a regular
-pattern across a picture.  <replaceable>obj</replaceable> is first placed at position
-<inlineequation><mathphrase>(x,y)</mathphrase></inlineequation>, then at <inlineequation><mathphrase>(x+\delta x,y+\delta y)</mathphrase></inlineequation>, and so on,
-<replaceable>n</replaceable> times.
+<para>Produces a circle with a diameter as close as possible to the specified
+one.  The <literal>*</literal> form produces a filled-in circle.
 </para>
+<para>This draws a circle of radius 6, centered at <literal>(5,7)</literal>.
+</para>
+<screen>\put(5,7){\circle{6}}
+</screen>
+<para>The available radii for <literal>circle</literal> are, in points, the even
+numbers from 2 to 20, inclusive.  For <literal>circle*</literal> they are all the
+integers from 1 to 15.
+</para>
 
 </sect2>
-<sect2 label="8.19.11" id="_005coval">
+<sect2 label="8.19.10" id="_005coval">
 <title><literal>\oval</literal></title>
 
 <indexterm role="fn"><primary>\oval</primary></indexterm>
@@ -4441,46 +5458,40 @@
 
 <para>Synopsis:
 </para>
-<screen>\oval(<replaceable>width</replaceable>,<replaceable>height</replaceable>)[<replaceable>portion</replaceable>]
+<screen>\oval(<replaceable>width</replaceable>,<replaceable>height</replaceable>)
+\oval(<replaceable>width</replaceable>,<replaceable>height</replaceable>)[<replaceable>portion</replaceable>]
 </screen>
-<para>The <literal>\oval</literal> command produces a rectangle with rounded corners.  The
-optional argument <replaceable>portion</replaceable> allows you to produce only half of the
-oval via the following:
+<para>Produce a rectangle with rounded corners.  The optional argument
+<replaceable>portion</replaceable> allows you to produce only half or a quarter of the oval.
+For half an oval take <replaceable>portion</replaceable> to be one of these.
 </para>
 <variablelist><varlistentry><term><literal>t</literal>
-</term><listitem><para>selects the top half;
+</term><listitem><para>top half
 </para></listitem></varlistentry><varlistentry><term><literal>b</literal>
-</term><listitem><para>selects the bottom half;
+</term><listitem><para>bottom half
 </para></listitem></varlistentry><varlistentry><term><literal>r</literal>
-</term><listitem><para>selects the right half;
+</term><listitem><para>right half
 </para></listitem></varlistentry><varlistentry><term><literal>l</literal>
-</term><listitem><para>selects the left half.
+</term><listitem><para>left half
 </para></listitem></varlistentry></variablelist>
-<para>It is also possible to produce only one quarter of the oval by setting
-<replaceable>portion</replaceable> to <literal>tr</literal>, <literal>br</literal>, <literal>bl</literal>, or <literal>tl</literal>.
+<para>Produce only one quarter of the oval by setting <replaceable>portion</replaceable> to
+<literal>tr</literal>, <literal>br</literal>, <literal>bl</literal>, or <literal>tl</literal>.
 </para>
-<para>The “corners” of the oval are made with quarter circles with a
-maximum radius of 20pt, so large “ovals” will look more like
-boxes with rounded corners.
+<para>This draws the top half of an oval that is 3 wide and 7 tall.  
 </para>
-
-</sect2>
-<sect2 label="8.19.12" id="_005cput">
-<title><literal>\put</literal></title>
-
-<indexterm role="fn"><primary>\put</primary></indexterm>
-
-<para>Synopsis:
-</para>
-<screen>\put(<replaceable>xcoord</replaceable>,<replaceable>ycoord</replaceable>){ ... }
+<screen>\put(5,7){\oval(3,7)[t]}
 </screen>
-<para>The <literal>\put</literal> command places the material specified by the
-(mandatory) argument in braces at the given coordinate,
-(<replaceable>xcoord</replaceable>,<replaceable>ycoord</replaceable>).
+<para>The (5,7) is the center of the entire oval, not just the center of the
+top half.
 </para>
+<para>These shapes are not ellipses.  They are rectangles whose corners are
+made with quarter circles.  These circles have a maximum radius of
+20pt (see <link linkend="_005ccircle">\circle</link> for the sizes).  Thus large ovals are just
+boxes with a small amount of corner rounding.
+</para>
 
 </sect2>
-<sect2 label="8.19.13" id="_005cshortstack">
+<sect2 label="8.19.11" id="_005cshortstack">
 <title><literal>\shortstack</literal></title>
 
 <indexterm role="fn"><primary>\shortstack</primary></indexterm>
@@ -4487,24 +5498,47 @@
 
 <para>Synopsis:
 </para>
-<screen>\shortstack[<replaceable>position</replaceable>]{...\\...\\...}
+<screen>\shortstack[<replaceable>position</replaceable>]{<replaceable>line 1</replaceable> \\ ... }
 </screen>
-<para>The <literal>\shortstack</literal> command produces a stack of objects.  The valid
-positions are:
+<para>Produce a vertical stack of objects.
 </para>
+<para>This labels the <inlineequation><mathphrase>y</mathphrase></inlineequation> axis.
+</para>
+<screen>\put(0,0){\vector(1,0){4}}   % x axis
+\put(0,0){\vector(0,1){2}}   % y
+\put(-0.25,2){\makebox[0][r]{\shortstack[r]{$y$\\ axis}}}
+</screen>
+<para>For a short stack, the reference point is the lower left of the stack.
+In the above example the <link linkend="_005cmbox-_0026-_005cmakebox">\mbox & \makebox</link> puts the stack flush
+right in a zero width box so in total the short stack sits slightly to
+the left of the <inlineequation><mathphrase>y</mathphrase></inlineequation> axis.
+</para>
+<para>The valid positions are:
+</para>
 <variablelist><varlistentry><term><literal>r</literal>
-</term><listitem><para>Move the objects to the right of the stack.
+</term><listitem><para>Make objects flush right
 </para></listitem></varlistentry><varlistentry><term><literal>l</literal>
-</term><listitem><para>Move the objects to the left of the stack
+</term><listitem><para>Make objects flush left
 </para></listitem></varlistentry><varlistentry><term><literal>c</literal>
-</term><listitem><para>Move the objects to the centre of the stack (default)
+</term><listitem><para>Center objects (default)
 </para></listitem></varlistentry></variablelist>
 <indexterm role="fn"><primary>\\ (for <literal>\shortstack</literal> objects)</primary></indexterm>
-<para>Objects are separated with <literal>\\</literal>.
+<para>Separate objects into lines with <literal>\\</literal>.  These stacks are short in
+that, unlike in a <literal>tabular</literal> or <literal>array</literal> environment, here the
+rows are not spaced out to be of even heights.  Thus, in
+<literal>\shortstack{X\\o\\o\\X}</literal> the first and last rows are taller than
+the middle two.  You can adjust row heights either by putting in the
+usual interline spacing with <literal>\shortstack{X\\ \strut o\\o\\X}</literal>,
+or by hand, via an explicit zero-width box <literal>\shortstack{X \\
+\rule{0pt}{12pt} o\\o\\X}</literal> or by using <literal>\\</literal>’s optional
+argument <literal>\shortstack{X\\[2pt] o\\o\\X}</literal>.
 </para>
+<para>The <literal>\shortstack</literal> command is also available outside the
+<literal>picture</literal> environment.
+</para>
 
 </sect2>
-<sect2 label="8.19.14" id="_005cvector">
+<sect2 label="8.19.12" id="_005cvector">
 <title><literal>\vector</literal></title>
 
 <indexterm role="fn"><primary>\vector</primary></indexterm>
@@ -4511,17 +5545,166 @@
 
 <para>Synopsis:
 </para>
-<screen>\vector(<replaceable>xslope</replaceable>,<replaceable>yslope</replaceable>){<replaceable>length</replaceable>}
+<screen>\vector(<replaceable>x_run</replaceable>,<replaceable>y_rise</replaceable>){<replaceable>travel</replaceable>}
 </screen>
-<para>The <literal>\vector</literal> command draws a line with an arrow of the specified
-length and slope.  The <inlineequation><mathphrase><replaceable>xslope</replaceable></mathphrase></inlineequation> and <inlineequation><mathphrase><replaceable>yslope</replaceable></mathphrase></inlineequation>
-values must lie between −4 and +4, inclusive.
+<para>Draw a line ending in an arrow.  The slope of that line is: it
+vertically rises <replaceable>y_rise</replaceable> for every horizontal <replaceable>x_run</replaceable>.  The
+<replaceable>travel</replaceable> is the total horizontal change — it is not the
+length of the vector, it is the change in <inlineequation><mathphrase>x</mathphrase></inlineequation>.  In the special case
+of vertical vectors, if (<replaceable>x_run</replaceable>,<replaceable>y_rise</replaceable>)=(0,1), then
+<replaceable>travel</replaceable> gives the change in <inlineequation><mathphrase>y</mathphrase></inlineequation>.
 </para>
+<para>For an example see <link linkend="picture">picture</link>.
+</para>
+<para>For elaboration on <replaceable>x_run</replaceable> and <replaceable>y_rise</replaceable> see <link linkend="_005cline">\line</link>.  As
+there, the values of <replaceable>x_run</replaceable> and <replaceable>y_rise</replaceable> are limited.  For
+<literal>\vector</literal> you must chooses integers between −4 and 4,
+inclusive.  Also, the two you choose must be relatively prime.  Thus,
+<literal>\vector(2,1){4}</literal> is acceptable but <literal>\vector(4,2){4}</literal> is
+not (if you use the latter then you get a sequence of arrowheads).
+</para>
 
 </sect2>
+<sect2 label="8.19.13" id="_005cmakebox-_0028picture_0029">
+<title><literal>\makebox</literal> (picture)</title>
+
+<indexterm role="fn"><primary>\makebox (for <literal>picture</literal>)</primary></indexterm>
+
+<para>Synopsis:
+</para>
+<screen>\makebox(<replaceable>rec-width</replaceable>,<replaceable>rec-height</replaceable>){<replaceable>text</replaceable>}
+\makebox(<replaceable>rec-width</replaceable>,<replaceable>rec-height</replaceable>)[<replaceable>position</replaceable>]{<replaceable>text</replaceable>}
+</screen>
+<para>Make a box to hold <replaceable>text</replaceable>.  This command fits with the
+<literal>picture</literal> environment, although you can use it outside of there,
+because <replaceable>rec-width</replaceable> and <replaceable>rec-height</replaceable> are numbers specifying
+distances in terms of the <literal>\unitlength</literal> (see <link linkend="picture">picture</link>).  This
+command is similar to the normal <literal>\makebox</literal> command (see <link linkend="_005cmbox-_0026-_005cmakebox">\mbox &
+\makebox</link>) except here that you must specify the width and height.  This
+command is fragile (see <link linkend="_005cprotect">\protect</link>).
+</para>
+<para>This makes a box of length 3.5 times <literal>\unitlength</literal> and height 4
+times <literal>\unitlength</literal>.
+</para>
+<screen>\put(1,2){\makebox(3.5,4){...}}
+</screen>
+<para>The optional argument <literal><replaceable>position</replaceable></literal> specifies where in the box
+the <replaceable>text</replaceable> appears.  The default is to center it, both horizontally
+and vertically.  To place it somewhere else, use a string with one or
+two of these letters.
+</para>
+<variablelist><varlistentry><term><literal>t</literal>
+</term><listitem><para>Puts <replaceable>text</replaceable> the top of the box.
+</para>
+</listitem></varlistentry><varlistentry><term><literal>b</literal>
+</term><listitem><para>Put <replaceable>text</replaceable> at the bottom.
+</para>
+</listitem></varlistentry><varlistentry><term><literal>l</literal>
+</term><listitem><para>Put <replaceable>text</replaceable> on the left.
+</para>
+</listitem></varlistentry><varlistentry><term><literal>r</literal>
+</term><listitem><para>Put <replaceable>text</replaceable> on the right.
+</para>
+</listitem></varlistentry></variablelist>
+
+</sect2>
+<sect2 label="8.19.14" id="_005cframebox-_0028picture_0029">
+<title><literal>\framebox</literal> (picture)</title>
+
+<indexterm role="fn"><primary>\framebox</primary></indexterm>
+
+<para>Synopsis:
+</para>
+<screen>\framebox(<replaceable>rec-width</replaceable>,<replaceable>rec-height</replaceable>){<replaceable>text</replaceable>}
+\framebox(<replaceable>rec-width</replaceable>,<replaceable>rec-height</replaceable>)[<replaceable>position</replaceable>]{<replaceable>text</replaceable>}
+</screen>
+<para>This is the same as <link linkend="_005cmakebox-_0028picture_0029">\makebox (picture)</link> except that it puts a frame
+around the outside of the box that it creates.  The reference point is
+the bottom left corner of the frame.  This command fits with the
+<literal>picture</literal> environment, although you can use it outside of there,
+because lengths are numbers specifying the distance in terms of the
+<literal>\unitlength</literal> (see <link linkend="picture">picture</link>).  This command is fragile
+(see <link linkend="_005cprotect">\protect</link>).
+</para>
+<para>This example creates a frame 2.5 inches by 3 inches and puts
+the text in the center.
+</para>
+<screen>\setlength{\unitlength}{1in}
+\framebox(2.5,3){test text}
+</screen>
+<para>The required arguments are that the rectangle has overall width
+<replaceable>rect-width</replaceable> units and height <replaceable>rect-height</replaceable> units.
+</para>
+<para>The optional argument <replaceable>position</replaceable> specifies the position of
+<replaceable>text</replaceable>; see <link linkend="_005cmakebox-_0028picture_0029">\makebox (picture)</link> for the values that it can
+take.
+</para>
+<indexterm role="fn"><primary>\fboxrule</primary></indexterm>
+<indexterm role="fn"><primary>\fboxsep</primary></indexterm>
+<para>The rule has thickness <literal>\fboxrule</literal> and there is a blank space
+<literal>\fboxsep</literal> between the frame and the contents of the box.
+</para>
+<para>For this command, you must specify the <replaceable>width</replaceable> and <replaceable>height</replaceable>.  If
+you want to just put a frame around some contents whose dimension is
+determined in some other way then either use <literal>\fbox</literal> (see <link linkend="_005cfbox-_0026-_005cframebox">\fbox
+& \framebox</link>) or <literal>\frame</literal> (see <link linkend="_005cframe">\frame</link>).
+</para>
+
+</sect2>
+<sect2 label="8.19.15" id="_005cframe">
+<title><literal>\frame</literal></title>
+
+<indexterm role="fn"><primary>\frame</primary></indexterm>
+
+<para>Synopsis:
+</para>
+<screen>\frame{<replaceable>contents</replaceable>}
+</screen>
+<para>Puts a rectangular frame around <replaceable>contents</replaceable>.  The reference point is
+the bottom left corner of the frame.  In contrast to <literal>\framebox</literal>
+(see <link linkend="_005cframebox-_0028picture_0029">\framebox (picture)</link>), this command puts no extra space is put
+between the frame and the object.  It is fragile (see <link linkend="_005cprotect">\protect</link>).
+</para>
+
+</sect2>
+<sect2 label="8.19.16" id="_005cdashbox">
+<title><literal>\dashbox</literal></title>
+
+<indexterm role="fn"><primary>\dashbox</primary></indexterm>
+
+<para>Synopsis:
+</para>
+<screen>\dashbox{<replaceable>dash-len</replaceable>}(<replaceable>rect-width</replaceable>,<replaceable>rect-height</replaceable>){<replaceable>text</replaceable>}
+\dashbox{<replaceable>dash-len</replaceable>}(<replaceable>rect-width</replaceable>,<replaceable>rect-height</replaceable>)[<replaceable>position</replaceable>]{<replaceable>text</replaceable>}
+</screen>
+<para>Create a dashed rectangle around <replaceable>text</replaceable>.  This command fits with the
+<literal>picture</literal> environment, although you can use it outside of there,
+because lengths are numbers specifying the distance in terms of the
+<literal>\unitlength</literal> (see <link linkend="picture">picture</link>).
+</para>
+<para>The required arguments are: dashes are <replaceable>dash-len</replaceable> units long, with
+the same length gap, and the rectangle has overall width
+<replaceable>rect-width</replaceable> units and height <replaceable>rect-height</replaceable> units.
+</para>
+<para>The optional argument <replaceable>position</replaceable> specifies the position of
+<replaceable>text</replaceable>; see <link linkend="_005cmakebox-_0028picture_0029">\makebox (picture)</link> for the values that it can
+take.
+</para>
+<para>This shows that you can use non-integer value for <replaceable>dash-len</replaceable>.
+</para>
+<screen>\put(0,0){\dashbox{0.1}(5,0.5){My hovercraft is full of eels.}}
+</screen>
+<para>Each dash will be <literal>0.1\unitlength</literal> long, the box’s width is
+<literal>5\unitlength</literal> and its height is <literal>0.5\unitlength</literal>.
+</para>
+<para>As in that example, a dashed box looks best when <replaceable>rect-width</replaceable> and
+<replaceable>rect-height</replaceable> are multiples of the <replaceable>dash-len</replaceable>.
+</para>
+
+</sect2>
 </sect1>
-<sect1 label="8.20" id="quotation-and-quote">
-<title><literal>quotation</literal> and <literal>quote</literal></title>
+<sect1 label="8.20" id="quotation-_0026-quote">
+<title><literal>quotation</literal> & <literal>quote</literal></title>
 
 <indexterm role="fn"><primary>environment, <literal>quotation</literal></primary></indexterm>
 <indexterm role="fn"><primary><literal>quotation</literal> environment</primary></indexterm>
@@ -4539,35 +5722,28 @@
 <para>Synopsis:
 </para>
 <screen>\begin{quotation}
-<replaceable>text</replaceable>
+  <replaceable>text</replaceable>
 \end{quotation}
 </screen>
 <para>or 
 </para>
 <screen>\begin{quote}
-<replaceable>text</replaceable>
+  <replaceable>text</replaceable>
 \end{quote}
 </screen>
-<para>Include a quotation. 
+<para>Include a quotation. Both environments indent margins on both sides by
+<literal>\leftmargin</literal> and the text is right-justified.
 </para>
-<para>In both environments, margins are indented on both sides by
-<literal>\leftmargin</literal> and the text is justified at both.  As with the main
-text, leaving a blank line produces a new paragraph.
+<para>They differ in how they treat paragraphs. In the <literal>quotation</literal>
+environment, paragraphs are indented by 1.5em and the space
+between paragraphs is small, <literal>0pt plus 1pt</literal>.  In the <literal>quote</literal>
+environment, paragraphs are not indented and there is vertical space
+between paragraphs (it is the rubber length <literal>\parsep</literal>).
 </para>
-<para>To compare the two: in the <literal>quotation</literal> environment, paragraphs are
-indented by 1.5em and the space between paragraphs is small,
-<literal>0pt plus 1pt</literal>.  In the <literal>quote</literal> environment, paragraphs are
-not indented and there is vertical space between paragraphs (it is the
-rubber length <literal>\parsep</literal>).  Thus, the <literal>quotation</literal> environment
-may be more suitable for documents where new paragraphs are marked by an
-indent rather than by a vertical separation.  In addition, <literal>quote</literal>
-may be more suitable for a short quotation or a sequence of short
-quotations.
-</para>
-<screen>\begin{quotation}
-\it Four score and seven years ago
+<screen>\begin{quotation} \small\it
+  Four score and seven years ago
   ... shall not perish from the earth.
-\hspace{1em plus 1fill}---Abraham Lincoln
+  \hspace{1em plus 1fill}---Abraham Lincoln
 \end{quotation}
 </screen>
 
@@ -4590,10 +5766,11 @@
 ...
 \end{tabbing}
 </screen>
-<para>The <literal>tabbing</literal> environment aligns text in columns.  It works by
-setting tab stops and tabbing to them much as was done on a typewriter.
-It is best suited for cases where the width of each column is constant
-and known in advance.
+<para>Align text in columns, by setting tab stops and tabbing to them much as
+was done on a typewriter.  This is less often used than the environments
+<literal>tabular</literal> (see <link linkend="tabular">tabular</link>) or <literal>array</literal> (see <link linkend="array">array</link>) because
+in those the width of each column need not be constant and need not be
+known in advance.
 </para>
 <para>This example has a first line where the tab stops are set to explicit
 widths, ended by a <literal>\kill</literal> command (which is described below):
@@ -4724,8 +5901,9 @@
             end;\\
 \end{tabbing}
 </screen>
-<para>The output looks like this:
-</para><screen>function fact(n : integer) : integer;
+<para>The output looks like this.
+</para>
+<screen>function fact(n : integer) : integer;
          begin
                if n > 1 then
                   fact := n * fact(n-1);
@@ -4743,13 +5921,11 @@
 <indexterm role="cp"><primary>package, <literal>fancyvrb</literal></primary></indexterm>
 <indexterm role="cp"><primary><literal>fancyvrb</literal> package</primary></indexterm>
 
-
-<para>(The above example is just for illustration of the environment.  To
-actually typeset computer code in typewriter like this, a verbatim
-environment (see <link linkend="verbatim">verbatim</link>) would normally suffice.  For
-pretty-printed code, there are quite a few packages, including
-<literal>algorithm2e</literal>, <literal>fancyvrb</literal>, <literal>listings</literal>, and
-<literal>minted</literal>.)
+<para>This example is just for illustration of the environment.  To actually
+typeset computer code in typewriter like this, a verbatim environment
+(see <link linkend="verbatim">verbatim</link>) would normally be best.  For pretty-printed code,
+there are quite a few packages, including <literal>algorithm2e</literal>,
+<literal>fancyvrb</literal>, <literal>listings</literal>, and <literal>minted</literal>.
 </para>
         
 </sect1>
@@ -4765,29 +5941,46 @@
 <para>Synopsis:
 </para>
 <screen>\begin{table}[<replaceable>placement</replaceable>]
-  table body
-\caption[<replaceable>loftitle</replaceable>]{<replaceable>title</replaceable>}
-\label{<replaceable>label}</replaceable>
+  <replaceable>table body</replaceable>
+  \caption[<replaceable>loftitle</replaceable>]{<replaceable>title</replaceable>}  % optional
+  \label{<replaceable>label}</replaceable>              % also optional
 \end{table}
 </screen>
-<para>A class of floats (see <link linkend="Floats">Floats</link>).  Because they cannot be split across
-pages, they are not typeset in sequence with the normal text but instead
-are “floated” to a convenient place, such as the top of a following
-page.
+<para>A class of floats (see <link linkend="Floats">Floats</link>).  They cannot be split across pages
+and so they are not typeset in sequence with the normal text but instead
+are floated to a convenient place, such as the top of a following page.
 </para>
+<para>This example <literal>table</literal> environment contains a <literal>tabular</literal>
+</para>
+<screen>\begin{table}
+  \centering\small
+  \begin{tabular}{ll}
+    \multicolumn{1}{c}{\textit{Author}}
+      &\multicolumn{1}{c}{\textit{Piece}}  \\ \hline
+    Bach            &Cello Suite Number 1  \\
+    Beethoven       &Cello Sonata Number 3 \\
+    Brahms          &Cello Sonata Number 1
+  \end{tabular}
+  \caption{Top cello pieces}
+  \label{tab:cello}
+\end{table}
+</screen>
+<para>but you can put many different kinds of content in a <literal>table</literal>,
+including text, &latex; commands, etc.
+</para>
 <para>For the possible values of <replaceable>placement</replaceable> and their effect on the 
 float placement algorithm, see <link linkend="Floats">Floats</link>.
 </para>
-<para>The table body is typeset in a <literal>parbox</literal> of width <literal>\textwidth</literal>
-and so it can contain text, commands, etc.
+<para>The table body is typeset in a <literal>parbox</literal> of width <literal>\textwidth</literal>.
+It can contain text, commands, graphics, etc.
 </para>
 <para>The label is optional; it is used for cross references (see <link linkend="Cross-references">Cross
 references</link>).  
 <indexterm role="fn"><primary>\caption</primary></indexterm>
-The optional <literal>\caption</literal> command specifies caption text for the
-table.  By default it is numbered.  If <replaceable>lottitle</replaceable> is present, it is
-used in the list of tables instead of <replaceable>title</replaceable> (see <link linkend="Tables-of-contents">Tables of
-contents</link>).
+The <literal>\caption</literal> command is also optional.  It specifies caption text
+for the table.  By default it is numbered.  If its optional
+<replaceable>lottitle</replaceable> is present then that text is used in the list of tables
+instead of <replaceable>title</replaceable> (see <link linkend="Table-of-contents-etc_002e">Table of contents etc.</link>).
 </para>
 <para>In this example the table and caption will float to the bottom of a page,
 unless it is pushed to a float page at the end.
@@ -4817,7 +6010,7 @@
 <para>Synopsis:
 </para>
 <screen>\begin{tabular}[<replaceable>pos</replaceable>]{<replaceable>cols</replaceable>}
-column 1 entry &column 2 entry ... &column n entry \\
+  <replaceable>column 1 entry</replaceable>  &<replaceable>column 2 entry</replaceable>  ...  &<replaceable>column n entry</replaceable> \\
   ...
 \end{tabular}
 </screen>
@@ -4824,13 +6017,13 @@
 <para>or
 </para>
 <screen>\begin{tabular*}{<replaceable>width</replaceable>}[<replaceable>pos</replaceable>]{<replaceable>cols</replaceable>}
-column 1 entry &column 2 entry ... &column n entry \\
+  <replaceable>column 1 entry</replaceable>  &<replaceable>column 2 entry</replaceable>  ...  &<replaceable>column n entry</replaceable> \\
   ...
 \end{tabular*}
 </screen>
-<para>These environments produce a table, a box consisting of a sequence of
-horizontal rows.  Each row consists of items that are aligned vertically
-in columns.  This illustrates many of the features.
+<para>Produce a table, a box consisting of a sequence of horizontal rows.
+Each row consists of items that are aligned vertically in columns.  This
+illustrates many of the features.
 </para>
 <screen>\begin{tabular}{l|l}
   \textit{Player name}  &\textit{Career home runs}  \\ 
@@ -4839,27 +6032,21 @@
   Babe Ruth   &714
 \end{tabular}
 </screen>
-<para>The vertical format of two left-aligned columns, with a vertical bar
-between them, is specified in <literal>tabular</literal>’s argument <literal>{l|l}</literal>.
+<para>The output will have two left-aligned columns with a vertical bar
+between them.  This is specified in <literal>tabular</literal>’s argument
+<literal>{l|l}</literal>.
 <indexterm role="fn"><primary>&</primary></indexterm>
-Columns are separated with an ampersand <literal>&</literal>.  A horizontal rule
-between two rows is created with <literal>\hline</literal>.
+Put the entries into different columns by separating them with an
+ampersand, <literal>&</literal>.  The end of each row is marked with a double
+backslash, <literal>\\</literal>.  Put a horizontal rule below a row, after a double
+backslash, with <literal>\hline</literal>.
 <indexterm role="fn"><primary>\\ for <literal>tabular</literal></primary></indexterm>
-The end of each row is marked with a double backslash <literal>\\</literal>.
 This <literal>\\</literal> is optional after the last row unless an <literal>\hline</literal>
 command follows, to put a rule below the table.
 </para>
 <para>The required and optional arguments to <literal>tabular</literal> consist of:
 </para>
-<variablelist><varlistentry><term><replaceable>width</replaceable>
-</term><listitem><para>Required for <literal>tabular*</literal>, not allowed for <literal>tabular</literal>. Specifies
-the width of the <literal>tabular*</literal> environment.  The space between columns
-should be rubber, as with <literal>@{\extracolsep{\fill}}</literal>, to allow
-the table to stretch or shrink to make the specified width, or else you
-are likely to get the <literal>Underfull \hbox (badness 10000) in alignment
-...</literal> warning.
-</para>
-</listitem></varlistentry><varlistentry><term><replaceable>pos</replaceable>
+<variablelist><varlistentry><term><replaceable>pos</replaceable>
 </term><listitem><para>Optional.  Specifies the table’s vertical position.  The default is to
 align the table so its vertical center matches the baseline of the
 surrounding text.  There are two other possible alignments: <literal>t</literal>
@@ -4888,25 +6075,28 @@
 </term><listitem><para>A vertical line the full height and depth of the environment.
 </para>
 </listitem></varlistentry><varlistentry><term><literal>@{<replaceable>text or space</replaceable>}</literal>
-</term><listitem><para>This inserts <replaceable>text or space</replaceable> at this location in every row.  The
-<replaceable>text or space</replaceable> material is typeset in LR mode.  This text is
-fragile (see <link linkend="_005cprotect">\protect</link>).
+</term><listitem><para>Insert <replaceable>text or space</replaceable> at this location in every row.  The <replaceable>text
+or space</replaceable> material is typeset in LR mode.  This text is fragile
+(see <link linkend="_005cprotect">\protect</link>).
 </para>
-<para>This specifier is optional: with no @-expression, &latex;’s
+<para>If between two columns there is no @-expression then &latex;’s
 <literal>book</literal>, <literal>article</literal>, and <literal>report</literal> classes will put on
-either side of each column a space of length <literal>\tabcolsep</literal>, which
-by default is ‘<literal>6pt</literal>’.  That is, by default adjacent columns are
-separated by 12pt (so <literal>\tabcolsep</literal> is misleadingly-named since it
-is not the separation between tabular columns).  By implication, a
-space of 6pt also comes before the first column and after the final
-column, unless you put a <literal>@{...}</literal> or <literal>|</literal> there.
+either side of each column a space of length <literal>\tabcolsep</literal>, which by
+default is 6pt.  That is, by default adjacent columns are
+separated by 12pt (so <literal>\tabcolsep</literal> is misleadingly named
+since it is only half of the separation between tabular columns).  In
+addition, a space of 6pt also comes before the first column and
+after the final column, unless you put a <literal>@{...}</literal> or <literal>|</literal>
+there.
 </para>
-<para>If you override the default and use an @-expression then you must
-insert any desired space yourself, as in <literal>@{\hspace{1em}}</literal>.
+<para>If you override the default and use an @-expression then &latex; does
+not insert <literal>\tabcolsep</literal> so you must insert any desired space
+yourself, as in <literal>@{\hspace{1em}}</literal>.
 </para>
-<para>An empty expression <literal>@{}</literal> will eliminate the space, including
-the space at the start or end, as in the example below where the tabular
-lines need to lie on the left margin.
+<para>An empty expression <literal>@{}</literal> will eliminate the space.  In
+particular, sometimes you want to eliminate the the space before the
+first column or after the last one, as in the example below where the
+tabular lines need to lie on the left margin.
 </para>
 <screen>\begin{flushleft}
   \begin{tabular}{@{}l}
@@ -4914,8 +6104,8 @@
   \end{tabular}
 \end{flushleft}
 </screen>
-<para>This example shows text, a decimal point, between the columns, arranged
-so the numbers in the table are aligned on that decimal point.
+<para>The next example shows text, a decimal point between the columns,
+arranged so the numbers in the table are aligned on it.
 </para>
 <screen>\begin{tabular}{r@{$.$}l}
   $3$ &$14$  \\
@@ -4925,19 +6115,17 @@
 <indexterm role="fn"><primary>\extracolsep</primary></indexterm>
 <para>An <literal>\extracolsep{<replaceable>wd</replaceable>}</literal> command in an @-expression causes an
 extra space of width <replaceable>wd</replaceable> to appear to the left of all subsequent
-columns, until countermanded by another <literal>\extracolsep</literal> command.
-Unlike ordinary intercolumn space, this extra space is not suppressed by
-an @-expression.  An <literal>\extracolsep</literal> command can be used only in an
+columns, until countermanded by another <literal>\extracolsep</literal>.  Unlike
+ordinary intercolumn space, this extra space is not suppressed by an
+ at -expression.  An <literal>\extracolsep</literal> command can be used only in an
 @-expression in the <literal>cols</literal> argument.  Below, &latex; inserts the
 right amount of intercolumn space to make the entire table 4 inches
 wide.
 </para>
-<screen>\begin{center}
-  \begin{tabular*}{4in}{l@{\ \ldots\extracolsep{\fill}}l}
-    Seven times down, eight times up 
-    &such is life!
-  \end{tabular*}
-\end{center}
+<screen>\begin{tabular*}{4in}{l@{\extracolsep{\fill}}l}
+  Seven times down, eight times up \ldots 
+  &such is life!
+\end{tabular*}
 </screen>
 <para>To insert commands that are automatically executed before a given
 column, load the <literal>array</literal> package and use the <literal>>{...}</literal>
@@ -4945,45 +6133,56 @@
 <!-- xx should fully explain array, tabularx, and all other base packages... -->
 </para>
 </listitem></varlistentry><varlistentry><term><literal>p{<replaceable>wd</replaceable>}</literal>
-</term><listitem><para>Each item in the column is typeset in a parbox of width <replaceable>wd</replaceable>.
+</term><listitem><para>Each item in the column is typeset in a parbox of width <replaceable>wd</replaceable>, as if
+it were the argument of a <literal>\parbox[t]{wd}{...}</literal> command.
 </para>
-<para>Note that a line break double backslash <literal>\\</literal> may not appear in the
-item, except inside an environment like <literal>minipage</literal>, <literal>array</literal>,
-or <literal>tabular</literal>, or inside an explicit <literal>\parbox</literal>, or in the scope
-of a <literal>\centering</literal>, <literal>\raggedright</literal>, or <literal>\raggedleft</literal>
+<para>A line break double backslash <literal>\\</literal> may not appear in the item,
+except inside an environment like <literal>minipage</literal>, <literal>array</literal>, or
+<literal>tabular</literal>, or inside an explicit <literal>\parbox</literal>, or in the scope of
+a <literal>\centering</literal>, <literal>\raggedright</literal>, or <literal>\raggedleft</literal>
 declaration (when used in a <literal>p</literal>-column element these declarations
 must appear inside braces, as with <literal>{\centering .. \\
 ..}</literal>). Otherwise &latex; will misinterpret the double backslash as
-ending the row.
+ending the row.  Instead, to get a line break in there use
+<literal>\newline</literal> (see <link linkend="_005cnewline">\newline</link>).
 </para>
 </listitem></varlistentry><varlistentry><term><literal>*{<replaceable>num</replaceable>}{<replaceable>cols</replaceable>}</literal>
 </term><listitem><para>Equivalent to <replaceable>num</replaceable> copies of <replaceable>cols</replaceable>, where <replaceable>num</replaceable> is a
-positive integer and <replaceable>cols</replaceable> is a list of specifiers.  Thus
-<literal>\begin{tabular}{|*{3}{l|r}|}</literal> is equivalent to
-<literal>\begin{tabular}{|l|rl|rl|r|}</literal>.  Note that <replaceable>cols</replaceable> may
-contain another <literal>*</literal>-expression.
+positive integer and <replaceable>cols</replaceable> is a list of specifiers.  Thus the
+specifier <literal>\begin{tabular}{|*{3}{l|r}|}</literal> is equivalent to
+the specifier <literal>\begin{tabular}{|l|rl|rl|r|}</literal>.  Note that
+<replaceable>cols</replaceable> may contain another <literal>*</literal>-expression.
 </para> 
-</listitem></varlistentry></variablelist></listitem></varlistentry></variablelist>
+</listitem></varlistentry></variablelist>
+</listitem></varlistentry><varlistentry><term><replaceable>width</replaceable>
+</term><listitem><para>Required for <literal>tabular*</literal>, not allowed for <literal>tabular</literal>. Specifies
+the width of the <literal>tabular*</literal> environment.  The space between columns
+should be rubber, as with <literal>@{\extracolsep{\fill}}</literal>, to allow
+the table to stretch or shrink to make the specified width, or else you
+are likely to get the <literal>Underfull \hbox (badness 10000) in alignment
+...</literal> warning.
+</para>
+</listitem></varlistentry></variablelist>
 <para>Parameters that control formatting:
 <!-- xx defaults, own node (xref from array)? -->
 </para>
 <variablelist><varlistentry><term><indexterm role="fn"><primary>\arrayrulewidth</primary></indexterm><literal>\arrayrulewidth</literal>
-</term><listitem><para>A length that is the thickness of the rule created by <literal>|</literal>,
+</term><listitem><anchor id="tabular-arrayrulewidth"/><para>A length that is the thickness of the rule created by <literal>|</literal>,
 <literal>\hline</literal>, and <literal>\vline</literal> in the <literal>tabular</literal> and <literal>array</literal>
 environments.  The default is ‘<literal>.4pt</literal>’. Change it as in
 <literal>\setlength{\arrayrulewidth}{0.8pt}</literal>.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\arraystretch</primary></indexterm><literal>\arraystretch</literal>
-</term><listitem><para>A factor by which the spacing between rows in the <literal>tabular</literal> and
+</term><listitem><anchor id="tabular-arraystrech"/><para>A factor by which the spacing between rows in the <literal>tabular</literal> and
 <literal>array</literal> environments is multiplied.  The default is ‘<literal>1</literal>’, for
 no scaling.  Change it as <literal>\renewcommand{\arraystretch}{1.2}</literal>.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\doublerulesep</primary></indexterm><literal>\doublerulesep</literal>
-</term><listitem><para>A length that is the distance between the vertical rules produced by the
+</term><listitem><anchor id="tabular-doublerulesep"/><para>A length that is the distance between the vertical rules produced by the
 <literal>||</literal> specifier.  The default is ‘<literal>2pt</literal>’.
 </para>
 </listitem></varlistentry><varlistentry><term><indexterm role="fn"><primary>\tabcolsep</primary></indexterm><literal>\tabcolsep</literal>
-</term><listitem><para>A length that is half of the space between columns. The default is
+</term><listitem><anchor id="tabular-tabcolsep"/><para>A length that is half of the space between columns. The default is
 ‘<literal>6pt</literal>’.  Change it with <literal>\setlength</literal>.
 </para>
 </listitem></varlistentry></variablelist>
@@ -5013,8 +6212,9 @@
 spanned by the single heading ‘<literal>Name</literal>’.
 </para>
 <screen>\begin{tabular}{lccl} 
-  \textit{ID}       &\multicolumn{2}{c}{\textit{Name}} &\textit{Age} \\ \hline % row one 
-  978-0-393-03701-2 &O'Brian &Patrick                  &55           \\        % row two 
+  \textit{ID}       &\multicolumn{2}{c}{\textit{Name}} &\textit{Age} \\
+  \hline  
+  978-0-393-03701-2 &O'Brian &Patrick                  &55           \\
     ...
 \end{tabular}
 </screen>
@@ -5092,23 +6292,23 @@
 bar <literal>|</literal> is more common.  This command is rarely used in the
 body of a table; typically a table’s vertical lines are specified in
 <literal>tabular</literal>’s <replaceable>cols</replaceable> argument and overridden as needed with
-<literal>\multicolumn</literal>.
+<literal>\multicolumn</literal> (see <link linkend="tabular">tabular</link>).
 </para>
-<para>This example illustrates some pitfalls.  In the first line’s second
+<para>The example below illustrates some pitfalls.  In the first row’s second
 entry the <literal>\hfill</literal> moves the <literal>\vline</literal> to the left edge of the
 cell.  But that is different than putting it halfway between the two
-columns, so in that row between the first and second columns there are
-two vertical rules, with the one from the <literal>{c|cc}</literal> specifier
-coming before the one produced by the <literal>\vline\hfill</literal>.  In contrast,
-the first line’s third entry shows the usual way to put a vertical bar
-between two columns.  In the second line, the <literal>ghi</literal> is the widest
-entry in its column so in the <literal>\vline\hfill</literal> the <literal>\hfill</literal> has
-no effect and the vertical line in that entry appears immediately next
-to the <literal>g</literal>, with no whitespace.
+columns, so between the first and second columns there are two vertical
+rules, with the one from the <literal>{c|cc}</literal> specifier coming before the
+one produced by the <literal>\vline\hfill</literal>.  In contrast, the first row’s
+third entry shows the usual way to put a vertical bar between two
+columns.  In the second row, the <literal>ghi</literal> is the widest entry in its
+column so in the <literal>\vline\hfill</literal> the <literal>\hfill</literal> has no effect and
+the vertical line in that entry appears immediately next to the
+<literal>g</literal>, with no whitespace.
 </para>
 <screen>\begin{tabular}{c|cc}
-  x   &\vline\hfill y   &\multicolumn{1}{|r}{z} \\  
-  abc &def &\vline\hfill ghi 
+  x   &\vline\hfill y   &\multicolumn{1}{|r}{z} \\ % row 1  
+  abc &def &\vline\hfill ghi                       % row 2  
 \end{tabular}
 </screen>
 
@@ -5122,10 +6322,10 @@
 </para>
 <screen>\cline{<replaceable>i</replaceable>-<replaceable>j</replaceable>}
 </screen>
-<para>Draw a horizontal rule in an <literal>array</literal> or <literal>tabular</literal> environment
-beginning in column <replaceable>i</replaceable> and ending in column <replaceable>j</replaceable>. The
-dash <literal>-</literal> must appear in the mandatory argument. To span a
-single column use the number twice.
+<para>In an <literal>array</literal> or <literal>tabular</literal> environment, draw a horizontal rule
+beginning in column <replaceable>i</replaceable> and ending in column <replaceable>j</replaceable>. The
+dash, <literal>-</literal>, must appear in the mandatory argument. To span a single
+column use the number twice, as with <literal>\cline{2-2}</literal>.
 </para>
 <para>This example puts two horizontal lines between the first and second
 rows, one line in the first column only, and the other spanning the
@@ -5144,7 +6344,7 @@
 
 <indexterm role="fn"><primary>\hline</primary></indexterm>
 
-<para>Draws a horizontal line the width of the enclosing <literal>tabular</literal> or
+<para>Draw a horizontal line the width of the enclosing <literal>tabular</literal> or
 <literal>array</literal> environment.  It’s most commonly used to draw a line at the
 top, bottom, and between the rows of a table.
 </para>
@@ -5173,42 +6373,58 @@
 <para>Synopsis:
 </para>
 <screen>\begin{thebibliography}{<replaceable>widest-label</replaceable>}
-\bibitem[<replaceable>label</replaceable>]{<replaceable>cite_key}</replaceable>
-...
+  \bibitem[<replaceable>label</replaceable>]{<replaceable>cite_key}</replaceable>
+  ...
 \end{thebibliography}
 </screen>
-<para>The <literal>thebibliography</literal> environment produces a bibliography or
-reference list.
+<para>Produce a bibliography or reference list.  There are two ways to produce
+bibliographic lists.  This environment is suitable when you have only a
+few references and can maintain the list by hand.  See <link linkend="Using-BibTeX">Using BibTeX</link>
+for a more sophisticated approach.
 </para>
-<para>In the <literal>article</literal> class, this reference list is labelled
-‘<literal>References</literal>’ and the label is stored in macro <literal>\refname</literal>; in
-the <literal>report</literal> class, it is labelled ‘<literal>Bibliography</literal>’ and the
-label is stored in macro <literal>\bibname</literal>.
+<para>This shows the environment with two entries.
 </para>
-<para>You can change the label by redefining the command <literal>\refname</literal> or
-<literal>\bibname</literal>, whichever is applicable depending on the class:
+<screen>This work is based on \cite{latexdps}.
+Together they are \cite{latexdps, texbook}.
+  ...
+\begin{thebibliography}{9}
+\bibitem{latexdps} 
+  Leslie Lamport. 
+  \textit{\LaTeX{}: a document preparation system}. 
+  Addison-Wesley, Reading, Massachusetts, 1993.
+\bibitem{texbook} 
+  Donald Ervin Knuth. 
+  \textit{The \TeX book}. 
+  Addison-Wesley, Reading, Massachusetts, 1983.
+\end{thebibliography}
+</screen>
+<para>This styles the first reference as ‘<literal>[1] Leslie ...</literal>’, and so that
+<literal>\cite{latexdps}</literal> produces the matching ‘<literal>... based on [1]</literal>’.
+The second <literal>\cite</literal> produces ‘<literal>[1, 2]</literal>’.  You must compile the
+document twice to resolve these references.
 </para>
-<itemizedlist><listitem><indexterm role="fn"><primary>\bibname</primary></indexterm>
-<para>For standard classes whose top level sectioning is <literal>\chapter</literal>
-(such as <filename>book</filename> and <filename>report</filename>), the label is in the macro
-<literal>\bibname</literal>;
+<para>The mandatory argument <replaceable>widest-label</replaceable> is text that, when typeset, is
+as wide as the widest item label produced by the <literal>\bibitem</literal>
+commands.  The tradition is to use <literal>9</literal> for bibliographies with less
+than 10 references, <literal>99</literal> for ones with less than 100, etc.
 </para>
-</listitem><listitem><indexterm role="fn"><primary>\refname</primary></indexterm>
-<para>For standard classes whose the top level sectioning is <literal>\section</literal>
-(such as <filename>article</filename>), the label is in macro <literal>\refname</literal>.
-</para></listitem></itemizedlist>
+<para>The bibliographic list is headed by a title such as ‘<literal>Bibliography</literal>’.
+To change it there are two cases.  In the <filename>book</filename> and <filename>report</filename>
+classes, where the top level sectioning is <literal>\chapter</literal> and the
+default title is ‘<literal>Bibliography</literal>’, that title is in the macro
+<literal>\bibname</literal>.  For <filename>article</filename>, where the class’s top level
+sectioning is <literal>\section</literal> and the default is ‘<literal>References</literal>’, the
+title is in macro <literal>\refname</literal>.  Change it by redefining the command,
+as with <literal>\renewcommand{\refname}{Cited references}</literal> after
+<literal>\begin{document}</literal>.
+</para>
 <indexterm role="cp"><primary>package, <literal>babel</literal></primary></indexterm>
 <indexterm role="cp"><primary><literal>babel</literal> package</primary></indexterm>
 
-<para>Typically it is neither necessary nor desirable to directly redefine
-<literal>\refname</literal> or <literal>\bibname</literal>; language support packages like
-<filename>babel</filename> do this.
+<para>Language support packages such as <filename>babel</filename> will automatically
+redefine <literal>\refname</literal> or <literal>\bibname</literal> to fit the selected
+language.
 </para>
-<para>The mandatory <replaceable>widest-label</replaceable> argument is text that, when typeset,
-is as wide as the widest item label produced by the <literal>\bibitem</literal>
-commands.  It is typically given as <literal>9</literal> for bibliographies with
-less than 10 references, <literal>99</literal> for ones with less than 100, etc.
-</para>
 
 
 <sect2 label="8.24.1" id="_005cbibitem">
@@ -5218,22 +6434,63 @@
 
 <para>Synopsis:
 </para>
+<screen>\bibitem{<replaceable>cite_key</replaceable>}
+</screen>
+<para>or
+</para>
 <screen>\bibitem[<replaceable>label</replaceable>]{<replaceable>cite_key</replaceable>}
 </screen>
-<para>The <literal>\bibitem</literal> command generates an entry labelled by <replaceable>label</replaceable>.
-If the <replaceable>label</replaceable> argument is missing, a number is automatically
-generated using the <literal>enumi</literal> counter.  The <replaceable>cite_key</replaceable> is a
+<para>Generate an entry labeled by <replaceable>label</replaceable>.  The default is for &latex; to
+generates a number using the <literal>enumi</literal> counter.  The <firstterm>citation key</firstterm> 
 <indexterm role="cp"><primary>citation key</primary></indexterm>
-<firstterm>citation key</firstterm> consisting in any sequence of
-letters, numbers, and punctuation symbols not containing a comma.
+<replaceable>cite_key</replaceable> is a string of
+letters, numbers, and punctuation symbols (but not comma).
 </para>
-<para>This command writes an entry to the <filename>.aux</filename> file containing the
-item’s <replaceable>cite_key</replaceable> and <replaceable>label</replaceable>.  When the <filename>.aux</filename> file is
-read by the <literal>\begin{document}</literal> command, the item’s <replaceable>label</replaceable> is
-associated with <literal>cite_key</literal>, causing references to <replaceable>cite_key</replaceable>
-with a <literal>\cite</literal> command (see <link linkend="_005ccite">\cite</link>) to produce the associated
-<replaceable>label</replaceable>.
+<para>See <link linkend="thebibliography">thebibliography</link> for an example.
 </para>
+<para>The optional <replaceable>label</replaceable> changes the default label from an integer to the
+given string.  With this
+</para>
+<screen>\begin{thebibliography}
+\bibitem[Lamport 1993]{latexdps} 
+  Leslie Lamport. 
+  \textit{\LaTeX{}: a document preparation system}. 
+  Addison-Wesley, Reading, Massachusetts, 1993.
+\bibitem{texbook} 
+  Donald Ervin Knuth. 
+  \textit{The \TeX book}. 
+  Addison-Wesley, Reading, Massachusetts, 1983.
+\end{thebibliography}
+</screen>
+<para>the first entry will be styled as ‘<literal>[Lamport 1993] Leslie ...</literal>’  (The
+amount of horizontal space that &latex; leaves for the label depends on
+the <replaceable>widest-label</replaceable> argument of the <literal>thebibliography</literal>
+environment; see <link linkend="thebibliography">thebibliography</link>.)  Similarly, <literal>... based on
+\cite{latexdps}</literal> will produce ‘<literal>... based on [Lamport 1994]</literal>’.
+</para>
+<para>If you mix <literal>\bibitem</literal> entries having a <replaceable>label</replaceable> with those that
+do not then &latex; will number the unlabelled ones sequentially.  In
+the example above the <literal>texbook</literal> entry will appear as ‘<literal>[1]
+Donald ...</literal>’, despite that it is the second entry.
+</para>
+<para>If you use the same <replaceable>cite_key</replaceable> twice then you get ‘<literal>LaTeX
+Warning: There were multiply-defined labels</literal>’.
+</para>
+<para>Under the hood, &latex; remembers the <replaceable>cite_key</replaceable> and <replaceable>label</replaceable>
+information because <literal>\bibitem</literal> writes it to the auxiliary file
+<filename><replaceable>filename</replaceable>.aux</filename>.  For instance, the above example causes
+<literal>\bibcite{latexdps}{Lamport, 1993}</literal> and
+<literal>\bibcite{texbook}{1}</literal> to appear in that file.  The <filename>.aux</filename>
+file is read by the <literal>\begin{document}</literal> command and then the
+information is available for <literal>\cite</literal> commands.  This explains why
+you need to run &latex; twice to resolve references: once to write it
+out and once to read it in.
+</para>
+<para>Because of this two-pass algorithm, when you add a <literal>\bibitem</literal> or
+change its <replaceable>cite_key</replaceable> you may get ‘<literal>LaTeX Warning: Label(s) may
+have changed. Rerun to get cross-references right</literal>’.  Fix it by
+recompiling.
+</para>
 
 </sect2>
 <sect2 label="8.24.2" id="_005ccite">
@@ -5243,17 +6500,49 @@
 
 <para>Synopsis:
 </para>
+<screen>\cite{<replaceable>keys</replaceable>}
+</screen>
+<para>or
+</para>
 <screen>\cite[<replaceable>subcite</replaceable>]{<replaceable>keys</replaceable>}
 </screen>
-<para>The <replaceable>keys</replaceable> argument is a list of one or more citation keys
-(see <link linkend="_005cbibitem">\bibitem</link>), separated by commas.  This command generates an
-in-text citation to the references associated with <replaceable>keys</replaceable> by entries
-in the <filename>.aux</filename> file.
+<para>Generate as output a citation to the references associated with
+<replaceable>keys</replaceable>.  The mandatory <replaceable>keys</replaceable> is a citation key, or a
+comma-separated list of citation keys (see <link linkend="_005cbibitem">\bibitem</link>).
 </para>
-<para>The text of the optional <replaceable>subcite</replaceable> argument appears after the
-citation.  For example, <literal>\cite[p.~314]{knuth}</literal> might produce
-‘<literal>[Knuth, p. 314]</literal>’.
+<para>This 
 </para>
+<screen>The ultimate source is \cite{texbook}.
+  ...
+\begin{thebibliography}
+\bibitem{texbook} 
+  Donald Ervin Knuth. 
+  \textit{The \TeX book}. 
+  Addison-Wesley, Reading, Massachusetts, 1983.
+\end{thebibliography}
+</screen>
+<para>produces the output ‘<literal>... source is [1]</literal>’.
+</para>
+<para>The optional argument <replaceable>subcite</replaceable> is appended to the citation.  For
+example, <literal>See 14.3 in \cite[p.~314]{texbook}</literal> might produce
+‘<literal>See 14.3 in [1, p. 314]</literal>’.
+</para>
+<para>If <replaceable>keys</replaceable> is not in your bibliography information then you get
+‘<literal>LaTeX Warning: There were undefined references</literal>’, and in the output
+the citation shows as a boldface question mark between square brackets.
+There are two possible causes.  If you have mistyped something, as in
+<literal>\cite{texbok}</literal> then you need to correct the spelling.  On the
+other hand, if you have just added or modified the bibliographic
+information and so changed the <filename>.aux</filename> file (see <link linkend="_005cbibitem">\bibitem</link>) then
+the fix may be to just run &latex; again.
+</para>
+<para>In addition to what appears in the output, <literal>\cite</literal> writes
+information to the auxiliary file <filename><replaceable>filename</replaceable>.aux</filename>.  For
+instance, <literal>\cite{latexdps}</literal> writes ‘<literal>\citation{latexdps}</literal>’
+to that file.  This information is used by Bib&tex; to include in your
+reference list only those works that you have actually cited; see
+<link linkend="_005cnocite">\nocite</link> also.
+</para>
 
 </sect2>
 <sect2 label="8.24.3" id="_005cnocite">
@@ -5265,9 +6554,14 @@
 </para>
 <screen><literal>\nocite{<replaceable>keys</replaceable>}</literal>
 </screen>
-<para>The <literal>\nocite</literal> command produces no text, but writes <replaceable>keys</replaceable>,
-which is a list of one or more citation keys, to the <filename>.aux</filename> file.
+<para>Produces no output but writes <replaceable>keys</replaceable> to the auxiliary file
+<filename><replaceable>doc-filename</replaceable>.aux</filename>.
 </para>
+<para>The mandatory argument <replaceable>keys</replaceable> is a comma-separated list of one or
+more citation keys (see <link linkend="_005cbibitem">\bibitem</link>).  This information is used by
+Bib&tex; to include these works in your reference list even though you

@@ Diff output truncated at 1234567 characters. @@


More information about the tex-live-commits mailing list