summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/info/eplain.info
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-08-07 18:24:39 +0000
committerKarl Berry <karl@freefriends.org>2008-08-07 18:24:39 +0000
commit04090cf2a1f7b8abd369b3fb944199b902599342 (patch)
tree16b8660adca27757eb19769a536d936aeb109499 /Master/texmf/doc/info/eplain.info
parentc07533ee14074459c9f4aec42036b5cb4e12d613 (diff)
updates of texinfo manuals
git-svn-id: svn://tug.org/texlive/trunk@10145 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf/doc/info/eplain.info')
-rw-r--r--Master/texmf/doc/info/eplain.info451
1 files changed, 264 insertions, 187 deletions
diff --git a/Master/texmf/doc/info/eplain.info b/Master/texmf/doc/info/eplain.info
index aa7dd6bbd4e..8ea926d5053 100644
--- a/Master/texmf/doc/info/eplain.info
+++ b/Master/texmf/doc/info/eplain.info
@@ -1,17 +1,18 @@
This is eplain.info, produced by makeinfo version 4.8 from eplain.texi.
- This manual documents the Eplain macros, version 3.1, December 2006.
+ This manual documents the Eplain macros, version 3.2, November 2007.
Eplain provides functionality for plain TeX that is intended to be
useful regardless of how your document is actually formatted.
Most of this manual is in the public domain, like most of the Eplain
-code. It was mostly written by Karl Berry, starting in 1989. Steven
-Smith wrote the documentation for the commutative diagram macros; this
-chapter is under the GNU General Public License. Adam Lewenberg has
-made additions and corrections. Oleg Katsitadze has helped with writing
-the section on LaTeX packages and the chapter on hyperlinks.
-
-INFO-DIR-SECTION Texinfo documentation system
+code. It was originally written by Karl Berry, starting in 1989.
+Steven Smith wrote the documentation for the commutative diagram
+macros; this chapter is under the GNU General Public License. Adam
+Lewenberg has made additions and corrections. Oleg Katsitadze wrote
+the section on LaTeX packages and the chapter on hyperlinks, and
+updates throughout.
+
+INFO-DIR-SECTION TeX
START-INFO-DIR-ENTRY
* Eplain: (eplain). Expanding on plain Tex.
END-INFO-DIR-ENTRY
@@ -22,16 +23,17 @@ File: eplain.info, Node: Top, Next: Introduction, Up: (dir)
Eplain
******
-This manual documents the Eplain macros, version 3.1, December 2006.
+This manual documents the Eplain macros, version 3.2, November 2007.
Eplain provides functionality for plain TeX that is intended to be
useful regardless of how your document is actually formatted.
Most of this manual is in the public domain, like most of the Eplain
-code. It was mostly written by Karl Berry, starting in 1989. Steven
-Smith wrote the documentation for the commutative diagram macros; this
-chapter is under the GNU General Public License. Adam Lewenberg has
-made additions and corrections. Oleg Katsitadze has helped with writing
-the section on LaTeX packages and the chapter on hyperlinks.
+code. It was originally written by Karl Berry, starting in 1989.
+Steven Smith wrote the documentation for the commutative diagram
+macros; this chapter is under the GNU General Public License. Adam
+Lewenberg has made additions and corrections. Oleg Katsitadze wrote
+the section on LaTeX packages and the chapter on hyperlinks, and
+updates throughout.
* Menu:
@@ -1422,7 +1424,7 @@ later which you want to refer to as `(1*)'.
Therefore, Eplain allows you to give an optional argument (i.e.,
arbitrary text in square brackets) before the cross-reference label to
-\eqdef. Then, when you refer to the equation, that text is produced.
+`\eqdef'. Then, when you refer to the equation, that text is produced.
Here's how to get the example just mentioned:
$$...\eqdef{a-eq}$$
@@ -1430,9 +1432,53 @@ Here's how to get the example just mentioned:
$$...\eqdef[\eqrefn{a-eq}*]{a-eq-var}$$
In \eqref{a-eq-var}, we expand on \eqref{a-eq}, ...
- We use `\eqrefn' in the cross-reference text, not `\eqref', so that
+We use `\eqrefn' in the cross-reference text, not `\eqref', so that
`\eqprint' is called only once.
+ As another example, consider the following requirement: we want to
+include chapter number in all equation references, and additionally we
+want to include the part number when referencing an equation from any
+part other than the one where the equation appears. For example,
+references to the third equation in chapter 2 of part 1 should be
+typeset as `(2.3)' throughout part 1, but as `(I.2.3)' in any other
+part. Let's assume we have the current chapter and part numbers in
+count registers `\chapnum' and `\partnum', respectively.
+
+ The idea is to have `\eqconstruct' store the part number of the
+equation (that is, the part number _at the time of definition_), so
+that later `\eqprint' can compare the stored number with the current
+part number (that is, the part number _at the time of reference_). The
+complicating factor is that internally, the result of `\eqconstruct' is
+both expanded and written out to the `.aux' file, _and_ used to typeset
+the equation number, so the commands that store the part number should
+behave correctly in both situations. This is difficult to achieve with
+expandable commands; therefore, to avoid expansion problems, we are
+going to use only TeX primitives, which are non-expandable:
+
+ \newcount\eqpartnum
+
+ \def\eqconstruct#1{%
+ \global\eqpartnum=\the\partnum\relax
+ \number\chapnum.#1%
+ }
+
+ \def\eqprint#1{%
+ \setbox0=\hbox{#1}%
+ (\ifnum\partnum=\eqpartnum \else
+ \uppercase\expandafter{\romannumeral\eqpartnum}.%
+ \fi
+ \box0)%
+ }%
+
+In `\eqconstruct', besides constructing the base equation number (e.g.,
+`1.2'), we also store the part number of the equation in the count
+register `\eqpartnum' (`\the\partnum' is expanded when the equation
+number is written to the `.aux' file, so the equation label definition
+in the `.aux' file will contain the actual part number). In
+`\eqprint', we need to know the equation's part number before we
+typeset the base equation number, therefore we first put the argument
+in a box, thus causing `\eqpartnum' to be set.
+

File: eplain.info, Node: Subequation references, Prev: Formatting equation references, Up: Equation references
@@ -1527,6 +1573,20 @@ example,
defines the command `\mdx' to write to the file `foo.mdx'. Eplain
simply does `\defineindex{i}' to define the default commands.
+ For each index defined with `\defineindex{N}', Eplain provides a
+switch `\ifNdx' which controls whether indexing commands write index
+entries to the corresponding index file. However, even when index term
+writing is disabled, indexing commands still do all other processing of
+their arguments, including typesetting of proof index terms (*note
+Proofing index terms::.
+
+ For example, if you write `\idxfalse' near the beginning of a
+document `foo.tex' (before the first indexing command), Eplain will not
+open the default index file (`foo.idx') and the corresponding indexing
+commands (`\idx', `\sidx', etc.) will not write index entries there.
+This may be useful for draft compilations of a manuscript, e.g., to
+avoid the overhead of index file input/output.
+
* Menu:
* Indexing terms:: Specifying what to index.
@@ -1684,11 +1744,15 @@ subterm) is independent of these.
`seealso'
Similar to `see' (the previous item), but also allows for normal
- index entries of the referencing term. Example:
+ index entries of the referencing term. The normal index entries
+ have to be created separately--`seealso' does _not_ contribute a
+ page number to the index entry. For example, if you have indexed a
+ term on pages 75, 97 and 114, and then add a `seealso' entry for
+ the term:
\sidx[seealso]{archetypal criticism}[elements of]{dichotomies}
- becomes
+ the index will contain
archetypal criticism,
elements of, 75, 97, 114, see also dichotomies
@@ -5496,6 +5560,8 @@ File: eplain.info, Node: Hyperlinks (xhyper.tex), Next: Highlighting TeX comme
8.1 Hyperlinks (`xhyper.tex')
=============================
+
+
% (This file is public domain.)
%
% This file demonstrates the following features of Eplain:
@@ -5693,6 +5759,8 @@ File: eplain.info, Node: Highlighting TeX comments in listings (lscommnt.tex),
8.2 Highlighting TeX comments in listings (`lscommnt.tex')
==========================================================
+
+
% (This file is public domain.)
% Demonstrate how Eplain can be used to include a TeX source file
% verbatim, typesetting comments in colored italic typewriter type.
@@ -5896,12 +5964,12 @@ Macro index
(line 64)
* csn: \csn and \ece. (line 6)
* definecolor: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* definecontentsfile: Alternative contents files.
(line 6)
* defineindex: Indexing. (line 37)
* definexref <1>: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* definexref: Defining generic references.
(line 6)
* definexref (hyperlinks): Cross-reference hyperlinks.
@@ -6064,18 +6132,18 @@ Macro index
* hldeston: Turning low-level commands on/off.
(line 6)
* hldestopts <1>: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* hldestopts <2>: Setting group options.
(line 11)
* hldestopts: Setting default types and options.
(line 15)
* hldesttype <1>: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* hldesttype <2>: Setting group types. (line 6)
* hldesttype: Setting default types and options.
(line 6)
* hlend <1>: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* hlend: Explicit hyperlinks. (line 25)
* hlfootbacklabel: Footnote hyperlinks. (line 12)
* hlfootlabel: Footnote hyperlinks. (line 12)
@@ -6095,7 +6163,7 @@ Macro index
* hlight (hyperlink option): Link options for pdftex and dvipdfm.
(line 69)
* hlightcommentslisting: Highlighting TeX comments in listings (lscommnt.tex).
- (line 6)
+ (line 8)
* hline: Arrows and morphisms.
(line 53)
* hloff <1>: Turning low-level commands on/off.
@@ -6105,13 +6173,13 @@ Macro index
* hlon: Turning low-level commands on/off.
(line 6)
* hlopts <1>: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* hlopts <2>: Setting group options.
(line 11)
* hlopts: Setting default types and options.
(line 15)
* hlstart <1>: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* hlstart <2>: Setting hyperlink types and options.
(line 7)
* hlstart <3>: Link types for pdftex and dvipdfm.
@@ -6209,6 +6277,9 @@ Macro index
* idxsubmarked (hyperlinks): Index hyperlinks. (line 6)
* ifempty: \ifempty. (line 6)
* iffileexists: Auxiliary files. (line 10)
+* ifidx: Indexing. (line 48)
+* ifindexproofing: Proofing index terms.
+ (line 12)
* ifinteger: \ifinteger and \isinteger.
(line 6)
* ifpdf <1>: Introduction to hyperlinks.
@@ -6219,7 +6290,7 @@ Macro index
(line 26)
* ifundefined: \ifundefined. (line 6)
* includegraphics: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* indexfilebasename: Typesetting an index.
(line 11)
* indexfonts: Typesetting an index.
@@ -6228,6 +6299,10 @@ Macro index
(line 49)
* indexprooffont: Proofing index terms.
(line 12)
+* indexproofingfalse: Proofing index terms.
+ (line 12)
+* indexproofingtrue: Proofing index terms.
+ (line 12)
* indexproofterm: Proofing index terms.
(line 12)
* indexproofunbox: Proofing index terms.
@@ -6300,11 +6375,11 @@ Macro index
* li: Lists. (line 30)
* li (hyperlinks): List hyperlinks. (line 6)
* linenumberedlisting <1>: Highlighting TeX comments in listings (lscommnt.tex).
- (line 6)
+ (line 8)
* linenumberedlisting: Verbatim listing. (line 17)
* listcompact: Lists. (line 41)
* listing <1>: Highlighting TeX comments in listings (lscommnt.tex).
- (line 6)
+ (line 8)
* listing: Verbatim listing. (line 7)
* listingfont: Verbatim listing. (line 10)
* listleftindent: Formatting lists. (line 18)
@@ -6349,7 +6424,7 @@ Macro index
* nobibtex: Invoking Eplain. (line 73)
* nocite: Citations. (line 53)
* nolastlinelisting <1>: Highlighting TeX comments in listings (lscommnt.tex).
- (line 6)
+ (line 8)
* nolastlinelisting: Verbatim listing. (line 25)
* nolinks (hyperlink driver): Hyperlink driver nolinks.
(line 6)
@@ -6425,7 +6500,7 @@ Macro index
* readtocfile: Reading the .toc file.
(line 6)
* ref <1>: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* ref: Using generic references.
(line 17)
* ref (hyperlinks): Cross-reference hyperlinks.
@@ -6456,7 +6531,7 @@ Macro index
(line 65)
* rightmargin: Margins. (line 18)
* rotatebox: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* rt: Arrows and morphisms.
(line 14)
* sanitize: Converting to characters.
@@ -6479,7 +6554,7 @@ Macro index
(line 14)
* setproperty: Properties. (line 13)
* setuplistinghook <1>: Highlighting TeX comments in listings (lscommnt.tex).
- (line 6)
+ (line 8)
* setuplistinghook: Verbatim listing. (line 13)
* sidx: Indexing commands. (line 8)
* sidxmarked: Indexing commands. (line 29)
@@ -6525,7 +6600,7 @@ Macro index
* unorderedlistdepth: Formatting lists. (line 41)
* unorderedmarker: Formatting lists. (line 37)
* url: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* url (hyperlink type) <1>: Link types for pdftex and dvipdfm.
(line 25)
* url (hyperlink type): Link types for hypertex.
@@ -6720,7 +6795,7 @@ Concept index
* color: Packages known to work.
(line 25)
* color, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* color, hyperlink border: Link options for pdftex and dvipdfm.
(line 14)
* color, hyperlinks <1>: Setting default types and options.
@@ -6731,7 +6806,7 @@ Concept index
* color, problems with pdfTeX: Packages known to work.
(line 29)
* color.sty <1>: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* color.sty <2>: Setting default types and options.
(line 27)
* color.sty <3>: Hyperlink driver nolinks.
@@ -6751,7 +6826,7 @@ Concept index
* commas in cross-referencing index entries: Customizing indexing.
(line 64)
* comments, highlighting in listings: Highlighting TeX comments in listings (lscommnt.tex).
- (line 6)
+ (line 8)
* commutative diagrams: Commutative diagrams.
(line 6)
* contents: Contents. (line 6)
@@ -6770,7 +6845,7 @@ Concept index
* cross-references, defining general: Defining generic references.
(line 6)
* cross-references, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* cross-references, hyperlinks: Cross-reference hyperlinks.
(line 6)
* cross-referencing index entries <1>: Customizing indexing.
@@ -6814,12 +6889,12 @@ Concept index
* destgroup options: Setting hyperlink types and options.
(line 12)
* destgroup options, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* destgroup type <1>: Setting group types. (line 6)
* destgroup type: Setting hyperlink types and options.
(line 12)
* destgroup type, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* destination group: Implicit hyperlinks. (line 10)
* destination options: Introduction to hyperlinks.
(line 105)
@@ -6856,12 +6931,12 @@ Concept index
* destinations, group options: Setting hyperlink types and options.
(line 12)
* destinations, group options, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* destinations, group type <1>: Setting group types. (line 6)
* destinations, group type: Setting hyperlink types and options.
(line 12)
* destinations, group type, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* destinations, in another file <1>: Link types for pdftex and dvipdfm.
(line 40)
* destinations, in another file: Link types for hypertex.
@@ -6899,6 +6974,7 @@ Concept index
(line 6)
* disabling hyperlinks: Hyperlink driver nolinks.
(line 6)
+* disabling indexes: Indexing. (line 48)
* displayed math and hyperlinks <1>: Setting group options.
(line 34)
* displayed math and hyperlinks: Options supported by all drivers.
@@ -6980,7 +7056,7 @@ Concept index
* expansion, one-level: \expandonce. (line 6)
* explicit hyperlinks: Explicit hyperlinks. (line 6)
* explicit hyperlinks, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* file, hyperlink to <1>: Link types for pdftex and dvipdfm.
(line 40)
* file, hyperlink to: Link types for hypertex.
@@ -6991,7 +7067,7 @@ Concept index
* filenames, breaking: Paths. (line 6)
* files, verbatim listing of: Verbatim listing. (line 6)
* files, verbatim listing of, demo: Highlighting TeX comments in listings (lscommnt.tex).
- (line 6)
+ (line 8)
* filtering index entries with hyperlinks: Exact destinations for index terms.
(line 33)
* footnotes, hyperlinks: Footnote hyperlinks. (line 6)
@@ -7016,7 +7092,7 @@ Concept index
* graphics collection, LaTeX: Loading LaTeX packages.
(line 14)
* graphics collection, LaTeX, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* graphics, omitting typesetting of: Packages known to work.
(line 69)
* graphics, problems with pdfTeX: Packages known to work.
@@ -7024,7 +7100,7 @@ Concept index
* graphics.sty: Packages known to work.
(line 22)
* graphicx.sty <1>: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* graphicx.sty: Packages known to work.
(line 23)
* grid: Construction of commutative diagrams.
@@ -7059,12 +7135,12 @@ Concept index
* group options, hyperlink: Setting hyperlink types and options.
(line 12)
* group options, hyperlink, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* group type, hyperlink <1>: Setting group types. (line 6)
* group type, hyperlink: Setting hyperlink types and options.
(line 12)
* group type, hyperlink, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* group, destination: Implicit hyperlinks. (line 10)
* group, disabling hyperlinks: Turning hyperlinks on/off for a group.
(line 6)
@@ -7080,7 +7156,7 @@ Concept index
* highlighting: Packages known to work.
(line 110)
* highlighting, in listings: Highlighting TeX comments in listings (lscommnt.tex).
- (line 6)
+ (line 8)
* Ho"ppner, Klaus: Packages known to work.
(line 82)
* hooks: Hooks. (line 6)
@@ -7138,7 +7214,7 @@ Concept index
* hyperlinks, default type: Setting hyperlink types and options.
(line 6)
* hyperlinks, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* hyperlinks, disabling <1>: Turning hyperlinks on/off.
(line 6)
* hyperlinks, disabling: Hyperlink driver nolinks.
@@ -7147,7 +7223,7 @@ Concept index
(line 6)
* hyperlinks, explicit: Explicit hyperlinks. (line 6)
* hyperlinks, explicit, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* hyperlinks, filtering index entries: Exact destinations for index terms.
(line 33)
* hyperlinks, footnotes: Footnote hyperlinks. (line 6)
@@ -7158,7 +7234,7 @@ Concept index
* hyperlinks, group options: Setting hyperlink types and options.
(line 12)
* hyperlinks, group options, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* hyperlinks, group type <1>: Setting group types. (line 6)
* hyperlinks, group type: Setting hyperlink types and options.
(line 12)
@@ -7166,7 +7242,7 @@ Concept index
(line 69)
* hyperlinks, implicit: Implicit hyperlinks. (line 6)
* hyperlinks, implicit, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* hyperlinks, index: Index hyperlinks. (line 6)
* hyperlinks, index destination placement: Choosing destination placement.
(line 6)
@@ -7218,7 +7294,7 @@ Concept index
* ignoring arguments: Macro arguments. (line 6)
* implicit hyperlinks: Implicit hyperlinks. (line 6)
* implicit hyperlinks, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* inaccessible macros: Category codes. (line 19)
* index entries and ranges: Modifying index entries.
(line 22)
@@ -7268,6 +7344,7 @@ Concept index
(line 6)
* index, underlining page numbers: Page list and page range parsers.
(line 26)
+* indexes, disabling: Indexing. (line 48)
* indexes, multiple: Indexing. (line 37)
* indexing: Indexing. (line 6)
* indexing and trailing spaces: Indexing terms. (line 20)
@@ -7310,7 +7387,7 @@ Concept index
* LaTeX graphics collection: Loading LaTeX packages.
(line 14)
* LaTeX graphics collection, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* LaTeX packages <1>: Packages known not to work.
(line 6)
* LaTeX packages <2>: Packages known to work.
@@ -7351,7 +7428,7 @@ Concept index
* link, group options: Setting hyperlink types and options.
(line 12)
* link, group options, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* link, group type <1>: Setting group types. (line 6)
* link, group type: Setting hyperlink types and options.
(line 12)
@@ -7376,7 +7453,7 @@ Concept index
* linkgroup options: Setting hyperlink types and options.
(line 12)
* linkgroup options, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* linkgroup type <1>: Setting group types. (line 6)
* linkgroup type: Setting hyperlink types and options.
(line 12)
@@ -7387,7 +7464,7 @@ Concept index
(line 6)
* listing files: Verbatim listing. (line 6)
* listing files, demo: Highlighting TeX comments in listings (lscommnt.tex).
- (line 6)
+ (line 8)
* lists: Lists. (line 6)
* lists, formatting: Formatting lists. (line 6)
* lists, hyperlinks: List hyperlinks. (line 6)
@@ -7395,7 +7472,7 @@ Concept index
* lookahead without spaces: \futurenonspacelet. (line 6)
* loops: Iteration. (line 6)
* lscommnt.tex: Highlighting TeX comments in listings (lscommnt.tex).
- (line 6)
+ (line 8)
* magnification, hyperlink destination: Destination options for pdftex and dvipdfm.
(line 21)
* makeindex <1>: Index hyperlinks. (line 12)
@@ -7567,13 +7644,13 @@ Concept index
* rotation: Packages known to work.
(line 25)
* rotation, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* rule thickness: Rules. (line 7)
* run: links: General hyperlinks. (line 37)
* scaling: Packages known to work.
(line 25)
* scaling, demo: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* sed: Customizing indexing.
(line 66)
* see also index entries and hyperlinks: Hyperlinks in see and see also entries.
@@ -7694,7 +7771,7 @@ Concept index
* URL hyperlink <3>: URL hyperlinks. (line 6)
* URL hyperlink: General hyperlinks. (line 20)
* url.sty <1>: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* url.sty <2>: URL hyperlinks. (line 6)
* url.sty: Packages known to work.
(line 118)
@@ -7703,7 +7780,7 @@ Concept index
(line 15)
* verbatim listing: Verbatim listing. (line 6)
* verbatim listing, demo: Highlighting TeX comments in listings (lscommnt.tex).
- (line 6)
+ (line 8)
* verbatim text, in index: Index entries with special characters.
(line 40)
* verbatim text, in table of contents: Writing the .toc file.
@@ -7727,7 +7804,7 @@ Concept index
(line 11)
* xeplain.tex: Introduction. (line 6)
* xhyper.tex: Hyperlinks (xhyper.tex).
- (line 6)
+ (line 8)
* Zassenhaus, Hans: Construction of commutative diagrams.
(line 122)
* zooming, hyperlink destination: Destination options for pdftex and dvipdfm.
@@ -7736,128 +7813,128 @@ Concept index

Tag Table:
-Node: Top824
-Node: Introduction8097
-Node: Installation11064
-Node: Invoking Eplain13116
-Node: User definitions17568
-Node: Diagnostics19395
-Node: Rules20965
-Node: Citations21798
-Node: Formatting citations27641
-Node: Formatting bibliographies29187
-Node: Displays32016
-Node: Formatting displays33063
-Node: Time of day33735
-Node: Lists34496
-Node: Formatting lists36655
-Node: Verbatim listing38951
-Node: Contents41680
-Node: Writing the .toc file42351
-Node: Reading the .toc file45219
-Node: Changing the .toc file's root name46629
-Node: Alternative contents files47649
-Node: Cross-references48214
-Node: Defining generic references49699
-Node: Using generic references50577
-Node: Page references51868
-Node: Equation references52692
-Node: Formatting equation references55445
-Node: Subequation references57745
-Node: Indexing59668
-Node: Indexing terms61671
-Node: Indexing commands62784
-Node: Modifying index entries65812
-Node: Index entries with special characters68529
-Node: Proofing index terms72788
-Node: Typesetting an index74601
-Node: Customizing indexing77068
-Node: Justification80775
-Node: Tables82454
-Node: Margins85009
-Node: Multiple columns87170
-Node: Footnotes89154
-Node: Fractions91741
-Node: Paths92528
-Node: Logos94135
-Node: Boxes94822
-Node: Checking for PDF output96620
-Node: Loading LaTeX packages97711
-Node: The \usepackage command99059
-Node: Environment for loading packages100149
-Node: Packages known to work102216
-Node: Packages known not to work108621
-Node: Hyperlinks109383
-Node: Introduction to hyperlinks109966
-Node: Explicit hyperlinks115522
-Node: Implicit hyperlinks117812
-Node: General hyperlinks119634
-Node: URL hyperlinks121102
-Node: Citation hyperlinks123131
-Node: List hyperlinks123863
-Node: Cross-reference hyperlinks124257
-Node: Page reference hyperlinks125637
-Node: Equation reference hyperlinks126301
-Node: Index hyperlinks127699
-Node: Exact destinations for index terms129463
-Node: Page destinations for index terms131639
-Node: Choosing destination placement134267
-Node: Index page list and page range parsers135059
-Node: Hyperlinks in see and see also entries135612
-Node: Footnote hyperlinks136411
-Node: Contents hyperlinks137609
-Node: Hyperlink drivers137992
-Node: Options supported by all drivers138627
-Node: Hyperlink driver hypertex141431
-Node: Destination types for hypertex144383
-Node: Destination options for hypertex145422
-Node: Link types for hypertex145904
-Node: Link options for hypertex147925
-Node: Hyperlink drivers pdftex and dvipdfm148949
-Node: Destination types for pdftex and dvipdfm149595
-Node: Destination options for pdftex and dvipdfm153094
-Node: Link types for pdftex and dvipdfm155549
-Node: Link options for pdftex and dvipdfm159088
-Node: Hyperlink driver nolinks162727
-Node: Setting hyperlink types and options165139
-Node: Setting default types and options166141
-Node: Setting group types167570
-Node: Setting group options168763
-Node: Turning hyperlinks on/off171253
-Node: Turning low-level commands on/off171891
-Node: Turning hyperlinks on/off for a group172404
-Node: Arrow theoretic diagrams173561
-Node: Slanted lines and vectors173928
-Node: Commutative diagrams176010
-Node: Arrows and morphisms176609
-Node: Construction of commutative diagrams181087
-Node: Commutative diagram parameters188279
-Node: Programming definitions190098
-Node: Category codes191099
-Node: Allocation macros193709
-Node: Iteration195857
-Node: Macro arguments197516
-Node: Converting to characters200015
-Node: Expansion201407
-Node: \csn and \ece201970
-Node: \edefappend202536
-Node: Hooks203085
-Node: Properties205271
-Node: \expandonce206356
-Node: \ifundefined206805
-Node: \ifempty207369
-Node: \ifinteger and \isinteger208112
-Node: \futurenonspacelet209150
-Node: Obeying spaces209749
-Node: Writing out numbers210780
-Node: Mode-specific penalties211103
-Node: Auxiliary files211835
-Node: User-defined environments212758
-Node: Page list and page range parsers213973
-Node: Demo files216110
-Node: Hyperlinks (xhyper.tex)216678
-Node: Highlighting TeX comments in listings (lscommnt.tex)224997
-Node: Macro index227421
-Node: Concept index289457
+Node: Top808
+Node: Introduction8090
+Node: Installation11057
+Node: Invoking Eplain13109
+Node: User definitions17561
+Node: Diagnostics19388
+Node: Rules20958
+Node: Citations21791
+Node: Formatting citations27634
+Node: Formatting bibliographies29180
+Node: Displays32009
+Node: Formatting displays33056
+Node: Time of day33728
+Node: Lists34489
+Node: Formatting lists36648
+Node: Verbatim listing38944
+Node: Contents41673
+Node: Writing the .toc file42344
+Node: Reading the .toc file45212
+Node: Changing the .toc file's root name46622
+Node: Alternative contents files47642
+Node: Cross-references48207
+Node: Defining generic references49692
+Node: Using generic references50570
+Node: Page references51861
+Node: Equation references52685
+Node: Formatting equation references55438
+Node: Subequation references59805
+Node: Indexing61728
+Node: Indexing terms64498
+Node: Indexing commands65611
+Node: Modifying index entries68639
+Node: Index entries with special characters71616
+Node: Proofing index terms75875
+Node: Typesetting an index77688
+Node: Customizing indexing80155
+Node: Justification83862
+Node: Tables85541
+Node: Margins88096
+Node: Multiple columns90257
+Node: Footnotes92241
+Node: Fractions94828
+Node: Paths95615
+Node: Logos97222
+Node: Boxes97909
+Node: Checking for PDF output99707
+Node: Loading LaTeX packages100798
+Node: The \usepackage command102146
+Node: Environment for loading packages103236
+Node: Packages known to work105303
+Node: Packages known not to work111708
+Node: Hyperlinks112470
+Node: Introduction to hyperlinks113053
+Node: Explicit hyperlinks118609
+Node: Implicit hyperlinks120899
+Node: General hyperlinks122721
+Node: URL hyperlinks124189
+Node: Citation hyperlinks126218
+Node: List hyperlinks126950
+Node: Cross-reference hyperlinks127344
+Node: Page reference hyperlinks128724
+Node: Equation reference hyperlinks129388
+Node: Index hyperlinks130786
+Node: Exact destinations for index terms132550
+Node: Page destinations for index terms134726
+Node: Choosing destination placement137354
+Node: Index page list and page range parsers138146
+Node: Hyperlinks in see and see also entries138699
+Node: Footnote hyperlinks139498
+Node: Contents hyperlinks140696
+Node: Hyperlink drivers141079
+Node: Options supported by all drivers141714
+Node: Hyperlink driver hypertex144518
+Node: Destination types for hypertex147470
+Node: Destination options for hypertex148509
+Node: Link types for hypertex148991
+Node: Link options for hypertex151012
+Node: Hyperlink drivers pdftex and dvipdfm152036
+Node: Destination types for pdftex and dvipdfm152682
+Node: Destination options for pdftex and dvipdfm156181
+Node: Link types for pdftex and dvipdfm158636
+Node: Link options for pdftex and dvipdfm162175
+Node: Hyperlink driver nolinks165814
+Node: Setting hyperlink types and options168226
+Node: Setting default types and options169228
+Node: Setting group types170657
+Node: Setting group options171850
+Node: Turning hyperlinks on/off174340
+Node: Turning low-level commands on/off174978
+Node: Turning hyperlinks on/off for a group175491
+Node: Arrow theoretic diagrams176648
+Node: Slanted lines and vectors177015
+Node: Commutative diagrams179097
+Node: Arrows and morphisms179696
+Node: Construction of commutative diagrams184174
+Node: Commutative diagram parameters191366
+Node: Programming definitions193185
+Node: Category codes194186
+Node: Allocation macros196796
+Node: Iteration198944
+Node: Macro arguments200603
+Node: Converting to characters203102
+Node: Expansion204494
+Node: \csn and \ece205057
+Node: \edefappend205623
+Node: Hooks206172
+Node: Properties208358
+Node: \expandonce209443
+Node: \ifundefined209892
+Node: \ifempty210456
+Node: \ifinteger and \isinteger211199
+Node: \futurenonspacelet212237
+Node: Obeying spaces212836
+Node: Writing out numbers213867
+Node: Mode-specific penalties214190
+Node: Auxiliary files214922
+Node: User-defined environments215845
+Node: Page list and page range parsers217060
+Node: Demo files219197
+Node: Hyperlinks (xhyper.tex)219765
+Node: Highlighting TeX comments in listings (lscommnt.tex)228114
+Node: Macro index230570
+Node: Concept index293087

End Tag Table