[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * tp/ext/epub3.pm: split at chapter, no mini_toc
From: |
Patrice Dumas |
Subject: |
branch master updated: * tp/ext/epub3.pm: split at chapter, no mini_toc (epub_convert_tree_unit_type): add an output file only once. |
Date: |
Thu, 04 Aug 2022 07:11:29 -0400 |
This is an automated email from the git hooks/post-receive script.
pertusus pushed a commit to branch master
in repository texinfo.
The following commit(s) were added to refs/heads/master by this push:
new 65487fecf1 * tp/ext/epub3.pm: split at chapter, no mini_toc
(epub_convert_tree_unit_type): add an output file only once.
65487fecf1 is described below
commit 65487fecf1310b6216ec39d49523a61a9083eed3
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Thu Aug 4 13:11:18 2022 +0200
* tp/ext/epub3.pm: split at chapter, no mini_toc
(epub_convert_tree_unit_type): add an output file only once.
---
ChangeLog | 5 +
tp/ext/epub3.pm | 37 +-
.../EPUB/os\303\251_utf8.opf" | 2 +-
.../EPUB/xhtml/Chapteur.xhtml" | 17 +-
.../EPUB/xhtml/nav_toc.xhtml" | 4 +-
.../EPUB/xhtml/os\303\251_utf8.xhtml" | 25 +-
.../EPUB/xhtml/os\303\251_utf8_abt.xhtml" | 127 +
.../formatting_epub_package/EPUB/formatting.opf | 12 +-
.../EPUB/xhtml/chapter.xhtml | 351 +-
.../EPUB/xhtml/chapter2.xhtml | 388 +-
.../EPUB/xhtml/formatting.xhtml | 4961 +-------------------
.../EPUB/xhtml/formatting_abt.xhtml | 17 +-
.../EPUB/xhtml/formatting_fot.xhtml | 17 +-
.../EPUB/xhtml/formatting_ovr.xhtml | 13 +-
.../EPUB/xhtml/formatting_toc.xhtml | 21 +-
.../EPUB/xhtml/nav_toc.xhtml | 14 +-
.../EPUB/xhtml/chapter.xhtml | 17 -
.../EPUB/xhtml/chapter2.xhtml | 5 +-
.../EPUB/xhtml/formatting.xhtml | 6 +-
.../EPUB/xhtml/formatting_abt.xhtml | 9 +-
.../EPUB/xhtml/formatting_fot.xhtml | 9 +-
.../EPUB/xhtml/formatting_ovr.xhtml | 5 +-
.../EPUB/xhtml/formatting_toc.xhtml | 5 +-
.../EPUB/xhtml/s_002d_002dect_002cion.xhtml | 22 +-
.../EPUB/xhtml/subsection.xhtml | 15 +-
...ion-_0060_0060simple_002ddouble_002d_002d.xhtml | 9 +-
...2d_002dfour_002d_002d_002d_002d_0027_0027.xhtml | 9 +-
27 files changed, 709 insertions(+), 5413 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 5fc92df0f3..f8e51bb942 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2022-08-04 Patrice Dumas <pertusus@free.fr>
+
+ * tp/ext/epub3.pm: split at chapter, no mini_toc
+ (epub_convert_tree_unit_type): add an output file only once.
+
2022-08-04 Patrice Dumas <pertusus@free.fr>
Always add a language information in EPUB
diff --git a/tp/ext/epub3.pm b/tp/ext/epub3.pm
index c5fcba68bf..8961f52c1c 100644
--- a/tp/ext/epub3.pm
+++ b/tp/ext/epub3.pm
@@ -23,14 +23,16 @@
# the conversion to XHTML.
#
# TODO:
-# split or not split?
-# set up a cover with @titlepage?
-# is the mini_toc relevant?
-# what about node directions?
-# use the navigation information as a page instead of texi2any generated TOC?
-# separate TOC after titlepage?
-# indices?
-# cross manual references?
+# Currently the titlepage is used if available, while the Top node
+# is not shown. There is a possibility to use an image as cover in
+# EPUB, with cover-image property in a manifest item. Add the possibility
+# to specify such cover image? In that case, set SHOW_TITLE to 0?
+# Do not output Texinfo TOC in the default case as the readers can always use
+# the navigation information?
+# Use the navigation information as a page? Tests show that it is not very
good.
+# something special for indices?
+# cross manual references? The HTML XREF specification does not make sense
+# for EPUB.
# list of tables/list of floats
# add landmarks? Examples: epub:type="toc", epub:type="loi" (list of
illustrations)
# epub:type="bodymatter" (Start of Content)
@@ -93,6 +95,18 @@ texinfo_set_from_init_file('OUTPUT_FILE_NAME_ENCODING',
'utf-8');
# if not specified.
texinfo_set_from_init_file('NO_TOP_NODE_OUTPUT', 1);
+# no mini_toc nor menus in the default case, to be more like a book.
+texinfo_set_from_init_file('FORMAT_MENU', 'nomenu');
+
+# a footer gets in the way of navigation. It is not set in the default
+# case, but with texi2html style.
+texinfo_set_from_init_file('PROGRAM_NAME_IN_FOOTER', 0);
+
+# split at chapter such that ebook readers start a new page for
+# a new chapter. Splitting at nodes output is not so good as node content
+# can be very small.
+texinfo_set_from_init_file('SPLIT', 'chapter');
+
# the copiable anchor paragraph sign is always present and no link is
# shown in the calibre epub reader. Since it looks strange, unset.
texinfo_set_from_init_file('COPIABLE_LINKS', 0);
@@ -104,6 +118,7 @@ texinfo_set_from_init_file('EXTENSION', 'xhtml');
texinfo_set_from_init_file('JS_WEBLABELS_FILE', 'js_licenses.xhtml');
texinfo_set_from_init_file('TOP_FILE', undef);
+
# no redirections files
texinfo_set_from_init_file('NODE_FILES', 0);
@@ -284,7 +299,9 @@ sub epub_convert_tree_unit_type($$$$)
my $element = shift;
my $content = shift;
- push @epub_output_filenames, $element->{'structure'}->{'unit_filename'};
+ push @epub_output_filenames, $element->{'structure'}->{'unit_filename'}
+ unless grep {$_ eq $element->{'structure'}->{'unit_filename'}}
+ @epub_output_filenames;
return &{$self->default_type_conversion($type)}($self,
$type, $element, $content);
}
@@ -661,7 +678,7 @@ EOT
}
}
}
- # at least one language specifier is mandated by the standard
+ # the standard mandates at least one language specifier
if (scalar(@languages) == 0) {
@languages = ('en');
}
diff --git
"a/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/os\303\251_utf8.opf"
"b/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/os\303\251_utf8.opf"
index 6609828ba8..bb8bee1720 100644
---
"a/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/os\303\251_utf8.opf"
+++
"b/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/os\303\251_utf8.opf"
@@ -8,7 +8,7 @@
<manifest>
<item id="nav" properties="nav" media-type="application/xhtml+xml"
href="xhtml/nav_toc.xhtml"/>
<item id="unit1" media-type="application/xhtml+xml"
href="xhtml/osé_utf8.xhtml"/>
- <item id="unit2" media-type="application/xhtml+xml"
href="xhtml/osé_utf8.xhtml"/>
+ <item id="unit2" media-type="application/xhtml+xml"
href="xhtml/Chapteur.xhtml"/>
<item id="image1" media-type="image/png" href="images/1-an_image.png"/>
</manifest>
<spine>
diff --git
"a/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/xhtml/os\303\251_utf8.xhtml"
"b/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/xhtml/Chapteur.xhtml"
similarity index 61%
copy from
"tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/xhtml/os\303\251_utf8.xhtml"
copy to
"tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/xhtml/Chapteur.xhtml"
index 8b2881d37a..972f3d76dc 100644
---
"a/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/xhtml/os\303\251_utf8.xhtml"
+++
"b/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/xhtml/Chapteur.xhtml"
@@ -4,27 +4,22 @@
<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<title>Tôp</title>
+<title>1 Chapteùr (Tôp)</title>
-<meta name="description" content="Tôp"/>
-<meta name="keywords" content="Tôp"/>
+<meta name="description" content="1 Chapteùr (Tôp)"/>
+<meta name="keywords" content="1 Chapteùr (Tôp)"/>
<meta name="resource-type" content="document"/>
<meta name="distribution" content="global"/>
<meta name="Generator" content="texi2any"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
-<style type="text/css">
-<!--
-span.program-in-footer {font-size: smaller}
--->
-</style>
</head>
<body lang="en">
+<div class="chapter-level-extent" id="Chapt_00eaur">
-<a class="node" id="Top"></a><a class="top" id="Top-1"></a><div
class="chapter-level-extent" id="Chapt_00eaur">
<h1 class="chapter" id="Chapteur">1 Chapteùr</h1>
@@ -40,9 +35,7 @@ span.program-in-footer {font-size: smaller}
<pre class="verbatim">In included téxt.
</pre>
</div>
-<p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+
</body>
diff --git
"a/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/xhtml/nav_toc.xhtml"
"b/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/xhtml/nav_toc.xhtml"
index ef634137e1..c1da73b5a2 100644
---
"a/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/xhtml/nav_toc.xhtml"
+++
"b/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/xhtml/nav_toc.xhtml"
@@ -9,8 +9,8 @@
<h1>Table of contents</h1>
<ol>
- <li><a href="osé_utf8.xhtml#Top">Tôp</a></li>
- <li><a href="osé_utf8.xhtml#Chapt_00eaur">1 Chapteùr</a></li>
+ <li><a href="osé_utf8.xhtml">Tôp</a></li>
+ <li><a href="Chapteur.xhtml">1 Chapteùr</a></li>
</ol>
</nav>
</body>
diff --git
"a/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/xhtml/os\303\251_utf8.xhtml"
"b/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/xhtml/os\303\251_utf8.xhtml"
index 8b2881d37a..76fa3fa6e0 100644
---
"a/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/xhtml/os\303\251_utf8.xhtml"
+++
"b/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/xhtml/os\303\251_utf8.xhtml"
@@ -13,36 +13,13 @@
<meta name="Generator" content="texi2any"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
-<style type="text/css">
-<!--
-span.program-in-footer {font-size: smaller}
--->
-</style>
</head>
<body lang="en">
-<a class="node" id="Top"></a><a class="top" id="Top-1"></a><div
class="chapter-level-extent" id="Chapt_00eaur">
-<h1 class="chapter" id="Chapteur">1 Chapteùr</h1>
-
-
-<p>value vùr {No value for ‘vùr’}.
-</p>
-<p>In included téxt.
-</p>
-<img class="image" src="../images/1-an_image.png" alt="öld"/>
-
-<img class="image" src="../images/2-image.ext" alt="âlt"/>
-
-
-<pre class="verbatim">In included téxt.
-</pre>
-</div>
-<p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+<a class="node" id="Top"></a><a class="top" id="Top-1"></a>
</body>
diff --git
"a/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/xhtml/os\303\251_utf8_abt.xhtml"
"b/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/xhtml/os\303\251_utf8_abt.xhtml"
new file mode 100644
index 0000000000..506da7121f
--- /dev/null
+++
"b/tp/tests/formatting/res_parser/non_ascii_test_epub/os\303\251_utf8_epub_package/EPUB/xhtml/os\303\251_utf8_abt.xhtml"
@@ -0,0 +1,127 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml">
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<title>About This Document (Tôp)</title>
+
+<meta name="description" content="About This Document (Tôp)"/>
+<meta name="keywords" content="About This Document (Tôp)"/>
+<meta name="resource-type" content="document"/>
+<meta name="distribution" content="global"/>
+<meta name="Generator" content="texi2any"/>
+<meta name="viewport" content="width=device-width,initial-scale=1"/>
+
+
+
+</head>
+
+<body lang="en">
+<div class="element-about" id="SEC_About">
+<h1 class="about-heading">About This Document</h1>
+
+<p>
+ This document was generated on <em class="emph">a sunny day</em> using <a
class="uref" href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.
+</p>
+<p>
+ The buttons in the navigation panels have the following meaning:
+</p>
+<table border="1">
+ <tr>
+ <th> Button </th>
+ <th> Name </th>
+ <th> Go to </th>
+ <th> From 1.2.3 go to</th>
+ </tr>
+ <tr>
+ <td align="center"> [ << ] </td>
+ <td align="center">FastBack</td>
+ <td>Beginning of this chapter or previous chapter</td>
+ <td>1</td>
+ </tr>
+ <tr>
+ <td align="center"> [ < ] </td>
+ <td align="center">Back</td>
+ <td>Previous section in reading order</td>
+ <td>1.2.2</td>
+ </tr>
+ <tr>
+ <td align="center"> [ Up ] </td>
+ <td align="center">Up</td>
+ <td>Up section</td>
+ <td>1.2</td>
+ </tr>
+ <tr>
+ <td align="center"> [ > ] </td>
+ <td align="center">Forward</td>
+ <td>Next section in reading order</td>
+ <td>1.2.4</td>
+ </tr>
+ <tr>
+ <td align="center"> [ >> ] </td>
+ <td align="center">FastForward</td>
+ <td>Next chapter</td>
+ <td>2</td>
+ </tr>
+ <tr>
+ <td align="center"> [Top] </td>
+ <td align="center">Top</td>
+ <td>Cover (top) of document</td>
+ <td>   </td>
+ </tr>
+ <tr>
+ <td align="center"> [Contents] </td>
+ <td align="center">Contents</td>
+ <td>Table of contents</td>
+ <td>   </td>
+ </tr>
+ <tr>
+ <td align="center"> [Index] </td>
+ <td align="center">Index</td>
+ <td>Index</td>
+ <td>   </td>
+ </tr>
+ <tr>
+ <td align="center"> [ ? ] </td>
+ <td align="center">About</td>
+ <td>About (help)</td>
+ <td>   </td>
+ </tr>
+</table>
+
+<p>
+ where the <strong class="strong"> Example </strong> assumes that the current
position is at <strong class="strong"> Subsubsection One-Two-Three </strong> of
a document of the following structure:
+</p>
+
+<ul>
+ <li> 1. Section One
+ <ul>
+ <li>1.1 Subsection One-One
+ <ul>
+ <li>...</li>
+ </ul>
+ </li>
+ <li>1.2 Subsection One-Two
+ <ul>
+ <li>1.2.1 Subsubsection One-Two-One</li>
+ <li>1.2.2 Subsubsection One-Two-Two</li>
+ <li>1.2.3 Subsubsection One-Two-Three    
+ <strong><== Current Position </strong></li>
+ <li>1.2.4 Subsubsection One-Two-Four</li>
+ </ul>
+ </li>
+ <li>1.3 Subsection One-Three
+ <ul>
+ <li>...</li>
+ </ul>
+ </li>
+ <li>1.4 Subsection One-Four</li>
+ </ul>
+ </li>
+</ul>
+</div>
+
+
+</body>
+</html>
diff --git
a/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/formatting.opf
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/formatting.opf
index 3abe7cae40..351fb4db64 100644
---
a/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/formatting.opf
+++
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/formatting.opf
@@ -11,12 +11,8 @@
<manifest>
<item id="nav" properties="nav" media-type="application/xhtml+xml"
href="xhtml/nav_toc.xhtml"/>
<item id="unit1" media-type="application/xhtml+xml"
href="xhtml/formatting.xhtml"/>
- <item id="unit2" media-type="application/xhtml+xml"
href="xhtml/formatting.xhtml"/>
- <item id="unit3" media-type="application/xhtml+xml"
href="xhtml/formatting.xhtml"/>
- <item id="unit4" media-type="application/xhtml+xml"
href="xhtml/formatting.xhtml"/>
- <item id="unit5" media-type="application/xhtml+xml"
href="xhtml/formatting.xhtml"/>
- <item id="unit6" media-type="application/xhtml+xml"
href="xhtml/formatting.xhtml"/>
- <item id="unit7" media-type="application/xhtml+xml"
href="xhtml/formatting.xhtml"/>
+ <item id="unit2" media-type="application/xhtml+xml"
href="xhtml/chapter.xhtml"/>
+ <item id="unit3" media-type="application/xhtml+xml"
href="xhtml/chapter2.xhtml"/>
<item id="image1" media-type="e--xt/image"
href="images/10-f--ile.e--xt"/>
<item id="image2" media-type="image/png" href="images/14-f--ile.png"/>
<item id="image3" media-type="image/png" href="images/15-f--ile.png"/>
@@ -57,9 +53,5 @@
<itemref idref="unit1"/>
<itemref idref="unit2"/>
<itemref idref="unit3"/>
- <itemref idref="unit4"/>
- <itemref idref="unit5"/>
- <itemref idref="unit6"/>
- <itemref idref="unit7"/>
</spine>
</package>
diff --git
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter.xhtml
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/chapter.xhtml
similarity index 94%
copy from
tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter.xhtml
copy to
tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/chapter.xhtml
index 87a1ad89d0..229e395ff2 100644
---
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/chapter.xhtml
@@ -857,10 +857,6 @@ p.flushleft-paragraph {text-align:left}
p.flushright-paragraph {text-align:right}
pre.display-preformatted {font-family: inherit}
pre.format-preformatted {font-family: inherit}
-pre.menu-comment-preformatted {font-family: serif}
-pre.menu-entry-description-preformatted {font-family: serif; display: inline}
-pre.menu-preformatted {font-family: serif}
-span.program-in-footer {font-size: smaller}
span.r {font-family: initial; font-weight: normal; font-style: normal}
span.sansserif {font-family: sans-serif; font-weight: normal}
ul.mark-bullet {list-style-type: disc}
@@ -869,13 +865,12 @@ ul.mark-none {list-style-type: none}
-->
</style>
-<link rel="stylesheet" type="text/css" href="../js/info.css"/>
-<script src="../js/modernizr.js" type="text/javascript"></script>
-<script src="../js/info.js" type="text/javascript"></script>
+
</head>
<body lang="en">
<div class="chapter-level-extent" id="chapter">
+
<h1 class="chapter" id="chapter-1">1 chapter</h1>
<p>First para
@@ -1648,70 +1643,70 @@ $ wget
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEA
</p></dd></dl>
-<p><code class="code">@xref{c---hapter@@, cross r---ef name@@, t---itle@@,
file n---ame@@, ma---nual@@}</code> See <a href="../file
n---ame@_html/c_002d_002d_002dhapter_0040.xhtml#c_002d_002d_002dhapter_0040">t—itle@</a>
in <cite class="cite">ma—nual@</cite>.
-<code class="code">@ref{chapter, cross ref name, title, file name,
manual}</code> <a href="../file name_html/chapter.xhtml#chapter">title</a> in
<cite class="cite">manual</cite>
-<code class="code">@pxref{chapter, cross ref name, title, file name,
manual}</code> see <a href="../file name_html/chapter.xhtml#chapter">title</a>
in <cite class="cite">manual</cite>
-<code class="code">@inforef{chapter, cross ref name, file name}</code> See <a
href="../file name_html/chapter.xhtml#chapter">(file name)cross ref name</a>
+<p><code class="code">@xref{c---hapter@@, cross r---ef name@@, t---itle@@,
file n---ame@@, ma---nual@@}</code> See <a href="../file
n---ame@_epub3/c_002d_002d_002dhapter_0040.xhtml#c_002d_002d_002dhapter_0040">t—itle@</a>
in <cite class="cite">ma—nual@</cite>.
+<code class="code">@ref{chapter, cross ref name, title, file name,
manual}</code> <a href="../file name_epub3/chapter.xhtml#chapter">title</a> in
<cite class="cite">manual</cite>
+<code class="code">@pxref{chapter, cross ref name, title, file name,
manual}</code> see <a href="../file name_epub3/chapter.xhtml#chapter">title</a>
in <cite class="cite">manual</cite>
+<code class="code">@inforef{chapter, cross ref name, file name}</code> See <a
href="../file name_epub3/chapter.xhtml#chapter">(file name)cross ref name</a>
</p>
<p><code class="code">@ref{chapter}</code> <a class="ref"
href="#chapter">chapter</a>
<code class="code">@xref{chapter}</code> See <a class="xref"
href="#chapter">chapter</a>.
<code class="code">@pxref{chapter}</code> see <a class="pxref"
href="#chapter">chapter</a>
-<code class="code">@ref{s--ect@comma{}ion}</code> <a class="ref"
href="s_002d_002dect_002cion.xhtml">A section</a>
+<code class="code">@ref{s--ect@comma{}ion}</code> <a class="ref"
href="#s_002d_002dect_002cion">A section</a>
</p>
<p><code class="code">@ref{s--ect@comma{}ion, a @comma{} in cross
ref, a comma@comma{} in title, a comma@comma{} in file, a @comma{} in manual
name }</code>
-<a href="../a comma, in
file_html/s_002d_002dect_002cion.xhtml#s_002d_002dect_002cion">a comma, in
title</a> in <cite class="cite">a , in manual name</cite>
+<a href="../a comma, in
file_epub3/s_002d_002dect_002cion.xhtml#s_002d_002dect_002cion">a comma, in
title</a> in <cite class="cite">a , in manual name</cite>
</p>
<p><code class="code">@ref{chapter,cross ref name}</code> <a class="ref"
href="#chapter">cross ref name</a>
<code class="code">@ref{chapter,,title}</code> <a class="ref"
href="#chapter">title</a>
-<code class="code">@ref{chapter,,,file name}</code> <a href="../file
name_html/chapter.xhtml#chapter">(file name)chapter</a>
+<code class="code">@ref{chapter,,,file name}</code> <a href="../file
name_epub3/chapter.xhtml#chapter">(file name)chapter</a>
<code class="code">@ref{chapter,,,,manual}</code> ‘chapter’ in
<cite class="cite">manual</cite>
<code class="code">@ref{chapter,cross ref name,title,}</code> <a class="ref"
href="#chapter">title</a>
-<code class="code">@ref{chapter,cross ref name,,file name}</code> <a
href="../file name_html/chapter.xhtml#chapter">(file name)cross ref name</a>
+<code class="code">@ref{chapter,cross ref name,,file name}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">(file name)cross ref name</a>
<code class="code">@ref{chapter,cross ref name,,,manual}</code> ‘cross
ref name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title,file name}</code> <a
href="../file name_html/chapter.xhtml#chapter">(file name)title</a>
+<code class="code">@ref{chapter,cross ref name,title,file name}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">(file name)title</a>
<code class="code">@ref{chapter,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title, file name,
manual}</code> <a href="../file name_html/chapter.xhtml#chapter">title</a> in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,title,file name}</code> <a href="../file
name_html/chapter.xhtml#chapter">(file name)title</a>
+<code class="code">@ref{chapter,cross ref name,title, file name,
manual}</code> <a href="../file name_epub3/chapter.xhtml#chapter">title</a> in
<cite class="cite">manual</cite>
+<code class="code">@ref{chapter,,title,file name}</code> <a href="../file
name_epub3/chapter.xhtml#chapter">(file name)title</a>
<code class="code">@ref{chapter,,title,,manual}</code> ‘title’ in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="../file name_html/chapter.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{chapter,,,file name,manual}</code> <a href="../file
name_html/chapter.xhtml#chapter">chapter</a> in <cite class="cite">manual</cite>
+<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{chapter,,,file name,manual}</code> <a href="../file
name_epub3/chapter.xhtml#chapter">chapter</a> in <cite
class="cite">manual</cite>
</p>
-<p><code class="code">@ref{(pman)anode,cross ref name}</code> <a
href="../pman_html/anode.xhtml#anode">(pman)cross ref name</a>
-<code class="code">@ref{(pman)anode,,title}</code> <a
href="../pman_html/anode.xhtml#anode">(pman)title</a>
-<code class="code">@ref{(pman)anode,,,file name}</code> <a href="../file
name_html/anode.xhtml#anode">(file name)anode</a>
-<code class="code">@ref{(pman)anode,,,,manual}</code> <a
href="../pman_html/anode.xhtml#anode">anode</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title,}</code> <a
href="../pman_html/anode.xhtml#anode">(pman)title</a>
-<code class="code">@ref{(pman)anode,cross ref name,,file name}</code> <a
href="../file name_html/anode.xhtml#anode">(file name)cross ref name</a>
-<code class="code">@ref{(pman)anode,cross ref name,,,manual}</code> <a
href="../pman_html/anode.xhtml#anode">cross ref name</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title,file name}</code> <a
href="../file name_html/anode.xhtml#anode">(file name)title</a>
-<code class="code">@ref{(pman)anode,cross ref name,title,,manual}</code> <a
href="../pman_html/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title, file name,
manual}</code> <a href="../file name_html/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,title,file name}</code> <a href="../file
name_html/anode.xhtml#anode">(file name)title</a>
-<code class="code">@ref{(pman)anode,,title,,manual}</code> <a
href="../pman_html/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,title, file name, manual}</code> <a
href="../file name_html/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,,file name,manual}</code> <a
href="../file name_html/anode.xhtml#anode">anode</a> in <cite
class="cite">manual</cite>
+<p><code class="code">@ref{(pman)anode,cross ref name}</code> <a
href="../pman_epub3/anode.xhtml#anode">(pman)cross ref name</a>
+<code class="code">@ref{(pman)anode,,title}</code> <a
href="../pman_epub3/anode.xhtml#anode">(pman)title</a>
+<code class="code">@ref{(pman)anode,,,file name}</code> <a href="../file
name_epub3/anode.xhtml#anode">(file name)anode</a>
+<code class="code">@ref{(pman)anode,,,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">anode</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,cross ref name,title,}</code> <a
href="../pman_epub3/anode.xhtml#anode">(pman)title</a>
+<code class="code">@ref{(pman)anode,cross ref name,,file name}</code> <a
href="../file name_epub3/anode.xhtml#anode">(file name)cross ref name</a>
+<code class="code">@ref{(pman)anode,cross ref name,,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">cross ref name</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,cross ref name,title,file name}</code> <a
href="../file name_epub3/anode.xhtml#anode">(file name)title</a>
+<code class="code">@ref{(pman)anode,cross ref name,title,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,cross ref name,title, file name,
manual}</code> <a href="../file name_epub3/anode.xhtml#anode">title</a> in
<cite class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,,title,file name}</code> <a href="../file
name_epub3/anode.xhtml#anode">(file name)title</a>
+<code class="code">@ref{(pman)anode,,title,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,,title, file name, manual}</code> <a
href="../file name_epub3/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,,,file name,manual}</code> <a
href="../file name_epub3/anode.xhtml#anode">anode</a> in <cite
class="cite">manual</cite>
</p>
-<p><code class="code">@inforef{chapter, cross ref name, file name}</code> See
<a href="../file name_html/chapter.xhtml#chapter">(file name)cross ref name</a>
+<p><code class="code">@inforef{chapter, cross ref name, file name}</code> See
<a href="../file name_epub3/chapter.xhtml#chapter">(file name)cross ref name</a>
<code class="code">@inforef{chapter}</code> See ‘chapter’
<code class="code">@inforef{chapter, cross ref name}</code> See ‘cross
ref name’
-<code class="code">@inforef{chapter,,file name}</code> See <a href="../file
name_html/chapter.xhtml#chapter">(file name)chapter</a>
-<code class="code">@inforef{node, cross ref name, file name}</code> See <a
href="../file name_html/node.xhtml#node">(file name)cross ref name</a>
+<code class="code">@inforef{chapter,,file name}</code> See <a href="../file
name_epub3/chapter.xhtml#chapter">(file name)chapter</a>
+<code class="code">@inforef{node, cross ref name, file name}</code> See <a
href="../file name_epub3/node.xhtml#node">(file name)cross ref name</a>
<code class="code">@inforef{node}</code> See ‘node’
<code class="code">@inforef{node, cross ref name}</code> See ‘cross ref
name’
-<code class="code">@inforef{node,,file name}</code> See <a href="../file
name_html/node.xhtml#node">(file name)node</a>
-<code class="code">@inforef{chapter, cross ref name, file name, spurious
arg}</code> See <a href="../file name, spurious
arg_html/chapter.xhtml#chapter">(file name, spurious arg)cross ref name</a>
+<code class="code">@inforef{node,,file name}</code> See <a href="../file
name_epub3/node.xhtml#node">(file name)node</a>
+<code class="code">@inforef{chapter, cross ref name, file name, spurious
arg}</code> See <a href="../file name, spurious
arg_epub3/chapter.xhtml#chapter">(file name, spurious arg)cross ref name</a>
</p>
<p><code class="code">@inforef{s--ect@comma{}ion, a @comma{} in cross
ref, a comma@comma{} in file}</code>
-See <a href="../a comma, in
file_html/s_002d_002dect_002cion.xhtml#s_002d_002dect_002cion">(a comma, in
file)a , in cross
+See <a href="../a comma, in
file_epub3/s_002d_002dect_002cion.xhtml#s_002d_002dect_002cion">(a comma, in
file)a , in cross
ref</a>
</p>
<p>‘<samp class="samp"><a class="ref"
href="#chapter">chapter</a></samp>’.
</p>
-<p><a href="../index3.html (uref3)_html/ext.xhtml#ext">title with uref2 <a
class="uref" href="href://http/myhost.com/index2.html">uref2</a></a> in <cite
class="cite">printed manual with uref4 <a class="uref"
href="href://http/myhost.com/index4.html">uref4</a></cite>
+<p><a href="../index3.html (uref3)_epub3/ext.xhtml#ext">title with uref2 <a
class="uref" href="href://http/myhost.com/index2.html">uref2</a></a> in <cite
class="cite">printed manual with uref4 <a class="uref"
href="href://http/myhost.com/index4.html">uref4</a></cite>
<a class="ref" href="#chapter">title with uref2 <a class="uref"
href="href://http/myhost.com/index2.html">uref2</a></a>
</p>
<dl class="table">
@@ -1929,37 +1924,37 @@ html ''
</p>
<p><code class="code">@ref{,cross ref name}</code> ‘cross ref name’
<code class="code">@ref{,,title}</code> ‘title’
-<code class="code">@ref{,,,file name}</code> <a href="../file
name_html/index.html">(file name)</a>
+<code class="code">@ref{,,,file name}</code> <a href="../file
name_epub3/index.html">(file name)</a>
<code class="code">@ref{,,,,manual}</code> <cite class="cite">manual</cite>
<code class="code">@ref{node,cross ref name}</code> ‘cross ref
name’
<code class="code">@ref{node,,title}</code> ‘title’
-<code class="code">@ref{node,,,file name}</code> <a href="../file
name_html/node.xhtml#node">(file name)node</a>
+<code class="code">@ref{node,,,file name}</code> <a href="../file
name_epub3/node.xhtml#node">(file name)node</a>
<code class="code">@ref{node,,,,manual}</code> ‘node’ in <cite
class="cite">manual</cite>
<code class="code">@ref{node,cross ref name,title,}</code> ‘title’
-<code class="code">@ref{node,cross ref name,,file name}</code> <a
href="../file name_html/node.xhtml#node">(file name)cross ref name</a>
+<code class="code">@ref{node,cross ref name,,file name}</code> <a
href="../file name_epub3/node.xhtml#node">(file name)cross ref name</a>
<code class="code">@ref{node,cross ref name,,,manual}</code> ‘cross ref
name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title,file name}</code> <a
href="../file name_html/node.xhtml#node">(file name)title</a>
+<code class="code">@ref{node,cross ref name,title,file name}</code> <a
href="../file name_epub3/node.xhtml#node">(file name)title</a>
<code class="code">@ref{node,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title, file name, manual}</code>
<a href="../file name_html/node.xhtml#node">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{node,,title,file name}</code> <a href="../file
name_html/node.xhtml#node">(file name)title</a>
+<code class="code">@ref{node,cross ref name,title, file name, manual}</code>
<a href="../file name_epub3/node.xhtml#node">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{node,,title,file name}</code> <a href="../file
name_epub3/node.xhtml#node">(file name)title</a>
<code class="code">@ref{node,,title,,manual}</code> ‘title’ in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="../file name_html/chapter.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{node,,title, file name, manual}</code> <a
href="../file name_html/node.xhtml#node">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{node,,,file name,manual}</code> <a href="../file
name_html/node.xhtml#node">node</a> in <cite class="cite">manual</cite>
+<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{node,,title, file name, manual}</code> <a
href="../file name_epub3/node.xhtml#node">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{node,,,file name,manual}</code> <a href="../file
name_epub3/node.xhtml#node">node</a> in <cite class="cite">manual</cite>
<code class="code">@ref{,cross ref name,title,}</code> ‘title’
-<code class="code">@ref{,cross ref name,,file name}</code> <a href="../file
name_html/index.html">(file name)cross ref name</a>
+<code class="code">@ref{,cross ref name,,file name}</code> <a href="../file
name_epub3/index.html">(file name)cross ref name</a>
<code class="code">@ref{,cross ref name,,,manual}</code> ‘cross ref
name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title,file name}</code> <a
href="../file name_html/index.html">(file name)title</a>
+<code class="code">@ref{,cross ref name,title,file name}</code> <a
href="../file name_epub3/index.html">(file name)title</a>
<code class="code">@ref{,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title, file name, manual}</code> <a
href="../file name_html/index.html">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{,,title,file name}</code> <a href="../file
name_html/index.html">(file name)title</a>
+<code class="code">@ref{,cross ref name,title, file name, manual}</code> <a
href="../file name_epub3/index.html">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{,,title,file name}</code> <a href="../file
name_epub3/index.html">(file name)title</a>
<code class="code">@ref{,,title,,manual}</code> ‘title’ in <cite
class="cite">manual</cite>
-<code class="code">@ref{,,title, file name, manual}</code> <a href="../file
name_html/index.html">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{,,,file name,manual}</code> <cite class="cite"><a
href="../file name_html/index.html">manual</a></cite>
+<code class="code">@ref{,,title, file name, manual}</code> <a href="../file
name_epub3/index.html">title</a> in <cite class="cite">manual</cite>
+<code class="code">@ref{,,,file name,manual}</code> <cite class="cite"><a
href="../file name_epub3/index.html">manual</a></cite>
</p>
<p><code class="code">@inforef{,cross ref name }</code> See ‘cross ref
name’
-<code class="code">@inforef{,,file name}</code> See <a href="../file
name_html/index.html">(file name)</a>
-<code class="code">@inforef{,cross ref name, file name}</code> See <a
href="../file name_html/index.html">(file name)cross ref name</a>
+<code class="code">@inforef{,,file name}</code> See <a href="../file
name_epub3/index.html">(file name)</a>
+<code class="code">@inforef{,cross ref name, file name}</code> See <a
href="../file name_epub3/index.html">(file name)cross ref name</a>
<code class="code">@inforef{}</code>
</p>
@@ -2724,70 +2719,70 @@ $ wget
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEA
</p></dd></dl>
-<p><code class="code">@xref{c---hapter@@, cross r---ef name@@, t---itle@@,
file n---ame@@, ma---nual@@}</code> See <a href="../file
n---ame@_html/c_002d_002d_002dhapter_0040.xhtml#c_002d_002d_002dhapter_0040">t—itle@</a>
in <cite class="cite">ma—nual@</cite>.
-<code class="code">@ref{chapter, cross ref name, title, file name,
manual}</code> <a href="../file name_html/chapter.xhtml#chapter">title</a> in
<cite class="cite">manual</cite>
-<code class="code">@pxref{chapter, cross ref name, title, file name,
manual}</code> see <a href="../file name_html/chapter.xhtml#chapter">title</a>
in <cite class="cite">manual</cite>
-<code class="code">@inforef{chapter, cross ref name, file name}</code> See <a
href="../file name_html/chapter.xhtml#chapter">(file name)cross ref name</a>
+<p><code class="code">@xref{c---hapter@@, cross r---ef name@@, t---itle@@,
file n---ame@@, ma---nual@@}</code> See <a href="../file
n---ame@_epub3/c_002d_002d_002dhapter_0040.xhtml#c_002d_002d_002dhapter_0040">t—itle@</a>
in <cite class="cite">ma—nual@</cite>.
+<code class="code">@ref{chapter, cross ref name, title, file name,
manual}</code> <a href="../file name_epub3/chapter.xhtml#chapter">title</a> in
<cite class="cite">manual</cite>
+<code class="code">@pxref{chapter, cross ref name, title, file name,
manual}</code> see <a href="../file name_epub3/chapter.xhtml#chapter">title</a>
in <cite class="cite">manual</cite>
+<code class="code">@inforef{chapter, cross ref name, file name}</code> See <a
href="../file name_epub3/chapter.xhtml#chapter">(file name)cross ref name</a>
</p>
<p><code class="code">@ref{chapter}</code> <a class="ref"
href="#chapter">chapter</a>
<code class="code">@xref{chapter}</code> See <a class="xref"
href="#chapter">chapter</a>.
<code class="code">@pxref{chapter}</code> see <a class="pxref"
href="#chapter">chapter</a>
-<code class="code">@ref{s--ect@comma{}ion}</code> <a class="ref"
href="s_002d_002dect_002cion.xhtml">A section</a>
+<code class="code">@ref{s--ect@comma{}ion}</code> <a class="ref"
href="#s_002d_002dect_002cion">A section</a>
</p>
<p><code class="code">@ref{s--ect@comma{}ion, a @comma{} in cross
ref, a comma@comma{} in title, a comma@comma{} in file, a @comma{} in manual
name }</code>
-<a href="../a comma, in
file_html/s_002d_002dect_002cion.xhtml#s_002d_002dect_002cion">a comma, in
title</a> in <cite class="cite">a , in manual name</cite>
+<a href="../a comma, in
file_epub3/s_002d_002dect_002cion.xhtml#s_002d_002dect_002cion">a comma, in
title</a> in <cite class="cite">a , in manual name</cite>
</p>
<p><code class="code">@ref{chapter,cross ref name}</code> <a class="ref"
href="#chapter">cross ref name</a>
<code class="code">@ref{chapter,,title}</code> <a class="ref"
href="#chapter">title</a>
-<code class="code">@ref{chapter,,,file name}</code> <a href="../file
name_html/chapter.xhtml#chapter">(file name)chapter</a>
+<code class="code">@ref{chapter,,,file name}</code> <a href="../file
name_epub3/chapter.xhtml#chapter">(file name)chapter</a>
<code class="code">@ref{chapter,,,,manual}</code> ‘chapter’ in
<cite class="cite">manual</cite>
<code class="code">@ref{chapter,cross ref name,title,}</code> <a class="ref"
href="#chapter">title</a>
-<code class="code">@ref{chapter,cross ref name,,file name}</code> <a
href="../file name_html/chapter.xhtml#chapter">(file name)cross ref name</a>
+<code class="code">@ref{chapter,cross ref name,,file name}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">(file name)cross ref name</a>
<code class="code">@ref{chapter,cross ref name,,,manual}</code> ‘cross
ref name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title,file name}</code> <a
href="../file name_html/chapter.xhtml#chapter">(file name)title</a>
+<code class="code">@ref{chapter,cross ref name,title,file name}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">(file name)title</a>
<code class="code">@ref{chapter,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title, file name,
manual}</code> <a href="../file name_html/chapter.xhtml#chapter">title</a> in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,title,file name}</code> <a href="../file
name_html/chapter.xhtml#chapter">(file name)title</a>
+<code class="code">@ref{chapter,cross ref name,title, file name,
manual}</code> <a href="../file name_epub3/chapter.xhtml#chapter">title</a> in
<cite class="cite">manual</cite>
+<code class="code">@ref{chapter,,title,file name}</code> <a href="../file
name_epub3/chapter.xhtml#chapter">(file name)title</a>
<code class="code">@ref{chapter,,title,,manual}</code> ‘title’ in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="../file name_html/chapter.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{chapter,,,file name,manual}</code> <a href="../file
name_html/chapter.xhtml#chapter">chapter</a> in <cite class="cite">manual</cite>
+<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{chapter,,,file name,manual}</code> <a href="../file
name_epub3/chapter.xhtml#chapter">chapter</a> in <cite
class="cite">manual</cite>
</p>
-<p><code class="code">@ref{(pman)anode,cross ref name}</code> <a
href="../pman_html/anode.xhtml#anode">(pman)cross ref name</a>
-<code class="code">@ref{(pman)anode,,title}</code> <a
href="../pman_html/anode.xhtml#anode">(pman)title</a>
-<code class="code">@ref{(pman)anode,,,file name}</code> <a href="../file
name_html/anode.xhtml#anode">(file name)anode</a>
-<code class="code">@ref{(pman)anode,,,,manual}</code> <a
href="../pman_html/anode.xhtml#anode">anode</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title,}</code> <a
href="../pman_html/anode.xhtml#anode">(pman)title</a>
-<code class="code">@ref{(pman)anode,cross ref name,,file name}</code> <a
href="../file name_html/anode.xhtml#anode">(file name)cross ref name</a>
-<code class="code">@ref{(pman)anode,cross ref name,,,manual}</code> <a
href="../pman_html/anode.xhtml#anode">cross ref name</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title,file name}</code> <a
href="../file name_html/anode.xhtml#anode">(file name)title</a>
-<code class="code">@ref{(pman)anode,cross ref name,title,,manual}</code> <a
href="../pman_html/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title, file name,
manual}</code> <a href="../file name_html/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,title,file name}</code> <a href="../file
name_html/anode.xhtml#anode">(file name)title</a>
-<code class="code">@ref{(pman)anode,,title,,manual}</code> <a
href="../pman_html/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,title, file name, manual}</code> <a
href="../file name_html/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,,file name,manual}</code> <a
href="../file name_html/anode.xhtml#anode">anode</a> in <cite
class="cite">manual</cite>
+<p><code class="code">@ref{(pman)anode,cross ref name}</code> <a
href="../pman_epub3/anode.xhtml#anode">(pman)cross ref name</a>
+<code class="code">@ref{(pman)anode,,title}</code> <a
href="../pman_epub3/anode.xhtml#anode">(pman)title</a>
+<code class="code">@ref{(pman)anode,,,file name}</code> <a href="../file
name_epub3/anode.xhtml#anode">(file name)anode</a>
+<code class="code">@ref{(pman)anode,,,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">anode</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,cross ref name,title,}</code> <a
href="../pman_epub3/anode.xhtml#anode">(pman)title</a>
+<code class="code">@ref{(pman)anode,cross ref name,,file name}</code> <a
href="../file name_epub3/anode.xhtml#anode">(file name)cross ref name</a>
+<code class="code">@ref{(pman)anode,cross ref name,,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">cross ref name</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,cross ref name,title,file name}</code> <a
href="../file name_epub3/anode.xhtml#anode">(file name)title</a>
+<code class="code">@ref{(pman)anode,cross ref name,title,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,cross ref name,title, file name,
manual}</code> <a href="../file name_epub3/anode.xhtml#anode">title</a> in
<cite class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,,title,file name}</code> <a href="../file
name_epub3/anode.xhtml#anode">(file name)title</a>
+<code class="code">@ref{(pman)anode,,title,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,,title, file name, manual}</code> <a
href="../file name_epub3/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,,,file name,manual}</code> <a
href="../file name_epub3/anode.xhtml#anode">anode</a> in <cite
class="cite">manual</cite>
</p>
-<p><code class="code">@inforef{chapter, cross ref name, file name}</code> See
<a href="../file name_html/chapter.xhtml#chapter">(file name)cross ref name</a>
+<p><code class="code">@inforef{chapter, cross ref name, file name}</code> See
<a href="../file name_epub3/chapter.xhtml#chapter">(file name)cross ref name</a>
<code class="code">@inforef{chapter}</code> See ‘chapter’
<code class="code">@inforef{chapter, cross ref name}</code> See ‘cross
ref name’
-<code class="code">@inforef{chapter,,file name}</code> See <a href="../file
name_html/chapter.xhtml#chapter">(file name)chapter</a>
-<code class="code">@inforef{node, cross ref name, file name}</code> See <a
href="../file name_html/node.xhtml#node">(file name)cross ref name</a>
+<code class="code">@inforef{chapter,,file name}</code> See <a href="../file
name_epub3/chapter.xhtml#chapter">(file name)chapter</a>
+<code class="code">@inforef{node, cross ref name, file name}</code> See <a
href="../file name_epub3/node.xhtml#node">(file name)cross ref name</a>
<code class="code">@inforef{node}</code> See ‘node’
<code class="code">@inforef{node, cross ref name}</code> See ‘cross ref
name’
-<code class="code">@inforef{node,,file name}</code> See <a href="../file
name_html/node.xhtml#node">(file name)node</a>
-<code class="code">@inforef{chapter, cross ref name, file name, spurious
arg}</code> See <a href="../file name, spurious
arg_html/chapter.xhtml#chapter">(file name, spurious arg)cross ref name</a>
+<code class="code">@inforef{node,,file name}</code> See <a href="../file
name_epub3/node.xhtml#node">(file name)node</a>
+<code class="code">@inforef{chapter, cross ref name, file name, spurious
arg}</code> See <a href="../file name, spurious
arg_epub3/chapter.xhtml#chapter">(file name, spurious arg)cross ref name</a>
</p>
<p><code class="code">@inforef{s--ect@comma{}ion, a @comma{} in cross
ref, a comma@comma{} in file}</code>
-See <a href="../a comma, in
file_html/s_002d_002dect_002cion.xhtml#s_002d_002dect_002cion">(a comma, in
file)a , in cross
+See <a href="../a comma, in
file_epub3/s_002d_002dect_002cion.xhtml#s_002d_002dect_002cion">(a comma, in
file)a , in cross
ref</a>
</p>
<p>‘<samp class="samp"><a class="ref"
href="#chapter">chapter</a></samp>’.
</p>
-<p><a href="../index3.html (uref3)_html/ext.xhtml#ext">title with uref2 <a
class="uref" href="href://http/myhost.com/index2.html">uref2</a></a> in <cite
class="cite">printed manual with uref4 <a class="uref"
href="href://http/myhost.com/index4.html">uref4</a></cite>
+<p><a href="../index3.html (uref3)_epub3/ext.xhtml#ext">title with uref2 <a
class="uref" href="href://http/myhost.com/index2.html">uref2</a></a> in <cite
class="cite">printed manual with uref4 <a class="uref"
href="href://http/myhost.com/index4.html">uref4</a></cite>
<a class="ref" href="#chapter">title with uref2 <a class="uref"
href="href://http/myhost.com/index2.html">uref2</a></a>
</p>
<dl class="table">
@@ -3005,37 +3000,37 @@ html ''
</p>
<p><code class="code">@ref{,cross ref name}</code> ‘cross ref name’
<code class="code">@ref{,,title}</code> ‘title’
-<code class="code">@ref{,,,file name}</code> <a href="../file
name_html/index.html">(file name)</a>
+<code class="code">@ref{,,,file name}</code> <a href="../file
name_epub3/index.html">(file name)</a>
<code class="code">@ref{,,,,manual}</code> <cite class="cite">manual</cite>
<code class="code">@ref{node,cross ref name}</code> ‘cross ref
name’
<code class="code">@ref{node,,title}</code> ‘title’
-<code class="code">@ref{node,,,file name}</code> <a href="../file
name_html/node.xhtml#node">(file name)node</a>
+<code class="code">@ref{node,,,file name}</code> <a href="../file
name_epub3/node.xhtml#node">(file name)node</a>
<code class="code">@ref{node,,,,manual}</code> ‘node’ in <cite
class="cite">manual</cite>
<code class="code">@ref{node,cross ref name,title,}</code> ‘title’
-<code class="code">@ref{node,cross ref name,,file name}</code> <a
href="../file name_html/node.xhtml#node">(file name)cross ref name</a>
+<code class="code">@ref{node,cross ref name,,file name}</code> <a
href="../file name_epub3/node.xhtml#node">(file name)cross ref name</a>
<code class="code">@ref{node,cross ref name,,,manual}</code> ‘cross ref
name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title,file name}</code> <a
href="../file name_html/node.xhtml#node">(file name)title</a>
+<code class="code">@ref{node,cross ref name,title,file name}</code> <a
href="../file name_epub3/node.xhtml#node">(file name)title</a>
<code class="code">@ref{node,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title, file name, manual}</code>
<a href="../file name_html/node.xhtml#node">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{node,,title,file name}</code> <a href="../file
name_html/node.xhtml#node">(file name)title</a>
+<code class="code">@ref{node,cross ref name,title, file name, manual}</code>
<a href="../file name_epub3/node.xhtml#node">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{node,,title,file name}</code> <a href="../file
name_epub3/node.xhtml#node">(file name)title</a>
<code class="code">@ref{node,,title,,manual}</code> ‘title’ in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="../file name_html/chapter.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{node,,title, file name, manual}</code> <a
href="../file name_html/node.xhtml#node">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{node,,,file name,manual}</code> <a href="../file
name_html/node.xhtml#node">node</a> in <cite class="cite">manual</cite>
+<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{node,,title, file name, manual}</code> <a
href="../file name_epub3/node.xhtml#node">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{node,,,file name,manual}</code> <a href="../file
name_epub3/node.xhtml#node">node</a> in <cite class="cite">manual</cite>
<code class="code">@ref{,cross ref name,title,}</code> ‘title’
-<code class="code">@ref{,cross ref name,,file name}</code> <a href="../file
name_html/index.html">(file name)cross ref name</a>
+<code class="code">@ref{,cross ref name,,file name}</code> <a href="../file
name_epub3/index.html">(file name)cross ref name</a>
<code class="code">@ref{,cross ref name,,,manual}</code> ‘cross ref
name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title,file name}</code> <a
href="../file name_html/index.html">(file name)title</a>
+<code class="code">@ref{,cross ref name,title,file name}</code> <a
href="../file name_epub3/index.html">(file name)title</a>
<code class="code">@ref{,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title, file name, manual}</code> <a
href="../file name_html/index.html">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{,,title,file name}</code> <a href="../file
name_html/index.html">(file name)title</a>
+<code class="code">@ref{,cross ref name,title, file name, manual}</code> <a
href="../file name_epub3/index.html">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{,,title,file name}</code> <a href="../file
name_epub3/index.html">(file name)title</a>
<code class="code">@ref{,,title,,manual}</code> ‘title’ in <cite
class="cite">manual</cite>
-<code class="code">@ref{,,title, file name, manual}</code> <a href="../file
name_html/index.html">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{,,,file name,manual}</code> <cite class="cite"><a
href="../file name_html/index.html">manual</a></cite>
+<code class="code">@ref{,,title, file name, manual}</code> <a href="../file
name_epub3/index.html">title</a> in <cite class="cite">manual</cite>
+<code class="code">@ref{,,,file name,manual}</code> <cite class="cite"><a
href="../file name_epub3/index.html">manual</a></cite>
</p>
<p><code class="code">@inforef{,cross ref name }</code> See ‘cross ref
name’
-<code class="code">@inforef{,,file name}</code> See <a href="../file
name_html/index.html">(file name)</a>
-<code class="code">@inforef{,cross ref name, file name}</code> See <a
href="../file name_html/index.html">(file name)cross ref name</a>
+<code class="code">@inforef{,,file name}</code> See <a href="../file
name_epub3/index.html">(file name)</a>
+<code class="code">@inforef{,cross ref name, file name}</code> See <a
href="../file name_epub3/index.html">(file name)cross ref name</a>
<code class="code">@inforef{}</code>
</p>
@@ -3922,70 +3917,70 @@ $ wget
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEA
<pre class="example-preformatted">
-<code class="code">@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file
n---ame@@, ma---nual@@}</code> See <a href="../file
n---ame@_html/c_002d_002d_002dhapter_0040.xhtml#c_002d_002d_002dhapter_0040">t---itle@</a>
in <cite class="cite">ma---nual@</cite>.
-<code class="code">@ref{chapter, cross ref name, title, file name,
manual}</code> <a href="../file name_html/chapter.xhtml#chapter">title</a> in
<cite class="cite">manual</cite>
-<code class="code">@pxref{chapter, cross ref name, title, file name,
manual}</code> see <a href="../file name_html/chapter.xhtml#chapter">title</a>
in <cite class="cite">manual</cite>
-<code class="code">@inforef{chapter, cross ref name, file name}</code> See <a
href="../file name_html/chapter.xhtml#chapter">(file name)cross ref name</a>
+<code class="code">@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file
n---ame@@, ma---nual@@}</code> See <a href="../file
n---ame@_epub3/c_002d_002d_002dhapter_0040.xhtml#c_002d_002d_002dhapter_0040">t---itle@</a>
in <cite class="cite">ma---nual@</cite>.
+<code class="code">@ref{chapter, cross ref name, title, file name,
manual}</code> <a href="../file name_epub3/chapter.xhtml#chapter">title</a> in
<cite class="cite">manual</cite>
+<code class="code">@pxref{chapter, cross ref name, title, file name,
manual}</code> see <a href="../file name_epub3/chapter.xhtml#chapter">title</a>
in <cite class="cite">manual</cite>
+<code class="code">@inforef{chapter, cross ref name, file name}</code> See <a
href="../file name_epub3/chapter.xhtml#chapter">(file name)cross ref name</a>
<code class="code">@ref{chapter}</code> <a class="ref"
href="#chapter">chapter</a>
<code class="code">@xref{chapter}</code> See <a class="xref"
href="#chapter">chapter</a>.
<code class="code">@pxref{chapter}</code> see <a class="pxref"
href="#chapter">chapter</a>
-<code class="code">@ref{s--ect@comma{}ion}</code> <a class="ref"
href="s_002d_002dect_002cion.xhtml">A section</a>
+<code class="code">@ref{s--ect@comma{}ion}</code> <a class="ref"
href="#s_002d_002dect_002cion">A section</a>
<code class="code">@ref{s--ect@comma{}ion, a @comma{} in cross
ref, a comma@comma{} in title, a comma@comma{} in file, a @comma{} in manual
name }</code>
-<a href="../a comma, in
file_html/s_002d_002dect_002cion.xhtml#s_002d_002dect_002cion">a comma, in
title</a> in <cite class="cite">a , in manual name</cite>
+<a href="../a comma, in
file_epub3/s_002d_002dect_002cion.xhtml#s_002d_002dect_002cion">a comma, in
title</a> in <cite class="cite">a , in manual name</cite>
<code class="code">@ref{chapter,cross ref name}</code> <a class="ref"
href="#chapter">cross ref name</a>
<code class="code">@ref{chapter,,title}</code> <a class="ref"
href="#chapter">title</a>
-<code class="code">@ref{chapter,,,file name}</code> <a href="../file
name_html/chapter.xhtml#chapter">(file name)chapter</a>
+<code class="code">@ref{chapter,,,file name}</code> <a href="../file
name_epub3/chapter.xhtml#chapter">(file name)chapter</a>
<code class="code">@ref{chapter,,,,manual}</code> `chapter' in <cite
class="cite">manual</cite>
<code class="code">@ref{chapter,cross ref name,title,}</code> <a class="ref"
href="#chapter">title</a>
-<code class="code">@ref{chapter,cross ref name,,file name}</code> <a
href="../file name_html/chapter.xhtml#chapter">(file name)cross ref name</a>
+<code class="code">@ref{chapter,cross ref name,,file name}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">(file name)cross ref name</a>
<code class="code">@ref{chapter,cross ref name,,,manual}</code> `cross ref
name' in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title,file name}</code> <a
href="../file name_html/chapter.xhtml#chapter">(file name)title</a>
+<code class="code">@ref{chapter,cross ref name,title,file name}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">(file name)title</a>
<code class="code">@ref{chapter,cross ref name,title,,manual}</code> `title'
in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title, file name,
manual}</code> <a href="../file name_html/chapter.xhtml#chapter">title</a> in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,title,file name}</code> <a href="../file
name_html/chapter.xhtml#chapter">(file name)title</a>
+<code class="code">@ref{chapter,cross ref name,title, file name,
manual}</code> <a href="../file name_epub3/chapter.xhtml#chapter">title</a> in
<cite class="cite">manual</cite>
+<code class="code">@ref{chapter,,title,file name}</code> <a href="../file
name_epub3/chapter.xhtml#chapter">(file name)title</a>
<code class="code">@ref{chapter,,title,,manual}</code> `title' in <cite
class="cite">manual</cite>
-<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="../file name_html/chapter.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{chapter,,,file name,manual}</code> <a href="../file
name_html/chapter.xhtml#chapter">chapter</a> in <cite class="cite">manual</cite>
-
-
-<code class="code">@ref{(pman)anode,cross ref name}</code> <a
href="../pman_html/anode.xhtml#anode">(pman)cross ref name</a>
-<code class="code">@ref{(pman)anode,,title}</code> <a
href="../pman_html/anode.xhtml#anode">(pman)title</a>
-<code class="code">@ref{(pman)anode,,,file name}</code> <a href="../file
name_html/anode.xhtml#anode">(file name)anode</a>
-<code class="code">@ref{(pman)anode,,,,manual}</code> <a
href="../pman_html/anode.xhtml#anode">anode</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title,}</code> <a
href="../pman_html/anode.xhtml#anode">(pman)title</a>
-<code class="code">@ref{(pman)anode,cross ref name,,file name}</code> <a
href="../file name_html/anode.xhtml#anode">(file name)cross ref name</a>
-<code class="code">@ref{(pman)anode,cross ref name,,,manual}</code> <a
href="../pman_html/anode.xhtml#anode">cross ref name</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title,file name}</code> <a
href="../file name_html/anode.xhtml#anode">(file name)title</a>
-<code class="code">@ref{(pman)anode,cross ref name,title,,manual}</code> <a
href="../pman_html/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title, file name,
manual}</code> <a href="../file name_html/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,title,file name}</code> <a href="../file
name_html/anode.xhtml#anode">(file name)title</a>
-<code class="code">@ref{(pman)anode,,title,,manual}</code> <a
href="../pman_html/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,title, file name, manual}</code> <a
href="../file name_html/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,,file name,manual}</code> <a
href="../file name_html/anode.xhtml#anode">anode</a> in <cite
class="cite">manual</cite>
-
-
-<code class="code">@inforef{chapter, cross ref name, file name}</code> See <a
href="../file name_html/chapter.xhtml#chapter">(file name)cross ref name</a>
+<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{chapter,,,file name,manual}</code> <a href="../file
name_epub3/chapter.xhtml#chapter">chapter</a> in <cite
class="cite">manual</cite>
+
+
+<code class="code">@ref{(pman)anode,cross ref name}</code> <a
href="../pman_epub3/anode.xhtml#anode">(pman)cross ref name</a>
+<code class="code">@ref{(pman)anode,,title}</code> <a
href="../pman_epub3/anode.xhtml#anode">(pman)title</a>
+<code class="code">@ref{(pman)anode,,,file name}</code> <a href="../file
name_epub3/anode.xhtml#anode">(file name)anode</a>
+<code class="code">@ref{(pman)anode,,,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">anode</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,cross ref name,title,}</code> <a
href="../pman_epub3/anode.xhtml#anode">(pman)title</a>
+<code class="code">@ref{(pman)anode,cross ref name,,file name}</code> <a
href="../file name_epub3/anode.xhtml#anode">(file name)cross ref name</a>
+<code class="code">@ref{(pman)anode,cross ref name,,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">cross ref name</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,cross ref name,title,file name}</code> <a
href="../file name_epub3/anode.xhtml#anode">(file name)title</a>
+<code class="code">@ref{(pman)anode,cross ref name,title,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,cross ref name,title, file name,
manual}</code> <a href="../file name_epub3/anode.xhtml#anode">title</a> in
<cite class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,,title,file name}</code> <a href="../file
name_epub3/anode.xhtml#anode">(file name)title</a>
+<code class="code">@ref{(pman)anode,,title,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,,title, file name, manual}</code> <a
href="../file name_epub3/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,,,file name,manual}</code> <a
href="../file name_epub3/anode.xhtml#anode">anode</a> in <cite
class="cite">manual</cite>
+
+
+<code class="code">@inforef{chapter, cross ref name, file name}</code> See <a
href="../file name_epub3/chapter.xhtml#chapter">(file name)cross ref name</a>
<code class="code">@inforef{chapter}</code> See `chapter'
<code class="code">@inforef{chapter, cross ref name}</code> See `cross ref
name'
-<code class="code">@inforef{chapter,,file name}</code> See <a href="../file
name_html/chapter.xhtml#chapter">(file name)chapter</a>
-<code class="code">@inforef{node, cross ref name, file name}</code> See <a
href="../file name_html/node.xhtml#node">(file name)cross ref name</a>
+<code class="code">@inforef{chapter,,file name}</code> See <a href="../file
name_epub3/chapter.xhtml#chapter">(file name)chapter</a>
+<code class="code">@inforef{node, cross ref name, file name}</code> See <a
href="../file name_epub3/node.xhtml#node">(file name)cross ref name</a>
<code class="code">@inforef{node}</code> See `node'
<code class="code">@inforef{node, cross ref name}</code> See `cross ref name'
-<code class="code">@inforef{node,,file name}</code> See <a href="../file
name_html/node.xhtml#node">(file name)node</a>
-<code class="code">@inforef{chapter, cross ref name, file name, spurious
arg}</code> See <a href="../file name, spurious
arg_html/chapter.xhtml#chapter">(file name, spurious arg)cross ref name</a>
+<code class="code">@inforef{node,,file name}</code> See <a href="../file
name_epub3/node.xhtml#node">(file name)node</a>
+<code class="code">@inforef{chapter, cross ref name, file name, spurious
arg}</code> See <a href="../file name, spurious
arg_epub3/chapter.xhtml#chapter">(file name, spurious arg)cross ref name</a>
<code class="code">@inforef{s--ect@comma{}ion, a @comma{} in cross
ref, a comma@comma{} in file}</code>
-See <a href="../a comma, in
file_html/s_002d_002dect_002cion.xhtml#s_002d_002dect_002cion">(a comma, in
file)a , in cross
+See <a href="../a comma, in
file_epub3/s_002d_002dect_002cion.xhtml#s_002d_002dect_002cion">(a comma, in
file)a , in cross
ref</a>
‘<samp class="samp"><a class="ref"
href="#chapter">chapter</a></samp>’.
-<a href="../index3.html (uref3)_html/ext.xhtml#ext">title with uref2 <a
class="uref" href="href://http/myhost.com/index2.html">uref2</a></a> in <cite
class="cite">printed manual with uref4 <a class="uref"
href="href://http/myhost.com/index4.html">uref4</a></cite>
+<a href="../index3.html (uref3)_epub3/ext.xhtml#ext">title with uref2 <a
class="uref" href="href://http/myhost.com/index2.html">uref2</a></a> in <cite
class="cite">printed manual with uref4 <a class="uref"
href="href://http/myhost.com/index4.html">uref4</a></cite>
<a class="ref" href="#chapter">title with uref2 <a class="uref"
href="href://http/myhost.com/index2.html">uref2</a></a>
</pre><dl class="table">
@@ -4235,37 +4230,37 @@ Invalid use of @':
<code class="code">@ref{,cross ref name}</code> `cross ref name'
<code class="code">@ref{,,title}</code> `title'
-<code class="code">@ref{,,,file name}</code> <a href="../file
name_html/index.html">(file name)</a>
+<code class="code">@ref{,,,file name}</code> <a href="../file
name_epub3/index.html">(file name)</a>
<code class="code">@ref{,,,,manual}</code> <cite class="cite">manual</cite>
<code class="code">@ref{node,cross ref name}</code> `cross ref name'
<code class="code">@ref{node,,title}</code> `title'
-<code class="code">@ref{node,,,file name}</code> <a href="../file
name_html/node.xhtml#node">(file name)node</a>
+<code class="code">@ref{node,,,file name}</code> <a href="../file
name_epub3/node.xhtml#node">(file name)node</a>
<code class="code">@ref{node,,,,manual}</code> `node' in <cite
class="cite">manual</cite>
<code class="code">@ref{node,cross ref name,title,}</code> `title'
-<code class="code">@ref{node,cross ref name,,file name}</code> <a
href="../file name_html/node.xhtml#node">(file name)cross ref name</a>
+<code class="code">@ref{node,cross ref name,,file name}</code> <a
href="../file name_epub3/node.xhtml#node">(file name)cross ref name</a>
<code class="code">@ref{node,cross ref name,,,manual}</code> `cross ref name'
in <cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title,file name}</code> <a
href="../file name_html/node.xhtml#node">(file name)title</a>
+<code class="code">@ref{node,cross ref name,title,file name}</code> <a
href="../file name_epub3/node.xhtml#node">(file name)title</a>
<code class="code">@ref{node,cross ref name,title,,manual}</code> `title' in
<cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title, file name, manual}</code>
<a href="../file name_html/node.xhtml#node">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{node,,title,file name}</code> <a href="../file
name_html/node.xhtml#node">(file name)title</a>
+<code class="code">@ref{node,cross ref name,title, file name, manual}</code>
<a href="../file name_epub3/node.xhtml#node">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{node,,title,file name}</code> <a href="../file
name_epub3/node.xhtml#node">(file name)title</a>
<code class="code">@ref{node,,title,,manual}</code> `title' in <cite
class="cite">manual</cite>
-<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="../file name_html/chapter.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{node,,title, file name, manual}</code> <a
href="../file name_html/node.xhtml#node">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{node,,,file name,manual}</code> <a href="../file
name_html/node.xhtml#node">node</a> in <cite class="cite">manual</cite>
+<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{node,,title, file name, manual}</code> <a
href="../file name_epub3/node.xhtml#node">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{node,,,file name,manual}</code> <a href="../file
name_epub3/node.xhtml#node">node</a> in <cite class="cite">manual</cite>
<code class="code">@ref{,cross ref name,title,}</code> `title'
-<code class="code">@ref{,cross ref name,,file name}</code> <a href="../file
name_html/index.html">(file name)cross ref name</a>
+<code class="code">@ref{,cross ref name,,file name}</code> <a href="../file
name_epub3/index.html">(file name)cross ref name</a>
<code class="code">@ref{,cross ref name,,,manual}</code> `cross ref name' in
<cite class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title,file name}</code> <a
href="../file name_html/index.html">(file name)title</a>
+<code class="code">@ref{,cross ref name,title,file name}</code> <a
href="../file name_epub3/index.html">(file name)title</a>
<code class="code">@ref{,cross ref name,title,,manual}</code> `title' in <cite
class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title, file name, manual}</code> <a
href="../file name_html/index.html">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{,,title,file name}</code> <a href="../file
name_html/index.html">(file name)title</a>
+<code class="code">@ref{,cross ref name,title, file name, manual}</code> <a
href="../file name_epub3/index.html">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{,,title,file name}</code> <a href="../file
name_epub3/index.html">(file name)title</a>
<code class="code">@ref{,,title,,manual}</code> `title' in <cite
class="cite">manual</cite>
-<code class="code">@ref{,,title, file name, manual}</code> <a href="../file
name_html/index.html">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{,,,file name,manual}</code> <cite class="cite"><a
href="../file name_html/index.html">manual</a></cite>
+<code class="code">@ref{,,title, file name, manual}</code> <a href="../file
name_epub3/index.html">title</a> in <cite class="cite">manual</cite>
+<code class="code">@ref{,,,file name,manual}</code> <cite class="cite"><a
href="../file name_epub3/index.html">manual</a></cite>
<code class="code">@inforef{,cross ref name }</code> See `cross ref name'
-<code class="code">@inforef{,,file name}</code> See <a href="../file
name_html/index.html">(file name)</a>
-<code class="code">@inforef{,cross ref name, file name}</code> See <a
href="../file name_html/index.html">(file name)cross ref name</a>
+<code class="code">@inforef{,,file name}</code> See <a href="../file
name_epub3/index.html">(file name)</a>
+<code class="code">@inforef{,cross ref name, file name}</code> See <a
href="../file name_epub3/index.html">(file name)cross ref name</a>
<code class="code">@inforef{}</code>
@@ -4911,23 +4906,29 @@ Invalid use of @':
<p><a class="footnote" id="DOCF10"
href="formatting_fot.xhtml#FOOT10"><sup>12</sup></a>
</p>
-<div class="format">
-<table class="menu" border="0" cellspacing="0"><tr><td>
-<pre class="menu-preformatted">• <a
href="s_002d_002dect_002cion.xhtml">s--ect,ion</a>:: </pre><pre
class="menu-entry-description-preformatted">s–ect,ion
-</pre><pre class="menu-comment-preformatted">
-Menu comment
-“simple-double–three—four—-”
+<div class="section-level-extent" id="s_002d_002dect_002cion">
+<h2 class="section" id="A-section">1.1 A section</h2>
-</pre></td></tr></table>
+<div class="subsection-level-extent" id="subsection">
+<h3 class="subsection" id="subsection-1">1.1.1 subsection</h3>
+
+
+<a class="anchor" id="anchor"></a>
+<div class="subsubsection-level-extent"
id="subsubsection-_0060_0060simple_002ddouble_002d_002d">
+<h4 class="subsubsection"
id="subsubsection-_0060_0060simple_002ddouble_002d_002d-1">1.1.1.1
subsubsection “simple-double–</h4>
+
</div>
+<div class="subsubsection-level-extent"
id="subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027">
+<h4 class="subsubsection"
id="three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027">1.1.1.2
three—four—-”</h4>
</div>
-<p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+</div>
+</div>
+</div>
+
+
-<a href='js_licenses.xhtml' rel='jslicense'><small>JavaScript license
information</small></a>
</body>
</html>
diff --git
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter2.xhtml
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/chapter2.xhtml
similarity index 88%
copy from
tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter2.xhtml
copy to
tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/chapter2.xhtml
index 9822621d73..62648d4c09 100644
---
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter2.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/chapter2.xhtml
@@ -849,17 +849,15 @@ g-roupe
<!--
a.summary-letter-printindex {text-decoration: none}
h1.centerchap {text-align:center}
-span.program-in-footer {font-size: smaller}
-->
</style>
-<link rel="stylesheet" type="text/css" href="../js/info.css"/>
-<script src="../js/modernizr.js" type="text/javascript"></script>
-<script src="../js/info.js" type="text/javascript"></script>
+
</head>
<body lang="en">
<div class="centerchap-level-extent" id="chapter2">
+
<h1 class="centerchap" id="chapter-2">chapter 2</h1>
<div class="printindex cp-printindex">
@@ -895,162 +893,162 @@ span.program-in-footer {font-size: smaller}
<tr><th id="chapter-2_cp_symbol-1">"</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-_0060_0060">“</a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-_0060_0060">“</a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_0060_0060">“</a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_0060_0060-1">“</a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_0060_0060">“</a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_0060_0060-1">“</a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_cp_symbol-2">-</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-_002d_002doption">–option</a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-_002d_002doption">–option</a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_002d_002doption">–option</a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_002d_002doption-1">–option</a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_002d_002doption">–option</a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_002d_002doption-1">–option</a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_cp_symbol-3">.</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_002e">.</a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_002e">.</a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_cp_symbol-4">?</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_003f">?</a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_003f">?</a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_cp_letter-A">A</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a">a</a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="chapter.xhtml#index-aaa">aaa,
bbb</a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a_002d_002d_002da">a—a</a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a">a</a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a href="chapter.xhtml#index-aaa">aaa,
bbb</a></td><td> </td><td valign="top"><a href="chapter.xhtml#chapter">1
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a_002d_002d_002da">a—a</a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-a_002d_002dasis"><code>a--asis</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-a_002d_002dasis"><code>a--asis</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a_002d_002dasis"><code>a--asis</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a_002d_002dasis-1"><code>a--asis</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a_002d_002dasis"><code>a--asis</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a_002d_002dasis-1"><code>a--asis</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_cp_letter-B">B</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-b-2"><code>b</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-b-2"><code>b</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-b-4"><code>b</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-b-5"><code>b</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-b_002d_002d_002db">b—b,
c—c</a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-b-4"><code>b</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-b-5"><code>b</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-b_002d_002d_002db">b—b,
c—c</a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_cp_letter-C">C</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="formatting_fot.xhtml#index-counting-entry">counting
entry</a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="formatting_fot.xhtml#index-counting-entry">counting
entry</a></td><td> </td><td valign="top"><a href="chapter.xhtml#chapter">1
chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_cp_letter-D">D</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002d_002ddd">d—dd, e—ee,
f—ff</a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002d_002ddd">d—dd, e—ee,
f—ff</a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002defcv_005fname"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002defcv_005fname-1"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002defcv_005fname"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002defcv_005fname-1"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defcv_005fname"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defcv_005fname-1"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defcv_005fname-2"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defcv_005fname-3"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defcv_005fname"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defcv_005fname-1"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defcv_005fname-2"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defcv_005fname-3"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002defivar_005fname-of-c_002d_002dlass"><code>d--efivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002defivar_005fname-of-c_002d_002dlass"><code>d--efivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defivar_005fname-of-c_002d_002dlass"><code>d--efivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defivar_005fname-of-c_002d_002dlass-1"><code>d--efivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defivar_005fname-of-c_002d_002dlass"><code>d--efivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defivar_005fname-of-c_002d_002dlass-1"><code>d--efivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002defopt_005fname"><code>d--efopt_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002defopt_005fname"><code>d--efopt_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defopt_005fname"><code>d--efopt_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defopt_005fname-1"><code>d--efopt_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defopt_005fname"><code>d--efopt_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defopt_005fname-1"><code>d--efopt_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-2"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-3"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-2"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-3"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-2"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-3"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-2"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-3"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><code>d--eftypeivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><code>d--eftypeivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><code>d--eftypeivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass-1"><code>d--eftypeivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><code>d--eftypeivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass-1"><code>d--eftypeivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002deftypevar_005fname"><code>d--eftypevar_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002deftypevar_005fname"><code>d--eftypevar_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypevar_005fname"><code>d--eftypevar_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypevar_005fname-1"><code>d--eftypevar_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypevar_005fname"><code>d--eftypevar_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypevar_005fname-1"><code>d--eftypevar_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002deftypevr_005fname"><code>d--eftypevr_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002deftypevr_005fname"><code>d--eftypevr_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypevr_005fname"><code>d--eftypevr_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypevr_005fname-1"><code>d--eftypevr_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypevr_005fname"><code>d--eftypevr_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypevr_005fname-1"><code>d--eftypevr_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002defvar_005fname"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002defvar_005fname-1"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002defvar_005fname"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002defvar_005fname-1"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defvar_005fname"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defvar_005fname-1"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defvar_005fname-2"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defvar_005fname-3"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defvar_005fname"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defvar_005fname-1"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defvar_005fname-2"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defvar_005fname-3"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002defvr_005fname"><code>d--efvr_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002defvr_005fname"><code>d--efvr_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defvr_005fname"><code>d--efvr_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defvr_005fname-1"><code>d--efvr_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defvr_005fname"><code>d--efvr_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defvr_005fname-1"><code>d--efvr_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_cp_letter-G">G</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-g_002d_002d_002dgg">g—gg, h—hh jjj,
k—kk, l—ll</a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-g_002d_002d_002dgg">g—gg, h—hh jjj,
k—kk, l—ll</a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_cp_letter-I">I</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-index-entry-between-item-and-itemx">index
entry between item and itemx</a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-index-entry-between-item-and-itemx-1">index
entry between item and itemx</a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-index-entry-between-item-and-itemx">index
entry between item and itemx</a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-index-entry-between-item-and-itemx-1">index
entry between item and itemx</a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-between-item-and-itemx">index entry
between item and itemx</a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-between-item-and-itemx-1">index entry
between item and itemx</a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-between-item-and-itemx-2">index entry
between item and itemx</a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-between-item-and-itemx-3">index entry
between item and itemx</a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="formatting_fot.xhtml#index-index-entry-in-footnote">index entry in
footnote</a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-between-item-and-itemx">index entry
between item and itemx</a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-between-item-and-itemx-1">index entry
between item and itemx</a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-between-item-and-itemx-2">index entry
between item and itemx</a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-between-item-and-itemx-3">index entry
between item and itemx</a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="formatting_fot.xhtml#index-index-entry-in-footnote">index entry in
footnote</a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-index-entry-within-deffn">index entry
within deffn</a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-index-entry-within-deffn">index entry
within deffn</a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-within-deffn">index entry within
deffn</a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-within-deffn-1">index entry within
deffn</a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-within-deffn">index entry within
deffn</a></td><td> </td><td valign="top"><a href="chapter.xhtml#chapter">1
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-within-deffn-1">index entry within
deffn</a></td><td> </td><td valign="top"><a href="chapter.xhtml#chapter">1
chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-index-entry-within-itemize">index entry
within itemize</a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-index-entry-within-itemize">index entry
within itemize</a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-within-itemize">index entry within
itemize</a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-within-itemize-1">index entry within
itemize</a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-within-itemize">index entry within
itemize</a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-within-itemize-1">index entry within
itemize</a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-index-entry-within-multitable">index entry
within multitable</a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-index-entry-within-multitable">index
entry within multitable</a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-within-multitable">index entry within
multitable</a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-within-multitable-1">index entry within
multitable</a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-within-multitable">index entry within
multitable</a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-index-entry-within-multitable-1">index entry within
multitable</a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_cp_letter-T">T</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-t_002d_002druc">t–ruc</a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-T_002d_002druc">T–ruc</a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-t_002d_002druc">t–ruc</a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-T_002d_002druc">T–ruc</a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_cp_letter-V">V</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-vtable-i_002d_002dtem-code-kbdinputstyle"><code>vtable
i--tem code kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-vtable-i_002d_002dtem-code-kbdinputstyle"><code>vtable
i--tem code kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-code-kbdinputstyle"><code>vtable
i--tem code kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-code-kbdinputstyle-1"><code>vtable
i--tem code kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-code-kbdinputstyle"><code>vtable
i--tem code kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-code-kbdinputstyle-1"><code>vtable
i--tem code kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-vtable-i_002d_002dtem-default-kbdinputstyle"><code>vtable
i--tem default kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-vtable-i_002d_002dtem-default-kbdinputstyle"><code>vtable
i--tem default kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-default-kbdinputstyle"><code>vtable
i--tem default kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-default-kbdinputstyle-1"><code>vtable
i--tem default kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-default-kbdinputstyle"><code>vtable
i--tem default kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-default-kbdinputstyle-1"><code>vtable
i--tem default kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-vtable-i_002d_002dtem-distinct-kbdinputstyle"><code>vtable
i--tem distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-vtable-i_002d_002dtem-distinct-kbdinputstyle"><code>vtable
i--tem distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-distinct-kbdinputstyle"><code>vtable
i--tem distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-distinct-kbdinputstyle-1"><code>vtable
i--tem distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-distinct-kbdinputstyle"><code>vtable
i--tem distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-distinct-kbdinputstyle-1"><code>vtable
i--tem distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-vtable-i_002d_002dtem-example-kbdinputstyle"><code>vtable
i--tem example kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-vtable-i_002d_002dtem-example-kbdinputstyle"><code>vtable
i--tem example kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-example-kbdinputstyle"><code>vtable
i--tem example kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-example-kbdinputstyle-1"><code>vtable
i--tem example kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-example-kbdinputstyle"><code>vtable
i--tem example kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-example-kbdinputstyle-1"><code>vtable
i--tem example kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-vtable-i_002d_002dtem-in-example-code-kbdinputstyle"><code>vtable
i--tem in example code kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-vtable-i_002d_002dtem-in-example-code-kbdinputstyle"><code>vtable
i--tem in example code kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-in-example-code-kbdinputstyle"><code>vtable
i--tem in example code kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-in-example-code-kbdinputstyle-1"><code>vtable
i--tem in example code kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-in-example-code-kbdinputstyle"><code>vtable
i--tem in example code kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-in-example-code-kbdinputstyle-1"><code>vtable
i--tem in example code kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-vtable-i_002d_002dtem-in-example-default-kbdinputstyle"><code>vtable
i--tem in example default kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-vtable-i_002d_002dtem-in-example-default-kbdinputstyle"><code>vtable
i--tem in example default kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-in-example-default-kbdinputstyle"><code>vtable
i--tem in example default kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-in-example-default-kbdinputstyle-1"><code>vtable
i--tem in example default kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-in-example-default-kbdinputstyle"><code>vtable
i--tem in example default kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-in-example-default-kbdinputstyle-1"><code>vtable
i--tem in example default kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-vtable-i_002d_002dtem-in-example-distinct-kbdinputstyle"><code>vtable
i--tem in example distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-vtable-i_002d_002dtem-in-example-distinct-kbdinputstyle"><code>vtable
i--tem in example distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-in-example-distinct-kbdinputstyle"><code>vtable
i--tem in example distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-in-example-distinct-kbdinputstyle-1"><code>vtable
i--tem in example distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-in-example-distinct-kbdinputstyle"><code>vtable
i--tem in example distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-in-example-distinct-kbdinputstyle-1"><code>vtable
i--tem in example distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-vtable-i_002d_002dtem-in-example-example-kbdinputstyle"><code>vtable
i--tem in example example kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-vtable-i_002d_002dtem-in-example-example-kbdinputstyle"><code>vtable
i--tem in example example kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-in-example-example-kbdinputstyle"><code>vtable
i--tem in example example kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-in-example-example-kbdinputstyle-1"><code>vtable
i--tem in example example kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-in-example-example-kbdinputstyle"><code>vtable
i--tem in example example kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-vtable-i_002d_002dtem-in-example-example-kbdinputstyle-1"><code>vtable
i--tem in example example kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
</table>
<table class="cp-letters-footer-printindex"><tr><th valign="top">Jump to:
  </th><td><a class="summary-letter-printindex"
href="#chapter-2_cp_symbol-1"><b>"</b></a>
@@ -1117,20 +1115,20 @@ span.program-in-footer {font-size: smaller}
<tr><th id="chapter-2_fn_symbol-1">-</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-_002d_002dfoption"><code>--foption</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-_002d_002dfoption"><code>--foption</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_002d_002dfoption"><code>--foption</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_002d_002dfoption-1"><code>--foption</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_002d_002dfoption"><code>--foption</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_002d_002dfoption-1"><code>--foption</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_fn_symbol-2">.</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_002e-1"><code>.</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_002e-1"><code>.</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_fn_symbol-3">?</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_003f-1"><code>?</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_003f-1"><code>?</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_fn_symbol-4">`</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-_0060_0060-1"><code>``</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-_0060_0060-1"><code>``</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_0060_0060-2"><code>``</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_0060_0060-3"><code>``</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_0060_0060-2"><code>``</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-_0060_0060-3"><code>``</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_fn_letter-A">A</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-a"><code>a</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
@@ -1139,171 +1137,171 @@ span.program-in-footer {font-size: smaller}
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-a"><code>a</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-a-1"><code>a</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-a-2"><code>a</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a-1"><code>a</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a-2"><code>a</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a-3"><code>a</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a-4"><code>a</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a-5"><code>a</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a-6"><code>a</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a-7"><code>a</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a-1"><code>a</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a-2"><code>a</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a-3"><code>a</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a-4"><code>a</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a-5"><code>a</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a-6"><code>a</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-a-7"><code>a</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-after"><code>after</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-after"><code>after</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-after"><code>after</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-after-1"><code>after</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-after"><code>after</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-after-1"><code>after</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-arg2"><code>arg2</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-arg2"><code>arg2</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-arg2"><code>arg2</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-arg2-1"><code>arg2</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-arg2"><code>arg2</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-arg2-1"><code>arg2</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_fn_letter-B">B</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-b"><code>b</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-b-1"><code>b</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-b"><code>b</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-b-1"><code>b</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-b"><code>b</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-b-1"><code>b</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-b-2"><code>b</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-b-3"><code>b</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-b"><code>b</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-b-1"><code>b</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-b-2"><code>b</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-b-3"><code>b</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-bidule-machin"><code>bidule
machin</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-bidule-machin"><code>bidule
machin</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-bidule-machin"><code>bidule
machin</code></a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-bidule-machin-1"><code>bidule
machin</code></a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-bidule-machin"><code>bidule
machin</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-bidule-machin-1"><code>bidule
machin</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_fn_letter-D">D</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002deffn_005fname"><code>d--effn_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002deffn_005fname"><code>d--effn_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deffn_005fname"><code>d--effn_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deffn_005fname-1"><code>d--effn_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deffn_005fname"><code>d--effn_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deffn_005fname-1"><code>d--effn_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002defmac_005fname"><code>d--efmac_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002defmac_005fname"><code>d--efmac_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defmac_005fname"><code>d--efmac_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defmac_005fname-1"><code>d--efmac_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defmac_005fname"><code>d--efmac_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defmac_005fname-1"><code>d--efmac_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002defmethod_005fname-on-c_002d_002dlass"><code>d--efmethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002defmethod_005fname-on-c_002d_002dlass"><code>d--efmethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defmethod_005fname-on-c_002d_002dlass"><code>d--efmethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defmethod_005fname-on-c_002d_002dlass-1"><code>d--efmethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defmethod_005fname-on-c_002d_002dlass"><code>d--efmethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defmethod_005fname-on-c_002d_002dlass-1"><code>d--efmethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002defop_005fname-on-c_002d_002dlass"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002defop_005fname-on-c_002d_002dlass-1"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002defop_005fname-on-c_002d_002dlass"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002defop_005fname-on-c_002d_002dlass-1"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defop_005fname-on-c_002d_002dlass"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defop_005fname-on-c_002d_002dlass-1"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defop_005fname-on-c_002d_002dlass-2"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defop_005fname-on-c_002d_002dlass-3"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defop_005fname-on-c_002d_002dlass"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defop_005fname-on-c_002d_002dlass-1"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defop_005fname-on-c_002d_002dlass-2"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defop_005fname-on-c_002d_002dlass-3"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002defspec_005fname"><code>d--efspec_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002defspec_005fname"><code>d--efspec_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defspec_005fname"><code>d--efspec_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defspec_005fname-1"><code>d--efspec_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defspec_005fname"><code>d--efspec_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defspec_005fname-1"><code>d--efspec_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002deftypefn_005fname"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002deftypefn_005fname-1"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002deftypefn_005fname"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002deftypefn_005fname-1"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypefn_005fname"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypefn_005fname-1"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypefn_005fname-2"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypefn_005fname-3"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypefn_005fname"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypefn_005fname-1"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypefn_005fname-2"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypefn_005fname-3"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002deftypefn_005fname2"><code>d--eftypefn_name2</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002deftypefn_005fname2"><code>d--eftypefn_name2</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypefn_005fname2"><code>d--eftypefn_name2</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypefn_005fname2-1"><code>d--eftypefn_name2</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypefn_005fname2"><code>d--eftypefn_name2</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypefn_005fname2-1"><code>d--eftypefn_name2</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002deftypefun_005fname"><code>d--eftypefun_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002deftypefun_005fname"><code>d--eftypefun_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypefun_005fname"><code>d--eftypefun_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypefun_005fname-1"><code>d--eftypefun_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypefun_005fname"><code>d--eftypefun_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypefun_005fname-1"><code>d--eftypefun_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><code>d--eftypemethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><code>d--eftypemethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><code>d--eftypemethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass-1"><code>d--eftypemethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><code>d--eftypemethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass-1"><code>d--eftypemethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-2"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-3"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-2"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-3"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-2"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-3"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-2"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-3"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-d_002d_002defun_005fname"><code>d--efun_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-d_002d_002defun_005fname"><code>d--efun_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defun_005fname"><code>d--efun_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defun_005fname-1"><code>d--efun_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defun_005fname"><code>d--efun_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-d_002d_002defun_005fname-1"><code>d--efun_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-de_002d_002dffn_005fname"><code>de--ffn_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-de_002d_002dffn_005fname"><code>de--ffn_name</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-de_002d_002dffn_005fname"><code>de--ffn_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-de_002d_002dffn_005fname-1"><code>de--ffn_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-de_002d_002dffn_005fname"><code>de--ffn_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-de_002d_002dffn_005fname-1"><code>de--ffn_name</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-deffn"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-deffn-1"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-deffn"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-deffn-1"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-deffn"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-deffn-1"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-deffn-2"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-deffn-3"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-deffn"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-deffn-1"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-deffn-2"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-deffn-3"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-deffnx"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-deffnx-1"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-deffnx"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-deffnx-1"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-deffnx"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-deffnx-1"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-deffnx-2"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-deffnx-3"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-deffnx"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-deffnx-1"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-deffnx-2"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-deffnx-3"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_fn_letter-F">F</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-f_002d_002d_002daa"><code>f---aa</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-f_002d_002d_002dbb"><code>f---bb,
f---cc</code></a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-f_002d_002d_002dddd"><code>f---ddd, f---eee,
ffff</code></a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-f_002d_002d_002dggg"><code>f---ggg, f---hhh fjjj,
f---kkk, f---lll</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-f_002d_002d_002daa"><code>f---aa</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-f_002d_002d_002dbb"><code>f---bb,
f---cc</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-f_002d_002d_002dddd"><code>f---ddd, f---eee,
ffff</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-f_002d_002d_002dggg"><code>f---ggg, f---hhh fjjj,
f---kkk, f---lll</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-followed"><code>followed</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-followed-1"><code>followed</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-followed"><code>followed</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-followed-1"><code>followed</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-followed"><code>followed</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-followed-1"><code>followed</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-followed-2"><code>followed</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-followed-3"><code>followed</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-followed"><code>followed</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-followed-1"><code>followed</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-followed-2"><code>followed</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-followed-3"><code>followed</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_fn_letter-I">I</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-i"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-i-1"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-i"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-i-1"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="chapter.xhtml#index-i"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="chapter.xhtml#index-i-1"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="chapter.xhtml#index-i-2"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="chapter.xhtml#index-i-3"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a href="chapter.xhtml#index-i"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a href="chapter.xhtml#index-i-1"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a href="chapter.xhtml#index-i-2"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a href="chapter.xhtml#index-i-3"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-id-i-ule"><code><b class="b">id
‘<samp class="samp">i</samp>’
ule</b></code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-id-i-ule"><code><b class="b">id
‘<samp class="samp">i</samp>’
ule</b></code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="chapter.xhtml#index-id-i-ule"><code><b
class="b">id ‘<samp class="samp">i</samp>’
ule</b></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-id-i-ule-1"><code><b class="b">id ‘<samp
class="samp">i</samp>’ ule</b></code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a href="chapter.xhtml#index-id-i-ule"><code><b
class="b">id ‘<samp class="samp">i</samp>’
ule</b></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-id-i-ule-1"><code><b class="b">id ‘<samp
class="samp">i</samp>’ ule</b></code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-id-ule"><code><b class="b">id
ule</b></code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-id-ule"><code><b class="b">id
ule</b></code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="chapter.xhtml#index-id-ule"><code><b
class="b">id ule</b></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="chapter.xhtml#index-id-ule-1"><code><b
class="b">id ule</b></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a href="chapter.xhtml#index-id-ule"><code><b
class="b">id ule</b></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a href="chapter.xhtml#index-id-ule-1"><code><b
class="b">id ule</b></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-invalid"><code><var
class="var">invalid</var></code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-invalid"><code><var
class="var">invalid</var></code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="chapter.xhtml#index-invalid"><code><var
class="var">invalid</var></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-invalid-1"><code><var
class="var">invalid</var></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a href="chapter.xhtml#index-invalid"><code><var
class="var">invalid</var></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-invalid-1"><code><var
class="var">invalid</var></code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_fn_letter-L">L</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-log-trap"><code>log
trap</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-log-trap"><code>log
trap</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="chapter.xhtml#index-log-trap"><code>log
trap</code></a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-log-trap-1"><code>log
trap</code></a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a href="chapter.xhtml#index-log-trap"><code>log
trap</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-log-trap-1"><code>log
trap</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-log-trap1"><code>log
trap1</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-log-trap1"><code>log
trap1</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-log-trap1"><code>log
trap1</code></a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-log-trap1-1"><code>log
trap1</code></a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-log-trap1"><code>log
trap1</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-log-trap1-1"><code>log
trap1</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-log-trap2"><code>log
trap2</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-log-trap2"><code>log
trap2</code></a></td><td> </td><td valign="top"><a
href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-log-trap2"><code>log
trap2</code></a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-log-trap2-1"><code>log
trap2</code></a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-log-trap2"><code>log
trap2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-log-trap2-1"><code>log
trap2</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_fn_letter-M">M</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-machin"><code>machin</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
@@ -1318,47 +1316,47 @@ span.program-in-footer {font-size: smaller}
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-machin-3"><code>machin</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-machin-4"><code>machin</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-machin-5"><code>machin</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-1"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-2"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-3"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-4"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-5"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-6"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-7"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-8"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-9"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-10"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-11"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-1"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-2"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-3"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-4"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-5"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-6"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-7"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-8"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-9"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-10"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-machin-11"><code>machin</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_fn_letter-N">N</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-n_002d_002dame"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-n_002d_002dame-1"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-n_002d_002dame"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-n_002d_002dame-1"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-n_002d_002dame"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-n_002d_002dame-1"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-n_002d_002dame-2"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-n_002d_002dame-3"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-n_002d_002dame"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-n_002d_002dame-1"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-n_002d_002dame-2"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-n_002d_002dame-3"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-name2"><code>name2</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-name2"><code>name2</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-name2"><code>name2</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-name2-1"><code>name2</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-name2"><code>name2</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-name2-1"><code>name2</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_fn_letter-T">T</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-t_002d_002druc-1"><code>t--ruc</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-T_002d_002druc-1"><code>T--ruc</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-t_002d_002druc-1"><code>t--ruc</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-T_002d_002druc-1"><code>T--ruc</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-truc"><code>truc</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-copying-truc-1"><code>truc</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-truc"><code>truc</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
<tr><td></td><td valign="top"><a
href="formatting.xhtml#index-titlepage-truc-1"><code>truc</code></a></td><td> </td><td
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-truc"><code>truc</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-truc-1"><code>truc</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-truc-2"><code>truc</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-truc-3"><code>truc</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-truc"><code>truc</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-truc-1"><code>truc</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-truc-2"><code>truc</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a
href="chapter.xhtml#index-truc-3"><code>truc</code></a></td><td> </td><td
valign="top"><a href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
<tr><th id="chapter-2_fn_letter-X">X</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a href="chapter.xhtml#index-xxx"><code>xxx,
zzz</code></a></td><td> </td><td valign="top"><a href="chapter.xhtml">1
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a href="chapter.xhtml#index-xxx"><code>xxx,
zzz</code></a></td><td> </td><td valign="top"><a
href="chapter.xhtml#chapter">1 chapter</a></td></tr>
<tr><td colspan="4"> </td></tr>
</table>
<table class="fn-letters-footer-printindex"><tr><th valign="top">Jump to:
  </th><td><a class="summary-letter-printindex"
href="#chapter-2_fn_symbol-1"><b>-</b></a>
@@ -1394,10 +1392,8 @@ span.program-in-footer {font-size: smaller}
</div>
</div>
-<p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
-<a href='js_licenses.xhtml' rel='jslicense'><small>JavaScript license
information</small></a>
+
+
</body>
</html>
diff --git
a/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting.xhtml
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting.xhtml
index a76c775a3a..e4cf031a50 100644
---
a/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting.xhtml
@@ -836,10 +836,10 @@ g-roupe
@inforef{}
-->
-<title>title –a</title>
+<title>Top section (title –a)</title>
-<meta name="description" content="title –a"/>
-<meta name="keywords" content="title –a"/>
+<meta name="description" content="Top section (title –a)"/>
+<meta name="keywords" content="Top section (title –a)"/>
<meta name="resource-type" content="document"/>
<meta name="distribution" content="global"/>
<meta name="Generator" content="texi2any"/>
@@ -847,11 +847,9 @@ g-roupe
<style type="text/css">
<!--
-a.summary-letter-printindex {text-decoration: none}
div.center {text-align:center}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
-h1.centerchap {text-align:center}
h3.subtitle {text-align:right}
kbd.kbd {font-style: oblique}
kbd.key {font-style: normal}
@@ -859,16 +857,11 @@ p.flushleft-paragraph {text-align:left}
p.flushright-paragraph {text-align:right}
pre.display-preformatted {font-family: inherit}
pre.format-preformatted {font-family: inherit}
-pre.menu-comment-preformatted {font-family: serif}
-pre.menu-entry-description-preformatted {font-family: serif; display: inline}
-pre.menu-preformatted {font-family: serif}
-span.program-in-footer {font-size: smaller}
span.r {font-family: initial; font-weight: normal; font-style: normal}
span.sansserif {font-family: sans-serif; font-weight: normal}
ul.mark-bullet {list-style-type: disc}
ul.mark-minus {list-style-type: "\2212"}
ul.mark-none {list-style-type: none}
-ul.toc-numbered-mark {list-style: none}
-->
</style>
@@ -1069,8 +1062,8 @@ but , ,
<code class="code">@ogonek{a}</code> ą
<code class="code">@ogonek{--a}</code> –ą
<code class="code">a@sup{h}@sub{l}</code> a<sup class="sup">h</sup><sub
class="sub">l</sub>
-<code class="code">@footnote{in footnote}</code> <a class="footnote"
id="DOCF3" href="#FOOT3"><sup>1</sup></a>
-<code class="code">@footnote{in footnote2}</code> <a class="footnote"
id="DOCF4" href="#FOOT4"><sup>2</sup></a>
+<code class="code">@footnote{in footnote}</code> <a class="footnote"
id="DOCF3" href="formatting_fot.xhtml#FOOT3"><sup>1</sup></a>
+<code class="code">@footnote{in footnote2}</code> <a class="footnote"
id="DOCF4" href="formatting_fot.xhtml#FOOT4"><sup>2</sup></a>
</p>
<p><code class="code">@sp 2</code><br/>
</p><br/>
@@ -1641,71 +1634,71 @@ $ wget
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEA
</p></dd></dl>
-<p><code class="code">@xref{c---hapter@@, cross r---ef name@@, t---itle@@,
file n---ame@@, ma---nual@@}</code> See <a href="file
n---ame@.xhtml#c_002d_002d_002dhapter_0040">t—itle@</a> in <cite
class="cite">ma—nual@</cite>.
-<code class="code">@ref{chapter, cross ref name, title, file name,
manual}</code> <a href="file name.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@pxref{chapter, cross ref name, title, file name,
manual}</code> see <a href="file name.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@inforef{chapter, cross ref name, file name}</code> See <a
href="file name.xhtml#chapter">(file name)cross ref name</a>
+<p><code class="code">@xref{c---hapter@@, cross r---ef name@@, t---itle@@,
file n---ame@@, ma---nual@@}</code> See <a href="../file
n---ame@_epub3/c_002d_002d_002dhapter_0040.xhtml#c_002d_002d_002dhapter_0040">t—itle@</a>
in <cite class="cite">ma—nual@</cite>.
+<code class="code">@ref{chapter, cross ref name, title, file name,
manual}</code> <a href="../file name_epub3/chapter.xhtml#chapter">title</a> in
<cite class="cite">manual</cite>
+<code class="code">@pxref{chapter, cross ref name, title, file name,
manual}</code> see <a href="../file name_epub3/chapter.xhtml#chapter">title</a>
in <cite class="cite">manual</cite>
+<code class="code">@inforef{chapter, cross ref name, file name}</code> See <a
href="../file name_epub3/chapter.xhtml#chapter">(file name)cross ref name</a>
</p>
-<p><code class="code">@ref{chapter}</code> <a class="ref"
href="#chapter">chapter</a>
-<code class="code">@xref{chapter}</code> See <a class="xref"
href="#chapter">chapter</a>.
-<code class="code">@pxref{chapter}</code> see <a class="pxref"
href="#chapter">chapter</a>
-<code class="code">@ref{s--ect@comma{}ion}</code> <a class="ref"
href="#s_002d_002dect_002cion">A section</a>
+<p><code class="code">@ref{chapter}</code> <a class="ref"
href="chapter.xhtml#chapter">chapter</a>
+<code class="code">@xref{chapter}</code> See <a class="xref"
href="chapter.xhtml#chapter">chapter</a>.
+<code class="code">@pxref{chapter}</code> see <a class="pxref"
href="chapter.xhtml#chapter">chapter</a>
+<code class="code">@ref{s--ect@comma{}ion}</code> <a class="ref"
href="chapter.xhtml#s_002d_002dect_002cion">A section</a>
</p>
<p><code class="code">@ref{s--ect@comma{}ion, a @comma{} in cross
ref, a comma@comma{} in title, a comma@comma{} in file, a @comma{} in manual
name }</code>
-<a href="a comma, in file.xhtml#s_002d_002dect_002cion">a comma, in
title</a> in <cite class="cite">a , in manual name</cite>
+<a href="../a comma, in
file_epub3/s_002d_002dect_002cion.xhtml#s_002d_002dect_002cion">a comma, in
title</a> in <cite class="cite">a , in manual name</cite>
</p>
-<p><code class="code">@ref{chapter,cross ref name}</code> <a class="ref"
href="#chapter">cross ref name</a>
-<code class="code">@ref{chapter,,title}</code> <a class="ref"
href="#chapter">title</a>
-<code class="code">@ref{chapter,,,file name}</code> <a href="file
name.xhtml#chapter">(file name)chapter</a>
+<p><code class="code">@ref{chapter,cross ref name}</code> <a class="ref"
href="chapter.xhtml#chapter">cross ref name</a>
+<code class="code">@ref{chapter,,title}</code> <a class="ref"
href="chapter.xhtml#chapter">title</a>
+<code class="code">@ref{chapter,,,file name}</code> <a href="../file
name_epub3/chapter.xhtml#chapter">(file name)chapter</a>
<code class="code">@ref{chapter,,,,manual}</code> ‘chapter’ in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title,}</code> <a class="ref"
href="#chapter">title</a>
-<code class="code">@ref{chapter,cross ref name,,file name}</code> <a
href="file name.xhtml#chapter">(file name)cross ref name</a>
+<code class="code">@ref{chapter,cross ref name,title,}</code> <a class="ref"
href="chapter.xhtml#chapter">title</a>
+<code class="code">@ref{chapter,cross ref name,,file name}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">(file name)cross ref name</a>
<code class="code">@ref{chapter,cross ref name,,,manual}</code> ‘cross
ref name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title,file name}</code> <a
href="file name.xhtml#chapter">(file name)title</a>
+<code class="code">@ref{chapter,cross ref name,title,file name}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">(file name)title</a>
<code class="code">@ref{chapter,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title, file name,
manual}</code> <a href="file name.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{chapter,,title,file name}</code> <a href="file
name.xhtml#chapter">(file name)title</a>
+<code class="code">@ref{chapter,cross ref name,title, file name,
manual}</code> <a href="../file name_epub3/chapter.xhtml#chapter">title</a> in
<cite class="cite">manual</cite>
+<code class="code">@ref{chapter,,title,file name}</code> <a href="../file
name_epub3/chapter.xhtml#chapter">(file name)title</a>
<code class="code">@ref{chapter,,title,,manual}</code> ‘title’ in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="file name.xhtml#chapter">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,,file name,manual}</code> <a href="file
name.xhtml#chapter">chapter</a> in <cite class="cite">manual</cite>
-</p>
-
-<p><code class="code">@ref{(pman)anode,cross ref name}</code> <a
href="pman.xhtml#anode">(pman)cross ref name</a>
-<code class="code">@ref{(pman)anode,,title}</code> <a
href="pman.xhtml#anode">(pman)title</a>
-<code class="code">@ref{(pman)anode,,,file name}</code> <a href="file
name.xhtml#anode">(file name)anode</a>
-<code class="code">@ref{(pman)anode,,,,manual}</code> <a
href="pman.xhtml#anode">anode</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title,}</code> <a
href="pman.xhtml#anode">(pman)title</a>
-<code class="code">@ref{(pman)anode,cross ref name,,file name}</code> <a
href="file name.xhtml#anode">(file name)cross ref name</a>
-<code class="code">@ref{(pman)anode,cross ref name,,,manual}</code> <a
href="pman.xhtml#anode">cross ref name</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title,file name}</code> <a
href="file name.xhtml#anode">(file name)title</a>
-<code class="code">@ref{(pman)anode,cross ref name,title,,manual}</code> <a
href="pman.xhtml#anode">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title, file name,
manual}</code> <a href="file name.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,title,file name}</code> <a href="file
name.xhtml#anode">(file name)title</a>
-<code class="code">@ref{(pman)anode,,title,,manual}</code> <a
href="pman.xhtml#anode">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,title, file name, manual}</code> <a
href="file name.xhtml#anode">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,,file name,manual}</code> <a href="file
name.xhtml#anode">anode</a> in <cite class="cite">manual</cite>
-</p>
-
-<p><code class="code">@inforef{chapter, cross ref name, file name}</code> See
<a href="file name.xhtml#chapter">(file name)cross ref name</a>
+<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{chapter,,,file name,manual}</code> <a href="../file
name_epub3/chapter.xhtml#chapter">chapter</a> in <cite
class="cite">manual</cite>
+</p>
+
+<p><code class="code">@ref{(pman)anode,cross ref name}</code> <a
href="../pman_epub3/anode.xhtml#anode">(pman)cross ref name</a>
+<code class="code">@ref{(pman)anode,,title}</code> <a
href="../pman_epub3/anode.xhtml#anode">(pman)title</a>
+<code class="code">@ref{(pman)anode,,,file name}</code> <a href="../file
name_epub3/anode.xhtml#anode">(file name)anode</a>
+<code class="code">@ref{(pman)anode,,,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">anode</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,cross ref name,title,}</code> <a
href="../pman_epub3/anode.xhtml#anode">(pman)title</a>
+<code class="code">@ref{(pman)anode,cross ref name,,file name}</code> <a
href="../file name_epub3/anode.xhtml#anode">(file name)cross ref name</a>
+<code class="code">@ref{(pman)anode,cross ref name,,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">cross ref name</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,cross ref name,title,file name}</code> <a
href="../file name_epub3/anode.xhtml#anode">(file name)title</a>
+<code class="code">@ref{(pman)anode,cross ref name,title,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,cross ref name,title, file name,
manual}</code> <a href="../file name_epub3/anode.xhtml#anode">title</a> in
<cite class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,,title,file name}</code> <a href="../file
name_epub3/anode.xhtml#anode">(file name)title</a>
+<code class="code">@ref{(pman)anode,,title,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,,title, file name, manual}</code> <a
href="../file name_epub3/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,,,file name,manual}</code> <a
href="../file name_epub3/anode.xhtml#anode">anode</a> in <cite
class="cite">manual</cite>
+</p>
+
+<p><code class="code">@inforef{chapter, cross ref name, file name}</code> See
<a href="../file name_epub3/chapter.xhtml#chapter">(file name)cross ref name</a>
<code class="code">@inforef{chapter}</code> See ‘chapter’
<code class="code">@inforef{chapter, cross ref name}</code> See ‘cross
ref name’
-<code class="code">@inforef{chapter,,file name}</code> See <a href="file
name.xhtml#chapter">(file name)chapter</a>
-<code class="code">@inforef{node, cross ref name, file name}</code> See <a
href="file name.xhtml#node">(file name)cross ref name</a>
+<code class="code">@inforef{chapter,,file name}</code> See <a href="../file
name_epub3/chapter.xhtml#chapter">(file name)chapter</a>
+<code class="code">@inforef{node, cross ref name, file name}</code> See <a
href="../file name_epub3/node.xhtml#node">(file name)cross ref name</a>
<code class="code">@inforef{node}</code> See ‘node’
<code class="code">@inforef{node, cross ref name}</code> See ‘cross ref
name’
-<code class="code">@inforef{node,,file name}</code> See <a href="file
name.xhtml#node">(file name)node</a>
-<code class="code">@inforef{chapter, cross ref name, file name, spurious
arg}</code> See <a href="file name, spurious arg.xhtml#chapter">(file name,
spurious arg)cross ref name</a>
+<code class="code">@inforef{node,,file name}</code> See <a href="../file
name_epub3/node.xhtml#node">(file name)node</a>
+<code class="code">@inforef{chapter, cross ref name, file name, spurious
arg}</code> See <a href="../file name, spurious
arg_epub3/chapter.xhtml#chapter">(file name, spurious arg)cross ref name</a>
</p>
<p><code class="code">@inforef{s--ect@comma{}ion, a @comma{} in cross
ref, a comma@comma{} in file}</code>
-See <a href="a comma, in file.xhtml#s_002d_002dect_002cion">(a comma, in
file)a , in cross
+See <a href="../a comma, in
file_epub3/s_002d_002dect_002cion.xhtml#s_002d_002dect_002cion">(a comma, in
file)a , in cross
ref</a>
</p>
-<p>‘<samp class="samp"><a class="ref"
href="#chapter">chapter</a></samp>’.
+<p>‘<samp class="samp"><a class="ref"
href="chapter.xhtml#chapter">chapter</a></samp>’.
</p>
-<p><a href="index3.html (uref3).xhtml#ext">title with uref2 <a class="uref"
href="href://http/myhost.com/index2.html">uref2</a></a> in <cite
class="cite">printed manual with uref4 <a class="uref"
href="href://http/myhost.com/index4.html">uref4</a></cite>
-<a class="ref" href="#chapter">title with uref2 <a class="uref"
href="href://http/myhost.com/index2.html">uref2</a></a>
+<p><a href="../index3.html (uref3)_epub3/ext.xhtml#ext">title with uref2 <a
class="uref" href="href://http/myhost.com/index2.html">uref2</a></a> in <cite
class="cite">printed manual with uref4 <a class="uref"
href="href://http/myhost.com/index4.html">uref4</a></cite>
+<a class="ref" href="chapter.xhtml#chapter">title with uref2 <a class="uref"
href="href://http/myhost.com/index2.html">uref2</a></a>
</p>
<dl class="table">
<dt><strong class="strong">a–strong</strong></dt>
@@ -1923,37 +1916,37 @@ html ''
</p>
<p><code class="code">@ref{,cross ref name}</code> ‘cross ref name’
<code class="code">@ref{,,title}</code> ‘title’
-<code class="code">@ref{,,,file name}</code> <a href="file
name.xhtml#Top">(file name)</a>
+<code class="code">@ref{,,,file name}</code> <a href="../file
name_epub3/index.html">(file name)</a>
<code class="code">@ref{,,,,manual}</code> <cite class="cite">manual</cite>
<code class="code">@ref{node,cross ref name}</code> ‘cross ref
name’
<code class="code">@ref{node,,title}</code> ‘title’
-<code class="code">@ref{node,,,file name}</code> <a href="file
name.xhtml#node">(file name)node</a>
+<code class="code">@ref{node,,,file name}</code> <a href="../file
name_epub3/node.xhtml#node">(file name)node</a>
<code class="code">@ref{node,,,,manual}</code> ‘node’ in <cite
class="cite">manual</cite>
<code class="code">@ref{node,cross ref name,title,}</code> ‘title’
-<code class="code">@ref{node,cross ref name,,file name}</code> <a href="file
name.xhtml#node">(file name)cross ref name</a>
+<code class="code">@ref{node,cross ref name,,file name}</code> <a
href="../file name_epub3/node.xhtml#node">(file name)cross ref name</a>
<code class="code">@ref{node,cross ref name,,,manual}</code> ‘cross ref
name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title,file name}</code> <a
href="file name.xhtml#node">(file name)title</a>
+<code class="code">@ref{node,cross ref name,title,file name}</code> <a
href="../file name_epub3/node.xhtml#node">(file name)title</a>
<code class="code">@ref{node,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title, file name, manual}</code>
<a href="file name.xhtml#node">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{node,,title,file name}</code> <a href="file
name.xhtml#node">(file name)title</a>
+<code class="code">@ref{node,cross ref name,title, file name, manual}</code>
<a href="../file name_epub3/node.xhtml#node">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{node,,title,file name}</code> <a href="../file
name_epub3/node.xhtml#node">(file name)title</a>
<code class="code">@ref{node,,title,,manual}</code> ‘title’ in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="file name.xhtml#chapter">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{node,,title, file name, manual}</code> <a href="file
name.xhtml#node">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{node,,,file name,manual}</code> <a href="file
name.xhtml#node">node</a> in <cite class="cite">manual</cite>
+<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{node,,title, file name, manual}</code> <a
href="../file name_epub3/node.xhtml#node">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{node,,,file name,manual}</code> <a href="../file
name_epub3/node.xhtml#node">node</a> in <cite class="cite">manual</cite>
<code class="code">@ref{,cross ref name,title,}</code> ‘title’
-<code class="code">@ref{,cross ref name,,file name}</code> <a href="file
name.xhtml#Top">(file name)cross ref name</a>
+<code class="code">@ref{,cross ref name,,file name}</code> <a href="../file
name_epub3/index.html">(file name)cross ref name</a>
<code class="code">@ref{,cross ref name,,,manual}</code> ‘cross ref
name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title,file name}</code> <a href="file
name.xhtml#Top">(file name)title</a>
+<code class="code">@ref{,cross ref name,title,file name}</code> <a
href="../file name_epub3/index.html">(file name)title</a>
<code class="code">@ref{,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title, file name, manual}</code> <a
href="file name.xhtml#Top">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{,,title,file name}</code> <a href="file
name.xhtml#Top">(file name)title</a>
+<code class="code">@ref{,cross ref name,title, file name, manual}</code> <a
href="../file name_epub3/index.html">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{,,title,file name}</code> <a href="../file
name_epub3/index.html">(file name)title</a>
<code class="code">@ref{,,title,,manual}</code> ‘title’ in <cite
class="cite">manual</cite>
-<code class="code">@ref{,,title, file name, manual}</code> <a href="file
name.xhtml#Top">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{,,,file name,manual}</code> <cite class="cite"><a
href="file name.xhtml#Top">manual</a></cite>
+<code class="code">@ref{,,title, file name, manual}</code> <a href="../file
name_epub3/index.html">title</a> in <cite class="cite">manual</cite>
+<code class="code">@ref{,,,file name,manual}</code> <cite class="cite"><a
href="../file name_epub3/index.html">manual</a></cite>
</p>
<p><code class="code">@inforef{,cross ref name }</code> See ‘cross ref
name’
-<code class="code">@inforef{,,file name}</code> See <a href="file
name.xhtml#Top">(file name)</a>
-<code class="code">@inforef{,cross ref name, file name}</code> See <a
href="file name.xhtml#Top">(file name)cross ref name</a>
+<code class="code">@inforef{,,file name}</code> See <a href="../file
name_epub3/index.html">(file name)</a>
+<code class="code">@inforef{,cross ref name, file name}</code> See <a
href="../file name_epub3/index.html">(file name)cross ref name</a>
<code class="code">@inforef{}</code>
</p>
@@ -2147,8 +2140,8 @@ but , ,
<code class="code">@ogonek{a}</code> ą
<code class="code">@ogonek{--a}</code> –ą
<code class="code">a@sup{h}@sub{l}</code> a<sup class="sup">h</sup><sub
class="sub">l</sub>
-<code class="code">@footnote{in footnote}</code> <a class="footnote"
id="DOCF1" href="#FOOT1"><sup>3</sup></a>
-<code class="code">@footnote{in footnote2}</code> <a class="footnote"
id="DOCF2" href="#FOOT2"><sup>4</sup></a>
+<code class="code">@footnote{in footnote}</code> <a class="footnote"
id="DOCF1" href="formatting_fot.xhtml#FOOT1"><sup>3</sup></a>
+<code class="code">@footnote{in footnote2}</code> <a class="footnote"
id="DOCF2" href="formatting_fot.xhtml#FOOT2"><sup>4</sup></a>
</p>
<p><code class="code">@sp 2</code><br/>
</p><br/>
@@ -2719,71 +2712,71 @@ $ wget
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEA
</p></dd></dl>
-<p><code class="code">@xref{c---hapter@@, cross r---ef name@@, t---itle@@,
file n---ame@@, ma---nual@@}</code> See <a href="file
n---ame@.xhtml#c_002d_002d_002dhapter_0040">t—itle@</a> in <cite
class="cite">ma—nual@</cite>.
-<code class="code">@ref{chapter, cross ref name, title, file name,
manual}</code> <a href="file name.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@pxref{chapter, cross ref name, title, file name,
manual}</code> see <a href="file name.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@inforef{chapter, cross ref name, file name}</code> See <a
href="file name.xhtml#chapter">(file name)cross ref name</a>
+<p><code class="code">@xref{c---hapter@@, cross r---ef name@@, t---itle@@,
file n---ame@@, ma---nual@@}</code> See <a href="../file
n---ame@_epub3/c_002d_002d_002dhapter_0040.xhtml#c_002d_002d_002dhapter_0040">t—itle@</a>
in <cite class="cite">ma—nual@</cite>.
+<code class="code">@ref{chapter, cross ref name, title, file name,
manual}</code> <a href="../file name_epub3/chapter.xhtml#chapter">title</a> in
<cite class="cite">manual</cite>
+<code class="code">@pxref{chapter, cross ref name, title, file name,
manual}</code> see <a href="../file name_epub3/chapter.xhtml#chapter">title</a>
in <cite class="cite">manual</cite>
+<code class="code">@inforef{chapter, cross ref name, file name}</code> See <a
href="../file name_epub3/chapter.xhtml#chapter">(file name)cross ref name</a>
</p>
-<p><code class="code">@ref{chapter}</code> <a class="ref"
href="#chapter">chapter</a>
-<code class="code">@xref{chapter}</code> See <a class="xref"
href="#chapter">chapter</a>.
-<code class="code">@pxref{chapter}</code> see <a class="pxref"
href="#chapter">chapter</a>
-<code class="code">@ref{s--ect@comma{}ion}</code> <a class="ref"
href="#s_002d_002dect_002cion">A section</a>
+<p><code class="code">@ref{chapter}</code> <a class="ref"
href="chapter.xhtml#chapter">chapter</a>
+<code class="code">@xref{chapter}</code> See <a class="xref"
href="chapter.xhtml#chapter">chapter</a>.
+<code class="code">@pxref{chapter}</code> see <a class="pxref"
href="chapter.xhtml#chapter">chapter</a>
+<code class="code">@ref{s--ect@comma{}ion}</code> <a class="ref"
href="chapter.xhtml#s_002d_002dect_002cion">A section</a>
</p>
<p><code class="code">@ref{s--ect@comma{}ion, a @comma{} in cross
ref, a comma@comma{} in title, a comma@comma{} in file, a @comma{} in manual
name }</code>
-<a href="a comma, in file.xhtml#s_002d_002dect_002cion">a comma, in
title</a> in <cite class="cite">a , in manual name</cite>
+<a href="../a comma, in
file_epub3/s_002d_002dect_002cion.xhtml#s_002d_002dect_002cion">a comma, in
title</a> in <cite class="cite">a , in manual name</cite>
</p>
-<p><code class="code">@ref{chapter,cross ref name}</code> <a class="ref"
href="#chapter">cross ref name</a>
-<code class="code">@ref{chapter,,title}</code> <a class="ref"
href="#chapter">title</a>
-<code class="code">@ref{chapter,,,file name}</code> <a href="file
name.xhtml#chapter">(file name)chapter</a>
+<p><code class="code">@ref{chapter,cross ref name}</code> <a class="ref"
href="chapter.xhtml#chapter">cross ref name</a>
+<code class="code">@ref{chapter,,title}</code> <a class="ref"
href="chapter.xhtml#chapter">title</a>
+<code class="code">@ref{chapter,,,file name}</code> <a href="../file
name_epub3/chapter.xhtml#chapter">(file name)chapter</a>
<code class="code">@ref{chapter,,,,manual}</code> ‘chapter’ in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title,}</code> <a class="ref"
href="#chapter">title</a>
-<code class="code">@ref{chapter,cross ref name,,file name}</code> <a
href="file name.xhtml#chapter">(file name)cross ref name</a>
+<code class="code">@ref{chapter,cross ref name,title,}</code> <a class="ref"
href="chapter.xhtml#chapter">title</a>
+<code class="code">@ref{chapter,cross ref name,,file name}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">(file name)cross ref name</a>
<code class="code">@ref{chapter,cross ref name,,,manual}</code> ‘cross
ref name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title,file name}</code> <a
href="file name.xhtml#chapter">(file name)title</a>
+<code class="code">@ref{chapter,cross ref name,title,file name}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">(file name)title</a>
<code class="code">@ref{chapter,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title, file name,
manual}</code> <a href="file name.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{chapter,,title,file name}</code> <a href="file
name.xhtml#chapter">(file name)title</a>
+<code class="code">@ref{chapter,cross ref name,title, file name,
manual}</code> <a href="../file name_epub3/chapter.xhtml#chapter">title</a> in
<cite class="cite">manual</cite>
+<code class="code">@ref{chapter,,title,file name}</code> <a href="../file
name_epub3/chapter.xhtml#chapter">(file name)title</a>
<code class="code">@ref{chapter,,title,,manual}</code> ‘title’ in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="file name.xhtml#chapter">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,,file name,manual}</code> <a href="file
name.xhtml#chapter">chapter</a> in <cite class="cite">manual</cite>
-</p>
-
-<p><code class="code">@ref{(pman)anode,cross ref name}</code> <a
href="pman.xhtml#anode">(pman)cross ref name</a>
-<code class="code">@ref{(pman)anode,,title}</code> <a
href="pman.xhtml#anode">(pman)title</a>
-<code class="code">@ref{(pman)anode,,,file name}</code> <a href="file
name.xhtml#anode">(file name)anode</a>
-<code class="code">@ref{(pman)anode,,,,manual}</code> <a
href="pman.xhtml#anode">anode</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title,}</code> <a
href="pman.xhtml#anode">(pman)title</a>
-<code class="code">@ref{(pman)anode,cross ref name,,file name}</code> <a
href="file name.xhtml#anode">(file name)cross ref name</a>
-<code class="code">@ref{(pman)anode,cross ref name,,,manual}</code> <a
href="pman.xhtml#anode">cross ref name</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title,file name}</code> <a
href="file name.xhtml#anode">(file name)title</a>
-<code class="code">@ref{(pman)anode,cross ref name,title,,manual}</code> <a
href="pman.xhtml#anode">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title, file name,
manual}</code> <a href="file name.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,title,file name}</code> <a href="file
name.xhtml#anode">(file name)title</a>
-<code class="code">@ref{(pman)anode,,title,,manual}</code> <a
href="pman.xhtml#anode">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,title, file name, manual}</code> <a
href="file name.xhtml#anode">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,,file name,manual}</code> <a href="file
name.xhtml#anode">anode</a> in <cite class="cite">manual</cite>
-</p>
-
-<p><code class="code">@inforef{chapter, cross ref name, file name}</code> See
<a href="file name.xhtml#chapter">(file name)cross ref name</a>
+<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{chapter,,,file name,manual}</code> <a href="../file
name_epub3/chapter.xhtml#chapter">chapter</a> in <cite
class="cite">manual</cite>
+</p>
+
+<p><code class="code">@ref{(pman)anode,cross ref name}</code> <a
href="../pman_epub3/anode.xhtml#anode">(pman)cross ref name</a>
+<code class="code">@ref{(pman)anode,,title}</code> <a
href="../pman_epub3/anode.xhtml#anode">(pman)title</a>
+<code class="code">@ref{(pman)anode,,,file name}</code> <a href="../file
name_epub3/anode.xhtml#anode">(file name)anode</a>
+<code class="code">@ref{(pman)anode,,,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">anode</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,cross ref name,title,}</code> <a
href="../pman_epub3/anode.xhtml#anode">(pman)title</a>
+<code class="code">@ref{(pman)anode,cross ref name,,file name}</code> <a
href="../file name_epub3/anode.xhtml#anode">(file name)cross ref name</a>
+<code class="code">@ref{(pman)anode,cross ref name,,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">cross ref name</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,cross ref name,title,file name}</code> <a
href="../file name_epub3/anode.xhtml#anode">(file name)title</a>
+<code class="code">@ref{(pman)anode,cross ref name,title,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,cross ref name,title, file name,
manual}</code> <a href="../file name_epub3/anode.xhtml#anode">title</a> in
<cite class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,,title,file name}</code> <a href="../file
name_epub3/anode.xhtml#anode">(file name)title</a>
+<code class="code">@ref{(pman)anode,,title,,manual}</code> <a
href="../pman_epub3/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,,title, file name, manual}</code> <a
href="../file name_epub3/anode.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{(pman)anode,,,file name,manual}</code> <a
href="../file name_epub3/anode.xhtml#anode">anode</a> in <cite
class="cite">manual</cite>
+</p>
+
+<p><code class="code">@inforef{chapter, cross ref name, file name}</code> See
<a href="../file name_epub3/chapter.xhtml#chapter">(file name)cross ref name</a>
<code class="code">@inforef{chapter}</code> See ‘chapter’
<code class="code">@inforef{chapter, cross ref name}</code> See ‘cross
ref name’
-<code class="code">@inforef{chapter,,file name}</code> See <a href="file
name.xhtml#chapter">(file name)chapter</a>
-<code class="code">@inforef{node, cross ref name, file name}</code> See <a
href="file name.xhtml#node">(file name)cross ref name</a>
+<code class="code">@inforef{chapter,,file name}</code> See <a href="../file
name_epub3/chapter.xhtml#chapter">(file name)chapter</a>
+<code class="code">@inforef{node, cross ref name, file name}</code> See <a
href="../file name_epub3/node.xhtml#node">(file name)cross ref name</a>
<code class="code">@inforef{node}</code> See ‘node’
<code class="code">@inforef{node, cross ref name}</code> See ‘cross ref
name’
-<code class="code">@inforef{node,,file name}</code> See <a href="file
name.xhtml#node">(file name)node</a>
-<code class="code">@inforef{chapter, cross ref name, file name, spurious
arg}</code> See <a href="file name, spurious arg.xhtml#chapter">(file name,
spurious arg)cross ref name</a>
+<code class="code">@inforef{node,,file name}</code> See <a href="../file
name_epub3/node.xhtml#node">(file name)node</a>
+<code class="code">@inforef{chapter, cross ref name, file name, spurious
arg}</code> See <a href="../file name, spurious
arg_epub3/chapter.xhtml#chapter">(file name, spurious arg)cross ref name</a>
</p>
<p><code class="code">@inforef{s--ect@comma{}ion, a @comma{} in cross
ref, a comma@comma{} in file}</code>
-See <a href="a comma, in file.xhtml#s_002d_002dect_002cion">(a comma, in
file)a , in cross
+See <a href="../a comma, in
file_epub3/s_002d_002dect_002cion.xhtml#s_002d_002dect_002cion">(a comma, in
file)a , in cross
ref</a>
</p>
-<p>‘<samp class="samp"><a class="ref"
href="#chapter">chapter</a></samp>’.
+<p>‘<samp class="samp"><a class="ref"
href="chapter.xhtml#chapter">chapter</a></samp>’.
</p>
-<p><a href="index3.html (uref3).xhtml#ext">title with uref2 <a class="uref"
href="href://http/myhost.com/index2.html">uref2</a></a> in <cite
class="cite">printed manual with uref4 <a class="uref"
href="href://http/myhost.com/index4.html">uref4</a></cite>
-<a class="ref" href="#chapter">title with uref2 <a class="uref"
href="href://http/myhost.com/index2.html">uref2</a></a>
+<p><a href="../index3.html (uref3)_epub3/ext.xhtml#ext">title with uref2 <a
class="uref" href="href://http/myhost.com/index2.html">uref2</a></a> in <cite
class="cite">printed manual with uref4 <a class="uref"
href="href://http/myhost.com/index4.html">uref4</a></cite>
+<a class="ref" href="chapter.xhtml#chapter">title with uref2 <a class="uref"
href="href://http/myhost.com/index2.html">uref2</a></a>
</p>
<dl class="table">
<dt><strong class="strong">a–strong</strong></dt>
@@ -3000,37 +2993,37 @@ html ''
</p>
<p><code class="code">@ref{,cross ref name}</code> ‘cross ref name’
<code class="code">@ref{,,title}</code> ‘title’
-<code class="code">@ref{,,,file name}</code> <a href="file
name.xhtml#Top">(file name)</a>
+<code class="code">@ref{,,,file name}</code> <a href="../file
name_epub3/index.html">(file name)</a>
<code class="code">@ref{,,,,manual}</code> <cite class="cite">manual</cite>
<code class="code">@ref{node,cross ref name}</code> ‘cross ref
name’
<code class="code">@ref{node,,title}</code> ‘title’
-<code class="code">@ref{node,,,file name}</code> <a href="file
name.xhtml#node">(file name)node</a>
+<code class="code">@ref{node,,,file name}</code> <a href="../file
name_epub3/node.xhtml#node">(file name)node</a>
<code class="code">@ref{node,,,,manual}</code> ‘node’ in <cite
class="cite">manual</cite>
<code class="code">@ref{node,cross ref name,title,}</code> ‘title’
-<code class="code">@ref{node,cross ref name,,file name}</code> <a href="file
name.xhtml#node">(file name)cross ref name</a>
+<code class="code">@ref{node,cross ref name,,file name}</code> <a
href="../file name_epub3/node.xhtml#node">(file name)cross ref name</a>
<code class="code">@ref{node,cross ref name,,,manual}</code> ‘cross ref
name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title,file name}</code> <a
href="file name.xhtml#node">(file name)title</a>
+<code class="code">@ref{node,cross ref name,title,file name}</code> <a
href="../file name_epub3/node.xhtml#node">(file name)title</a>
<code class="code">@ref{node,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title, file name, manual}</code>
<a href="file name.xhtml#node">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{node,,title,file name}</code> <a href="file
name.xhtml#node">(file name)title</a>
+<code class="code">@ref{node,cross ref name,title, file name, manual}</code>
<a href="../file name_epub3/node.xhtml#node">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{node,,title,file name}</code> <a href="../file
name_epub3/node.xhtml#node">(file name)title</a>
<code class="code">@ref{node,,title,,manual}</code> ‘title’ in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="file name.xhtml#chapter">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{node,,title, file name, manual}</code> <a href="file
name.xhtml#node">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{node,,,file name,manual}</code> <a href="file
name.xhtml#node">node</a> in <cite class="cite">manual</cite>
+<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="../file name_epub3/chapter.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{node,,title, file name, manual}</code> <a
href="../file name_epub3/node.xhtml#node">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{node,,,file name,manual}</code> <a href="../file
name_epub3/node.xhtml#node">node</a> in <cite class="cite">manual</cite>
<code class="code">@ref{,cross ref name,title,}</code> ‘title’
-<code class="code">@ref{,cross ref name,,file name}</code> <a href="file
name.xhtml#Top">(file name)cross ref name</a>
+<code class="code">@ref{,cross ref name,,file name}</code> <a href="../file
name_epub3/index.html">(file name)cross ref name</a>
<code class="code">@ref{,cross ref name,,,manual}</code> ‘cross ref
name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title,file name}</code> <a href="file
name.xhtml#Top">(file name)title</a>
+<code class="code">@ref{,cross ref name,title,file name}</code> <a
href="../file name_epub3/index.html">(file name)title</a>
<code class="code">@ref{,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title, file name, manual}</code> <a
href="file name.xhtml#Top">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{,,title,file name}</code> <a href="file
name.xhtml#Top">(file name)title</a>
+<code class="code">@ref{,cross ref name,title, file name, manual}</code> <a
href="../file name_epub3/index.html">title</a> in <cite
class="cite">manual</cite>
+<code class="code">@ref{,,title,file name}</code> <a href="../file
name_epub3/index.html">(file name)title</a>
<code class="code">@ref{,,title,,manual}</code> ‘title’ in <cite
class="cite">manual</cite>
-<code class="code">@ref{,,title, file name, manual}</code> <a href="file
name.xhtml#Top">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{,,,file name,manual}</code> <cite class="cite"><a
href="file name.xhtml#Top">manual</a></cite>
+<code class="code">@ref{,,title, file name, manual}</code> <a href="../file
name_epub3/index.html">title</a> in <cite class="cite">manual</cite>
+<code class="code">@ref{,,,file name,manual}</code> <cite class="cite"><a
href="../file name_epub3/index.html">manual</a></cite>
</p>
<p><code class="code">@inforef{,cross ref name }</code> See ‘cross ref
name’
-<code class="code">@inforef{,,file name}</code> See <a href="file
name.xhtml#Top">(file name)</a>
-<code class="code">@inforef{,cross ref name, file name}</code> See <a
href="file name.xhtml#Top">(file name)cross ref name</a>
+<code class="code">@inforef{,,file name}</code> See <a href="../file
name_epub3/index.html">(file name)</a>
+<code class="code">@inforef{,cross ref name, file name}</code> See <a
href="../file name_epub3/index.html">(file name)cross ref name</a>
<code class="code">@inforef{}</code>
</p>
@@ -3042,4693 +3035,7 @@ html ''
-<a class="node" id="Top"></a><a class="top" id="Top-section"></a><div
class="chapter-level-extent" id="chapter">
-<h1 class="chapter" id="chapter-1">1 chapter</h1>
-
-<p>First para
-</p>
-<p>qsddsqkdsqkkmljsqjsqodmmdsqdsmqj dqs sdq sqd sdq dsq sdq sqd sqd sdq sdq
-qsd dsq sdq dsq dssdq sdq sdq sdq dsq sdq dsq dsq sdq dsq sdqsd q
-</p>
-<p>noindent in para.
-</p>
-<p>unneeded indent
-</p>
-<p>Insertcopying in normal text
-</p><p>In copying
-</p>
-<p><
->
-"
-&
-’
-‘
-</p>
-<p>“simple-double–three—four—-”<br/>
-code: <code class="code">``simple-double--three---four----''</code> <br/>
-asis: “simple-double–three—four—-” <br/>
-strong: <strong
class="strong">“simple-double–three—four—-”</strong>
<br/>
-kbd: <kbd class="kbd">``simple-double--three---four----''</kbd> <br/>
-</p>
-<p>‘<!-- /@w -->‘simple-double-<!-- /@w
-->-three—four—-’<!-- /@w -->’<br/>
-</p>
-<a class="index-entry-id" id="index-copying-_002d_002doption"></a>
-<a class="index-entry-id" id="index-copying-_0060_0060"></a>
-<a class="index-entry-id" id="index-copying-_0060_0060-1"></a>
-<a class="index-entry-id" id="index-copying-_002d_002dfoption"></a>
-
-<p>@"u ü
-@"{U} Ü
-@~n ñ
-@^a â
-@’e é
-@=o ō
-@‘i ì
-@’{e} é
-@’{@dotless{i}} í
-@dotless{i} i
-@dotless{j} j
-@‘{@=E} Ḕ
-@l{} ł
-@,{@’C} Ḉ
-@,c ç
-@,c@"u çü <br/>
-</p>
-<p>@U{0075} u
-</p>
-<p>@* <br/>
-@ followed by a space
- 
-@ followed by a tab
- 
-@ followed by a new line
- <code class="code">@-</code>
-<code class="code">@:</code>
-<code class="code">@!</code> !
-<code class="code">@?</code> ?
-<code class="code">@.</code> .
-<code class="code">@@</code> @
-<code class="code">@}</code> }
-<code class="code">@{</code> {
-<code class="code">@/</code>
-</p>
-<p>foo vs. bar.
-colon :And something else.
-semi colon ;.
-And ? ?.
-Now ! !@
-but , ,
-</p>
-<p>@TeX TeX
-@LaTeX LaTeX
-@bullet •
-@copyright ©
-@dots …
-@enddots <small class="enddots">...</small>
-@equiv ≡
-@error error→
-@expansion ↦
-@minus −
-@point ★
-@print ⊣
-@result ⇒
-@today a sunny day
-</p>
-<p>@aa å
-@AA Å
-@ae æ
-@oe œ
-@AE Æ
-@OE Œ
-@o ø
-@O Ø
-@ss ß
-@l ł
-@L Ł
-@DH Ð
-@TH Þ
-@dh ð
-@th þ
-</p>
-<p>@exclamdown ¡
-@questiondown ¿
-@pounds £
-@registeredsymbol ®
-@ordf ª
-@ordm º
-@comma ,
-@quotedblleft “
-@quotedblright ”
-@quoteleft ‘
-@quoteright ’
-@quotedblbase „
-@quotesinglbase ‚
-@guillemetleft «
-@guillemetright »
-@guillemotleft «
-@guillemotright »
-@guilsinglleft ‹
-@guilsinglright ›
-</p>
-<p>@textdegree °
-@euro €
-@arrow →
-@leq ≤
-@geq ≥
-@tie a b
-</p>
-<p><code class="code">@acronym{--a,an accronym}</code> <acronym
class="acronym" title="an accronym">–a</acronym> (an accronym)
-<code class="code">@acronym{--a}</code> <acronym class="acronym" title="an
accronym">–a</acronym>
-<code class="code">@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr
class="abbr" title="Étude Autonome">É–. ,A.</abbr>
(Étude Autonome)
-<code class="code">@abbr{@'E--. @comma{}A.}</code> <abbr class="abbr"
title="Étude Autonome">É–. ,A.</abbr>
-<code class="code">@asis{--a}</code> –a
-<code class="code">@b{--a}</code> <b class="b">–a</b>
-<code class="code">@cite{--a}</code> <cite class="cite">–a</cite>
-<code class="code">@code{--a}</code> <code class="code">--a</code>
-<code class="code">@command{--a}</code> <code class="command">--a</code>
-<code class="code">@dfn{--a}</code> <em class="dfn">–a</em>
-<code class="code">@dmn{--a}</code> <span class="dmn">–a</span>
-<code class="code">@email{--a,--b}</code> <a class="email"
href="mailto:--a">–b</a>
-<code class="code">@email{,--b}</code> –b
-<code class="code">@email{--a}</code> <a class="email"
href="mailto:--a">--a</a>
-<code class="code">@emph{--a}</code> <em class="emph">–a</em>
-<code class="code">@env{--a}</code> <code class="env">--a</code>
-<code class="code">@file{--a}</code> <samp class="file">--a</samp>
-<code class="code">@i{--a}</code> <i class="i">–a</i>
-<code class="code">@kbd{--a}</code> <kbd class="kbd">--a</kbd>
-<code class="code">@key{--a}</code> <kbd class="key">--a</kbd>
-<code class="code">@math{--a {\frac{1}{2}} @minus{}}</code> <em
class="math">--a {\frac{1}{2}} −</em>
-<code class="code">@option{--a}</code> <samp class="option">--a</samp>
-<code class="code">@r{--a}</code> <span class="r">–a</span>
-<code class="code">@samp{--a}</code> ‘<samp
class="samp">--a</samp>’
-<code class="code">@sc{--a}</code> <small class="sc">–A</small>
-<code class="code">@strong{--a}</code> <strong class="strong">–a</strong>
-<code class="code">@t{--a}</code> <code class="t">--a</code>
-<code class="code">@sansserif{--a}</code> <span
class="sansserif">–a</span>
-<code class="code">@slanted{--a}</code> <i class="slanted">–a</i>
-<code class="code">@titlefont{--a}</code> </p><h1
class="titlefont">–a</h1>
-<p><code class="code">@indicateurl{--a}</code> ‘<code
class="indicateurl">--a</code>’
-<code class="code">@uref{--a,--b}</code> <a class="uref"
href="--a">–b</a>
-<code class="code">@uref{--a}</code> <a class="uref" href="--a">--a</a>
-<code class="code">@uref{,--b}</code> –b
-<code class="code">@uref{--a,--b,--c}</code> <a class="uref"
href="--a">–c</a>
-<code class="code">@uref{,--b,--c}</code> –c
-<code class="code">@uref{--a,,--c}</code> <a class="uref"
href="--a">–c</a>
-<code class="code">@uref{,,--c}</code> –c
-<code class="code">@url{--a,--b}</code> <a class="url" href="--a">–b</a>
-<code class="code">@url{--a,}</code> <a class="url" href="--a">--a</a>
-<code class="code">@url{,--b}</code> –b
-<code class="code">@var{--a}</code> <var class="var">–a</var>
-<code class="code">@verb{:--a:}</code> <code class="verb">--a</code>
-<code class="code">@verb{:a < & @ % " -- b:}</code> <code
class="verb">a < & @ % " -- b</code>
-<code class="code">@w{a a a a a a a a a a a a a a a a a a a a a a a a a a a a
a a a a a a a}</code>
a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a<!--
/@w -->
-<code class="code">@H{a}</code> a̋
-<code class="code">@H{--a}</code> –a̋
-<code class="code">@dotaccent{a}</code> ȧ
-<code class="code">@dotaccent{--a}</code> –ȧ
-<code class="code">@ringaccent{a}</code> å
-<code class="code">@ringaccent{--a}</code> –å
-<code class="code">@tieaccent{a}</code> a͡
-<code class="code">@tieaccent{--a}</code> –a͡
-<code class="code">@u{a}</code> ă
-<code class="code">@u{--a}</code> –ă
-<code class="code">@ubaraccent{a}</code> a̲
-<code class="code">@ubaraccent{--a}</code> –a̲
-<code class="code">@udotaccent{a}</code> ạ
-<code class="code">@udotaccent{--a}</code> –ạ
-<code class="code">@v{a}</code> ǎ
-<code class="code">@v{--a}</code> –ǎ
-<code class="code">@,{c}</code> ç
-<code class="code">@,{--c}</code> –ç
-<code class="code">@ogonek{a}</code> ą
-<code class="code">@ogonek{--a}</code> –ą
-<code class="code">a@sup{h}@sub{l}</code> a<sup class="sup">h</sup><sub
class="sub">l</sub>
-<code class="code">@footnote{in footnote}</code> <a class="footnote"
id="DOCF1_5" href="#FOOT1_5"><sup>5</sup></a>
-<code class="code">@footnote{in footnote2}</code> <a class="footnote"
id="DOCF2_6" href="#FOOT2_6"><sup>6</sup></a>
-</p>
-<p><code class="code">@sp 2</code><br/>
-</p><br/>
-<br/>
-<p><code class="code">@page</code><br/>
-</p>
-<p><code class="code">need 1002</code>
-</p>
-<p><code class="code">@clicksequence{click @click{} A}</code> click → A
-After clickstyle ⇒
-<code class="code">@clicksequence{click @click{} A}</code> click ⇒ A
-</p>
-
-<div class="displaymath"><em>disp--laymath
-f(x) = {1 \over \sigma \sqrt{2\pi}}e<sup class="sup">-{1 \over 2}\left({x-\mu
\over \sigma}\right)^2</sup>
-</em></div>
-<div class="displaymath"><em><strong
class="strong">``simple-double--three---four----''</strong> aa<!-- /@w -->
-`<!-- /@w -->`simple-double-<!-- /@w -->-three---four----'<!-- /@w -->'
-
-</em></div>
-<div class="displaymath"><em>i j
-ł ç
-a̲ ạ ą a<sup class="sup">h</sup><sub class="sub">l</sub>
-
-      ! @ } {
-a sunny day
-</em></div>
-<div class="displaymath"><em>→
-u
-• © … ... ≡
-error→ ↦ − ⊣ ⇒
-Å æ œ Æ Œ ø Ø ß ł Ł Ð
-Þ ð þ ¡ ¿ £
-ª º ,
-</em></div>
-<div class="displaymath"><em>“ ”
-‘ ’ „ ‚ «
-» « » ‹
-› € → ≤ ≥
-</em></div>
-<div class="displaymath"><em><b class="b">b</b> <i class="i">i</i> <span
class="r">r</span> <small class="sc">SC</small> <span
class="sansserif">sansserif</span> <i class="slanted">slanted</i>
-</em></div>
-<p><kbd class="kbd">default kbdinputstyle</kbd>
-</p><dl class="vtable">
-<dt id='index-copying-vtable-i_002d_002dtem-default-kbdinputstyle'><kbd
class="kbd">vtable i--tem default kbdinputstyle</kbd></dt>
-</dl>
-<div class="example">
-<pre class="example-preformatted"><kbd class="kbd">in example default
kbdinputstyle</kbd>
-</pre><dl class="vtable">
-<dt
id='index-copying-vtable-i_002d_002dtem-in-example-default-kbdinputstyle'><tt><kbd
class="kbd">vtable i--tem in example default kbdinputstyle</kbd></tt></dt>
-</dl>
-</div>
-
-<p><code class="code as-code-kbd">code kbdinputstyle</code>
-</p><dl class="vtable">
-<dt id='index-copying-vtable-i_002d_002dtem-code-kbdinputstyle'><code
class="code as-code-kbd">vtable i--tem code kbdinputstyle</code></dt>
-</dl>
-<div class="example">
-<pre class="example-preformatted"><code class="code as-code-kbd">in example
code kbdinputstyle</code>
-</pre><dl class="vtable">
-<dt
id='index-copying-vtable-i_002d_002dtem-in-example-code-kbdinputstyle'><tt><code
class="code as-code-kbd">vtable i--tem in example code
kbdinputstyle</code></tt></dt>
-</dl>
-</div>
-
-<p><kbd class="kbd">example kbdinputstyle</kbd>
-</p><dl class="vtable">
-<dt id='index-copying-vtable-i_002d_002dtem-example-kbdinputstyle'><kbd
class="kbd">vtable i--tem example kbdinputstyle</kbd></dt>
-</dl>
-<div class="example">
-<pre class="example-preformatted"><code class="code as-code-kbd">in example
example kbdinputstyle</code>
-</pre><dl class="vtable">
-<dt
id='index-copying-vtable-i_002d_002dtem-in-example-example-kbdinputstyle'><tt><code
class="code as-code-kbd">vtable i--tem in example example
kbdinputstyle</code></tt></dt>
-</dl>
-</div>
-
-<p><kbd class="kbd">distinct kbdinputstyle</kbd>
-</p><dl class="vtable">
-<dt id='index-copying-vtable-i_002d_002dtem-distinct-kbdinputstyle'><kbd
class="kbd">vtable i--tem distinct kbdinputstyle</kbd></dt>
-</dl>
-<div class="example">
-<pre class="example-preformatted"><kbd class="kbd">in example distinct
kbdinputstyle</kbd>
-</pre><dl class="vtable">
-<dt
id='index-copying-vtable-i_002d_002dtem-in-example-distinct-kbdinputstyle'><tt><kbd
class="kbd">vtable i--tem in example distinct kbdinputstyle</kbd></tt></dt>
-</dl>
-</div>
-
-<blockquote class="quotation">
-<p>A quot—ation
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">Note:</b> A Note
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">note:</b> A note
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">Caution:</b> Caution
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">Important:</b> Important
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">Tip:</b> a Tip
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">Warning:</b> a Warning.
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">something é TeX:</b> The something é TeX is here.
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">@ at the end of line  :</b> A @ at the end of the
@quotation line.
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">something, other thing:</b> something, other thing
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">Note, the note:</b> Note, the note
-</p></blockquote>
-
-<blockquote class="quotation">
-</blockquote>
-
-<blockquote class="quotation">
-</blockquote>
-
-<blockquote class="quotation">
-</blockquote>
-
-<blockquote class="quotation">
-</blockquote>
-
-<blockquote class="quotation">
-<p>aaa quotation
-</p></blockquote>
-<div class="center">— <em class="emph">quotation author</em>
-</div>
-<blockquote class="quotation">
-<p>indent in quotation
-</p></blockquote>
-
-<blockquote class="quotation">
-<p class="exdent">exdented quotation line and dash — in quotation
-</p></blockquote>
-
-<blockquote class="quotation">
-<p>Not exdented followed by exdented
-</p><p class="exdent">exdented quotation line
-</p></blockquote>
-
-<blockquote class="quotation">
-<p class="exdent">exdented quotation line
-</p><p>Followed by not exdented
-</p></blockquote>
-
-<blockquote class="quotation">
-<p>quotation1
-</p><p class="exdent">in exdented protected eol  
-</p><p>following
-</p><p class="exdent">in exdented a @* <br/> and following
-</p><p>after exdented
-</p></blockquote>
-
-<blockquote class="quotation smallquotation">
-<p>A small quot—ation
-</p></blockquote>
-
-<blockquote class="quotation smallquotation">
-<p><b class="b">Note:</b> A small Note
-</p></blockquote>
-
-<blockquote class="quotation smallquotation">
-<p><b class="b">something, other thing:</b> something, other thing
-</p></blockquote>
-
-<ul class="itemize mark-bullet">
-<li>i–temize
-</li></ul>
-
-<ul class="itemize" style="list-style-type: '+'">
-<li>i–tem +
-</li></ul>
-
-<ul class="itemize mark-bullet">
-<li>b–ullet
-</li></ul>
-
-<ul class="itemize mark-minus">
-<li>minu–s
-</li></ul>
-
-<ul class="itemize" style="list-style-type: 'after emph'">
-<li>e–mph item
-</li></ul>
-
-<ul class="itemize" style="list-style-type: '\2022 a\2013 n itemize line'">
-<li><a class="index-entry-id"
id="index-copying-index-entry-within-itemize"></a>
-i–tem 1
-</li><li>i–tem 2
-</li></ul>
-
-<ul class="itemize mark-none">
-<li>with w a–b
-</li><li>with w c–d
-</li></ul>
-
-<ul class="itemize" style="list-style-type: ' on a line'">
-<li>line w a–b
-</li><li>line with w c–d
-</li></ul>
-
-<ol class="enumerate">
-<li> e–numerate
-</li></ol>
-
-<ol class="enumerate" start="3">
-<li> first third
-</li><li> second third
-</li></ol>
-
-<ol class="enumerate" type="a" start="1">
-<li> e–numerate
-</li></ol>
-
-<ol class="enumerate" type="a" start="3">
-<li> first c
-</li><li> second c
-</li></ol>
-
-<table class="multitable">
-<thead><tr><th width="40%">mu–ltitable headitem</th><th
width="60%">another tab</th></tr></thead>
-<tbody><tr><td width="40%">mu–ltitable item</td><td
width="60%">multitable tab</td></tr>
-<tr><td width="40%">mu–ltitable item 2</td><td width="60%">multitable
tab 2
-<a class="index-entry-id"
id="index-copying-index-entry-within-multitable"></a></td></tr>
-<tr><td width="40%">lone mu–ltitable item</td></tr>
-</tbody>
-</table>
-
-<table class="multitable">
-<tbody><tr><td>truc</td><td>bidule</td></tr>
-</tbody>
-</table>
-
-<div class="example">
-<pre class="example-preformatted">e--xample some
- text
-</pre></div>
-
-<div class="example user-first-arg">
-<pre class="example-preformatted">example one arg
-</pre></div>
-
-<div class="example user-first-arg user-second-arg">
-<pre class="example-preformatted">example two args
-</pre></div>
-
-<div class="example user-first-arg user-second-arg user-third-arg">
-<pre class="example-preformatted">example three args
-</pre></div>
-
-<div class="example user-first-arg user-second-arg user-third-arg
user-fourth-arg">
-<pre class="example-preformatted">example four args
-</pre></div>
-
-<div class="example user-first-arg user-second-arg user-third-arg
user-fourth-arg user-fifth-arg">
-<pre class="example-preformatted">example five args
-</pre></div>
-
-<div class="example user-something-é-TeX">
-<pre class="example-preformatted">The something é TeX is here.
-</pre></div>
-
-<div class="example user-@-at-the-end-of-line--">
-<pre class="example-preformatted">A @ at the end of the @example line.
-</pre></div>
-
-<div class="example">
-<pre class="example-preformatted">example with empty args
-</pre></div>
-
-<div class="example user-nonempty">
-<pre class="example-preformatted">example with empty and non empty args mix
-</pre></div>
-
-<div class="example">
-<pre class="example-preformatted">Exam---ple
-
-</pre><pre class="exdent">Other li---ne
-</pre><pre class="example-preformatted">not exdented
-</pre></div>
-
-<div class="example">
-<pre class="exdent">exdented and dash --- in example
-</pre><pre class="example-preformatted">Not exdented one
-</pre><pre class="exdent">exdented two
-</pre><pre class="example-preformatted">Not exdented two
-</pre></div>
-
-<div class="example">
-<pre class="example-preformatted">Example Hoho.
-</pre><div class="example">
-<pre class="example-preformatted">Nested Other line
-</pre><pre class="exdent">exdented nested other line
-</pre></div>
-</div>
-
-<div class="example smallexample">
-<pre class="example-preformatted">s--mallexample
-</pre></div>
-
-<p><code class="code">@noindent</code> after smallexample.
-</p><div class="example smallexample">
-<pre class="example-preformatted">$ wget
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.guess?rev=HEAD&content-type=text/plain'
-$ wget
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD&content-type=text/plain'
-</pre></div>
-<p>Less recent versions are also present.
-</p>
-<div class="display">
-<pre class="display-preformatted">d–isplay
-</pre></div>
-
-<div class="display smalldisplay">
-<pre class="display-preformatted">s–malldisplay
-</pre></div>
-
-<div class="example lisp">
-<pre class="lisp-preformatted">l--isp
-</pre></div>
-
-<div class="example smalllisp lisp">
-<pre class="lisp-preformatted">s--malllisp
-</pre></div>
-
-<div class="format">
-<pre class="format-preformatted">f–ormat
-</pre></div>
-
-<div class="format smallformat">
-<pre class="format-preformatted">s–mallformat
-</pre></div>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-copying-d_002d_002deffn_005fname"><span
class="category-def">c–ategory: </span><code
class="def-name">d--effn_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><p>d–effn
-</p></dd></dl>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-copying-de_002d_002dffn_005fname"><span
class="category-def">cate–gory: </span><code
class="def-name">de--ffn_name</code> <var
class="def-meta-var-arguments">ar–guments more args <br/> even more
so</var></dt>
-<dd><p>def–fn
-</p></dd></dl>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-copying-i"><span class="category-def">fset:
</span><code class="def-name"><var class="var">i</var></code> <var
class="def-meta-var-arguments">a g</var></dt>
-<dd><a class="index-entry-id" id="index-copying-index-entry-within-deffn"></a>
-</dd><dt class="deffnx def-cmd-deffn" id="index-copying-truc"><span
class="category-def">cmde: </span><code class="def-name">truc</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-log-trap"><span
class="category-def">Command: </span><code class="def-name">log trap</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-log-trap1"><span
class="category-def">Command: </span><code class="def-name">log
trap1</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-log-trap2"><span
class="category-def">Command: </span><code class="def-name">log
trap2</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-id-ule"><span
class="category-def">cmde: </span><code class="def-name"><b class="b">id
ule</b></code> <var class="def-meta-var-arguments">truc</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-id-i-ule"><span
class="category-def">cmde2: </span><code class="def-name"><b class="b">id
‘<samp class="samp">i</samp>’ ule</b></code> <var
class="def-meta-var-arguments">truc</var></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">: </span><code
class="def-name"></code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-machin"><span
class="category-def">: </span><code class="def-name">machin</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-bidule-machin"><span
class="category-def">: </span><code class="def-name">bidule machin</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-machin-1"><span
class="category-def">truc: </span><code class="def-name">machin</code></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">truc: </span><code
class="def-name"></code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-followed"><span
class="category-def">truc: </span><code class="def-name">followed</code> <var
class="def-meta-var-arguments">by a comment</var></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">: </span><code
class="def-name"></code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-a"><span
class="category-def">truc: </span><code class="def-name">a</code> <var
class="def-meta-var-arguments">b c d e <b class="b">f g</b> h i</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-deffnx"><span
class="category-def">truc: </span><code class="def-name">deffnx</code> <var
class="def-meta-var-arguments">before end deffn</var></dt>
-</dl>
-
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-copying-deffn"><span class="category-def">empty:
</span><code class="def-name">deffn</code></dt>
-</dl>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-copying-deffn-1"><span class="category-def">empty:
</span><code class="def-name">deffn</code> <var
class="def-meta-var-arguments">with deffnx</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-deffnx-1"><span
class="category-def">empty: </span><code class="def-name">deffnx</code></dt>
-</dl>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-copying-i-1"><span class="category-def">fset:
</span><code class="def-name"><var class="var">i</var></code> <var
class="def-meta-var-arguments">a g</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-truc-1"><span
class="category-def">cmde: </span><code class="def-name">truc</code></dt>
-<dd><p>text in def item for second def item
-</p></dd></dl>
-
-
-<dl class="first-defvr">
-<dt class="defvr" id="index-copying-d_002d_002defvr_005fname"><span
class="category-def">c–ategory: </span><code
class="def-name">d--efvr_name</code></dt>
-<dd><p>d–efvr
-</p></dd></dl>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-copying-n_002d_002dame"><span
class="category-def">c–ategory: </span><code
class="def-name">n--ame</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><p>d–effn
-</p></dd></dl>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-copying-n_002d_002dame-1"><span
class="category-def">c–ategory: </span><code
class="def-name">n--ame</code></dt>
-<dd><p>d–effn no arg
-</p></dd></dl>
-
-<dl class="first-deftypefn">
-<dt class="deftypefn" id="index-copying-d_002d_002deftypefn_005fname"><span
class="category-def">c–ategory: </span><code
class="def-type">t--ype</code> <code class="def-name">d--eftypefn_name</code>
<code class="def-code-arguments">a--rguments...</code></dt>
-<dd><p>d–eftypefn
-</p></dd></dl>
-
-<dl class="first-deftypefn">
-<dt class="deftypefn" id="index-copying-d_002d_002deftypefn_005fname-1"><span
class="category-def">c–ategory: </span><code
class="def-type">t--ype</code> <code
class="def-name">d--eftypefn_name</code></dt>
-<dd><p>d–eftypefn no arg
-</p></dd></dl>
-
-<dl class="first-deftypeop">
-<dt class="deftypeop"
id="index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><span
class="category-def">c–ategory on <code class="code">c--lass</code>:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypeop_name</code> <code
class="def-code-arguments">a--rguments...</code></dt>
-<dd><p>d–eftypeop
-</p></dd></dl>
-
-<dl class="first-deftypeop">
-<dt class="deftypeop"
id="index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><span
class="category-def">c–ategory on <code class="code">c--lass</code>:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypeop_name</code></dt>
-<dd><p>d–eftypeop no arg
-</p></dd></dl>
-
-<dl class="first-deftypevr">
-<dt class="deftypevr" id="index-copying-d_002d_002deftypevr_005fname"><span
class="category-def">c–ategory: </span><code
class="def-type">t--ype</code> <code
class="def-name">d--eftypevr_name</code></dt>
-<dd><p>d–eftypevr
-</p></dd></dl>
-
-<dl class="first-defcv">
-<dt class="defcv" id="index-copying-d_002d_002defcv_005fname"><span
class="category-def">c–ategory of <code class="code">c--lass</code>:
</span><code class="def-name">d--efcv_name</code></dt>
-<dd><p>d–efcv
-</p></dd></dl>
-
-<dl class="first-defcv">
-<dt class="defcv" id="index-copying-d_002d_002defcv_005fname-1"><span
class="category-def">c–ategory of <code class="code">c--lass</code>:
</span><code class="def-name">d--efcv_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><p>d–efcv with arguments
-</p></dd></dl>
-
-<dl class="first-deftypecv">
-<dt class="deftypecv"
id="index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><span
class="category-def">c–ategory of <code class="code">c--lass</code>:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypecv_name</code></dt>
-<dd><p>d–eftypecv
-</p></dd></dl>
-
-<dl class="first-deftypecv">
-<dt class="deftypecv"
id="index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><span
class="category-def">c–ategory of <code class="code">c--lass</code>:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypecv_name</code> <code
class="def-code-arguments">a--rguments...</code></dt>
-<dd><p>d–eftypecv with arguments
-</p></dd></dl>
-
-<dl class="first-defop">
-<dt class="defop"
id="index-copying-d_002d_002defop_005fname-on-c_002d_002dlass"><span
class="category-def">c–ategory on <code class="code">c--lass</code>:
</span><code class="def-name">d--efop_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><p>d–efop
-</p></dd></dl>
-
-<dl class="first-defop">
-<dt class="defop"
id="index-copying-d_002d_002defop_005fname-on-c_002d_002dlass-1"><span
class="category-def">c–ategory on <code class="code">c--lass</code>:
</span><code class="def-name">d--efop_name</code></dt>
-<dd><p>d–efop no arg
-</p></dd></dl>
-
-<dl class="first-deftp">
-<dt class="deftp" id="index-copying-d_002d_002deftp_005fname"><span
class="category-def">c–ategory: </span><code
class="def-name">d--eftp_name</code> <var
class="def-meta-var-arguments">a–ttributes...</var></dt>
-<dd><p>d–eftp
-</p></dd></dl>
-
-<dl class="first-deffn first-defun-alias-first-deffn">
-<dt class="deffn defun-alias-deffn"
id="index-copying-d_002d_002defun_005fname"><span
class="category-def">Function: </span><code
class="def-name">d--efun_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><p>d–efun
-</p></dd></dl>
-
-<dl class="first-deffn first-defmac-alias-first-deffn">
-<dt class="deffn defmac-alias-deffn"
id="index-copying-d_002d_002defmac_005fname"><span class="category-def">Macro:
</span><code class="def-name">d--efmac_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><p>d–efmac
-</p></dd></dl>
-
-<dl class="first-deffn first-defspec-alias-first-deffn">
-<dt class="deffn defspec-alias-deffn"
id="index-copying-d_002d_002defspec_005fname"><span
class="category-def">Special Form: </span><code
class="def-name">d--efspec_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><p>d–efspec
-</p></dd></dl>
-
-<dl class="first-defvr first-defvar-alias-first-defvr">
-<dt class="defvr defvar-alias-defvr"
id="index-copying-d_002d_002defvar_005fname"><span
class="category-def">Variable: </span><code
class="def-name">d--efvar_name</code></dt>
-<dd><p>d–efvar
-</p></dd></dl>
-
-<dl class="first-defvr first-defvar-alias-first-defvr">
-<dt class="defvr defvar-alias-defvr"
id="index-copying-d_002d_002defvar_005fname-1"><span
class="category-def">Variable: </span><code
class="def-name">d--efvar_name</code> <var
class="def-meta-var-arguments">arg–var arg–var1</var></dt>
-<dd><p>d–efvar with args
-</p></dd></dl>
-
-<dl class="first-defvr first-defopt-alias-first-defvr">
-<dt class="defvr defopt-alias-defvr"
id="index-copying-d_002d_002defopt_005fname"><span class="category-def">User
Option: </span><code class="def-name">d--efopt_name</code></dt>
-<dd><p>d–efopt
-</p></dd></dl>
-
-<dl class="first-deftypefn first-deftypefun-alias-first-deftypefn">
-<dt class="deftypefn deftypefun-alias-deftypefn"
id="index-copying-d_002d_002deftypefun_005fname"><span
class="category-def">Function: </span><code class="def-type">t--ype</code>
<code class="def-name">d--eftypefun_name</code> <code
class="def-code-arguments">a--rguments...</code></dt>
-<dd><p>d–eftypefun
-</p></dd></dl>
-
-<dl class="first-deftypevr first-deftypevar-alias-first-deftypevr">
-<dt class="deftypevr deftypevar-alias-deftypevr"
id="index-copying-d_002d_002deftypevar_005fname"><span
class="category-def">Variable: </span><code class="def-type">t--ype</code>
<code class="def-name">d--eftypevar_name</code></dt>
-<dd><p>d–eftypevar
-</p></dd></dl>
-
-<dl class="first-defcv first-defivar-alias-first-defcv">
-<dt class="defcv defivar-alias-defcv"
id="index-copying-d_002d_002defivar_005fname-of-c_002d_002dlass"><span
class="category-def">Instance Variable of <code class="code">c--lass</code>:
</span><code class="def-name">d--efivar_name</code></dt>
-<dd><p>d–efivar
-</p></dd></dl>
-
-<dl class="first-deftypecv first-deftypeivar-alias-first-deftypecv">
-<dt class="deftypecv deftypeivar-alias-deftypecv"
id="index-copying-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><span
class="category-def">Instance Variable of <code class="code">c--lass</code>:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypeivar_name</code></dt>
-<dd><p>d–eftypeivar
-</p></dd></dl>
-
-<dl class="first-defop first-defmethod-alias-first-defop">
-<dt class="defop defmethod-alias-defop"
id="index-copying-d_002d_002defmethod_005fname-on-c_002d_002dlass"><span
class="category-def">Method on <code class="code">c--lass</code>: </span><code
class="def-name">d--efmethod_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><p>d–efmethod
-</p></dd></dl>
-
-<dl class="first-deftypeop first-deftypemethod-alias-first-deftypeop">
-<dt class="deftypeop deftypemethod-alias-deftypeop"
id="index-copying-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><span
class="category-def">Method on <code class="code">c--lass</code>: </span><code
class="def-type">t--ype</code> <code
class="def-name">d--eftypemethod_name</code> <code
class="def-code-arguments">a--rguments...</code></dt>
-<dd><p>d–eftypemethod
-</p></dd></dl>
-
-
-<dl class="first-deftypefn first-deftypefun-alias-first-deftypefn">
-<dt class="deftypefn deftypefun-alias-deftypefn"
id="index-copying-name2"><span class="category-def">Function:<br/> </span><code
class="def-type">data-type2</code><br> <code class="def-name">name2</code>
<code class="def-code-arguments">arguments2...</code></dt>
-<dd><p>aaa2
-</p></dd></dl>
-
-<dl class="first-deftypefn">
-<dt class="deftypefn" id="index-copying-d_002d_002deftypefn_005fname2"><span
class="category-def">c–ategory2:<br/> </span><code
class="def-type">t--ype2</code><br> <code
class="def-name">d--eftypefn_name2</code></dt>
-<dd><p>d–eftypefn no arg2
-</p></dd></dl>
-
-<dl class="first-deftypeop">
-<dt class="deftypeop"
id="index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><span
class="category-def">c–ategory2 on <code
class="code">c--lass2</code>:<br/> </span><code
class="def-type">t--ype2</code><br> <code
class="def-name">d--eftypeop_name2</code> <code
class="def-code-arguments">a--rguments2...</code></dt>
-<dd><p>d–eftypeop2
-</p></dd></dl>
-
-<dl class="first-deftypeop">
-<dt class="deftypeop"
id="index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><span
class="category-def">c–ategory2 on <code
class="code">c--lass2</code>:<br/> </span><code
class="def-type">t--ype2</code><br> <code
class="def-name">d--eftypeop_name2</code></dt>
-<dd><p>d–eftypeop no arg2
-</p></dd></dl>
-
-<dl class="first-deftypecv">
-<dt class="deftypecv"
id="index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><span
class="category-def">c–ategory2 of <code class="code">c--lass2</code>:
</span><code class="def-type">t--ype2</code> <code
class="def-name">d--eftypecv_name2</code></dt>
-<dd><p>d–eftypecv2
-</p></dd></dl>
-
-<dl class="first-deftypecv">
-<dt class="deftypecv"
id="index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><span
class="category-def">c–ategory2 of <code class="code">c--lass2</code>:
</span><code class="def-type">t--ype2</code> <code
class="def-name">d--eftypecv_name2</code> <code
class="def-code-arguments">a--rguments2...</code></dt>
-<dd><p>d–eftypecv with arguments2
-</p></dd></dl>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-copying-arg2"><span class="category-def">fun2:
</span><code class="def-name">arg2</code></dt>
-<dd><p>fff2
-</p></dd></dl>
-
-
-<p><code class="code">@xref{c---hapter@@, cross r---ef name@@, t---itle@@,
file n---ame@@, ma---nual@@}</code> See <a href="file
n---ame@.xhtml#c_002d_002d_002dhapter_0040">t—itle@</a> in <cite
class="cite">ma—nual@</cite>.
-<code class="code">@ref{chapter, cross ref name, title, file name,
manual}</code> <a href="file name.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@pxref{chapter, cross ref name, title, file name,
manual}</code> see <a href="file name.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@inforef{chapter, cross ref name, file name}</code> See <a
href="file name.xhtml#chapter">(file name)cross ref name</a>
-</p>
-<p><code class="code">@ref{chapter}</code> <a class="ref"
href="#chapter">chapter</a>
-<code class="code">@xref{chapter}</code> See <a class="xref"
href="#chapter">chapter</a>.
-<code class="code">@pxref{chapter}</code> see <a class="pxref"
href="#chapter">chapter</a>
-<code class="code">@ref{s--ect@comma{}ion}</code> <a class="ref"
href="#s_002d_002dect_002cion">A section</a>
-</p>
-<p><code class="code">@ref{s--ect@comma{}ion, a @comma{} in cross
-ref, a comma@comma{} in title, a comma@comma{} in file, a @comma{} in manual
name }</code>
-<a href="a comma, in file.xhtml#s_002d_002dect_002cion">a comma, in
title</a> in <cite class="cite">a , in manual name</cite>
-</p>
-<p><code class="code">@ref{chapter,cross ref name}</code> <a class="ref"
href="#chapter">cross ref name</a>
-<code class="code">@ref{chapter,,title}</code> <a class="ref"
href="#chapter">title</a>
-<code class="code">@ref{chapter,,,file name}</code> <a href="file
name.xhtml#chapter">(file name)chapter</a>
-<code class="code">@ref{chapter,,,,manual}</code> ‘chapter’ in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title,}</code> <a class="ref"
href="#chapter">title</a>
-<code class="code">@ref{chapter,cross ref name,,file name}</code> <a
href="file name.xhtml#chapter">(file name)cross ref name</a>
-<code class="code">@ref{chapter,cross ref name,,,manual}</code> ‘cross
ref name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title,file name}</code> <a
href="file name.xhtml#chapter">(file name)title</a>
-<code class="code">@ref{chapter,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title, file name,
manual}</code> <a href="file name.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{chapter,,title,file name}</code> <a href="file
name.xhtml#chapter">(file name)title</a>
-<code class="code">@ref{chapter,,title,,manual}</code> ‘title’ in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="file name.xhtml#chapter">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,,file name,manual}</code> <a href="file
name.xhtml#chapter">chapter</a> in <cite class="cite">manual</cite>
-</p>
-
-<p><code class="code">@ref{(pman)anode,cross ref name}</code> <a
href="pman.xhtml#anode">(pman)cross ref name</a>
-<code class="code">@ref{(pman)anode,,title}</code> <a
href="pman.xhtml#anode">(pman)title</a>
-<code class="code">@ref{(pman)anode,,,file name}</code> <a href="file
name.xhtml#anode">(file name)anode</a>
-<code class="code">@ref{(pman)anode,,,,manual}</code> <a
href="pman.xhtml#anode">anode</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title,}</code> <a
href="pman.xhtml#anode">(pman)title</a>
-<code class="code">@ref{(pman)anode,cross ref name,,file name}</code> <a
href="file name.xhtml#anode">(file name)cross ref name</a>
-<code class="code">@ref{(pman)anode,cross ref name,,,manual}</code> <a
href="pman.xhtml#anode">cross ref name</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title,file name}</code> <a
href="file name.xhtml#anode">(file name)title</a>
-<code class="code">@ref{(pman)anode,cross ref name,title,,manual}</code> <a
href="pman.xhtml#anode">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title, file name,
manual}</code> <a href="file name.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,title,file name}</code> <a href="file
name.xhtml#anode">(file name)title</a>
-<code class="code">@ref{(pman)anode,,title,,manual}</code> <a
href="pman.xhtml#anode">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,title, file name, manual}</code> <a
href="file name.xhtml#anode">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,,file name,manual}</code> <a href="file
name.xhtml#anode">anode</a> in <cite class="cite">manual</cite>
-</p>
-
-<p><code class="code">@inforef{chapter, cross ref name, file name}</code> See
<a href="file name.xhtml#chapter">(file name)cross ref name</a>
-<code class="code">@inforef{chapter}</code> See ‘chapter’
-<code class="code">@inforef{chapter, cross ref name}</code> See ‘cross
ref name’
-<code class="code">@inforef{chapter,,file name}</code> See <a href="file
name.xhtml#chapter">(file name)chapter</a>
-<code class="code">@inforef{node, cross ref name, file name}</code> See <a
href="file name.xhtml#node">(file name)cross ref name</a>
-<code class="code">@inforef{node}</code> See ‘node’
-<code class="code">@inforef{node, cross ref name}</code> See ‘cross ref
name’
-<code class="code">@inforef{node,,file name}</code> See <a href="file
name.xhtml#node">(file name)node</a>
-<code class="code">@inforef{chapter, cross ref name, file name, spurious
arg}</code> See <a href="file name, spurious arg.xhtml#chapter">(file name,
spurious arg)cross ref name</a>
-</p>
-<p><code class="code">@inforef{s--ect@comma{}ion, a @comma{} in cross
-ref, a comma@comma{} in file}</code>
-See <a href="a comma, in file.xhtml#s_002d_002dect_002cion">(a comma, in
file)a , in cross
-ref</a>
-</p>
-<p>‘<samp class="samp"><a class="ref"
href="#chapter">chapter</a></samp>’.
-</p>
-<p><a href="index3.html (uref3).xhtml#ext">title with uref2 <a class="uref"
href="href://http/myhost.com/index2.html">uref2</a></a> in <cite
class="cite">printed manual with uref4 <a class="uref"
href="href://http/myhost.com/index4.html">uref4</a></cite>
-<a class="ref" href="#chapter">title with uref2 <a class="uref"
href="href://http/myhost.com/index2.html">uref2</a></a>
-</p>
-<dl class="table">
-<dt><strong class="strong">a–strong</strong></dt>
-<dd><p>l–ine
-</p></dd>
-</dl>
-
-<dl class="vtable">
-<dt id='index-copying-a_002d_002dasis'>a–asis</dt>
-<dt id='index-copying-b-2'>b</dt>
-<dd><p>l–ine
-</p></dd>
-</dl>
-
-<dl class="ftable">
-<dt id='index-copying-a-1'><em class="emph">a</em></dt>
-<dd><a class="index-entry-id"
id="index-copying-index-entry-between-item-and-itemx"></a>
-</dd>
-<dt id='index-copying-b'><em class="emph">b</em></dt>
-<dd><p>l–ine
-</p></dd>
-</dl>
-
-<dl class="table">
-<dd><p>Title
-</p></dd>
-<dt><code class="code">a--code</code></dt>
-<dd><p>Value–table code
-</p></dd>
-</dl>
-
-<dl class="table">
-<dd><p>Title
-</p></dd>
-<dt>‘<samp class="samp">a--samp</samp>’</dt>
-<dt>‘<samp class="samp">a2--samp</samp>’</dt>
-<dd><p>Value–table samp
-</p></dd>
-</dl>
-
-<table class="cartouche" border="1"><tr><td>
-<p>c–artouche
-</p></td></tr></table>
-
-<div class="flushleft"><p class="flushleft-paragraph">f–lushleft
-more text
-</p></div>
-<div class="flushright"><p class="flushright-paragraph">f–lushright
-more text
-</p></div>
-<div class="center">ce–ntered line
-</div>
-<div class="raggedright"><p class="raggedright-paragraph">r–raggedright
-more text
-</p></div>
-<pre class="verbatim">\input texinfo @c -*-texinfo-*-
-
-@c this file is used in tests in @verbatiminclude but not converted
-
-@setfilename simplest.info
-
-@node Top
-
-This is a very simple texi manual @ <>.
-
-@bye
-</pre>
-<pre class="verbatim">in verbatim ''
-</pre>
-
-html ''
-
-
-
-
-<h1 class="majorheading" id="majorheading-1">majorheading</h1>
-
-<h1 class="chapheading" id="chapheading-1">chapheading</h1>
-
-<h2 class="heading" id="heading-1">heading</h2>
-
-<h3 class="subheading" id="subheading-1">subheading</h3>
-
-<h4 class="subsubheading" id="subsubheading-1">subsubheading</h4>
-
-
-<p><code class="code">@acronym{--a,an accronym @comma{} @enddots{}}</code>
<acronym class="acronym" title="an accronym , ...">–a</acronym> (an
accronym , <small class="enddots">...</small>)
-<code class="code">@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome}
}</code> <abbr class="abbr" title="Étude–,
Autonome">É–. ,A.</abbr> (Étude–, <b
class="b">Autonome</b>)
-<code class="code">@abbr{@'E--. @comma{}A.}</code> <abbr class="abbr"
title="Étude–, Autonome">É–. ,A.</abbr>
-</p>
-<p><code class="code">@math{--a@minus{} {\frac{1}{2}}}</code> <em
class="math">--a− {\frac{1}{2}}</em>
-</p>
-
-
-
-<p>Somehow invalid use of @,:<br/>
-@, ̧
-<br/>
-@,@"u ̧ü
-</p>
-<p>Invalid use of @’:<br/>
-@’ ́
-<br/>
-@’@"u ́ü
-</p>
-<p><code class="code">@|</code>
-</p>
-<p>@dotless{truc} truc
-@dotless{ij} ij
-<code class="code">@dotless{--a}</code> –a
-<code class="code">@dotless{a}</code> a
-</p>
-<p>@U, without braces @U{}, with empty arg
-@U{z}, with non-hex arg &#xz;
-@U{abc}, with <4 hex digits ઼
-@U{FFFFFFFFFFFFFF}, value much too large �
-@U{110000}, value just beyond Unicode �
-</p>
-<p>@TeX, but without brace TeX<code class="code">@#</code> #
-</p>
-<p><code class="code">@w{--a}</code> –a<!-- /@w -->
-</p>
-<p><code class="code">@image{,1--xt}</code>
-<code class="code">@image{,,2--xt}</code>
-<code class="code">@image{,,,3--xt}</code>
-</p>
-<p><code class="code">@image{f-ile,aze,,a--lt}</code> <img class="image"
src="../images/23-f-ilejpg" alt="a–lt"/>
-<code class="code">@image{f-ile,,,alt@verb{:jk _" %}}</code> <img
class="image" src="../images/24-f-ilejpg" alt="altjk _" %@"/>
-</p>
-<p><code class="code">@image{f--ile}</code> <img class="image"
src="../images/25-f--ile.png" alt="f--ile"/>
-<code class="code">@image{f--ile,,,alt}</code> <img class="image"
src="../images/26-f--ile.png" alt="alt"/>
-<code class="code">@image{f--ile,,,,.e-d-xt}</code> <img class="image"
src="../images/27-f--ile.e--xt" alt="f--ile"/>
-<code class="code">@image{f--ile,l--i}</code> <img class="image"
src="../images/28-f--ile.png" alt="f--ile"/>
-<code class="code">@image{f--ile,,l--e}</code> <img class="image"
src="../images/29-f--ile.png" alt="f--ile"/>
-<code class="code">@image{f--ile,aze,az,alt,.e--xt}</code> <img class="image"
src="../images/30-f--ile.e--xt" alt="alt"/>
-<code class="code">@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext}
e--xt@}</code> <img class="image"
src="../images/31-f--ile_0040..file-ext-e--xt_007d" alt="alt"/>
-</p>
-<p><code class="code">@image{f--ile,aze,az,@verb{:jk _" %@:} @b{in b
"},e--xt}</code> <img class="image" src="../images/32-f--ile.e--xt"
alt="jk _" %@ in b ""/>
-<code class="code">@image{file@verb{:jk _" %@:},,,alt@verb{:jk _"
%@:}}</code> <img class="image" src="../images/33-filejk-__0022-_0025_0040jpg"
alt="altjk _" %@"/>
-</p>
-
-
-<div class="displaymath"><em>ü Ü ñ â é ō ì
é Ḕ
-Ḉ Ḉ a̋ ȧ å a͡
-ă ǎ
- ? .
-</em></div>
-<div class="displaymath"><em>TeX LaTeX ★ å ® °
-</em></div>
-<div class="displaymath"><em><code class="t">t</code>
-</em></div>
-<ul class="itemize">
-<li>e–mph item
-</li></ul>
-
-<ul class="itemize" style="list-style-type: ' after emph'">
-<li>e–mph item
-</li></ul>
-
-<ul class="itemize" style="list-style-type: '\2022 a\2013 n itemize line'">
-<li>i–tem 1
-</li><li>i–tem 2
-</li></ul>
-
-<ul class="itemize mark-none">
-<li>without brace w a–b
-</li><li>without brace w c–d
-</li></ul>
-
-<dl class="table">
-<dt>a</dt>
-<dd><p>l–ine
-</p></dd>
-</dl>
-
-<dl class="table">
-<dt>a–missing style formatting</dt>
-<dd><p>l–ine
-</p></dd>
-</dl>
-
-<dl class="ftable">
-<dt id='index-copying-a-2'>a</dt>
-<dd><a class="index-entry-id"
id="index-copying-index-entry-between-item-and-itemx-1"></a>
-</dd>
-<dt id='index-copying-b-1'>b</dt>
-<dd><p>l–ine
-</p></dd>
-</dl>
-
-<dl class="first-deffn">
-<dt class="deffn"><span class="category-def">fun: </span></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-machin-2"><span
class="category-def">truc: </span><code class="def-name">machin</code> <var
class="def-meta-var-arguments">bidule chose and</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-machin-3"><span
class="category-def">truc: </span><code class="def-name">machin</code> <var
class="def-meta-var-arguments">bidule chose and after</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-machin-4"><span
class="category-def">truc: </span><code class="def-name">machin</code> <var
class="def-meta-var-arguments">bidule chose and </var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-machin-5"><span
class="category-def">truc: </span><code class="def-name">machin</code> <var
class="def-meta-var-arguments">bidule chose and and after</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-copying-followed-1"><span
class="category-def">truc: </span><code class="def-name">followed</code> <var
class="def-meta-var-arguments">by a comment</var></dt>
-<dd><p>Various deff lines
-</p></dd><dt class="deffnx def-cmd-deffn" id="index-copying-after"><span
class="category-def">truc: </span><code class="def-name">after</code> <var
class="def-meta-var-arguments">a deff item</var></dt>
-</dl>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-copying-invalid"><span
class="category-def">fsetinv: </span><code class="def-name"><var
class="var">invalid</var></code> <var class="def-meta-var-arguments">a
g</var></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def"><b class="b">id
‘<samp class="samp">i</samp>’ ule</b>: </span></dt>
-<dt class="deffnx def-cmd-deffn"></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">aaa: </span></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">: </span></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">truc: </span></dt>
-</dl>
-
-<div class="group"><p>g–roupe
-</p></div>
-<p><code class="code">@ref{node}</code> ‘node’
-</p>
-<p><code class="code">@ref{,cross ref name}</code> ‘cross ref name’
-<code class="code">@ref{,,title}</code> ‘title’
-<code class="code">@ref{,,,file name}</code> <a href="file
name.xhtml#Top">(file name)</a>
-<code class="code">@ref{,,,,manual}</code> <cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name}</code> ‘cross ref
name’
-<code class="code">@ref{node,,title}</code> ‘title’
-<code class="code">@ref{node,,,file name}</code> <a href="file
name.xhtml#node">(file name)node</a>
-<code class="code">@ref{node,,,,manual}</code> ‘node’ in <cite
class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title,}</code> ‘title’
-<code class="code">@ref{node,cross ref name,,file name}</code> <a href="file
name.xhtml#node">(file name)cross ref name</a>
-<code class="code">@ref{node,cross ref name,,,manual}</code> ‘cross ref
name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title,file name}</code> <a
href="file name.xhtml#node">(file name)title</a>
-<code class="code">@ref{node,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title, file name, manual}</code>
<a href="file name.xhtml#node">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{node,,title,file name}</code> <a href="file
name.xhtml#node">(file name)title</a>
-<code class="code">@ref{node,,title,,manual}</code> ‘title’ in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="file name.xhtml#chapter">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{node,,title, file name, manual}</code> <a href="file
name.xhtml#node">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{node,,,file name,manual}</code> <a href="file
name.xhtml#node">node</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title,}</code> ‘title’
-<code class="code">@ref{,cross ref name,,file name}</code> <a href="file
name.xhtml#Top">(file name)cross ref name</a>
-<code class="code">@ref{,cross ref name,,,manual}</code> ‘cross ref
name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title,file name}</code> <a href="file
name.xhtml#Top">(file name)title</a>
-<code class="code">@ref{,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title, file name, manual}</code> <a
href="file name.xhtml#Top">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{,,title,file name}</code> <a href="file
name.xhtml#Top">(file name)title</a>
-<code class="code">@ref{,,title,,manual}</code> ‘title’ in <cite
class="cite">manual</cite>
-<code class="code">@ref{,,title, file name, manual}</code> <a href="file
name.xhtml#Top">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{,,,file name,manual}</code> <cite class="cite"><a
href="file name.xhtml#Top">manual</a></cite>
-</p>
-<p><code class="code">@inforef{,cross ref name }</code> See ‘cross ref
name’
-<code class="code">@inforef{,,file name}</code> See <a href="file
name.xhtml#Top">(file name)</a>
-<code class="code">@inforef{,cross ref name, file name}</code> See <a
href="file name.xhtml#Top">(file name)cross ref name</a>
-<code class="code">@inforef{}</code>
-</p>
-
-
-<p>Normal text
-</p>
-<p><
->
-"
-&
-’
-‘
-</p>
-<p>“simple-double–three—four—-”<br/>
-code: <code class="code">``simple-double--three---four----''</code> <br/>
-asis: “simple-double–three—four—-” <br/>
-strong: <strong
class="strong">“simple-double–three—four—-”</strong>
<br/>
-kbd: <kbd class="kbd">``simple-double--three---four----''</kbd> <br/>
-</p>
-<p>‘<!-- /@w -->‘simple-double-<!-- /@w
-->-three—four—-’<!-- /@w -->’<br/>
-</p>
-<a class="index-entry-id" id="index-_002d_002doption"></a>
-<a class="index-entry-id" id="index-_0060_0060"></a>
-<a class="index-entry-id" id="index-_0060_0060-2"></a>
-<a class="index-entry-id" id="index-_002d_002dfoption"></a>
-
-<p>@"u ü
-@"{U} Ü
-@~n ñ
-@^a â
-@’e é
-@=o ō
-@‘i ì
-@’{e} é
-@’{@dotless{i}} í
-@dotless{i} i
-@dotless{j} j
-@‘{@=E} Ḕ
-@l{} ł
-@,{@’C} Ḉ
-@,c ç
-@,c@"u çü <br/>
-</p>
-<p>@U{0075} u
-</p>
-<p>@* <br/>
-@ followed by a space
- 
-@ followed by a tab
- 
-@ followed by a new line
- <code class="code">@-</code>
-<code class="code">@:</code>
-<code class="code">@!</code> !
-<code class="code">@?</code> ?
-<code class="code">@.</code> .
-<code class="code">@@</code> @
-<code class="code">@}</code> }
-<code class="code">@{</code> {
-<code class="code">@/</code>
-</p>
-<p>foo vs. bar.
-colon :And something else.
-semi colon ;.
-And ? ?.
-Now ! !@
-but , ,
-</p>
-<p>@TeX TeX
-@LaTeX LaTeX
-@bullet •
-@copyright ©
-@dots …
-@enddots <small class="enddots">...</small>
-@equiv ≡
-@error error→
-@expansion ↦
-@minus −
-@point ★
-@print ⊣
-@result ⇒
-@today a sunny day
-</p>
-<p>@aa å
-@AA Å
-@ae æ
-@oe œ
-@AE Æ
-@OE Œ
-@o ø
-@O Ø
-@ss ß
-@l ł
-@L Ł
-@DH Ð
-@TH Þ
-@dh ð
-@th þ
-</p>
-<p>@exclamdown ¡
-@questiondown ¿
-@pounds £
-@registeredsymbol ®
-@ordf ª
-@ordm º
-@comma ,
-@quotedblleft “
-@quotedblright ”
-@quoteleft ‘
-@quoteright ’
-@quotedblbase „
-@quotesinglbase ‚
-@guillemetleft «
-@guillemetright »
-@guillemotleft «
-@guillemotright »
-@guilsinglleft ‹
-@guilsinglright ›
-</p>
-<p>@textdegree °
-@euro €
-@arrow →
-@leq ≤
-@geq ≥
-@tie a b
-</p>
-<p><code class="code">@acronym{--a,an accronym}</code> <acronym
class="acronym" title="an accronym">–a</acronym> (an accronym)
-<code class="code">@acronym{--a}</code> <acronym class="acronym" title="an
accronym">–a</acronym>
-<code class="code">@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr
class="abbr" title="Étude Autonome">É–. ,A.</abbr>
(Étude Autonome)
-<code class="code">@abbr{@'E--. @comma{}A.}</code> <abbr class="abbr"
title="Étude Autonome">É–. ,A.</abbr>
-<code class="code">@asis{--a}</code> –a
-<code class="code">@b{--a}</code> <b class="b">–a</b>
-<code class="code">@cite{--a}</code> <cite class="cite">–a</cite>
-<code class="code">@code{--a}</code> <code class="code">--a</code>
-<code class="code">@command{--a}</code> <code class="command">--a</code>
-<code class="code">@dfn{--a}</code> <em class="dfn">–a</em>
-<code class="code">@dmn{--a}</code> <span class="dmn">–a</span>
-<code class="code">@email{--a,--b}</code> <a class="email"
href="mailto:--a">–b</a>
-<code class="code">@email{,--b}</code> –b
-<code class="code">@email{--a}</code> <a class="email"
href="mailto:--a">--a</a>
-<code class="code">@emph{--a}</code> <em class="emph">–a</em>
-<code class="code">@env{--a}</code> <code class="env">--a</code>
-<code class="code">@file{--a}</code> <samp class="file">--a</samp>
-<code class="code">@i{--a}</code> <i class="i">–a</i>
-<code class="code">@kbd{--a}</code> <kbd class="kbd">--a</kbd>
-<code class="code">@key{--a}</code> <kbd class="key">--a</kbd>
-<code class="code">@math{--a {\frac{1}{2}} @minus{}}</code> <em
class="math">--a {\frac{1}{2}} −</em>
-<code class="code">@option{--a}</code> <samp class="option">--a</samp>
-<code class="code">@r{--a}</code> <span class="r">–a</span>
-<code class="code">@samp{--a}</code> ‘<samp
class="samp">--a</samp>’
-<code class="code">@sc{--a}</code> <small class="sc">–A</small>
-<code class="code">@strong{--a}</code> <strong class="strong">–a</strong>
-<code class="code">@t{--a}</code> <code class="t">--a</code>
-<code class="code">@sansserif{--a}</code> <span
class="sansserif">–a</span>
-<code class="code">@slanted{--a}</code> <i class="slanted">–a</i>
-<code class="code">@titlefont{--a}</code> </p><h1
class="titlefont">–a</h1>
-<p><code class="code">@indicateurl{--a}</code> ‘<code
class="indicateurl">--a</code>’
-<code class="code">@uref{--a,--b}</code> <a class="uref"
href="--a">–b</a>
-<code class="code">@uref{--a}</code> <a class="uref" href="--a">--a</a>
-<code class="code">@uref{,--b}</code> –b
-<code class="code">@uref{--a,--b,--c}</code> <a class="uref"
href="--a">–c</a>
-<code class="code">@uref{,--b,--c}</code> –c
-<code class="code">@uref{--a,,--c}</code> <a class="uref"
href="--a">–c</a>
-<code class="code">@uref{,,--c}</code> –c
-<code class="code">@url{--a,--b}</code> <a class="url" href="--a">–b</a>
-<code class="code">@url{--a,}</code> <a class="url" href="--a">--a</a>
-<code class="code">@url{,--b}</code> –b
-<code class="code">@var{--a}</code> <var class="var">–a</var>
-<code class="code">@verb{:--a:}</code> <code class="verb">--a</code>
-<code class="code">@verb{:a < & @ % " -- b:}</code> <code
class="verb">a < & @ % " -- b</code>
-<code class="code">@w{a a a a a a a a a a a a a a a a a a a a a a a a a a a a
a a a a a a a}</code>
a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a<!--
/@w -->
-<code class="code">@H{a}</code> a̋
-<code class="code">@H{--a}</code> –a̋
-<code class="code">@dotaccent{a}</code> ȧ
-<code class="code">@dotaccent{--a}</code> –ȧ
-<code class="code">@ringaccent{a}</code> å
-<code class="code">@ringaccent{--a}</code> –å
-<code class="code">@tieaccent{a}</code> a͡
-<code class="code">@tieaccent{--a}</code> –a͡
-<code class="code">@u{a}</code> ă
-<code class="code">@u{--a}</code> –ă
-<code class="code">@ubaraccent{a}</code> a̲
-<code class="code">@ubaraccent{--a}</code> –a̲
-<code class="code">@udotaccent{a}</code> ạ
-<code class="code">@udotaccent{--a}</code> –ạ
-<code class="code">@v{a}</code> ǎ
-<code class="code">@v{--a}</code> –ǎ
-<code class="code">@,{c}</code> ç
-<code class="code">@,{--c}</code> –ç
-<code class="code">@ogonek{a}</code> ą
-<code class="code">@ogonek{--a}</code> –ą
-<code class="code">a@sup{h}@sub{l}</code> a<sup class="sup">h</sup><sub
class="sub">l</sub>
-<code class="code">@footnote{in footnote}</code> <a class="footnote"
id="DOCF5" href="#FOOT5"><sup>7</sup></a>
-<code class="code">@footnote{in footnote2}</code> <a class="footnote"
id="DOCF6" href="#FOOT6"><sup>8</sup></a>
-</p>
-<p><code class="code">@sp 2</code><br/>
-</p><br/>
-<br/>
-<p><code class="code">@page</code><br/>
-</p>
-<p><code class="code">need 1002</code>
-</p>
-<p><code class="code">@clicksequence{click @click{} A}</code> click → A
-After clickstyle ⇒
-<code class="code">@clicksequence{click @click{} A}</code> click ⇒ A
-</p>
-
-<div class="displaymath"><em>disp--laymath
-f(x) = {1 \over \sigma \sqrt{2\pi}}e<sup class="sup">-{1 \over 2}\left({x-\mu
\over \sigma}\right)^2</sup>
-</em></div>
-<div class="displaymath"><em><strong
class="strong">``simple-double--three---four----''</strong> aa<!-- /@w -->
-`<!-- /@w -->`simple-double-<!-- /@w -->-three---four----'<!-- /@w -->'
-
-</em></div>
-<div class="displaymath"><em>i j
-ł ç
-a̲ ạ ą a<sup class="sup">h</sup><sub class="sub">l</sub>
-
-      ! @ } {
-a sunny day
-</em></div>
-<div class="displaymath"><em>→
-u
-• © … ... ≡
-error→ ↦ − ⊣ ⇒
-Å æ œ Æ Œ ø Ø ß ł Ł Ð
-Þ ð þ ¡ ¿ £
-ª º ,
-</em></div>
-<div class="displaymath"><em>“ ”
-‘ ’ „ ‚ «
-» « » ‹
-› € → ≤ ≥
-</em></div>
-<div class="displaymath"><em><b class="b">b</b> <i class="i">i</i> <span
class="r">r</span> <small class="sc">SC</small> <span
class="sansserif">sansserif</span> <i class="slanted">slanted</i>
-</em></div>
-<p><kbd class="kbd">default kbdinputstyle</kbd>
-</p><dl class="vtable">
-<dt id='index-vtable-i_002d_002dtem-default-kbdinputstyle'><kbd
class="kbd">vtable i--tem default kbdinputstyle</kbd></dt>
-</dl>
-<div class="example">
-<pre class="example-preformatted"><kbd class="kbd">in example default
kbdinputstyle</kbd>
-</pre><dl class="vtable">
-<dt id='index-vtable-i_002d_002dtem-in-example-default-kbdinputstyle'><tt><kbd
class="kbd">vtable i--tem in example default kbdinputstyle</kbd></tt></dt>
-</dl>
-</div>
-
-<p><code class="code as-code-kbd">code kbdinputstyle</code>
-</p><dl class="vtable">
-<dt id='index-vtable-i_002d_002dtem-code-kbdinputstyle'><code class="code
as-code-kbd">vtable i--tem code kbdinputstyle</code></dt>
-</dl>
-<div class="example">
-<pre class="example-preformatted"><code class="code as-code-kbd">in example
code kbdinputstyle</code>
-</pre><dl class="vtable">
-<dt id='index-vtable-i_002d_002dtem-in-example-code-kbdinputstyle'><tt><code
class="code as-code-kbd">vtable i--tem in example code
kbdinputstyle</code></tt></dt>
-</dl>
-</div>
-
-<p><kbd class="kbd">example kbdinputstyle</kbd>
-</p><dl class="vtable">
-<dt id='index-vtable-i_002d_002dtem-example-kbdinputstyle'><kbd
class="kbd">vtable i--tem example kbdinputstyle</kbd></dt>
-</dl>
-<div class="example">
-<pre class="example-preformatted"><code class="code as-code-kbd">in example
example kbdinputstyle</code>
-</pre><dl class="vtable">
-<dt
id='index-vtable-i_002d_002dtem-in-example-example-kbdinputstyle'><tt><code
class="code as-code-kbd">vtable i--tem in example example
kbdinputstyle</code></tt></dt>
-</dl>
-</div>
-
-<p><kbd class="kbd">distinct kbdinputstyle</kbd>
-</p><dl class="vtable">
-<dt id='index-vtable-i_002d_002dtem-distinct-kbdinputstyle'><kbd
class="kbd">vtable i--tem distinct kbdinputstyle</kbd></dt>
-</dl>
-<div class="example">
-<pre class="example-preformatted"><kbd class="kbd">in example distinct
kbdinputstyle</kbd>
-</pre><dl class="vtable">
-<dt
id='index-vtable-i_002d_002dtem-in-example-distinct-kbdinputstyle'><tt><kbd
class="kbd">vtable i--tem in example distinct kbdinputstyle</kbd></tt></dt>
-</dl>
-</div>
-
-<blockquote class="quotation">
-<p>A quot—ation
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">Note:</b> A Note
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">note:</b> A note
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">Caution:</b> Caution
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">Important:</b> Important
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">Tip:</b> a Tip
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">Warning:</b> a Warning.
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">something é TeX:</b> The something é TeX is here.
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">@ at the end of line  :</b> A @ at the end of the
@quotation line.
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">something, other thing:</b> something, other thing
-</p></blockquote>
-
-<blockquote class="quotation">
-<p><b class="b">Note, the note:</b> Note, the note
-</p></blockquote>
-
-<blockquote class="quotation">
-</blockquote>
-
-<blockquote class="quotation">
-</blockquote>
-
-<blockquote class="quotation">
-</blockquote>
-
-<blockquote class="quotation">
-</blockquote>
-
-<blockquote class="quotation">
-<p>aaa quotation
-</p></blockquote>
-<div class="center">— <em class="emph">quotation author</em>
-</div>
-<blockquote class="quotation">
-<p>indent in quotation
-</p></blockquote>
-
-<blockquote class="quotation">
-<p class="exdent">exdented quotation line and dash — in quotation
-</p></blockquote>
-
-<blockquote class="quotation">
-<p>Not exdented followed by exdented
-</p><p class="exdent">exdented quotation line
-</p></blockquote>
-
-<blockquote class="quotation">
-<p class="exdent">exdented quotation line
-</p><p>Followed by not exdented
-</p></blockquote>
-
-<blockquote class="quotation">
-<p>quotation1
-</p><p class="exdent">in exdented protected eol  
-</p><p>following
-</p><p class="exdent">in exdented a @* <br/> and following
-</p><p>after exdented
-</p></blockquote>
-
-<blockquote class="quotation smallquotation">
-<p>A small quot—ation
-</p></blockquote>
-
-<blockquote class="quotation smallquotation">
-<p><b class="b">Note:</b> A small Note
-</p></blockquote>
-
-<blockquote class="quotation smallquotation">
-<p><b class="b">something, other thing:</b> something, other thing
-</p></blockquote>
-
-<ul class="itemize mark-bullet">
-<li>i–temize
-</li></ul>
-
-<ul class="itemize" style="list-style-type: '+'">
-<li>i–tem +
-</li></ul>
-
-<ul class="itemize mark-bullet">
-<li>b–ullet
-</li></ul>
-
-<ul class="itemize mark-minus">
-<li>minu–s
-</li></ul>
-
-<ul class="itemize" style="list-style-type: 'after emph'">
-<li>e–mph item
-</li></ul>
-
-<ul class="itemize" style="list-style-type: '\2022 a\2013 n itemize line'">
-<li><a class="index-entry-id" id="index-index-entry-within-itemize"></a>
-i–tem 1
-</li><li>i–tem 2
-</li></ul>
-
-<ul class="itemize mark-none">
-<li>with w a–b
-</li><li>with w c–d
-</li></ul>
-
-<ul class="itemize" style="list-style-type: ' on a line'">
-<li>line w a–b
-</li><li>line with w c–d
-</li></ul>
-
-<ol class="enumerate">
-<li> e–numerate
-</li></ol>
-
-<ol class="enumerate" start="3">
-<li> first third
-</li><li> second third
-</li></ol>
-
-<ol class="enumerate" type="a" start="1">
-<li> e–numerate
-</li></ol>
-
-<ol class="enumerate" type="a" start="3">
-<li> first c
-</li><li> second c
-</li></ol>
-
-<table class="multitable">
-<thead><tr><th width="40%">mu–ltitable headitem</th><th
width="60%">another tab</th></tr></thead>
-<tbody><tr><td width="40%">mu–ltitable item</td><td
width="60%">multitable tab</td></tr>
-<tr><td width="40%">mu–ltitable item 2</td><td width="60%">multitable
tab 2
-<a class="index-entry-id"
id="index-index-entry-within-multitable"></a></td></tr>
-<tr><td width="40%">lone mu–ltitable item</td></tr>
-</tbody>
-</table>
-
-<table class="multitable">
-<tbody><tr><td>truc</td><td>bidule</td></tr>
-</tbody>
-</table>
-
-<div class="example">
-<pre class="example-preformatted">e--xample some
- text
-</pre></div>
-
-<div class="example user-first-arg">
-<pre class="example-preformatted">example one arg
-</pre></div>
-
-<div class="example user-first-arg user-second-arg">
-<pre class="example-preformatted">example two args
-</pre></div>
-
-<div class="example user-first-arg user-second-arg user-third-arg">
-<pre class="example-preformatted">example three args
-</pre></div>
-
-<div class="example user-first-arg user-second-arg user-third-arg
user-fourth-arg">
-<pre class="example-preformatted">example four args
-</pre></div>
-
-<div class="example user-first-arg user-second-arg user-third-arg
user-fourth-arg user-fifth-arg">
-<pre class="example-preformatted">example five args
-</pre></div>
-
-<div class="example user-something-é-TeX">
-<pre class="example-preformatted">The something é TeX is here.
-</pre></div>
-
-<div class="example user-@-at-the-end-of-line--">
-<pre class="example-preformatted">A @ at the end of the @example line.
-</pre></div>
-
-<div class="example">
-<pre class="example-preformatted">example with empty args
-</pre></div>
-
-<div class="example user-nonempty">
-<pre class="example-preformatted">example with empty and non empty args mix
-</pre></div>
-
-<div class="example">
-<pre class="example-preformatted">Exam---ple
-
-</pre><pre class="exdent">Other li---ne
-</pre><pre class="example-preformatted">not exdented
-</pre></div>
-
-<div class="example">
-<pre class="exdent">exdented and dash --- in example
-</pre><pre class="example-preformatted">Not exdented one
-</pre><pre class="exdent">exdented two
-</pre><pre class="example-preformatted">Not exdented two
-</pre></div>
-
-<div class="example">
-<pre class="example-preformatted">Example Hoho.
-</pre><div class="example">
-<pre class="example-preformatted">Nested Other line
-</pre><pre class="exdent">exdented nested other line
-</pre></div>
-</div>
-
-<div class="example smallexample">
-<pre class="example-preformatted">s--mallexample
-</pre></div>
-
-<p><code class="code">@noindent</code> after smallexample.
-</p><div class="example smallexample">
-<pre class="example-preformatted">$ wget
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.guess?rev=HEAD&content-type=text/plain'
-$ wget
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD&content-type=text/plain'
-</pre></div>
-<p>Less recent versions are also present.
-</p>
-<div class="display">
-<pre class="display-preformatted">d–isplay
-</pre></div>
-
-<div class="display smalldisplay">
-<pre class="display-preformatted">s–malldisplay
-</pre></div>
-
-<div class="example lisp">
-<pre class="lisp-preformatted">l--isp
-</pre></div>
-
-<div class="example smalllisp lisp">
-<pre class="lisp-preformatted">s--malllisp
-</pre></div>
-
-<div class="format">
-<pre class="format-preformatted">f–ormat
-</pre></div>
-
-<div class="format smallformat">
-<pre class="format-preformatted">s–mallformat
-</pre></div>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-d_002d_002deffn_005fname"><span
class="category-def">c–ategory: </span><code
class="def-name">d--effn_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><p>d–effn
-</p></dd></dl>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-de_002d_002dffn_005fname"><span
class="category-def">cate–gory: </span><code
class="def-name">de--ffn_name</code> <var
class="def-meta-var-arguments">ar–guments more args <br/> even more
so</var></dt>
-<dd><p>def–fn
-</p></dd></dl>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-i"><span class="category-def">fset: </span><code
class="def-name"><var class="var">i</var></code> <var
class="def-meta-var-arguments">a g</var></dt>
-<dd><a class="index-entry-id" id="index-index-entry-within-deffn"></a>
-</dd><dt class="deffnx def-cmd-deffn" id="index-truc"><span
class="category-def">cmde: </span><code class="def-name">truc</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-log-trap"><span
class="category-def">Command: </span><code class="def-name">log trap</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-log-trap1"><span
class="category-def">Command: </span><code class="def-name">log
trap1</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-log-trap2"><span
class="category-def">Command: </span><code class="def-name">log
trap2</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-id-ule"><span
class="category-def">cmde: </span><code class="def-name"><b class="b">id
ule</b></code> <var class="def-meta-var-arguments">truc</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-id-i-ule"><span
class="category-def">cmde2: </span><code class="def-name"><b class="b">id
‘<samp class="samp">i</samp>’ ule</b></code> <var
class="def-meta-var-arguments">truc</var></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">: </span><code
class="def-name"></code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-machin"><span
class="category-def">: </span><code class="def-name">machin</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-bidule-machin"><span
class="category-def">: </span><code class="def-name">bidule machin</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-machin-1"><span
class="category-def">truc: </span><code class="def-name">machin</code></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">truc: </span><code
class="def-name"></code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-followed"><span
class="category-def">truc: </span><code class="def-name">followed</code> <var
class="def-meta-var-arguments">by a comment</var></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">: </span><code
class="def-name"></code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-a-1"><span
class="category-def">truc: </span><code class="def-name">a</code> <var
class="def-meta-var-arguments">b c d e <b class="b">f g</b> h i</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-deffnx"><span
class="category-def">truc: </span><code class="def-name">deffnx</code> <var
class="def-meta-var-arguments">before end deffn</var></dt>
-</dl>
-
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-deffn"><span class="category-def">empty:
</span><code class="def-name">deffn</code></dt>
-</dl>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-deffn-1"><span class="category-def">empty:
</span><code class="def-name">deffn</code> <var
class="def-meta-var-arguments">with deffnx</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-deffnx-1"><span
class="category-def">empty: </span><code class="def-name">deffnx</code></dt>
-</dl>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-i-1"><span class="category-def">fset: </span><code
class="def-name"><var class="var">i</var></code> <var
class="def-meta-var-arguments">a g</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-truc-1"><span
class="category-def">cmde: </span><code class="def-name">truc</code></dt>
-<dd><p>text in def item for second def item
-</p></dd></dl>
-
-
-<dl class="first-defvr">
-<dt class="defvr" id="index-d_002d_002defvr_005fname"><span
class="category-def">c–ategory: </span><code
class="def-name">d--efvr_name</code></dt>
-<dd><p>d–efvr
-</p></dd></dl>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-n_002d_002dame"><span
class="category-def">c–ategory: </span><code
class="def-name">n--ame</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><p>d–effn
-</p></dd></dl>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-n_002d_002dame-1"><span
class="category-def">c–ategory: </span><code
class="def-name">n--ame</code></dt>
-<dd><p>d–effn no arg
-</p></dd></dl>
-
-<dl class="first-deftypefn">
-<dt class="deftypefn" id="index-d_002d_002deftypefn_005fname"><span
class="category-def">c–ategory: </span><code
class="def-type">t--ype</code> <code class="def-name">d--eftypefn_name</code>
<code class="def-code-arguments">a--rguments...</code></dt>
-<dd><p>d–eftypefn
-</p></dd></dl>
-
-<dl class="first-deftypefn">
-<dt class="deftypefn" id="index-d_002d_002deftypefn_005fname-1"><span
class="category-def">c–ategory: </span><code
class="def-type">t--ype</code> <code
class="def-name">d--eftypefn_name</code></dt>
-<dd><p>d–eftypefn no arg
-</p></dd></dl>
-
-<dl class="first-deftypeop">
-<dt class="deftypeop"
id="index-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><span
class="category-def">c–ategory on <code class="code">c--lass</code>:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypeop_name</code> <code
class="def-code-arguments">a--rguments...</code></dt>
-<dd><p>d–eftypeop
-</p></dd></dl>
-
-<dl class="first-deftypeop">
-<dt class="deftypeop"
id="index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><span
class="category-def">c–ategory on <code class="code">c--lass</code>:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypeop_name</code></dt>
-<dd><p>d–eftypeop no arg
-</p></dd></dl>
-
-<dl class="first-deftypevr">
-<dt class="deftypevr" id="index-d_002d_002deftypevr_005fname"><span
class="category-def">c–ategory: </span><code
class="def-type">t--ype</code> <code
class="def-name">d--eftypevr_name</code></dt>
-<dd><p>d–eftypevr
-</p></dd></dl>
-
-<dl class="first-defcv">
-<dt class="defcv" id="index-d_002d_002defcv_005fname"><span
class="category-def">c–ategory of <code class="code">c--lass</code>:
</span><code class="def-name">d--efcv_name</code></dt>
-<dd><p>d–efcv
-</p></dd></dl>
-
-<dl class="first-defcv">
-<dt class="defcv" id="index-d_002d_002defcv_005fname-1"><span
class="category-def">c–ategory of <code class="code">c--lass</code>:
</span><code class="def-name">d--efcv_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><p>d–efcv with arguments
-</p></dd></dl>
-
-<dl class="first-deftypecv">
-<dt class="deftypecv"
id="index-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><span
class="category-def">c–ategory of <code class="code">c--lass</code>:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypecv_name</code></dt>
-<dd><p>d–eftypecv
-</p></dd></dl>
-
-<dl class="first-deftypecv">
-<dt class="deftypecv"
id="index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><span
class="category-def">c–ategory of <code class="code">c--lass</code>:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypecv_name</code> <code
class="def-code-arguments">a--rguments...</code></dt>
-<dd><p>d–eftypecv with arguments
-</p></dd></dl>
-
-<dl class="first-defop">
-<dt class="defop" id="index-d_002d_002defop_005fname-on-c_002d_002dlass"><span
class="category-def">c–ategory on <code class="code">c--lass</code>:
</span><code class="def-name">d--efop_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><p>d–efop
-</p></dd></dl>
-
-<dl class="first-defop">
-<dt class="defop"
id="index-d_002d_002defop_005fname-on-c_002d_002dlass-1"><span
class="category-def">c–ategory on <code class="code">c--lass</code>:
</span><code class="def-name">d--efop_name</code></dt>
-<dd><p>d–efop no arg
-</p></dd></dl>
-
-<dl class="first-deftp">
-<dt class="deftp" id="index-d_002d_002deftp_005fname"><span
class="category-def">c–ategory: </span><code
class="def-name">d--eftp_name</code> <var
class="def-meta-var-arguments">a–ttributes...</var></dt>
-<dd><p>d–eftp
-</p></dd></dl>
-
-<dl class="first-deffn first-defun-alias-first-deffn">
-<dt class="deffn defun-alias-deffn" id="index-d_002d_002defun_005fname"><span
class="category-def">Function: </span><code
class="def-name">d--efun_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><p>d–efun
-</p></dd></dl>
-
-<dl class="first-deffn first-defmac-alias-first-deffn">
-<dt class="deffn defmac-alias-deffn"
id="index-d_002d_002defmac_005fname"><span class="category-def">Macro:
</span><code class="def-name">d--efmac_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><p>d–efmac
-</p></dd></dl>
-
-<dl class="first-deffn first-defspec-alias-first-deffn">
-<dt class="deffn defspec-alias-deffn"
id="index-d_002d_002defspec_005fname"><span class="category-def">Special Form:
</span><code class="def-name">d--efspec_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><p>d–efspec
-</p></dd></dl>
-
-<dl class="first-defvr first-defvar-alias-first-defvr">
-<dt class="defvr defvar-alias-defvr"
id="index-d_002d_002defvar_005fname"><span class="category-def">Variable:
</span><code class="def-name">d--efvar_name</code></dt>
-<dd><p>d–efvar
-</p></dd></dl>
-
-<dl class="first-defvr first-defvar-alias-first-defvr">
-<dt class="defvr defvar-alias-defvr"
id="index-d_002d_002defvar_005fname-1"><span class="category-def">Variable:
</span><code class="def-name">d--efvar_name</code> <var
class="def-meta-var-arguments">arg–var arg–var1</var></dt>
-<dd><p>d–efvar with args
-</p></dd></dl>
-
-<dl class="first-defvr first-defopt-alias-first-defvr">
-<dt class="defvr defopt-alias-defvr"
id="index-d_002d_002defopt_005fname"><span class="category-def">User Option:
</span><code class="def-name">d--efopt_name</code></dt>
-<dd><p>d–efopt
-</p></dd></dl>
-
-<dl class="first-deftypefn first-deftypefun-alias-first-deftypefn">
-<dt class="deftypefn deftypefun-alias-deftypefn"
id="index-d_002d_002deftypefun_005fname"><span class="category-def">Function:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypefun_name</code> <code
class="def-code-arguments">a--rguments...</code></dt>
-<dd><p>d–eftypefun
-</p></dd></dl>
-
-<dl class="first-deftypevr first-deftypevar-alias-first-deftypevr">
-<dt class="deftypevr deftypevar-alias-deftypevr"
id="index-d_002d_002deftypevar_005fname"><span class="category-def">Variable:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypevar_name</code></dt>
-<dd><p>d–eftypevar
-</p></dd></dl>
-
-<dl class="first-defcv first-defivar-alias-first-defcv">
-<dt class="defcv defivar-alias-defcv"
id="index-d_002d_002defivar_005fname-of-c_002d_002dlass"><span
class="category-def">Instance Variable of <code class="code">c--lass</code>:
</span><code class="def-name">d--efivar_name</code></dt>
-<dd><p>d–efivar
-</p></dd></dl>
-
-<dl class="first-deftypecv first-deftypeivar-alias-first-deftypecv">
-<dt class="deftypecv deftypeivar-alias-deftypecv"
id="index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><span
class="category-def">Instance Variable of <code class="code">c--lass</code>:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypeivar_name</code></dt>
-<dd><p>d–eftypeivar
-</p></dd></dl>
-
-<dl class="first-defop first-defmethod-alias-first-defop">
-<dt class="defop defmethod-alias-defop"
id="index-d_002d_002defmethod_005fname-on-c_002d_002dlass"><span
class="category-def">Method on <code class="code">c--lass</code>: </span><code
class="def-name">d--efmethod_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><p>d–efmethod
-</p></dd></dl>
-
-<dl class="first-deftypeop first-deftypemethod-alias-first-deftypeop">
-<dt class="deftypeop deftypemethod-alias-deftypeop"
id="index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><span
class="category-def">Method on <code class="code">c--lass</code>: </span><code
class="def-type">t--ype</code> <code
class="def-name">d--eftypemethod_name</code> <code
class="def-code-arguments">a--rguments...</code></dt>
-<dd><p>d–eftypemethod
-</p></dd></dl>
-
-
-<dl class="first-deftypefn first-deftypefun-alias-first-deftypefn">
-<dt class="deftypefn deftypefun-alias-deftypefn" id="index-name2"><span
class="category-def">Function:<br/> </span><code
class="def-type">data-type2</code><br> <code class="def-name">name2</code>
<code class="def-code-arguments">arguments2...</code></dt>
-<dd><p>aaa2
-</p></dd></dl>
-
-<dl class="first-deftypefn">
-<dt class="deftypefn" id="index-d_002d_002deftypefn_005fname2"><span
class="category-def">c–ategory2:<br/> </span><code
class="def-type">t--ype2</code><br> <code
class="def-name">d--eftypefn_name2</code></dt>
-<dd><p>d–eftypefn no arg2
-</p></dd></dl>
-
-<dl class="first-deftypeop">
-<dt class="deftypeop"
id="index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><span
class="category-def">c–ategory2 on <code
class="code">c--lass2</code>:<br/> </span><code
class="def-type">t--ype2</code><br> <code
class="def-name">d--eftypeop_name2</code> <code
class="def-code-arguments">a--rguments2...</code></dt>
-<dd><p>d–eftypeop2
-</p></dd></dl>
-
-<dl class="first-deftypeop">
-<dt class="deftypeop"
id="index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><span
class="category-def">c–ategory2 on <code
class="code">c--lass2</code>:<br/> </span><code
class="def-type">t--ype2</code><br> <code
class="def-name">d--eftypeop_name2</code></dt>
-<dd><p>d–eftypeop no arg2
-</p></dd></dl>
-
-<dl class="first-deftypecv">
-<dt class="deftypecv"
id="index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><span
class="category-def">c–ategory2 of <code class="code">c--lass2</code>:
</span><code class="def-type">t--ype2</code> <code
class="def-name">d--eftypecv_name2</code></dt>
-<dd><p>d–eftypecv2
-</p></dd></dl>
-
-<dl class="first-deftypecv">
-<dt class="deftypecv"
id="index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><span
class="category-def">c–ategory2 of <code class="code">c--lass2</code>:
</span><code class="def-type">t--ype2</code> <code
class="def-name">d--eftypecv_name2</code> <code
class="def-code-arguments">a--rguments2...</code></dt>
-<dd><p>d–eftypecv with arguments2
-</p></dd></dl>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-arg2"><span class="category-def">fun2:
</span><code class="def-name">arg2</code></dt>
-<dd><p>fff2
-</p></dd></dl>
-
-
-<p><code class="code">@xref{c---hapter@@, cross r---ef name@@, t---itle@@,
file n---ame@@, ma---nual@@}</code> See <a href="file
n---ame@.xhtml#c_002d_002d_002dhapter_0040">t—itle@</a> in <cite
class="cite">ma—nual@</cite>.
-<code class="code">@ref{chapter, cross ref name, title, file name,
manual}</code> <a href="file name.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@pxref{chapter, cross ref name, title, file name,
manual}</code> see <a href="file name.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@inforef{chapter, cross ref name, file name}</code> See <a
href="file name.xhtml#chapter">(file name)cross ref name</a>
-</p>
-<p><code class="code">@ref{chapter}</code> <a class="ref"
href="#chapter">chapter</a>
-<code class="code">@xref{chapter}</code> See <a class="xref"
href="#chapter">chapter</a>.
-<code class="code">@pxref{chapter}</code> see <a class="pxref"
href="#chapter">chapter</a>
-<code class="code">@ref{s--ect@comma{}ion}</code> <a class="ref"
href="#s_002d_002dect_002cion">A section</a>
-</p>
-<p><code class="code">@ref{s--ect@comma{}ion, a @comma{} in cross
-ref, a comma@comma{} in title, a comma@comma{} in file, a @comma{} in manual
name }</code>
-<a href="a comma, in file.xhtml#s_002d_002dect_002cion">a comma, in
title</a> in <cite class="cite">a , in manual name</cite>
-</p>
-<p><code class="code">@ref{chapter,cross ref name}</code> <a class="ref"
href="#chapter">cross ref name</a>
-<code class="code">@ref{chapter,,title}</code> <a class="ref"
href="#chapter">title</a>
-<code class="code">@ref{chapter,,,file name}</code> <a href="file
name.xhtml#chapter">(file name)chapter</a>
-<code class="code">@ref{chapter,,,,manual}</code> ‘chapter’ in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title,}</code> <a class="ref"
href="#chapter">title</a>
-<code class="code">@ref{chapter,cross ref name,,file name}</code> <a
href="file name.xhtml#chapter">(file name)cross ref name</a>
-<code class="code">@ref{chapter,cross ref name,,,manual}</code> ‘cross
ref name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title,file name}</code> <a
href="file name.xhtml#chapter">(file name)title</a>
-<code class="code">@ref{chapter,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title, file name,
manual}</code> <a href="file name.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{chapter,,title,file name}</code> <a href="file
name.xhtml#chapter">(file name)title</a>
-<code class="code">@ref{chapter,,title,,manual}</code> ‘title’ in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="file name.xhtml#chapter">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,,file name,manual}</code> <a href="file
name.xhtml#chapter">chapter</a> in <cite class="cite">manual</cite>
-</p>
-
-<p><code class="code">@ref{(pman)anode,cross ref name}</code> <a
href="pman.xhtml#anode">(pman)cross ref name</a>
-<code class="code">@ref{(pman)anode,,title}</code> <a
href="pman.xhtml#anode">(pman)title</a>
-<code class="code">@ref{(pman)anode,,,file name}</code> <a href="file
name.xhtml#anode">(file name)anode</a>
-<code class="code">@ref{(pman)anode,,,,manual}</code> <a
href="pman.xhtml#anode">anode</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title,}</code> <a
href="pman.xhtml#anode">(pman)title</a>
-<code class="code">@ref{(pman)anode,cross ref name,,file name}</code> <a
href="file name.xhtml#anode">(file name)cross ref name</a>
-<code class="code">@ref{(pman)anode,cross ref name,,,manual}</code> <a
href="pman.xhtml#anode">cross ref name</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title,file name}</code> <a
href="file name.xhtml#anode">(file name)title</a>
-<code class="code">@ref{(pman)anode,cross ref name,title,,manual}</code> <a
href="pman.xhtml#anode">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title, file name,
manual}</code> <a href="file name.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,title,file name}</code> <a href="file
name.xhtml#anode">(file name)title</a>
-<code class="code">@ref{(pman)anode,,title,,manual}</code> <a
href="pman.xhtml#anode">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,title, file name, manual}</code> <a
href="file name.xhtml#anode">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,,file name,manual}</code> <a href="file
name.xhtml#anode">anode</a> in <cite class="cite">manual</cite>
-</p>
-
-<p><code class="code">@inforef{chapter, cross ref name, file name}</code> See
<a href="file name.xhtml#chapter">(file name)cross ref name</a>
-<code class="code">@inforef{chapter}</code> See ‘chapter’
-<code class="code">@inforef{chapter, cross ref name}</code> See ‘cross
ref name’
-<code class="code">@inforef{chapter,,file name}</code> See <a href="file
name.xhtml#chapter">(file name)chapter</a>
-<code class="code">@inforef{node, cross ref name, file name}</code> See <a
href="file name.xhtml#node">(file name)cross ref name</a>
-<code class="code">@inforef{node}</code> See ‘node’
-<code class="code">@inforef{node, cross ref name}</code> See ‘cross ref
name’
-<code class="code">@inforef{node,,file name}</code> See <a href="file
name.xhtml#node">(file name)node</a>
-<code class="code">@inforef{chapter, cross ref name, file name, spurious
arg}</code> See <a href="file name, spurious arg.xhtml#chapter">(file name,
spurious arg)cross ref name</a>
-</p>
-<p><code class="code">@inforef{s--ect@comma{}ion, a @comma{} in cross
-ref, a comma@comma{} in file}</code>
-See <a href="a comma, in file.xhtml#s_002d_002dect_002cion">(a comma, in
file)a , in cross
-ref</a>
-</p>
-<p>‘<samp class="samp"><a class="ref"
href="#chapter">chapter</a></samp>’.
-</p>
-<p><a href="index3.html (uref3).xhtml#ext">title with uref2 <a class="uref"
href="href://http/myhost.com/index2.html">uref2</a></a> in <cite
class="cite">printed manual with uref4 <a class="uref"
href="href://http/myhost.com/index4.html">uref4</a></cite>
-<a class="ref" href="#chapter">title with uref2 <a class="uref"
href="href://http/myhost.com/index2.html">uref2</a></a>
-</p>
-<dl class="table">
-<dt><strong class="strong">a–strong</strong></dt>
-<dd><p>l–ine
-</p></dd>
-</dl>
-
-<dl class="vtable">
-<dt id='index-a_002d_002dasis'>a–asis</dt>
-<dt id='index-b-4'>b</dt>
-<dd><p>l–ine
-</p></dd>
-</dl>
-
-<dl class="ftable">
-<dt id='index-a-2'><em class="emph">a</em></dt>
-<dd><a class="index-entry-id"
id="index-index-entry-between-item-and-itemx"></a>
-</dd>
-<dt id='index-b'><em class="emph">b</em></dt>
-<dd><p>l–ine
-</p></dd>
-</dl>
-
-<dl class="table">
-<dd><p>Title
-</p></dd>
-<dt><code class="code">a--code</code></dt>
-<dd><p>Value–table code
-</p></dd>
-</dl>
-
-<dl class="table">
-<dd><p>Title
-</p></dd>
-<dt>‘<samp class="samp">a--samp</samp>’</dt>
-<dt>‘<samp class="samp">a2--samp</samp>’</dt>
-<dd><p>Value–table samp
-</p></dd>
-</dl>
-
-<table class="cartouche" border="1"><tr><td>
-<p>c–artouche
-</p></td></tr></table>
-
-<div class="flushleft"><p class="flushleft-paragraph">f–lushleft
-more text
-</p></div>
-<div class="flushright"><p class="flushright-paragraph">f–lushright
-more text
-</p></div>
-<div class="center">ce–ntered line
-</div>
-<div class="raggedright"><p class="raggedright-paragraph">r–raggedright
-more text
-</p></div>
-<pre class="verbatim">\input texinfo @c -*-texinfo-*-
-
-@c this file is used in tests in @verbatiminclude but not converted
-
-@setfilename simplest.info
-
-@node Top
-
-This is a very simple texi manual @ <>.
-
-@bye
-</pre>
-<pre class="verbatim">in verbatim ''
-</pre>
-
-html ''
-
-
-
-
-<h1 class="majorheading" id="majorheading-2">majorheading</h1>
-
-<h1 class="chapheading" id="chapheading-2">chapheading</h1>
-
-<h2 class="heading" id="heading-2">heading</h2>
-
-<h3 class="subheading" id="subheading-2">subheading</h3>
-
-<h4 class="subsubheading" id="subsubheading-2">subsubheading</h4>
-
-
-<p><code class="code">@acronym{--a,an accronym @comma{} @enddots{}}</code>
<acronym class="acronym" title="an accronym , ...">–a</acronym> (an
accronym , <small class="enddots">...</small>)
-<code class="code">@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome}
}</code> <abbr class="abbr" title="Étude–,
Autonome">É–. ,A.</abbr> (Étude–, <b
class="b">Autonome</b>)
-<code class="code">@abbr{@'E--. @comma{}A.}</code> <abbr class="abbr"
title="Étude–, Autonome">É–. ,A.</abbr>
-</p>
-<p><code class="code">@math{--a@minus{} {\frac{1}{2}}}</code> <em
class="math">--a− {\frac{1}{2}}</em>
-</p>
-
-
-
-<p>Somehow invalid use of @,:<br/>
-@, ̧
-<br/>
-@,@"u ̧ü
-</p>
-<p>Invalid use of @’:<br/>
-@’ ́
-<br/>
-@’@"u ́ü
-</p>
-<p><code class="code">@|</code>
-</p>
-<p>@dotless{truc} truc
-@dotless{ij} ij
-<code class="code">@dotless{--a}</code> –a
-<code class="code">@dotless{a}</code> a
-</p>
-<p>@U, without braces @U{}, with empty arg
-@U{z}, with non-hex arg &#xz;
-@U{abc}, with <4 hex digits ઼
-@U{FFFFFFFFFFFFFF}, value much too large �
-@U{110000}, value just beyond Unicode �
-</p>
-<p>@TeX, but without brace TeX<code class="code">@#</code> #
-</p>
-<p><code class="code">@w{--a}</code> –a<!-- /@w -->
-</p>
-<p><code class="code">@image{,1--xt}</code>
-<code class="code">@image{,,2--xt}</code>
-<code class="code">@image{,,,3--xt}</code>
-</p>
-<p><code class="code">@image{f-ile,aze,,a--lt}</code> <img class="image"
src="../images/34-f-ilejpg" alt="a–lt"/>
-<code class="code">@image{f-ile,,,alt@verb{:jk _" %}}</code> <img
class="image" src="../images/35-f-ilejpg" alt="altjk _" %@"/>
-</p>
-<p><code class="code">@image{f--ile}</code> <img class="image"
src="../images/36-f--ile.png" alt="f--ile"/>
-<code class="code">@image{f--ile,,,alt}</code> <img class="image"
src="../images/37-f--ile.png" alt="alt"/>
-<code class="code">@image{f--ile,,,,.e-d-xt}</code> <img class="image"
src="../images/38-f--ile.e--xt" alt="f--ile"/>
-<code class="code">@image{f--ile,l--i}</code> <img class="image"
src="../images/39-f--ile.png" alt="f--ile"/>
-<code class="code">@image{f--ile,,l--e}</code> <img class="image"
src="../images/40-f--ile.png" alt="f--ile"/>
-<code class="code">@image{f--ile,aze,az,alt,.e--xt}</code> <img class="image"
src="../images/41-f--ile.e--xt" alt="alt"/>
-<code class="code">@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext}
e--xt@}</code> <img class="image"
src="../images/42-f--ile_0040..file-ext-e--xt_007d" alt="alt"/>
-</p>
-<p><code class="code">@image{f--ile,aze,az,@verb{:jk _" %@:} @b{in b
"},e--xt}</code> <img class="image" src="../images/43-f--ile.e--xt"
alt="jk _" %@ in b ""/>
-<code class="code">@image{file@verb{:jk _" %@:},,,alt@verb{:jk _"
%@:}}</code> <img class="image" src="../images/44-filejk-__0022-_0025_0040jpg"
alt="altjk _" %@"/>
-</p>
-
-
-<div class="displaymath"><em>ü Ü ñ â é ō ì
é Ḕ
-Ḉ Ḉ a̋ ȧ å a͡
-ă ǎ
- ? .
-</em></div>
-<div class="displaymath"><em>TeX LaTeX ★ å ® °
-</em></div>
-<div class="displaymath"><em><code class="t">t</code>
-</em></div>
-<ul class="itemize">
-<li>e–mph item
-</li></ul>
-
-<ul class="itemize" style="list-style-type: ' after emph'">
-<li>e–mph item
-</li></ul>
-
-<ul class="itemize" style="list-style-type: '\2022 a\2013 n itemize line'">
-<li>i–tem 1
-</li><li>i–tem 2
-</li></ul>
-
-<ul class="itemize mark-none">
-<li>without brace w a–b
-</li><li>without brace w c–d
-</li></ul>
-
-<dl class="table">
-<dt>a</dt>
-<dd><p>l–ine
-</p></dd>
-</dl>
-
-<dl class="table">
-<dt>a–missing style formatting</dt>
-<dd><p>l–ine
-</p></dd>
-</dl>
-
-<dl class="ftable">
-<dt id='index-a-3'>a</dt>
-<dd><a class="index-entry-id"
id="index-index-entry-between-item-and-itemx-1"></a>
-</dd>
-<dt id='index-b-1'>b</dt>
-<dd><p>l–ine
-</p></dd>
-</dl>
-
-<dl class="first-deffn">
-<dt class="deffn"><span class="category-def">fun: </span></dt>
-<dt class="deffnx def-cmd-deffn" id="index-machin-2"><span
class="category-def">truc: </span><code class="def-name">machin</code> <var
class="def-meta-var-arguments">bidule chose and</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-machin-3"><span
class="category-def">truc: </span><code class="def-name">machin</code> <var
class="def-meta-var-arguments">bidule chose and after</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-machin-4"><span
class="category-def">truc: </span><code class="def-name">machin</code> <var
class="def-meta-var-arguments">bidule chose and </var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-machin-5"><span
class="category-def">truc: </span><code class="def-name">machin</code> <var
class="def-meta-var-arguments">bidule chose and and after</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-followed-1"><span
class="category-def">truc: </span><code class="def-name">followed</code> <var
class="def-meta-var-arguments">by a comment</var></dt>
-<dd><p>Various deff lines
-</p></dd><dt class="deffnx def-cmd-deffn" id="index-after"><span
class="category-def">truc: </span><code class="def-name">after</code> <var
class="def-meta-var-arguments">a deff item</var></dt>
-</dl>
-
-<dl class="first-deffn">
-<dt class="deffn" id="index-invalid"><span class="category-def">fsetinv:
</span><code class="def-name"><var class="var">invalid</var></code> <var
class="def-meta-var-arguments">a g</var></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def"><b class="b">id
‘<samp class="samp">i</samp>’ ule</b>: </span></dt>
-<dt class="deffnx def-cmd-deffn"></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">aaa: </span></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">: </span></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">truc: </span></dt>
-</dl>
-
-<div class="group"><p>g–roupe
-</p></div>
-<p><code class="code">@ref{node}</code> ‘node’
-</p>
-<p><code class="code">@ref{,cross ref name}</code> ‘cross ref name’
-<code class="code">@ref{,,title}</code> ‘title’
-<code class="code">@ref{,,,file name}</code> <a href="file
name.xhtml#Top">(file name)</a>
-<code class="code">@ref{,,,,manual}</code> <cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name}</code> ‘cross ref
name’
-<code class="code">@ref{node,,title}</code> ‘title’
-<code class="code">@ref{node,,,file name}</code> <a href="file
name.xhtml#node">(file name)node</a>
-<code class="code">@ref{node,,,,manual}</code> ‘node’ in <cite
class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title,}</code> ‘title’
-<code class="code">@ref{node,cross ref name,,file name}</code> <a href="file
name.xhtml#node">(file name)cross ref name</a>
-<code class="code">@ref{node,cross ref name,,,manual}</code> ‘cross ref
name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title,file name}</code> <a
href="file name.xhtml#node">(file name)title</a>
-<code class="code">@ref{node,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title, file name, manual}</code>
<a href="file name.xhtml#node">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{node,,title,file name}</code> <a href="file
name.xhtml#node">(file name)title</a>
-<code class="code">@ref{node,,title,,manual}</code> ‘title’ in
<cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="file name.xhtml#chapter">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{node,,title, file name, manual}</code> <a href="file
name.xhtml#node">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{node,,,file name,manual}</code> <a href="file
name.xhtml#node">node</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title,}</code> ‘title’
-<code class="code">@ref{,cross ref name,,file name}</code> <a href="file
name.xhtml#Top">(file name)cross ref name</a>
-<code class="code">@ref{,cross ref name,,,manual}</code> ‘cross ref
name’ in <cite class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title,file name}</code> <a href="file
name.xhtml#Top">(file name)title</a>
-<code class="code">@ref{,cross ref name,title,,manual}</code>
‘title’ in <cite class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title, file name, manual}</code> <a
href="file name.xhtml#Top">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{,,title,file name}</code> <a href="file
name.xhtml#Top">(file name)title</a>
-<code class="code">@ref{,,title,,manual}</code> ‘title’ in <cite
class="cite">manual</cite>
-<code class="code">@ref{,,title, file name, manual}</code> <a href="file
name.xhtml#Top">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{,,,file name,manual}</code> <cite class="cite"><a
href="file name.xhtml#Top">manual</a></cite>
-</p>
-<p><code class="code">@inforef{,cross ref name }</code> See ‘cross ref
name’
-<code class="code">@inforef{,,file name}</code> See <a href="file
name.xhtml#Top">(file name)</a>
-<code class="code">@inforef{,cross ref name, file name}</code> See <a
href="file name.xhtml#Top">(file name)cross ref name</a>
-<code class="code">@inforef{}</code>
-</p>
-
-
-<p>In example.
-</p><div class="example">
-<pre class="example-preformatted">
-
-<
->
-"
-&
-'
-`
-
-``simple-double--three---four----''
-
-code: <code class="code">``simple-double--three---four----''</code>
-
-asis: ``simple-double--three---four----''
-
-strong: <strong class="strong">``simple-double--three---four----''</strong>
-
-kbd: <kbd class="kbd">``simple-double--three---four----''</kbd>
-
-
-`<!-- /@w -->`simple-double-<!-- /@w -->-three---four----'<!-- /@w -->'
-
-
-<a class="index-entry-id" id="index-_002d_002doption-1"></a><a
class="index-entry-id" id="index-_0060_0060-1"></a><a class="index-entry-id"
id="index-_0060_0060-3"></a><a class="index-entry-id"
id="index-_002d_002dfoption-1"></a>
-@"u ü
-@"{U} Ü
-@~n ñ
-@^a â
-@'e é
-@=o ō
-@`i ì
-@'{e} é
-@'{@dotless{i}} í
-@dotless{i} i
-@dotless{j} j
-@`{@=E} Ḕ
-@l{} ł
-@,{@'C} Ḉ
-@,c ç
-@,c@"u çü
-
-
-@U{0075} u
-
-@*
-
-@ followed by a space
- 
-@ followed by a tab
- 
-@ followed by a new line
- <code class="code">@-</code>
-<code class="code">@:</code>
-<code class="code">@!</code> !
-<code class="code">@?</code> ?
-<code class="code">@.</code> .
-<code class="code">@@</code> @
-<code class="code">@}</code> }
-<code class="code">@{</code> {
-<code class="code">@/</code>
-
-foo vs. bar.
-colon :And something else.
-semi colon ;.
-And ? ?.
-Now ! !@
-but , ,
-
-@TeX TeX
-@LaTeX LaTeX
-@bullet •
-@copyright ©
-@dots …
-@enddots ...
-@equiv ≡
-@error error→
-@expansion ↦
-@minus −
-@point ★
-@print ⊣
-@result ⇒
-@today a sunny day
-
-@aa å
-@AA Å
-@ae æ
-@oe œ
-@AE Æ
-@OE Œ
-@o ø
-@O Ø
-@ss ß
-@l ł
-@L Ł
-@DH Ð
-@TH Þ
-@dh ð
-@th þ
-
-@exclamdown ¡
-@questiondown ¿
-@pounds £
-@registeredsymbol ®
-@ordf ª
-@ordm º
-@comma ,
-@quotedblleft “
-@quotedblright ”
-@quoteleft ‘
-@quoteright ’
-@quotedblbase „
-@quotesinglbase ‚
-@guillemetleft «
-@guillemetright »
-@guillemotleft «
-@guillemotright »
-@guilsinglleft ‹
-@guilsinglright ›
-
-@textdegree °
-@euro €
-@arrow →
-@leq ≤
-@geq ≥
-@tie a b
-
-<code class="code">@acronym{--a,an accronym}</code> <acronym class="acronym"
title="an accronym">--a</acronym> (an accronym)
-<code class="code">@acronym{--a}</code> <acronym class="acronym" title="an
accronym">--a</acronym>
-<code class="code">@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr
class="abbr" title="Étude Autonome">É--. ,A.</abbr> (Étude
Autonome)
-<code class="code">@abbr{@'E--. @comma{}A.}</code> <abbr class="abbr"
title="Étude Autonome">É--. ,A.</abbr>
-<code class="code">@asis{--a}</code> --a
-<code class="code">@b{--a}</code> <b class="b">–a</b>
-<code class="code">@cite{--a}</code> <cite class="cite">--a</cite>
-<code class="code">@code{--a}</code> <code class="code">--a</code>
-<code class="code">@command{--a}</code> <code class="command">--a</code>
-<code class="code">@dfn{--a}</code> <em class="dfn">--a</em>
-<code class="code">@dmn{--a}</code> <span class="dmn">--a</span>
-<code class="code">@email{--a,--b}</code> <a class="email"
href="mailto:--a">--b</a>
-<code class="code">@email{,--b}</code> --b
-<code class="code">@email{--a}</code> <a class="email"
href="mailto:--a">--a</a>
-<code class="code">@emph{--a}</code> <em class="emph">--a</em>
-<code class="code">@env{--a}</code> <code class="env">--a</code>
-<code class="code">@file{--a}</code> <samp class="file">--a</samp>
-<code class="code">@i{--a}</code> <i class="i">–a</i>
-<code class="code">@kbd{--a}</code> <kbd class="kbd">--a</kbd>
-<code class="code">@key{--a}</code> <kbd class="key">--a</kbd>
-<code class="code">@math{--a {\frac{1}{2}} @minus{}}</code> <em
class="math">--a {\frac{1}{2}} −</em>
-<code class="code">@option{--a}</code> <samp class="option">--a</samp>
-<code class="code">@r{--a}</code> <span class="r">–a</span>
-<code class="code">@samp{--a}</code> ‘<samp
class="samp">--a</samp>’
-<code class="code">@sc{--a}</code> <span class="sc">--A</span>
-<code class="code">@strong{--a}</code> <strong class="strong">--a</strong>
-<code class="code">@t{--a}</code> <code class="t">--a</code>
-<code class="code">@sansserif{--a}</code> <span
class="sansserif">–a</span>
-<code class="code">@slanted{--a}</code> <i class="slanted">–a</i>
-<code class="code">@titlefont{--a}</code> </pre><h1
class="titlefont">--a</h1><pre class="example-preformatted">
-
-<code class="code">@indicateurl{--a}</code> ‘<code
class="indicateurl">--a</code>’
-<code class="code">@uref{--a,--b}</code> <a class="uref" href="--a">--b</a>
-<code class="code">@uref{--a}</code> <a class="uref" href="--a">--a</a>
-<code class="code">@uref{,--b}</code> --b
-<code class="code">@uref{--a,--b,--c}</code> <a class="uref" href="--a">--c</a>
-<code class="code">@uref{,--b,--c}</code> --c
-<code class="code">@uref{--a,,--c}</code> <a class="uref" href="--a">--c</a>
-<code class="code">@uref{,,--c}</code> --c
-<code class="code">@url{--a,--b}</code> <a class="url" href="--a">--b</a>
-<code class="code">@url{--a,}</code> <a class="url" href="--a">--a</a>
-<code class="code">@url{,--b}</code> --b
-<code class="code">@var{--a}</code> <var class="var">--a</var>
-<code class="code">@verb{:--a:}</code> <code class="verb">--a</code>
-<code class="code">@verb{:a < & @ % " -- b:}</code> <code
class="verb">a < & @ % " -- b</code>
-<code class="code">@w{a a a a a a a a a a a a a a a a a a a a a a a a a a a a
a a a a a a a}</code> a a a a a a a a a a a a a a a a a a a a a a a a a a a a a
a a a a a a<!-- /@w -->
-<code class="code">@H{a}</code> a̋
-<code class="code">@H{--a}</code> --a̋
-<code class="code">@dotaccent{a}</code> ȧ
-<code class="code">@dotaccent{--a}</code> --ȧ
-<code class="code">@ringaccent{a}</code> å
-<code class="code">@ringaccent{--a}</code> --å
-<code class="code">@tieaccent{a}</code> a͡
-<code class="code">@tieaccent{--a}</code> --a͡
-<code class="code">@u{a}</code> ă
-<code class="code">@u{--a}</code> --ă
-<code class="code">@ubaraccent{a}</code> a̲
-<code class="code">@ubaraccent{--a}</code> --a̲
-<code class="code">@udotaccent{a}</code> ạ
-<code class="code">@udotaccent{--a}</code> --ạ
-<code class="code">@v{a}</code> ǎ
-<code class="code">@v{--a}</code> --ǎ
-<code class="code">@,{c}</code> ç
-<code class="code">@,{--c}</code> --ç
-<code class="code">@ogonek{a}</code> ą
-<code class="code">@ogonek{--a}</code> --ą
-<code class="code">a@sup{h}@sub{l}</code> a<sup class="sup">h</sup><sub
class="sub">l</sub>
-<code class="code">@footnote{in footnote}</code> <a class="footnote"
id="DOCF7" href="#FOOT7">(9)</a>
-<code class="code">@footnote{in footnote2}</code> <a class="footnote"
id="DOCF8" href="#FOOT8">(10)</a>
-
-<code class="code">@sp 2</code>
-
-
-
-<code class="code">@page</code>
-
-</pre><pre class="example-preformatted">
-
-<code class="code">need 1002</code>
-</pre><pre class="example-preformatted">
-
-<code class="code">@clicksequence{click @click{} A}</code> click → A
-After clickstyle ⇒
-<code class="code">@clicksequence{click @click{} A}</code> click ⇒ A
-
-
-</pre><div class="displaymath"><em>disp--laymath
-f(x) = {1 \over \sigma \sqrt{2\pi}}e<sup class="sup">-{1 \over 2}\left({x-\mu
\over \sigma}\right)^2</sup>
-</em></div><pre class="example-preformatted">
-
-</pre><div class="displaymath"><em><strong
class="strong">``simple-double--three---four----''</strong> aa<!-- /@w -->
-`<!-- /@w -->`simple-double-<!-- /@w -->-three---four----'<!-- /@w -->'
-
-</em></div><pre class="example-preformatted">
-
-</pre><div class="displaymath"><em>i j
-ł ç
-a̲ ạ ą a<sup class="sup">h</sup><sub class="sub">l</sub>
-
-      ! @ } {
-a sunny day
-</em></div><pre class="example-preformatted">
-
-</pre><div class="displaymath"><em>→
-u
-• © … ... ≡
-error→ ↦ − ⊣ ⇒
-Å æ œ Æ Œ ø Ø ß ł Ł Ð
-Þ ð þ ¡ ¿ £
-ª º ,
-</em></div><pre class="example-preformatted">
-
-</pre><div class="displaymath"><em>“ ”
-‘ ’ „ ‚ «
-» « » ‹
-› € → ≤ ≥
-</em></div><pre class="example-preformatted">
-
-</pre><div class="displaymath"><em><b class="b">b</b> <i class="i">i</i> <span
class="r">r</span> <span class="sc">SC</span> <span
class="sansserif">sansserif</span> <i class="slanted">slanted</i>
-</em></div><pre class="example-preformatted">
-
-<kbd class="kbd">default kbdinputstyle</kbd>
-</pre><dl class="vtable">
-<dt id='index-vtable-i_002d_002dtem-default-kbdinputstyle-1'><tt><kbd
class="kbd">vtable i--tem default kbdinputstyle</kbd></tt></dt>
-</dl>
-<div class="example">
-<pre class="example-preformatted"><kbd class="kbd">in example default
kbdinputstyle</kbd>
-</pre><dl class="vtable">
-<dt
id='index-vtable-i_002d_002dtem-in-example-default-kbdinputstyle-1'><tt><kbd
class="kbd">vtable i--tem in example default kbdinputstyle</kbd></tt></dt>
-</dl>
-</div>
-<pre class="example-preformatted">
-
-<code class="code as-code-kbd">code kbdinputstyle</code>
-</pre><dl class="vtable">
-<dt id='index-vtable-i_002d_002dtem-code-kbdinputstyle-1'><tt><code
class="code as-code-kbd">vtable i--tem code kbdinputstyle</code></tt></dt>
-</dl>
-<div class="example">
-<pre class="example-preformatted"><code class="code as-code-kbd">in example
code kbdinputstyle</code>
-</pre><dl class="vtable">
-<dt id='index-vtable-i_002d_002dtem-in-example-code-kbdinputstyle-1'><tt><code
class="code as-code-kbd">vtable i--tem in example code
kbdinputstyle</code></tt></dt>
-</dl>
-</div>
-<pre class="example-preformatted">
-
-<code class="code as-code-kbd">example kbdinputstyle</code>
-</pre><dl class="vtable">
-<dt id='index-vtable-i_002d_002dtem-example-kbdinputstyle-1'><tt><code
class="code as-code-kbd">vtable i--tem example kbdinputstyle</code></tt></dt>
-</dl>
-<div class="example">
-<pre class="example-preformatted"><code class="code as-code-kbd">in example
example kbdinputstyle</code>
-</pre><dl class="vtable">
-<dt
id='index-vtable-i_002d_002dtem-in-example-example-kbdinputstyle-1'><tt><code
class="code as-code-kbd">vtable i--tem in example example
kbdinputstyle</code></tt></dt>
-</dl>
-</div>
-<pre class="example-preformatted">
-
-<kbd class="kbd">distinct kbdinputstyle</kbd>
-</pre><dl class="vtable">
-<dt id='index-vtable-i_002d_002dtem-distinct-kbdinputstyle-1'><tt><kbd
class="kbd">vtable i--tem distinct kbdinputstyle</kbd></tt></dt>
-</dl>
-<div class="example">
-<pre class="example-preformatted"><kbd class="kbd">in example distinct
kbdinputstyle</kbd>
-</pre><dl class="vtable">
-<dt
id='index-vtable-i_002d_002dtem-in-example-distinct-kbdinputstyle-1'><tt><kbd
class="kbd">vtable i--tem in example distinct kbdinputstyle</kbd></tt></dt>
-</dl>
-</div>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-<pre class="example-preformatted">A quot---ation
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-<pre class="example-preformatted"><b class="b">Note:</b> A Note
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-<pre class="example-preformatted"><b class="b">note:</b> A note
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-<pre class="example-preformatted"><b class="b">Caution:</b> Caution
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-<pre class="example-preformatted"><b class="b">Important:</b> Important
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-<pre class="example-preformatted"><b class="b">Tip:</b> a Tip
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-<pre class="example-preformatted"><b class="b">Warning:</b> a Warning.
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-<pre class="example-preformatted"><b class="b">something é TeX:</b> The
something é TeX is here.
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-<pre class="example-preformatted"><b class="b">@ at the end of line
 :</b> A @ at the end of the @quotation line.
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-<pre class="example-preformatted"><b class="b">something, other thing:</b>
something, other thing
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-<pre class="example-preformatted"><b class="b">Note, the note:</b> Note, the
note
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-</blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-</blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-</blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-</blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-<pre class="example-preformatted">aaa quotation
-</pre></blockquote>
-<div class="center">--- <em class="emph">quotation author</em>
-</div><pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-<pre class="example-preformatted">indent in quotation
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-<pre class="exdent">exdented quotation line and dash --- in quotation
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-<pre class="example-preformatted">Not exdented followed by exdented
-</pre><pre class="exdent">exdented quotation line
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-<pre class="exdent">exdented quotation line
-</pre><pre class="example-preformatted">Followed by not exdented
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation">
-<pre class="example-preformatted">quotation1
-</pre><pre class="exdent">in exdented protected eol  
-</pre><pre class="example-preformatted">following
-</pre><pre class="exdent">in exdented a @*
- and following
-</pre><pre class="example-preformatted">after exdented
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation smallquotation">
-<pre class="example-preformatted">A small quot---ation
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation smallquotation">
-<pre class="example-preformatted"><b class="b">Note:</b> A small Note
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><blockquote class="quotation smallquotation">
-<pre class="example-preformatted"><b class="b">something, other thing:</b>
something, other thing
-</pre></blockquote>
-<pre class="example-preformatted">
-
-</pre><ul class="itemize mark-bullet">
-<li><pre class="example-preformatted">i--temize
-</pre></li></ul>
-<pre class="example-preformatted">
-
-</pre><ul class="itemize" style="list-style-type: '+'">
-<li><pre class="example-preformatted">i--tem +
-</pre></li></ul>
-<pre class="example-preformatted">
-
-</pre><ul class="itemize mark-bullet">
-<li><pre class="example-preformatted">b--ullet
-</pre></li></ul>
-<pre class="example-preformatted">
-
-</pre><ul class="itemize mark-minus">
-<li><pre class="example-preformatted">minu--s
-</pre></li></ul>
-<pre class="example-preformatted">
-
-</pre><ul class="itemize" style="list-style-type: 'after emph'">
-<li><pre class="example-preformatted">e--mph item
-</pre></li></ul>
-<pre class="example-preformatted">
-
-</pre><ul class="itemize" style="list-style-type: '\2022 a\2013 n itemize
line'">
-<li><pre class="example-preformatted"><a class="index-entry-id"
id="index-index-entry-within-itemize-1"></a>i--tem 1
-</pre></li><li><pre class="example-preformatted">i--tem 2
-</pre></li></ul>
-<pre class="example-preformatted">
-
-</pre><ul class="itemize mark-none">
-<li><pre class="example-preformatted">with w a--b
-</pre></li><li><pre class="example-preformatted">with w c--d
-</pre></li></ul>
-<pre class="example-preformatted">
-
-</pre><ul class="itemize" style="list-style-type: ' on a line'">
-<li><pre class="example-preformatted">line w a--b
-</pre></li><li><pre class="example-preformatted">line with w c--d
-</pre></li></ul>
-<pre class="example-preformatted">
-
-</pre><ol class="enumerate">
-<li> <pre class="example-preformatted">e--numerate
-</pre></li></ol>
-<pre class="example-preformatted">
-
-</pre><ol class="enumerate" start="3">
-<li> <pre class="example-preformatted">first third
-</pre></li><li> <pre class="example-preformatted">second third
-</pre></li></ol>
-<pre class="example-preformatted">
-
-</pre><ol class="enumerate" type="a" start="1">
-<li> <pre class="example-preformatted">e--numerate
-</pre></li></ol>
-<pre class="example-preformatted">
-
-</pre><ol class="enumerate" type="a" start="3">
-<li> <pre class="example-preformatted">first c
-</pre></li><li> <pre class="example-preformatted">second c
-</pre></li></ol>
-<pre class="example-preformatted">
-
-</pre><table class="multitable">
-<thead><tr><th width="40%"><pre class="example-preformatted">mu--ltitable
headitem</pre></th><th width="60%"><pre class="example-preformatted">another
tab</pre></th></tr></thead>
-<tbody><tr><td width="40%"><pre class="example-preformatted">mu--ltitable
item</pre></td><td width="60%"><pre class="example-preformatted">multitable
tab</pre></td></tr>
-<tr><td width="40%"><pre class="example-preformatted">mu--ltitable item
2</pre></td><td width="60%"><pre class="example-preformatted">multitable tab 2
-<a class="index-entry-id"
id="index-index-entry-within-multitable-1"></a></pre></td></tr>
-<tr><td width="40%"><pre class="example-preformatted">lone mu--ltitable
item</pre></td></tr>
-</tbody>
-</table>
-<pre class="example-preformatted">
-
-</pre><table class="multitable">
-<tbody><tr><td><pre class="example-preformatted">truc</pre></td><td><pre
class="example-preformatted">bidule</pre></td></tr>
-</tbody>
-</table>
-<pre class="example-preformatted">
-
-</pre><div class="example">
-<pre class="example-preformatted">e--xample some
- text
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><div class="example user-first-arg">
-<pre class="example-preformatted">example one arg
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><div class="example user-first-arg user-second-arg">
-<pre class="example-preformatted">example two args
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><div class="example user-first-arg user-second-arg user-third-arg">
-<pre class="example-preformatted">example three args
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><div class="example user-first-arg user-second-arg user-third-arg
user-fourth-arg">
-<pre class="example-preformatted">example four args
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><div class="example user-first-arg user-second-arg user-third-arg
user-fourth-arg user-fifth-arg">
-<pre class="example-preformatted">example five args
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><div class="example user-something-é-TeX">
-<pre class="example-preformatted">The something é TeX is here.
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><div class="example user-@-at-the-end-of-line--">
-<pre class="example-preformatted">A @ at the end of the @example line.
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><div class="example">
-<pre class="example-preformatted">example with empty args
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><div class="example user-nonempty">
-<pre class="example-preformatted">example with empty and non empty args mix
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><div class="example">
-<pre class="example-preformatted">Exam---ple
-
-</pre><pre class="exdent">Other li---ne
-</pre><pre class="example-preformatted">not exdented
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><div class="example">
-<pre class="exdent">exdented and dash --- in example
-</pre><pre class="example-preformatted">Not exdented one
-</pre><pre class="exdent">exdented two
-</pre><pre class="example-preformatted">Not exdented two
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><div class="example">
-<pre class="example-preformatted">Example Hoho.
-</pre><div class="example">
-<pre class="example-preformatted">Nested Other line
-</pre><pre class="exdent">exdented nested other line
-</pre></div>
-</div>
-<pre class="example-preformatted">
-
-</pre><div class="example smallexample">
-<pre class="example-preformatted">s--mallexample
-</pre></div>
-<pre class="example-preformatted">
-
-<code class="code">@noindent</code> after smallexample.
-</pre><div class="example smallexample">
-<pre class="example-preformatted">$ wget
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.guess?rev=HEAD&content-type=text/plain'
-$ wget
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD&content-type=text/plain'
-</pre></div>
-<pre class="example-preformatted">Less recent versions are also present.
-
-</pre><div class="display">
-<pre class="example-preformatted">d--isplay
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><div class="display smalldisplay">
-<pre class="example-preformatted">s--malldisplay
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><div class="example lisp">
-<pre class="lisp-preformatted">l--isp
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><div class="example smalllisp lisp">
-<pre class="lisp-preformatted">s--malllisp
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><div class="format">
-<pre class="example-preformatted">f--ormat
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><div class="format smallformat">
-<pre class="example-preformatted">s--mallformat
-</pre></div>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deffn">
-<dt class="deffn" id="index-d_002d_002deffn_005fname-1"><span
class="category-def">c--ategory: </span><code
class="def-name">d--effn_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><pre class="example-preformatted">d--effn
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deffn">
-<dt class="deffn" id="index-de_002d_002dffn_005fname-1"><span
class="category-def">cate--gory: </span><code
class="def-name">de--ffn_name</code> <var
class="def-meta-var-arguments">ar–guments more args
- even more so</var></dt>
-<dd><pre class="example-preformatted">def--fn
-</pre></dd></dl>
-<pre class="example-preformatted">
-</pre><dl class="first-deffn">
-<dt class="deffn" id="index-i-2"><span class="category-def">fset: </span><code
class="def-name"><var class="var">i</var></code> <var
class="def-meta-var-arguments">a g</var></dt>
-<dd><pre class="example-preformatted"><a class="index-entry-id"
id="index-index-entry-within-deffn-1"></a></pre></dd><dt class="deffnx
def-cmd-deffn" id="index-truc-2"><span class="category-def">cmde: </span><code
class="def-name">truc</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-log-trap-1"><span
class="category-def">Command: </span><code class="def-name">log trap</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-log-trap1-1"><span
class="category-def">Command: </span><code class="def-name">log
trap1</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-log-trap2-1"><span
class="category-def">Command: </span><code class="def-name">log
trap2</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-id-ule-1"><span
class="category-def">cmde: </span><code class="def-name"><b class="b">id
ule</b></code> <var class="def-meta-var-arguments">truc</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-id-i-ule-1"><span
class="category-def">cmde2: </span><code class="def-name"><b class="b">id
‘<samp class="samp">i</samp>’ ule</b></code> <var
class="def-meta-var-arguments">truc</var></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">: </span><code
class="def-name"></code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-machin-6"><span
class="category-def">: </span><code class="def-name">machin</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-bidule-machin-1"><span
class="category-def">: </span><code class="def-name">bidule machin</code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-machin-7"><span
class="category-def">truc: </span><code class="def-name">machin</code></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">truc: </span><code
class="def-name"></code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-followed-2"><span
class="category-def">truc: </span><code class="def-name">followed</code> <var
class="def-meta-var-arguments">by a comment</var></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">: </span><code
class="def-name"></code></dt>
-<dt class="deffnx def-cmd-deffn" id="index-a-4"><span
class="category-def">truc: </span><code class="def-name">a</code> <var
class="def-meta-var-arguments">b c d e <b class="b">f g</b> h i</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-deffnx-2"><span
class="category-def">truc: </span><code class="def-name">deffnx</code> <var
class="def-meta-var-arguments">before end deffn</var></dt>
-</dl>
-<pre class="example-preformatted">
-
-
-</pre><dl class="first-deffn">
-<dt class="deffn" id="index-deffn-2"><span class="category-def">empty:
</span><code class="def-name">deffn</code></dt>
-</dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deffn">
-<dt class="deffn" id="index-deffn-3"><span class="category-def">empty:
</span><code class="def-name">deffn</code> <var
class="def-meta-var-arguments">with deffnx</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-deffnx-3"><span
class="category-def">empty: </span><code class="def-name">deffnx</code></dt>
-</dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deffn">
-<dt class="deffn" id="index-i-3"><span class="category-def">fset: </span><code
class="def-name"><var class="var">i</var></code> <var
class="def-meta-var-arguments">a g</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-truc-3"><span
class="category-def">cmde: </span><code class="def-name">truc</code></dt>
-<dd><pre class="example-preformatted">text in def item for second def item
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-
-</pre><dl class="first-defvr">
-<dt class="defvr" id="index-d_002d_002defvr_005fname-1"><span
class="category-def">c--ategory: </span><code
class="def-name">d--efvr_name</code></dt>
-<dd><pre class="example-preformatted">d--efvr
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deffn">
-<dt class="deffn" id="index-n_002d_002dame-2"><span
class="category-def">c--ategory: </span><code class="def-name">n--ame</code>
<var class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><pre class="example-preformatted">d--effn
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deffn">
-<dt class="deffn" id="index-n_002d_002dame-3"><span
class="category-def">c--ategory: </span><code
class="def-name">n--ame</code></dt>
-<dd><pre class="example-preformatted">d--effn no arg
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deftypefn">
-<dt class="deftypefn" id="index-d_002d_002deftypefn_005fname-2"><span
class="category-def">c--ategory: </span><code class="def-type">t--ype</code>
<code class="def-name">d--eftypefn_name</code> <code
class="def-code-arguments">a--rguments...</code></dt>
-<dd><pre class="example-preformatted">d--eftypefn
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deftypefn">
-<dt class="deftypefn" id="index-d_002d_002deftypefn_005fname-3"><span
class="category-def">c--ategory: </span><code class="def-type">t--ype</code>
<code class="def-name">d--eftypefn_name</code></dt>
-<dd><pre class="example-preformatted">d--eftypefn no arg
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deftypeop">
-<dt class="deftypeop"
id="index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-2"><span
class="category-def">c--ategory on <code class="code">c--lass</code>:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypeop_name</code> <code
class="def-code-arguments">a--rguments...</code></dt>
-<dd><pre class="example-preformatted">d--eftypeop
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deftypeop">
-<dt class="deftypeop"
id="index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-3"><span
class="category-def">c--ategory on <code class="code">c--lass</code>:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypeop_name</code></dt>
-<dd><pre class="example-preformatted">d--eftypeop no arg
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deftypevr">
-<dt class="deftypevr" id="index-d_002d_002deftypevr_005fname-1"><span
class="category-def">c--ategory: </span><code class="def-type">t--ype</code>
<code class="def-name">d--eftypevr_name</code></dt>
-<dd><pre class="example-preformatted">d--eftypevr
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-defcv">
-<dt class="defcv" id="index-d_002d_002defcv_005fname-2"><span
class="category-def">c--ategory of <code class="code">c--lass</code>:
</span><code class="def-name">d--efcv_name</code></dt>
-<dd><pre class="example-preformatted">d--efcv
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-defcv">
-<dt class="defcv" id="index-d_002d_002defcv_005fname-3"><span
class="category-def">c--ategory of <code class="code">c--lass</code>:
</span><code class="def-name">d--efcv_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><pre class="example-preformatted">d--efcv with arguments
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deftypecv">
-<dt class="deftypecv"
id="index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-2"><span
class="category-def">c--ategory of <code class="code">c--lass</code>:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypecv_name</code></dt>
-<dd><pre class="example-preformatted">d--eftypecv
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deftypecv">
-<dt class="deftypecv"
id="index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-3"><span
class="category-def">c--ategory of <code class="code">c--lass</code>:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypecv_name</code> <code
class="def-code-arguments">a--rguments...</code></dt>
-<dd><pre class="example-preformatted">d--eftypecv with arguments
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-defop">
-<dt class="defop"
id="index-d_002d_002defop_005fname-on-c_002d_002dlass-2"><span
class="category-def">c--ategory on <code class="code">c--lass</code>:
</span><code class="def-name">d--efop_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><pre class="example-preformatted">d--efop
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-defop">
-<dt class="defop"
id="index-d_002d_002defop_005fname-on-c_002d_002dlass-3"><span
class="category-def">c--ategory on <code class="code">c--lass</code>:
</span><code class="def-name">d--efop_name</code></dt>
-<dd><pre class="example-preformatted">d--efop no arg
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deftp">
-<dt class="deftp" id="index-d_002d_002deftp_005fname-1"><span
class="category-def">c--ategory: </span><code
class="def-name">d--eftp_name</code> <var
class="def-meta-var-arguments">a–ttributes...</var></dt>
-<dd><pre class="example-preformatted">d--eftp
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deffn first-defun-alias-first-deffn">
-<dt class="deffn defun-alias-deffn"
id="index-d_002d_002defun_005fname-1"><span class="category-def">Function:
</span><code class="def-name">d--efun_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><pre class="example-preformatted">d--efun
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deffn first-defmac-alias-first-deffn">
-<dt class="deffn defmac-alias-deffn"
id="index-d_002d_002defmac_005fname-1"><span class="category-def">Macro:
</span><code class="def-name">d--efmac_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><pre class="example-preformatted">d--efmac
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deffn first-defspec-alias-first-deffn">
-<dt class="deffn defspec-alias-deffn"
id="index-d_002d_002defspec_005fname-1"><span class="category-def">Special
Form: </span><code class="def-name">d--efspec_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><pre class="example-preformatted">d--efspec
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-defvr first-defvar-alias-first-defvr">
-<dt class="defvr defvar-alias-defvr"
id="index-d_002d_002defvar_005fname-2"><span class="category-def">Variable:
</span><code class="def-name">d--efvar_name</code></dt>
-<dd><pre class="example-preformatted">d--efvar
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-defvr first-defvar-alias-first-defvr">
-<dt class="defvr defvar-alias-defvr"
id="index-d_002d_002defvar_005fname-3"><span class="category-def">Variable:
</span><code class="def-name">d--efvar_name</code> <var
class="def-meta-var-arguments">arg–var arg–var1</var></dt>
-<dd><pre class="example-preformatted">d--efvar with args
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-defvr first-defopt-alias-first-defvr">
-<dt class="defvr defopt-alias-defvr"
id="index-d_002d_002defopt_005fname-1"><span class="category-def">User Option:
</span><code class="def-name">d--efopt_name</code></dt>
-<dd><pre class="example-preformatted">d--efopt
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deftypefn first-deftypefun-alias-first-deftypefn">
-<dt class="deftypefn deftypefun-alias-deftypefn"
id="index-d_002d_002deftypefun_005fname-1"><span class="category-def">Function:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypefun_name</code> <code
class="def-code-arguments">a--rguments...</code></dt>
-<dd><pre class="example-preformatted">d--eftypefun
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deftypevr first-deftypevar-alias-first-deftypevr">
-<dt class="deftypevr deftypevar-alias-deftypevr"
id="index-d_002d_002deftypevar_005fname-1"><span class="category-def">Variable:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypevar_name</code></dt>
-<dd><pre class="example-preformatted">d--eftypevar
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-defcv first-defivar-alias-first-defcv">
-<dt class="defcv defivar-alias-defcv"
id="index-d_002d_002defivar_005fname-of-c_002d_002dlass-1"><span
class="category-def">Instance Variable of <code class="code">c--lass</code>:
</span><code class="def-name">d--efivar_name</code></dt>
-<dd><pre class="example-preformatted">d--efivar
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deftypecv first-deftypeivar-alias-first-deftypecv">
-<dt class="deftypecv deftypeivar-alias-deftypecv"
id="index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass-1"><span
class="category-def">Instance Variable of <code class="code">c--lass</code>:
</span><code class="def-type">t--ype</code> <code
class="def-name">d--eftypeivar_name</code></dt>
-<dd><pre class="example-preformatted">d--eftypeivar
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-defop first-defmethod-alias-first-defop">
-<dt class="defop defmethod-alias-defop"
id="index-d_002d_002defmethod_005fname-on-c_002d_002dlass-1"><span
class="category-def">Method on <code class="code">c--lass</code>: </span><code
class="def-name">d--efmethod_name</code> <var
class="def-meta-var-arguments">a–rguments...</var></dt>
-<dd><pre class="example-preformatted">d--efmethod
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deftypeop first-deftypemethod-alias-first-deftypeop">
-<dt class="deftypeop deftypemethod-alias-deftypeop"
id="index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass-1"><span
class="category-def">Method on <code class="code">c--lass</code>: </span><code
class="def-type">t--ype</code> <code
class="def-name">d--eftypemethod_name</code> <code
class="def-code-arguments">a--rguments...</code></dt>
-<dd><pre class="example-preformatted">d--eftypemethod
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-
-</pre><dl class="first-deftypefn first-deftypefun-alias-first-deftypefn">
-<dt class="deftypefn deftypefun-alias-deftypefn" id="index-name2-1"><span
class="category-def">Function:
- </span><code class="def-type">data-type2</code><br> <code
class="def-name">name2</code> <code
class="def-code-arguments">arguments2...</code></dt>
-<dd><pre class="example-preformatted">aaa2
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deftypefn">
-<dt class="deftypefn" id="index-d_002d_002deftypefn_005fname2-1"><span
class="category-def">c--ategory2:
- </span><code class="def-type">t--ype2</code><br> <code
class="def-name">d--eftypefn_name2</code></dt>
-<dd><pre class="example-preformatted">d--eftypefn no arg2
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deftypeop">
-<dt class="deftypeop"
id="index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-2"><span
class="category-def">c--ategory2 on <code class="code">c--lass2</code>:
- </span><code class="def-type">t--ype2</code><br> <code
class="def-name">d--eftypeop_name2</code> <code
class="def-code-arguments">a--rguments2...</code></dt>
-<dd><pre class="example-preformatted">d--eftypeop2
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deftypeop">
-<dt class="deftypeop"
id="index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-3"><span
class="category-def">c--ategory2 on <code class="code">c--lass2</code>:
- </span><code class="def-type">t--ype2</code><br> <code
class="def-name">d--eftypeop_name2</code></dt>
-<dd><pre class="example-preformatted">d--eftypeop no arg2
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deftypecv">
-<dt class="deftypecv"
id="index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-2"><span
class="category-def">c--ategory2 of <code class="code">c--lass2</code>:
</span><code class="def-type">t--ype2</code> <code
class="def-name">d--eftypecv_name2</code></dt>
-<dd><pre class="example-preformatted">d--eftypecv2
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deftypecv">
-<dt class="deftypecv"
id="index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-3"><span
class="category-def">c--ategory2 of <code class="code">c--lass2</code>:
</span><code class="def-type">t--ype2</code> <code
class="def-name">d--eftypecv_name2</code> <code
class="def-code-arguments">a--rguments2...</code></dt>
-<dd><pre class="example-preformatted">d--eftypecv with arguments2
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deffn">
-<dt class="deffn" id="index-arg2-1"><span class="category-def">fun2:
</span><code class="def-name">arg2</code></dt>
-<dd><pre class="example-preformatted">fff2
-</pre></dd></dl>
-<pre class="example-preformatted">
-
-
-<code class="code">@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file
n---ame@@, ma---nual@@}</code> See <a href="file
n---ame@.xhtml#c_002d_002d_002dhapter_0040">t---itle@</a> in <cite
class="cite">ma---nual@</cite>.
-<code class="code">@ref{chapter, cross ref name, title, file name,
manual}</code> <a href="file name.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@pxref{chapter, cross ref name, title, file name,
manual}</code> see <a href="file name.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@inforef{chapter, cross ref name, file name}</code> See <a
href="file name.xhtml#chapter">(file name)cross ref name</a>
-
-<code class="code">@ref{chapter}</code> <a class="ref"
href="#chapter">chapter</a>
-<code class="code">@xref{chapter}</code> See <a class="xref"
href="#chapter">chapter</a>.
-<code class="code">@pxref{chapter}</code> see <a class="pxref"
href="#chapter">chapter</a>
-<code class="code">@ref{s--ect@comma{}ion}</code> <a class="ref"
href="#s_002d_002dect_002cion">A section</a>
-
-<code class="code">@ref{s--ect@comma{}ion, a @comma{} in cross
-ref, a comma@comma{} in title, a comma@comma{} in file, a @comma{} in manual
name }</code>
-<a href="a comma, in file.xhtml#s_002d_002dect_002cion">a comma, in
title</a> in <cite class="cite">a , in manual name</cite>
-
-<code class="code">@ref{chapter,cross ref name}</code> <a class="ref"
href="#chapter">cross ref name</a>
-<code class="code">@ref{chapter,,title}</code> <a class="ref"
href="#chapter">title</a>
-<code class="code">@ref{chapter,,,file name}</code> <a href="file
name.xhtml#chapter">(file name)chapter</a>
-<code class="code">@ref{chapter,,,,manual}</code> `chapter' in <cite
class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title,}</code> <a class="ref"
href="#chapter">title</a>
-<code class="code">@ref{chapter,cross ref name,,file name}</code> <a
href="file name.xhtml#chapter">(file name)cross ref name</a>
-<code class="code">@ref{chapter,cross ref name,,,manual}</code> `cross ref
name' in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title,file name}</code> <a
href="file name.xhtml#chapter">(file name)title</a>
-<code class="code">@ref{chapter,cross ref name,title,,manual}</code> `title'
in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,cross ref name,title, file name,
manual}</code> <a href="file name.xhtml#chapter">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{chapter,,title,file name}</code> <a href="file
name.xhtml#chapter">(file name)title</a>
-<code class="code">@ref{chapter,,title,,manual}</code> `title' in <cite
class="cite">manual</cite>
-<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="file name.xhtml#chapter">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{chapter,,,file name,manual}</code> <a href="file
name.xhtml#chapter">chapter</a> in <cite class="cite">manual</cite>
-
-
-<code class="code">@ref{(pman)anode,cross ref name}</code> <a
href="pman.xhtml#anode">(pman)cross ref name</a>
-<code class="code">@ref{(pman)anode,,title}</code> <a
href="pman.xhtml#anode">(pman)title</a>
-<code class="code">@ref{(pman)anode,,,file name}</code> <a href="file
name.xhtml#anode">(file name)anode</a>
-<code class="code">@ref{(pman)anode,,,,manual}</code> <a
href="pman.xhtml#anode">anode</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title,}</code> <a
href="pman.xhtml#anode">(pman)title</a>
-<code class="code">@ref{(pman)anode,cross ref name,,file name}</code> <a
href="file name.xhtml#anode">(file name)cross ref name</a>
-<code class="code">@ref{(pman)anode,cross ref name,,,manual}</code> <a
href="pman.xhtml#anode">cross ref name</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title,file name}</code> <a
href="file name.xhtml#anode">(file name)title</a>
-<code class="code">@ref{(pman)anode,cross ref name,title,,manual}</code> <a
href="pman.xhtml#anode">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,cross ref name,title, file name,
manual}</code> <a href="file name.xhtml#anode">title</a> in <cite
class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,title,file name}</code> <a href="file
name.xhtml#anode">(file name)title</a>
-<code class="code">@ref{(pman)anode,,title,,manual}</code> <a
href="pman.xhtml#anode">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,title, file name, manual}</code> <a
href="file name.xhtml#anode">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{(pman)anode,,,file name,manual}</code> <a href="file
name.xhtml#anode">anode</a> in <cite class="cite">manual</cite>
-
-
-<code class="code">@inforef{chapter, cross ref name, file name}</code> See <a
href="file name.xhtml#chapter">(file name)cross ref name</a>
-<code class="code">@inforef{chapter}</code> See `chapter'
-<code class="code">@inforef{chapter, cross ref name}</code> See `cross ref
name'
-<code class="code">@inforef{chapter,,file name}</code> See <a href="file
name.xhtml#chapter">(file name)chapter</a>
-<code class="code">@inforef{node, cross ref name, file name}</code> See <a
href="file name.xhtml#node">(file name)cross ref name</a>
-<code class="code">@inforef{node}</code> See `node'
-<code class="code">@inforef{node, cross ref name}</code> See `cross ref name'
-<code class="code">@inforef{node,,file name}</code> See <a href="file
name.xhtml#node">(file name)node</a>
-<code class="code">@inforef{chapter, cross ref name, file name, spurious
arg}</code> See <a href="file name, spurious arg.xhtml#chapter">(file name,
spurious arg)cross ref name</a>
-
-<code class="code">@inforef{s--ect@comma{}ion, a @comma{} in cross
-ref, a comma@comma{} in file}</code>
-See <a href="a comma, in file.xhtml#s_002d_002dect_002cion">(a comma, in
file)a , in cross
-ref</a>
-
-‘<samp class="samp"><a class="ref"
href="#chapter">chapter</a></samp>’.
-
-<a href="index3.html (uref3).xhtml#ext">title with uref2 <a class="uref"
href="href://http/myhost.com/index2.html">uref2</a></a> in <cite
class="cite">printed manual with uref4 <a class="uref"
href="href://http/myhost.com/index4.html">uref4</a></cite>
-<a class="ref" href="#chapter">title with uref2 <a class="uref"
href="href://http/myhost.com/index2.html">uref2</a></a>
-
-</pre><dl class="table">
-<dt><tt><strong class="strong">a--strong</strong></tt></dt>
-<dd><pre class="example-preformatted">l--ine
-</pre></dd>
-</dl>
-<pre class="example-preformatted">
-
-</pre><dl class="vtable">
-<dt id='index-a_002d_002dasis-1'><tt>a--asis</tt></dt>
-<dt id='index-b-5'><tt>b</tt></dt>
-<dd><pre class="example-preformatted">l--ine
-</pre></dd>
-</dl>
-<pre class="example-preformatted">
-
-</pre><dl class="ftable">
-<dt id='index-a-5'><tt><em class="emph">a</em></tt></dt>
-<dd><pre class="example-preformatted"><a class="index-entry-id"
id="index-index-entry-between-item-and-itemx-2"></a></pre></dd>
-<dt id='index-b-2'><tt><em class="emph">b</em></tt></dt>
-<dd><pre class="example-preformatted">l--ine
-</pre></dd>
-</dl>
-<pre class="example-preformatted">
-
-</pre><dl class="table">
-<dd><pre class="example-preformatted">Title
-</pre></dd>
-<dt><tt><code class="code">a--code</code></tt></dt>
-<dd><pre class="example-preformatted">Value--table code
-</pre></dd>
-</dl>
-<pre class="example-preformatted">
-
-</pre><dl class="table">
-<dd><pre class="example-preformatted">Title
-</pre></dd>
-<dt><tt>‘<samp class="samp">a--samp</samp>’</tt></dt>
-<dt><tt>‘<samp class="samp">a2--samp</samp>’</tt></dt>
-<dd><pre class="example-preformatted">Value--table samp
-</pre></dd>
-</dl>
-<pre class="example-preformatted">
-
-</pre><table class="cartouche" border="1"><tr><td>
-<pre class="example-preformatted">c--artouche
-</pre></td></tr></table>
-<pre class="example-preformatted">
-
-</pre><div class="flushleft"><pre class="example-preformatted">f--lushleft
-more text
-</pre></div><pre class="example-preformatted">
-
-</pre><div class="flushright"><pre class="example-preformatted">f--lushright
-more text
-</pre></div><pre class="example-preformatted">
-
-</pre><div class="center">ce--ntered line
-</div><pre class="example-preformatted">
-
-</pre><div class="raggedright"><pre class="example-preformatted">r--raggedright
-more text
-</pre></div><pre class="example-preformatted">
-
-</pre><pre class="verbatim">\input texinfo @c -*-texinfo-*-
-
-@c this file is used in tests in @verbatiminclude but not converted
-
-@setfilename simplest.info
-
-@node Top
-
-This is a very simple texi manual @ <>.
-
-@bye
-</pre><pre class="example-preformatted">
-
-</pre><pre class="verbatim">in verbatim ''
-</pre><pre class="example-preformatted">
-
-
-html ''
-
-
-
-
-</pre><strong class="majorheading" id="majorheading-3">majorheading</strong>
-<pre class="example-preformatted">
-
-</pre><strong class="chapheading" id="chapheading-3">chapheading</strong>
-<pre class="example-preformatted">
-
-</pre><strong class="heading" id="heading-3">heading</strong>
-<pre class="example-preformatted">
-
-</pre><strong class="subheading" id="subheading-3">subheading</strong>
-<pre class="example-preformatted">
-
-</pre><strong class="subsubheading" id="subsubheading-3">subsubheading</strong>
-<pre class="example-preformatted">
-
-
-<code class="code">@acronym{--a,an accronym @comma{} @enddots{}}</code>
<acronym class="acronym" title="an accronym , ...">--a</acronym> (an
accronym , ...)
-<code class="code">@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome}
}</code> <abbr class="abbr" title="Étude–, Autonome">É--.
,A.</abbr> (Étude--, <b class="b">Autonome</b>)
-<code class="code">@abbr{@'E--. @comma{}A.}</code> <abbr class="abbr"
title="Étude–, Autonome">É--. ,A.</abbr>
-
-<code class="code">@math{--a@minus{} {\frac{1}{2}}}</code> <em
class="math">--a− {\frac{1}{2}}</em>
-
-
-
-
-Somehow invalid use of @,:
-
-@, ̧
-
-
-@,@"u ̧ü
-
-Invalid use of @':
-
-@' ́
-
-
-@'@"u ́ü
-
-<code class="code">@|</code>
-
-@dotless{truc} truc
-@dotless{ij} ij
-<code class="code">@dotless{--a}</code> --a
-<code class="code">@dotless{a}</code> a
-
-@U, without braces @U{}, with empty arg
-@U{z}, with non-hex arg &#xz;
-@U{abc}, with <4 hex digits ઼
-@U{FFFFFFFFFFFFFF}, value much too large �
-@U{110000}, value just beyond Unicode �
-
-@TeX, but without brace TeX<code class="code">@#</code> #
-
-<code class="code">@w{--a}</code> --a<!-- /@w -->
-
-<code class="code">@image{,1--xt}</code>
-<code class="code">@image{,,2--xt}</code>
-<code class="code">@image{,,,3--xt}</code>
-
-<code class="code">@image{f-ile,aze,,a--lt}</code> <img class="image"
src="../images/45-f-ilejpg" alt="a–lt"/>
-<code class="code">@image{f-ile,,,alt@verb{:jk _" %}}</code> <img
class="image" src="../images/46-f-ilejpg" alt="altjk _" %@"/>
-
-<code class="code">@image{f--ile}</code> <img class="image"
src="../images/47-f--ile.png" alt="f--ile"/>
-<code class="code">@image{f--ile,,,alt}</code> <img class="image"
src="../images/48-f--ile.png" alt="alt"/>
-<code class="code">@image{f--ile,,,,.e-d-xt}</code> <img class="image"
src="../images/49-f--ile.e--xt" alt="f--ile"/>
-<code class="code">@image{f--ile,l--i}</code> <img class="image"
src="../images/50-f--ile.png" alt="f--ile"/>
-<code class="code">@image{f--ile,,l--e}</code> <img class="image"
src="../images/51-f--ile.png" alt="f--ile"/>
-<code class="code">@image{f--ile,aze,az,alt,.e--xt}</code> <img class="image"
src="../images/52-f--ile.e--xt" alt="alt"/>
-<code class="code">@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext}
e--xt@}</code> <img class="image"
src="../images/53-f--ile_0040..file-ext-e--xt_007d" alt="alt"/>
-
-<code class="code">@image{f--ile,aze,az,@verb{:jk _" %@:} @b{in b
"},e--xt}</code> <img class="image" src="../images/54-f--ile.e--xt"
alt="jk _" %@ in b ""/>
-<code class="code">@image{file@verb{:jk _" %@:},,,alt@verb{:jk _"
%@:}}</code> <img class="image" src="../images/55-filejk-__0022-_0025_0040jpg"
alt="altjk _" %@"/>
-
-
-
-</pre><div class="displaymath"><em>ü Ü ñ â é ō
ì é Ḕ
-Ḉ Ḉ a̋ ȧ å a͡
-ă ǎ
- ? .
-</em></div><pre class="example-preformatted">
-
-</pre><div class="displaymath"><em>TeX LaTeX ★ å ® °
-</em></div><pre class="example-preformatted">
-
-</pre><div class="displaymath"><em><code class="t">t</code>
-</em></div><pre class="example-preformatted">
-
-</pre><ul class="itemize">
-<li><pre class="example-preformatted">e--mph item
-</pre></li></ul>
-<pre class="example-preformatted">
-
-</pre><ul class="itemize" style="list-style-type: ' after emph'">
-<li><pre class="example-preformatted">e--mph item
-</pre></li></ul>
-<pre class="example-preformatted">
-
-</pre><ul class="itemize" style="list-style-type: '\2022 a\2013 n itemize
line'">
-<li><pre class="example-preformatted">i--tem 1
-</pre></li><li><pre class="example-preformatted">i--tem 2
-</pre></li></ul>
-<pre class="example-preformatted">
-
-</pre><ul class="itemize mark-none">
-<li><pre class="example-preformatted">without brace w a--b
-</pre></li><li><pre class="example-preformatted">without brace w c--d
-</pre></li></ul>
-<pre class="example-preformatted">
-
-</pre><dl class="table">
-<dt><tt>a</tt></dt>
-<dd><pre class="example-preformatted">l--ine
-</pre></dd>
-</dl>
-<pre class="example-preformatted">
-
-</pre><dl class="table">
-<dt><tt>a--missing style formatting</tt></dt>
-<dd><pre class="example-preformatted">l--ine
-</pre></dd>
-</dl>
-<pre class="example-preformatted">
-
-</pre><dl class="ftable">
-<dt id='index-a-6'><tt>a</tt></dt>
-<dd><pre class="example-preformatted"><a class="index-entry-id"
id="index-index-entry-between-item-and-itemx-3"></a></pre></dd>
-<dt id='index-b-3'><tt>b</tt></dt>
-<dd><pre class="example-preformatted">l--ine
-</pre></dd>
-</dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deffn">
-<dt class="deffn"><span class="category-def">fun: </span></dt>
-<dt class="deffnx def-cmd-deffn" id="index-machin-8"><span
class="category-def">truc: </span><code class="def-name">machin</code> <var
class="def-meta-var-arguments">bidule chose and</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-machin-9"><span
class="category-def">truc: </span><code class="def-name">machin</code> <var
class="def-meta-var-arguments">bidule chose and after</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-machin-10"><span
class="category-def">truc: </span><code class="def-name">machin</code> <var
class="def-meta-var-arguments">bidule chose and </var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-machin-11"><span
class="category-def">truc: </span><code class="def-name">machin</code> <var
class="def-meta-var-arguments">bidule chose and and after</var></dt>
-<dt class="deffnx def-cmd-deffn" id="index-followed-3"><span
class="category-def">truc: </span><code class="def-name">followed</code> <var
class="def-meta-var-arguments">by a comment</var></dt>
-<dd><pre class="example-preformatted">Various deff lines
-</pre></dd><dt class="deffnx def-cmd-deffn" id="index-after-1"><span
class="category-def">truc: </span><code class="def-name">after</code> <var
class="def-meta-var-arguments">a deff item</var></dt>
-</dl>
-<pre class="example-preformatted">
-
-</pre><dl class="first-deffn">
-<dt class="deffn" id="index-invalid-1"><span class="category-def">fsetinv:
</span><code class="def-name"><var class="var">invalid</var></code> <var
class="def-meta-var-arguments">a g</var></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def"><b class="b">id
‘<samp class="samp">i</samp>’ ule</b>: </span></dt>
-<dt class="deffnx def-cmd-deffn"></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">aaa: </span></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">: </span></dt>
-<dt class="deffnx def-cmd-deffn"><span class="category-def">truc: </span></dt>
-</dl>
-<pre class="example-preformatted">
-
-</pre><div class="group"><pre class="example-preformatted">g--roupe
-</pre></div><pre class="example-preformatted">
-
-<code class="code">@ref{node}</code> `node'
-
-<code class="code">@ref{,cross ref name}</code> `cross ref name'
-<code class="code">@ref{,,title}</code> `title'
-<code class="code">@ref{,,,file name}</code> <a href="file
name.xhtml#Top">(file name)</a>
-<code class="code">@ref{,,,,manual}</code> <cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name}</code> `cross ref name'
-<code class="code">@ref{node,,title}</code> `title'
-<code class="code">@ref{node,,,file name}</code> <a href="file
name.xhtml#node">(file name)node</a>
-<code class="code">@ref{node,,,,manual}</code> `node' in <cite
class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title,}</code> `title'
-<code class="code">@ref{node,cross ref name,,file name}</code> <a href="file
name.xhtml#node">(file name)cross ref name</a>
-<code class="code">@ref{node,cross ref name,,,manual}</code> `cross ref name'
in <cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title,file name}</code> <a
href="file name.xhtml#node">(file name)title</a>
-<code class="code">@ref{node,cross ref name,title,,manual}</code> `title' in
<cite class="cite">manual</cite>
-<code class="code">@ref{node,cross ref name,title, file name, manual}</code>
<a href="file name.xhtml#node">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{node,,title,file name}</code> <a href="file
name.xhtml#node">(file name)title</a>
-<code class="code">@ref{node,,title,,manual}</code> `title' in <cite
class="cite">manual</cite>
-<code class="code">@ref{chapter,,title, file name, manual}</code> <a
href="file name.xhtml#chapter">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{node,,title, file name, manual}</code> <a href="file
name.xhtml#node">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{node,,,file name,manual}</code> <a href="file
name.xhtml#node">node</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title,}</code> `title'
-<code class="code">@ref{,cross ref name,,file name}</code> <a href="file
name.xhtml#Top">(file name)cross ref name</a>
-<code class="code">@ref{,cross ref name,,,manual}</code> `cross ref name' in
<cite class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title,file name}</code> <a href="file
name.xhtml#Top">(file name)title</a>
-<code class="code">@ref{,cross ref name,title,,manual}</code> `title' in <cite
class="cite">manual</cite>
-<code class="code">@ref{,cross ref name,title, file name, manual}</code> <a
href="file name.xhtml#Top">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{,,title,file name}</code> <a href="file
name.xhtml#Top">(file name)title</a>
-<code class="code">@ref{,,title,,manual}</code> `title' in <cite
class="cite">manual</cite>
-<code class="code">@ref{,,title, file name, manual}</code> <a href="file
name.xhtml#Top">title</a> in <cite class="cite">manual</cite>
-<code class="code">@ref{,,,file name,manual}</code> <cite class="cite"><a
href="file name.xhtml#Top">manual</a></cite>
-
-<code class="code">@inforef{,cross ref name }</code> See `cross ref name'
-<code class="code">@inforef{,,file name}</code> See <a href="file
name.xhtml#Top">(file name)</a>
-<code class="code">@inforef{,cross ref name, file name}</code> See <a
href="file name.xhtml#Top">(file name)cross ref name</a>
-<code class="code">@inforef{}</code>
-
-
-</pre></div>
-
-<a class="index-entry-id" id="index-t_002d_002druc"></a>
-<a class="index-entry-id" id="index-T_002d_002druc"></a>
-<a class="index-entry-id" id="index-_002e"></a>
-<a class="index-entry-id" id="index-_003f"></a>
-<a class="index-entry-id" id="index-a"></a>
-<a class="index-entry-id" id="index-t_002d_002druc-1"></a>
-<a class="index-entry-id" id="index-T_002d_002druc-1"></a>
-<a class="index-entry-id" id="index-_002e-1"></a>
-<a class="index-entry-id" id="index-_003f-1"></a>
-<a class="index-entry-id" id="index-a-7"></a>
-
-<a class="index-entry-id" id="index-a_002d_002d_002da"></a>
-<a class="index-entry-id" id="index-b_002d_002d_002db"></a>
-<a class="index-entry-id" id="index-d_002d_002d_002ddd"></a>
-
-<a class="index-entry-id" id="index-f_002d_002d_002daa"></a>
-<a class="index-entry-id" id="index-f_002d_002d_002dbb"></a>
-<a class="index-entry-id" id="index-f_002d_002d_002dddd"></a>
-
-
-
-<a class="index-entry-id" id="index-aaa"></a>
-
-<a class="index-entry-id" id="index-xxx"></a>
-
-<a class="index-entry-id" id="index-"></a>
-
-<a class="index-entry-id"
id="index-a-index_002d_002d_002dentry-te-_002d_002d_002d-i"></a>
-
-<a class="index-entry-id" id="index-truc-4"></a>
-
-<a class="index-entry-id" id="index-g_002d_002d_002dgg"></a>
-
-<a class="index-entry-id" id="index-f_002d_002d_002dggg"></a>
-
-
-
-
-<p>Text<a class="footnote" id="DOCF9" href="#FOOT9"><sup>11</sup></a>
-</p>
-<p>truc
-</p>
-<div class="printindex truc-printindex">
-<table class="truc-letters-header-printindex"><tr><th valign="top">Jump to:
  </th><td><a class="summary-letter-printindex"
href="#chapter-1_truc_letter-T"><b>T</b></a>
-  
-</td></tr></table>
-<table class="truc-entries-printindex" border="0">
-<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left">
Section</th></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_truc_letter-T">T</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-truc-4">truc</a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-</table>
-<table class="truc-letters-footer-printindex"><tr><th valign="top">Jump to:
  </th><td><a class="summary-letter-printindex"
href="#chapter-1_truc_letter-T"><b>T</b></a>
-  
-</td></tr></table>
-</div>
-
-<p>codeidx
-</p>
-<div class="printindex codeidx-printindex">
-<table class="codeidx-letters-header-printindex"><tr><th valign="top">Jump to:
  </th><td><a class="summary-letter-printindex"
href="#chapter-1_codeidx_letter-A"><b>A</b></a>
-  
-</td></tr></table>
-<table class="codeidx-entries-printindex" border="0">
-<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left">
Section</th></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_codeidx_letter-A">A</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a-index_002d_002d_002dentry-te-_002d_002d_002d-i"><code>a <var
class="var">index---entry</var> tẽ ---
î</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-</table>
-<table class="codeidx-letters-footer-printindex"><tr><th valign="top">Jump to:
  </th><td><a class="summary-letter-printindex"
href="#chapter-1_codeidx_letter-A"><b>A</b></a>
-  
-</td></tr></table>
-</div>
-
-<p>cp
-</p><div class="printindex cp-printindex">
-<table class="cp-letters-header-printindex"><tr><th valign="top">Jump to:
  </th><td><a class="summary-letter-printindex"
href="#chapter-1_cp_symbol-1"><b>"</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_symbol-2"><b>-</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_symbol-3"><b>.</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_symbol-4"><b>?</b></a>
-  
-<br/>
-<a class="summary-letter-printindex" href="#chapter-1_cp_letter-A"><b>A</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_letter-B"><b>B</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_letter-C"><b>C</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_letter-D"><b>D</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_letter-G"><b>G</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_letter-I"><b>I</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_letter-T"><b>T</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_letter-V"><b>V</b></a>
-  
-</td></tr></table>
-<table class="cp-entries-printindex" border="0">
-<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left">
Section</th></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_cp_symbol-1">"</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-_0060_0060">“</a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-_0060_0060">“</a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_0060_0060">“</a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_0060_0060-1">“</a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_cp_symbol-2">-</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-_002d_002doption">–option</a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-_002d_002doption">–option</a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_002d_002doption">–option</a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_002d_002doption-1">–option</a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_cp_symbol-3">.</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_002e">.</a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_cp_symbol-4">?</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_003f">?</a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_cp_letter-A">A</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a href="#index-a">a</a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-aaa">aaa,
bbb</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a_002d_002d_002da">a—a</a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-a_002d_002dasis"><code>a--asis</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-a_002d_002dasis"><code>a--asis</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a_002d_002dasis"><code>a--asis</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a_002d_002dasis-1"><code>a--asis</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_cp_letter-B">B</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-b-2"><code>b</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-b-2"><code>b</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-b-4"><code>b</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-b-5"><code>b</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-b_002d_002d_002db">b—b,
c—c</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_cp_letter-C">C</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a href="#index-counting-entry">counting
entry</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_cp_letter-D">D</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a href="#index-d_002d_002d_002ddd">d—dd,
e—ee, f—ff</a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defcv_005fname"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defcv_005fname-1"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defcv_005fname"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defcv_005fname-1"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defcv_005fname"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defcv_005fname-1"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defcv_005fname-2"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defcv_005fname-3"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defivar_005fname-of-c_002d_002dlass"><code>d--efivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defivar_005fname-of-c_002d_002dlass"><code>d--efivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defivar_005fname-of-c_002d_002dlass"><code>d--efivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defivar_005fname-of-c_002d_002dlass-1"><code>d--efivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defopt_005fname"><code>d--efopt_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defopt_005fname"><code>d--efopt_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defopt_005fname"><code>d--efopt_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defopt_005fname-1"><code>d--efopt_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-2"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-3"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-2"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-3"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><code>d--eftypeivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><code>d--eftypeivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><code>d--eftypeivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass-1"><code>d--eftypeivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypevar_005fname"><code>d--eftypevar_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypevar_005fname"><code>d--eftypevar_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypevar_005fname"><code>d--eftypevar_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypevar_005fname-1"><code>d--eftypevar_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypevr_005fname"><code>d--eftypevr_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypevr_005fname"><code>d--eftypevr_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypevr_005fname"><code>d--eftypevr_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypevr_005fname-1"><code>d--eftypevr_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defvar_005fname"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defvar_005fname-1"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defvar_005fname"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defvar_005fname-1"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defvar_005fname"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defvar_005fname-1"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defvar_005fname-2"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defvar_005fname-3"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defvr_005fname"><code>d--efvr_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defvr_005fname"><code>d--efvr_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defvr_005fname"><code>d--efvr_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defvr_005fname-1"><code>d--efvr_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_cp_letter-G">G</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a href="#index-g_002d_002d_002dgg">g—gg,
h—hh jjj, k—kk, l—ll</a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_cp_letter-I">I</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-index-entry-between-item-and-itemx">index entry between
item and itemx</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-index-entry-between-item-and-itemx-1">index entry between
item and itemx</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-index-entry-between-item-and-itemx">index entry between
item and itemx</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-index-entry-between-item-and-itemx-1">index entry
between item and itemx</a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-between-item-and-itemx">index entry between item and
itemx</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-between-item-and-itemx-1">index entry between item and
itemx</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-between-item-and-itemx-2">index entry between item and
itemx</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-between-item-and-itemx-3">index entry between item and
itemx</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-index-entry-in-footnote">index
entry in footnote</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-index-entry-within-deffn">index entry within
deffn</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-index-entry-within-deffn">index entry within
deffn</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-index-entry-within-deffn">index
entry within deffn</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-within-deffn-1">index entry within
deffn</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-index-entry-within-itemize">index entry within
itemize</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-index-entry-within-itemize">index entry within
itemize</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-within-itemize">index entry within
itemize</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-within-itemize-1">index entry within
itemize</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-index-entry-within-multitable">index entry within
multitable</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-index-entry-within-multitable">index entry within
multitable</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-within-multitable">index entry within
multitable</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-within-multitable-1">index entry within
multitable</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_cp_letter-T">T</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-t_002d_002druc">t–ruc</a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-T_002d_002druc">T–ruc</a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_cp_letter-V">V</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-vtable-i_002d_002dtem-code-kbdinputstyle"><code>vtable
i--tem code kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-vtable-i_002d_002dtem-code-kbdinputstyle"><code>vtable
i--tem code kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-code-kbdinputstyle"><code>vtable i--tem code
kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-code-kbdinputstyle-1"><code>vtable i--tem
code kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-vtable-i_002d_002dtem-default-kbdinputstyle"><code>vtable
i--tem default kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-vtable-i_002d_002dtem-default-kbdinputstyle"><code>vtable
i--tem default kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-default-kbdinputstyle"><code>vtable i--tem
default kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-default-kbdinputstyle-1"><code>vtable i--tem
default kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-vtable-i_002d_002dtem-distinct-kbdinputstyle"><code>vtable
i--tem distinct kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-vtable-i_002d_002dtem-distinct-kbdinputstyle"><code>vtable
i--tem distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-distinct-kbdinputstyle"><code>vtable i--tem
distinct kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-distinct-kbdinputstyle-1"><code>vtable
i--tem distinct kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-vtable-i_002d_002dtem-example-kbdinputstyle"><code>vtable
i--tem example kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-vtable-i_002d_002dtem-example-kbdinputstyle"><code>vtable
i--tem example kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-example-kbdinputstyle"><code>vtable i--tem
example kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-example-kbdinputstyle-1"><code>vtable i--tem
example kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-vtable-i_002d_002dtem-in-example-code-kbdinputstyle"><code>vtable
i--tem in example code kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-vtable-i_002d_002dtem-in-example-code-kbdinputstyle"><code>vtable
i--tem in example code kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-in-example-code-kbdinputstyle"><code>vtable
i--tem in example code kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-in-example-code-kbdinputstyle-1"><code>vtable
i--tem in example code kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-vtable-i_002d_002dtem-in-example-default-kbdinputstyle"><code>vtable
i--tem in example default kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-vtable-i_002d_002dtem-in-example-default-kbdinputstyle"><code>vtable
i--tem in example default kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-in-example-default-kbdinputstyle"><code>vtable
i--tem in example default kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-in-example-default-kbdinputstyle-1"><code>vtable
i--tem in example default kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-vtable-i_002d_002dtem-in-example-distinct-kbdinputstyle"><code>vtable
i--tem in example distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-vtable-i_002d_002dtem-in-example-distinct-kbdinputstyle"><code>vtable
i--tem in example distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-in-example-distinct-kbdinputstyle"><code>vtable
i--tem in example distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-in-example-distinct-kbdinputstyle-1"><code>vtable
i--tem in example distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-vtable-i_002d_002dtem-in-example-example-kbdinputstyle"><code>vtable
i--tem in example example kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-vtable-i_002d_002dtem-in-example-example-kbdinputstyle"><code>vtable
i--tem in example example kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-in-example-example-kbdinputstyle"><code>vtable
i--tem in example example kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-in-example-example-kbdinputstyle-1"><code>vtable
i--tem in example example kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-</table>
-<table class="cp-letters-footer-printindex"><tr><th valign="top">Jump to:
  </th><td><a class="summary-letter-printindex"
href="#chapter-1_cp_symbol-1"><b>"</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_symbol-2"><b>-</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_symbol-3"><b>.</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_symbol-4"><b>?</b></a>
-  
-<br/>
-<a class="summary-letter-printindex" href="#chapter-1_cp_letter-A"><b>A</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_letter-B"><b>B</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_letter-C"><b>C</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_letter-D"><b>D</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_letter-G"><b>G</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_letter-I"><b>I</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_letter-T"><b>T</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_cp_letter-V"><b>V</b></a>
-  
-</td></tr></table>
-</div>
-
-<p>fn
-</p><div class="printindex fn-printindex">
-<table class="fn-letters-header-printindex"><tr><th valign="top">Jump to:
  </th><td><a class="summary-letter-printindex"
href="#chapter-1_fn_symbol-1"><b>-</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_symbol-2"><b>.</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_symbol-3"><b>?</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_symbol-4"><b>`</b></a>
-  
-<br/>
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-A"><b>A</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-B"><b>B</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-D"><b>D</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-F"><b>F</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-I"><b>I</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-L"><b>L</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-M"><b>M</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-N"><b>N</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-T"><b>T</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-X"><b>X</b></a>
-  
-</td></tr></table>
-<table class="fn-entries-printindex" border="0">
-<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left">
Section</th></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_fn_symbol-1">-</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-_002d_002dfoption"><code>--foption</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-_002d_002dfoption"><code>--foption</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_002d_002dfoption"><code>--foption</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_002d_002dfoption-1"><code>--foption</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_fn_symbol-2">.</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_002e-1"><code>.</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_fn_symbol-3">?</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_003f-1"><code>?</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_fn_symbol-4">`</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-_0060_0060-1"><code>``</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-_0060_0060-1"><code>``</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_0060_0060-2"><code>``</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_0060_0060-3"><code>``</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_fn_letter-A">A</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-a"><code>a</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-a-1"><code>a</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-a-2"><code>a</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-a"><code>a</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-a-1"><code>a</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-a-2"><code>a</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a-1"><code>a</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a-2"><code>a</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a-3"><code>a</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a-4"><code>a</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a-5"><code>a</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a-6"><code>a</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a-7"><code>a</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-after"><code>after</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-after"><code>after</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-after"><code>after</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-after-1"><code>after</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-arg2"><code>arg2</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-arg2"><code>arg2</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-arg2"><code>arg2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-arg2-1"><code>arg2</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_fn_letter-B">B</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-b"><code>b</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-b-1"><code>b</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-b"><code>b</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-b-1"><code>b</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-b"><code>b</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-b-1"><code>b</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-b-2"><code>b</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-b-3"><code>b</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-bidule-machin"><code>bidule
machin</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-bidule-machin"><code>bidule
machin</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-bidule-machin"><code>bidule
machin</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-bidule-machin-1"><code>bidule
machin</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_fn_letter-D">D</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deffn_005fname"><code>d--effn_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deffn_005fname"><code>d--effn_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deffn_005fname"><code>d--effn_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deffn_005fname-1"><code>d--effn_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defmac_005fname"><code>d--efmac_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defmac_005fname"><code>d--efmac_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defmac_005fname"><code>d--efmac_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defmac_005fname-1"><code>d--efmac_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defmethod_005fname-on-c_002d_002dlass"><code>d--efmethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defmethod_005fname-on-c_002d_002dlass"><code>d--efmethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defmethod_005fname-on-c_002d_002dlass"><code>d--efmethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defmethod_005fname-on-c_002d_002dlass-1"><code>d--efmethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defop_005fname-on-c_002d_002dlass"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defop_005fname-on-c_002d_002dlass-1"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defop_005fname-on-c_002d_002dlass"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defop_005fname-on-c_002d_002dlass-1"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defop_005fname-on-c_002d_002dlass"><code>d--efop_name on
c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defop_005fname-on-c_002d_002dlass-1"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defop_005fname-on-c_002d_002dlass-2"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defop_005fname-on-c_002d_002dlass-3"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defspec_005fname"><code>d--efspec_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defspec_005fname"><code>d--efspec_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defspec_005fname"><code>d--efspec_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defspec_005fname-1"><code>d--efspec_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypefn_005fname"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypefn_005fname-1"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypefn_005fname"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypefn_005fname-1"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypefn_005fname"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypefn_005fname-1"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypefn_005fname-2"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypefn_005fname-3"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypefn_005fname2"><code>d--eftypefn_name2</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypefn_005fname2"><code>d--eftypefn_name2</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypefn_005fname2"><code>d--eftypefn_name2</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypefn_005fname2-1"><code>d--eftypefn_name2</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypefun_005fname"><code>d--eftypefun_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypefun_005fname"><code>d--eftypefun_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypefun_005fname"><code>d--eftypefun_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypefun_005fname-1"><code>d--eftypefun_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><code>d--eftypemethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><code>d--eftypemethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><code>d--eftypemethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass-1"><code>d--eftypemethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-2"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-3"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-2"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-3"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defun_005fname"><code>d--efun_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defun_005fname"><code>d--efun_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defun_005fname"><code>d--efun_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defun_005fname-1"><code>d--efun_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-de_002d_002dffn_005fname"><code>de--ffn_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-de_002d_002dffn_005fname"><code>de--ffn_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-de_002d_002dffn_005fname"><code>de--ffn_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-de_002d_002dffn_005fname-1"><code>de--ffn_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-deffn"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-deffn-1"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-deffn"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-deffn-1"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-deffn"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-deffn-1"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-deffn-2"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-deffn-3"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-deffnx"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-deffnx-1"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-deffnx"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-deffnx-1"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-deffnx"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-deffnx-1"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-deffnx-2"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-deffnx-3"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_fn_letter-F">F</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-f_002d_002d_002daa"><code>f---aa</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-f_002d_002d_002dbb"><code>f---bb,
f---cc</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-f_002d_002d_002dddd"><code>f---ddd, f---eee,
ffff</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-f_002d_002d_002dggg"><code>f---ggg, f---hhh fjjj, f---kkk,
f---lll</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-followed"><code>followed</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-followed-1"><code>followed</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-followed"><code>followed</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-followed-1"><code>followed</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-followed"><code>followed</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-followed-1"><code>followed</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-followed-2"><code>followed</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-followed-3"><code>followed</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_fn_letter-I">I</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a href="#index-copying-i"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-copying-i-1"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-titlepage-i"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-titlepage-i-1"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-i"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-i-1"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-i-2"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-i-3"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-copying-id-i-ule"><code><b
class="b">id ‘<samp class="samp">i</samp>’
ule</b></code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-titlepage-id-i-ule"><code><b
class="b">id ‘<samp class="samp">i</samp>’
ule</b></code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-id-i-ule"><code><b class="b">id
‘<samp class="samp">i</samp>’
ule</b></code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-id-i-ule-1"><code><b
class="b">id ‘<samp class="samp">i</samp>’
ule</b></code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-copying-id-ule"><code><b
class="b">id ule</b></code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-titlepage-id-ule"><code><b
class="b">id ule</b></code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-id-ule"><code><b class="b">id
ule</b></code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-id-ule-1"><code><b class="b">id
ule</b></code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-copying-invalid"><code><var
class="var">invalid</var></code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-titlepage-invalid"><code><var
class="var">invalid</var></code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-invalid"><code><var
class="var">invalid</var></code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-invalid-1"><code><var
class="var">invalid</var></code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_fn_letter-L">L</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a href="#index-copying-log-trap"><code>log
trap</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-titlepage-log-trap"><code>log
trap</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-log-trap"><code>log
trap</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-log-trap-1"><code>log
trap</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-copying-log-trap1"><code>log
trap1</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-titlepage-log-trap1"><code>log
trap1</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-log-trap1"><code>log
trap1</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-log-trap1-1"><code>log
trap1</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-copying-log-trap2"><code>log
trap2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-titlepage-log-trap2"><code>log
trap2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-log-trap2"><code>log
trap2</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-log-trap2-1"><code>log
trap2</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_fn_letter-M">M</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-machin"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-machin-1"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-machin-2"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-machin-3"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-machin-4"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-machin-5"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-machin"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-machin-1"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-machin-2"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-machin-3"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-machin-4"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-machin-5"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-1"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-2"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-3"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-4"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-5"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-6"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-7"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-8"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-9"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-10"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-11"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_fn_letter-N">N</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-n_002d_002dame"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-n_002d_002dame-1"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-n_002d_002dame"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-n_002d_002dame-1"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-n_002d_002dame"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-n_002d_002dame-1"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-n_002d_002dame-2"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-n_002d_002dame-3"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-name2"><code>name2</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-name2"><code>name2</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-name2"><code>name2</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-name2-1"><code>name2</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_fn_letter-T">T</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-t_002d_002druc-1"><code>t--ruc</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-T_002d_002druc-1"><code>T--ruc</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-truc"><code>truc</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-truc-1"><code>truc</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-truc"><code>truc</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-truc-1"><code>truc</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-truc"><code>truc</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-truc-1"><code>truc</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-truc-2"><code>truc</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-truc-3"><code>truc</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_fn_letter-X">X</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a href="#index-xxx"><code>xxx,
zzz</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-</table>
-<table class="fn-letters-footer-printindex"><tr><th valign="top">Jump to:
  </th><td><a class="summary-letter-printindex"
href="#chapter-1_fn_symbol-1"><b>-</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_symbol-2"><b>.</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_symbol-3"><b>?</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_symbol-4"><b>`</b></a>
-  
-<br/>
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-A"><b>A</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-B"><b>B</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-D"><b>D</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-F"><b>F</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-I"><b>I</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-L"><b>L</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-M"><b>M</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-N"><b>N</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-T"><b>T</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-1_fn_letter-X"><b>X</b></a>
-  
-</td></tr></table>
-</div>
-
-<p>vr
-</p>
-<p>ky
-</p>
-<p>pg
-</p>
-<p>tp
-</p><div class="printindex tp-printindex">
-<table class="tp-letters-header-printindex"><tr><th valign="top">Jump to:
  </th><td><a class="summary-letter-printindex"
href="#chapter-1_tp_letter-D"><b>D</b></a>
-  
-</td></tr></table>
-<table class="tp-entries-printindex" border="0">
-<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left">
Section</th></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-1_tp_letter-D">D</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftp_005fname"><code>d--eftp_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftp_005fname"><code>d--eftp_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftp_005fname"><code>d--eftp_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftp_005fname-1"><code>d--eftp_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-</table>
-<table class="tp-letters-footer-printindex"><tr><th valign="top">Jump to:
  </th><td><a class="summary-letter-printindex"
href="#chapter-1_tp_letter-D"><b>D</b></a>
-  
-</td></tr></table>
-</div>
-
-
-
-<p><a class="footnote" id="DOCF10" href="#FOOT10"><sup>12</sup></a>
-</p>
-<div class="format">
-<table class="menu" border="0" cellspacing="0"><tr><td>
-<pre class="menu-preformatted">• <a
href="#s_002d_002dect_002cion">s--ect,ion</a>:: </pre><pre
class="menu-entry-description-preformatted">s–ect,ion
-</pre><pre class="menu-comment-preformatted">
-
-Menu comment
-“simple-double–three—four—-”
-
-
-</pre></td></tr></table>
-</div>
-
-<div class="section-level-extent" id="s_002d_002dect_002cion">
-<h2 class="section" id="A-section">1.1 A section</h2>
-
-<table class="menu" border="0" cellspacing="0">
-<tr><td align="left" valign="top"><a href="#subsection">1.1.1
subsection</a></td><td>  </td><td align="left" valign="top">
-</td></tr>
-<tr><th colspan="3" align="left" valign="top"><pre
class="menu-comment-preformatted">
-
-</pre></th></tr><tr><th colspan="3" align="left" valign="top"><pre
class="menu-comment-preformatted">In detailmenu
-
-</pre></th></tr><tr><td align="left" valign="top"><a
href="#subsubsection-_0060_0060simple_002ddouble_002d_002d">1.1.1.1
subsubsection “simple-double–</a></td><td>  </td><td
align="left" valign="top">
-</td></tr>
-<tr><td align="left" valign="top"><a
href="#subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027">1.1.1.2
three—four—-”</a></td><td>  </td><td align="left"
valign="top">
-</td></tr>
-</table>
-
-<div class="subsection-level-extent" id="subsection">
-<h3 class="subsection" id="subsection-1">1.1.1 subsection</h3>
-
-<table class="menu" border="0" cellspacing="0">
-<tr><td align="left" valign="top"><a
href="#subsubsection-_0060_0060simple_002ddouble_002d_002d">1.1.1.1
subsubsection “simple-double–</a></td><td>  </td><td
align="left" valign="top">
-</td></tr>
-<tr><td align="left" valign="top"><a
href="#subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027">1.1.1.2
three—four—-”</a></td><td>  </td><td align="left"
valign="top">
-</td></tr>
-</table>
-
-<a class="anchor" id="anchor"></a>
-<div class="subsubsection-level-extent"
id="subsubsection-_0060_0060simple_002ddouble_002d_002d">
-<h4 class="subsubsection"
id="subsubsection-_0060_0060simple_002ddouble_002d_002d-1">1.1.1.1
subsubsection “simple-double–</h4>
-
-</div>
-<div class="subsubsection-level-extent"
id="subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027">
-<h4 class="subsubsection"
id="three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027">1.1.1.2
three—four—-”</h4>
-
-</div>
-</div>
-</div>
-</div>
-<div class="centerchap-level-extent" id="chapter2">
-<h1 class="centerchap" id="chapter-2">chapter 2</h1>
-
-<div class="printindex cp-printindex">
-<table class="cp-letters-header-printindex"><tr><th valign="top">Jump to:
  </th><td><a class="summary-letter-printindex"
href="#chapter-2_cp_symbol-1"><b>"</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_symbol-2"><b>-</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_symbol-3"><b>.</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_symbol-4"><b>?</b></a>
-  
-<br/>
-<a class="summary-letter-printindex" href="#chapter-2_cp_letter-A"><b>A</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_letter-B"><b>B</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_letter-C"><b>C</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_letter-D"><b>D</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_letter-G"><b>G</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_letter-I"><b>I</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_letter-T"><b>T</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_letter-V"><b>V</b></a>
-  
-</td></tr></table>
-<table class="cp-entries-printindex" border="0">
-<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left">
Section</th></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_cp_symbol-1">"</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-_0060_0060">“</a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-_0060_0060">“</a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_0060_0060">“</a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_0060_0060-1">“</a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_cp_symbol-2">-</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-_002d_002doption">–option</a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-_002d_002doption">–option</a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_002d_002doption">–option</a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_002d_002doption-1">–option</a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_cp_symbol-3">.</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_002e">.</a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_cp_symbol-4">?</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_003f">?</a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_cp_letter-A">A</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a href="#index-a">a</a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-aaa">aaa,
bbb</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a_002d_002d_002da">a—a</a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-a_002d_002dasis"><code>a--asis</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-a_002d_002dasis"><code>a--asis</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a_002d_002dasis"><code>a--asis</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a_002d_002dasis-1"><code>a--asis</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_cp_letter-B">B</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-b-2"><code>b</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-b-2"><code>b</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-b-4"><code>b</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-b-5"><code>b</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-b_002d_002d_002db">b—b,
c—c</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_cp_letter-C">C</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a href="#index-counting-entry">counting
entry</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_cp_letter-D">D</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a href="#index-d_002d_002d_002ddd">d—dd,
e—ee, f—ff</a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defcv_005fname"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defcv_005fname-1"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defcv_005fname"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defcv_005fname-1"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defcv_005fname"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defcv_005fname-1"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defcv_005fname-2"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defcv_005fname-3"><code>d--efcv_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defivar_005fname-of-c_002d_002dlass"><code>d--efivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defivar_005fname-of-c_002d_002dlass"><code>d--efivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defivar_005fname-of-c_002d_002dlass"><code>d--efivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defivar_005fname-of-c_002d_002dlass-1"><code>d--efivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defopt_005fname"><code>d--efopt_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defopt_005fname"><code>d--efopt_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defopt_005fname"><code>d--efopt_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defopt_005fname-1"><code>d--efopt_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-2"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-3"><code>d--eftypecv_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-2"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-3"><code>d--eftypecv_name2
of c--lass2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><code>d--eftypeivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><code>d--eftypeivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><code>d--eftypeivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass-1"><code>d--eftypeivar_name
of c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypevar_005fname"><code>d--eftypevar_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypevar_005fname"><code>d--eftypevar_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypevar_005fname"><code>d--eftypevar_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypevar_005fname-1"><code>d--eftypevar_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypevr_005fname"><code>d--eftypevr_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypevr_005fname"><code>d--eftypevr_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypevr_005fname"><code>d--eftypevr_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypevr_005fname-1"><code>d--eftypevr_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defvar_005fname"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defvar_005fname-1"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defvar_005fname"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defvar_005fname-1"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defvar_005fname"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defvar_005fname-1"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defvar_005fname-2"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defvar_005fname-3"><code>d--efvar_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defvr_005fname"><code>d--efvr_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defvr_005fname"><code>d--efvr_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defvr_005fname"><code>d--efvr_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defvr_005fname-1"><code>d--efvr_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_cp_letter-G">G</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a href="#index-g_002d_002d_002dgg">g—gg,
h—hh jjj, k—kk, l—ll</a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_cp_letter-I">I</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-index-entry-between-item-and-itemx">index entry between
item and itemx</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-index-entry-between-item-and-itemx-1">index entry between
item and itemx</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-index-entry-between-item-and-itemx">index entry between
item and itemx</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-index-entry-between-item-and-itemx-1">index entry
between item and itemx</a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-between-item-and-itemx">index entry between item and
itemx</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-between-item-and-itemx-1">index entry between item and
itemx</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-between-item-and-itemx-2">index entry between item and
itemx</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-between-item-and-itemx-3">index entry between item and
itemx</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-index-entry-in-footnote">index
entry in footnote</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-index-entry-within-deffn">index entry within
deffn</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-index-entry-within-deffn">index entry within
deffn</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-index-entry-within-deffn">index
entry within deffn</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-within-deffn-1">index entry within
deffn</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-index-entry-within-itemize">index entry within
itemize</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-index-entry-within-itemize">index entry within
itemize</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-within-itemize">index entry within
itemize</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-within-itemize-1">index entry within
itemize</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-index-entry-within-multitable">index entry within
multitable</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-index-entry-within-multitable">index entry within
multitable</a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-within-multitable">index entry within
multitable</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-index-entry-within-multitable-1">index entry within
multitable</a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_cp_letter-T">T</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-t_002d_002druc">t–ruc</a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-T_002d_002druc">T–ruc</a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_cp_letter-V">V</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-vtable-i_002d_002dtem-code-kbdinputstyle"><code>vtable
i--tem code kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-vtable-i_002d_002dtem-code-kbdinputstyle"><code>vtable
i--tem code kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-code-kbdinputstyle"><code>vtable i--tem code
kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-code-kbdinputstyle-1"><code>vtable i--tem
code kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-vtable-i_002d_002dtem-default-kbdinputstyle"><code>vtable
i--tem default kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-vtable-i_002d_002dtem-default-kbdinputstyle"><code>vtable
i--tem default kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-default-kbdinputstyle"><code>vtable i--tem
default kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-default-kbdinputstyle-1"><code>vtable i--tem
default kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-vtable-i_002d_002dtem-distinct-kbdinputstyle"><code>vtable
i--tem distinct kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-vtable-i_002d_002dtem-distinct-kbdinputstyle"><code>vtable
i--tem distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-distinct-kbdinputstyle"><code>vtable i--tem
distinct kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-distinct-kbdinputstyle-1"><code>vtable
i--tem distinct kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-vtable-i_002d_002dtem-example-kbdinputstyle"><code>vtable
i--tem example kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-vtable-i_002d_002dtem-example-kbdinputstyle"><code>vtable
i--tem example kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-example-kbdinputstyle"><code>vtable i--tem
example kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-example-kbdinputstyle-1"><code>vtable i--tem
example kbdinputstyle</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-vtable-i_002d_002dtem-in-example-code-kbdinputstyle"><code>vtable
i--tem in example code kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-vtable-i_002d_002dtem-in-example-code-kbdinputstyle"><code>vtable
i--tem in example code kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-in-example-code-kbdinputstyle"><code>vtable
i--tem in example code kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-in-example-code-kbdinputstyle-1"><code>vtable
i--tem in example code kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-vtable-i_002d_002dtem-in-example-default-kbdinputstyle"><code>vtable
i--tem in example default kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-vtable-i_002d_002dtem-in-example-default-kbdinputstyle"><code>vtable
i--tem in example default kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-in-example-default-kbdinputstyle"><code>vtable
i--tem in example default kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-in-example-default-kbdinputstyle-1"><code>vtable
i--tem in example default kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-vtable-i_002d_002dtem-in-example-distinct-kbdinputstyle"><code>vtable
i--tem in example distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-vtable-i_002d_002dtem-in-example-distinct-kbdinputstyle"><code>vtable
i--tem in example distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-in-example-distinct-kbdinputstyle"><code>vtable
i--tem in example distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-in-example-distinct-kbdinputstyle-1"><code>vtable
i--tem in example distinct kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-vtable-i_002d_002dtem-in-example-example-kbdinputstyle"><code>vtable
i--tem in example example kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-vtable-i_002d_002dtem-in-example-example-kbdinputstyle"><code>vtable
i--tem in example example kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-in-example-example-kbdinputstyle"><code>vtable
i--tem in example example kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-vtable-i_002d_002dtem-in-example-example-kbdinputstyle-1"><code>vtable
i--tem in example example kbdinputstyle</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-</table>
-<table class="cp-letters-footer-printindex"><tr><th valign="top">Jump to:
  </th><td><a class="summary-letter-printindex"
href="#chapter-2_cp_symbol-1"><b>"</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_symbol-2"><b>-</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_symbol-3"><b>.</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_symbol-4"><b>?</b></a>
-  
-<br/>
-<a class="summary-letter-printindex" href="#chapter-2_cp_letter-A"><b>A</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_letter-B"><b>B</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_letter-C"><b>C</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_letter-D"><b>D</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_letter-G"><b>G</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_letter-I"><b>I</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_letter-T"><b>T</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_cp_letter-V"><b>V</b></a>
-  
-</td></tr></table>
-</div>
-<div class="printindex fn-printindex">
-<table class="fn-letters-header-printindex"><tr><th valign="top">Jump to:
  </th><td><a class="summary-letter-printindex"
href="#chapter-2_fn_symbol-1"><b>-</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_symbol-2"><b>.</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_symbol-3"><b>?</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_symbol-4"><b>`</b></a>
-  
-<br/>
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-A"><b>A</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-B"><b>B</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-D"><b>D</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-F"><b>F</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-I"><b>I</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-L"><b>L</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-M"><b>M</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-N"><b>N</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-T"><b>T</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-X"><b>X</b></a>
-  
-</td></tr></table>
-<table class="fn-entries-printindex" border="0">
-<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left">
Section</th></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_fn_symbol-1">-</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-_002d_002dfoption"><code>--foption</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-_002d_002dfoption"><code>--foption</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_002d_002dfoption"><code>--foption</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_002d_002dfoption-1"><code>--foption</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_fn_symbol-2">.</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_002e-1"><code>.</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_fn_symbol-3">?</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_003f-1"><code>?</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_fn_symbol-4">`</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-_0060_0060-1"><code>``</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-_0060_0060-1"><code>``</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_0060_0060-2"><code>``</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-_0060_0060-3"><code>``</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_fn_letter-A">A</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-a"><code>a</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-a-1"><code>a</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-a-2"><code>a</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-a"><code>a</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-a-1"><code>a</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-a-2"><code>a</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a-1"><code>a</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a-2"><code>a</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a-3"><code>a</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a-4"><code>a</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a-5"><code>a</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a-6"><code>a</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-a-7"><code>a</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-after"><code>after</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-after"><code>after</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-after"><code>after</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-after-1"><code>after</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-arg2"><code>arg2</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-arg2"><code>arg2</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-arg2"><code>arg2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-arg2-1"><code>arg2</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_fn_letter-B">B</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-b"><code>b</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-b-1"><code>b</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-b"><code>b</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-b-1"><code>b</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-b"><code>b</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-b-1"><code>b</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-b-2"><code>b</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-b-3"><code>b</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-bidule-machin"><code>bidule
machin</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-bidule-machin"><code>bidule
machin</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-bidule-machin"><code>bidule
machin</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-bidule-machin-1"><code>bidule
machin</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_fn_letter-D">D</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deffn_005fname"><code>d--effn_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deffn_005fname"><code>d--effn_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deffn_005fname"><code>d--effn_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deffn_005fname-1"><code>d--effn_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defmac_005fname"><code>d--efmac_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defmac_005fname"><code>d--efmac_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defmac_005fname"><code>d--efmac_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defmac_005fname-1"><code>d--efmac_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defmethod_005fname-on-c_002d_002dlass"><code>d--efmethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defmethod_005fname-on-c_002d_002dlass"><code>d--efmethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defmethod_005fname-on-c_002d_002dlass"><code>d--efmethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defmethod_005fname-on-c_002d_002dlass-1"><code>d--efmethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defop_005fname-on-c_002d_002dlass"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defop_005fname-on-c_002d_002dlass-1"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defop_005fname-on-c_002d_002dlass"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defop_005fname-on-c_002d_002dlass-1"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defop_005fname-on-c_002d_002dlass"><code>d--efop_name on
c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defop_005fname-on-c_002d_002dlass-1"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defop_005fname-on-c_002d_002dlass-2"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defop_005fname-on-c_002d_002dlass-3"><code>d--efop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defspec_005fname"><code>d--efspec_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defspec_005fname"><code>d--efspec_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defspec_005fname"><code>d--efspec_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defspec_005fname-1"><code>d--efspec_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypefn_005fname"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypefn_005fname-1"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypefn_005fname"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypefn_005fname-1"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypefn_005fname"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypefn_005fname-1"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypefn_005fname-2"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypefn_005fname-3"><code>d--eftypefn_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypefn_005fname2"><code>d--eftypefn_name2</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypefn_005fname2"><code>d--eftypefn_name2</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypefn_005fname2"><code>d--eftypefn_name2</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypefn_005fname2-1"><code>d--eftypefn_name2</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypefun_005fname"><code>d--eftypefun_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypefun_005fname"><code>d--eftypefun_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypefun_005fname"><code>d--eftypefun_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypefun_005fname-1"><code>d--eftypefun_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><code>d--eftypemethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><code>d--eftypemethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><code>d--eftypemethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass-1"><code>d--eftypemethod_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-2"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-3"><code>d--eftypeop_name
on c--lass</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-2"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-3"><code>d--eftypeop_name2
on c--lass2</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-d_002d_002defun_005fname"><code>d--efun_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-d_002d_002defun_005fname"><code>d--efun_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defun_005fname"><code>d--efun_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-d_002d_002defun_005fname-1"><code>d--efun_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-de_002d_002dffn_005fname"><code>de--ffn_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-de_002d_002dffn_005fname"><code>de--ffn_name</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-de_002d_002dffn_005fname"><code>de--ffn_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-de_002d_002dffn_005fname-1"><code>de--ffn_name</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-deffn"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-deffn-1"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-deffn"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-deffn-1"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-deffn"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-deffn-1"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-deffn-2"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-deffn-3"><code>deffn</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-deffnx"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-deffnx-1"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-deffnx"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-deffnx-1"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-deffnx"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-deffnx-1"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-deffnx-2"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-deffnx-3"><code>deffnx</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_fn_letter-F">F</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-f_002d_002d_002daa"><code>f---aa</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-f_002d_002d_002dbb"><code>f---bb,
f---cc</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-f_002d_002d_002dddd"><code>f---ddd, f---eee,
ffff</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-f_002d_002d_002dggg"><code>f---ggg, f---hhh fjjj, f---kkk,
f---lll</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-followed"><code>followed</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-followed-1"><code>followed</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-followed"><code>followed</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-followed-1"><code>followed</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-followed"><code>followed</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-followed-1"><code>followed</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-followed-2"><code>followed</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-followed-3"><code>followed</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_fn_letter-I">I</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a href="#index-copying-i"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-copying-i-1"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-titlepage-i"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-titlepage-i-1"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-i"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-i-1"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-i-2"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-i-3"><code><var
class="var">i</var></code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-copying-id-i-ule"><code><b
class="b">id ‘<samp class="samp">i</samp>’
ule</b></code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-titlepage-id-i-ule"><code><b
class="b">id ‘<samp class="samp">i</samp>’
ule</b></code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-id-i-ule"><code><b class="b">id
‘<samp class="samp">i</samp>’
ule</b></code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-id-i-ule-1"><code><b
class="b">id ‘<samp class="samp">i</samp>’
ule</b></code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-copying-id-ule"><code><b
class="b">id ule</b></code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-titlepage-id-ule"><code><b
class="b">id ule</b></code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-id-ule"><code><b class="b">id
ule</b></code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-id-ule-1"><code><b class="b">id
ule</b></code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-copying-invalid"><code><var
class="var">invalid</var></code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-titlepage-invalid"><code><var
class="var">invalid</var></code></a></td><td> </td><td valign="top"><a
href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-invalid"><code><var
class="var">invalid</var></code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-invalid-1"><code><var
class="var">invalid</var></code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_fn_letter-L">L</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a href="#index-copying-log-trap"><code>log
trap</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-titlepage-log-trap"><code>log
trap</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-log-trap"><code>log
trap</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-log-trap-1"><code>log
trap</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-copying-log-trap1"><code>log
trap1</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-titlepage-log-trap1"><code>log
trap1</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-log-trap1"><code>log
trap1</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-log-trap1-1"><code>log
trap1</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-copying-log-trap2"><code>log
trap2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-titlepage-log-trap2"><code>log
trap2</code></a></td><td> </td><td valign="top"><a href="#Top">Top
section</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-log-trap2"><code>log
trap2</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td></td><td valign="top"><a href="#index-log-trap2-1"><code>log
trap2</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_fn_letter-M">M</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-machin"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-machin-1"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-machin-2"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-machin-3"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-machin-4"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-machin-5"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-machin"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-machin-1"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-machin-2"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-machin-3"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-machin-4"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-machin-5"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-1"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-2"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-3"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-4"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-5"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-6"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-7"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-8"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-9"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-10"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-machin-11"><code>machin</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_fn_letter-N">N</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-n_002d_002dame"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-n_002d_002dame-1"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-n_002d_002dame"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-n_002d_002dame-1"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-n_002d_002dame"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-n_002d_002dame-1"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-n_002d_002dame-2"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-n_002d_002dame-3"><code>n--ame</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-name2"><code>name2</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-name2"><code>name2</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-name2"><code>name2</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-name2-1"><code>name2</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_fn_letter-T">T</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-t_002d_002druc-1"><code>t--ruc</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-T_002d_002druc-1"><code>T--ruc</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-truc"><code>truc</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-copying-truc-1"><code>truc</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-truc"><code>truc</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-titlepage-truc-1"><code>truc</code></a></td><td> </td><td
valign="top"><a href="#Top">Top section</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-truc"><code>truc</code></a></td><td> </td><td valign="top"><a
href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-truc-1"><code>truc</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-truc-2"><code>truc</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td></td><td valign="top"><a
href="#index-truc-3"><code>truc</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-<tr><th id="chapter-2_fn_letter-X">X</th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a href="#index-xxx"><code>xxx,
zzz</code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
-<tr><td colspan="4"> </td></tr>
-</table>
-<table class="fn-letters-footer-printindex"><tr><th valign="top">Jump to:
  </th><td><a class="summary-letter-printindex"
href="#chapter-2_fn_symbol-1"><b>-</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_symbol-2"><b>.</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_symbol-3"><b>?</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_symbol-4"><b>`</b></a>
-  
-<br/>
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-A"><b>A</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-B"><b>B</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-D"><b>D</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-F"><b>F</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-I"><b>I</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-L"><b>L</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-M"><b>M</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-N"><b>N</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-T"><b>T</b></a>
-  
-<a class="summary-letter-printindex" href="#chapter-2_fn_letter-X"><b>X</b></a>
-  
-</td></tr></table>
-</div>
-
-</div>
-<div class="element-footnotes" id="SEC_Footnotes">
-<h1 class="footnotes-heading">Footnotes</h1>
-
-<h5 class="footnote-body-heading"><a id="FOOT3" href="#DOCF3">(1)</a></h5>
-<p>in footnote</p>
-<h5 class="footnote-body-heading"><a id="FOOT4" href="#DOCF4">(2)</a></h5>
-<p>in footnote2</p>
-<h5 class="footnote-body-heading"><a id="FOOT1" href="#DOCF1">(3)</a></h5>
-<p>in footnote</p>
-<h5 class="footnote-body-heading"><a id="FOOT2" href="#DOCF2">(4)</a></h5>
-<p>in footnote2</p>
-<h5 class="footnote-body-heading"><a id="FOOT1_5" href="#DOCF1_5">(5)</a></h5>
-<p>in footnote</p>
-<h5 class="footnote-body-heading"><a id="FOOT2_6" href="#DOCF2_6">(6)</a></h5>
-<p>in footnote2</p>
-<h5 class="footnote-body-heading"><a id="FOOT5" href="#DOCF5">(7)</a></h5>
-<p>in footnote</p>
-<h5 class="footnote-body-heading"><a id="FOOT6" href="#DOCF6">(8)</a></h5>
-<p>in footnote2</p>
-<h5 class="footnote-body-heading"><a id="FOOT7" href="#DOCF7">(9)</a></h5>
-<p>in footnote</p>
-<h5 class="footnote-body-heading"><a id="FOOT8" href="#DOCF8">(10)</a></h5>
-<p>in footnote2</p>
-<h5 class="footnote-body-heading"><a id="FOOT9" href="#DOCF9">(11)</a></h5>
-<p>in footnote
-<a class="index-entry-id" id="index-index-entry-in-footnote"></a>
-</p>
-<p>Blah
-</p>
-<p>Blih
-</p>
-<a class="index-entry-id" id="index-counting-entry"></a>
-<h5 class="footnote-body-heading"><a id="FOOT10" href="#DOCF10">(12)</a></h5>
-<p>in footnote</p>
-</div><div class="element-contents" id="SEC_Contents">
-<h1 class="contents-heading">Table of Contents</h1>
-
-<div class="contents">
-
-<ul class="toc-numbered-mark">
- <li><a id="toc-chapter-1" href="#chapter" rel="index">1 chapter</a>
- <ul class="toc-numbered-mark">
- <li><a id="toc-A-section" href="#s_002d_002dect_002cion">1.1 A section</a>
- <ul class="toc-numbered-mark">
- <li><a id="toc-subsection-1" href="#subsection">1.1.1 subsection</a>
- <ul class="toc-numbered-mark">
- <li><a id="toc-subsubsection-_0060_0060simple_002ddouble_002d_002d-1"
href="#subsubsection-_0060_0060simple_002ddouble_002d_002d">1.1.1.1
subsubsection “simple-double–</a></li>
- <li><a id="toc-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027"
href="#subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027">1.1.1.2
three—four—-”</a></li>
- </ul></li>
- </ul></li>
- </ul></li>
- <li><a id="toc-chapter-2" href="#chapter2" rel="index">chapter 2</a></li>
-</ul>
-</div>
-</div><div class="element-shortcontents" id="SEC_Shortcontents">
-<h1 class="shortcontents-heading">Short Table of Contents</h1>
-
-<div class="shortcontents">
-<ul class="toc-numbered-mark">
-<li><a id="stoc-chapter-1" href="#chapter" rel="index">1 chapter</a></li>
-<li><a id="stoc-chapter-2" href="#chapter2" rel="index">chapter 2</a></li>
-</ul>
-</div>
-</div><p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+<a class="node" id="Top"></a><a class="top" id="Top-section"></a>
</body>
diff --git
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_abt.xhtml
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting_abt.xhtml
similarity index 96%
copy from
tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_abt.xhtml
copy to
tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting_abt.xhtml
index 7ea534819c..7405c3a1e5 100644
---
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_abt.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting_abt.xhtml
@@ -845,15 +845,8 @@ g-roupe
<meta name="Generator" content="texi2any"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
-<style type="text/css">
-<!--
-span.program-in-footer {font-size: smaller}
--->
-</style>
-
-<link rel="stylesheet" type="text/css" href="../js/info.css"/>
-<script src="../js/modernizr.js" type="text/javascript"></script>
-<script src="../js/info.js" type="text/javascript"></script>
+
+
</head>
<body lang="en">
@@ -959,10 +952,8 @@ span.program-in-footer {font-size: smaller}
</ul>
</li>
</ul>
-</div><p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+</div>
+
-<a href='js_licenses.xhtml' rel='jslicense'><small>JavaScript license
information</small></a>
</body>
</html>
diff --git
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_fot.xhtml
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting_fot.xhtml
similarity index 96%
copy from
tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_fot.xhtml
copy to
tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting_fot.xhtml
index 65414e77a5..a745a88222 100644
---
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_fot.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting_fot.xhtml
@@ -845,15 +845,8 @@ g-roupe
<meta name="Generator" content="texi2any"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
-<style type="text/css">
-<!--
-span.program-in-footer {font-size: smaller}
--->
-</style>
-
-<link rel="stylesheet" type="text/css" href="../js/info.css"/>
-<script src="../js/modernizr.js" type="text/javascript"></script>
-<script src="../js/info.js" type="text/javascript"></script>
+
+
</head>
<body lang="en">
@@ -891,10 +884,8 @@ span.program-in-footer {font-size: smaller}
<a class="index-entry-id" id="index-counting-entry"></a>
<h5 class="footnote-body-heading"><a id="FOOT10"
href="chapter.xhtml#DOCF10">(12)</a></h5>
<p>in footnote</p>
-</div><p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+</div>
+
-<a href='js_licenses.xhtml' rel='jslicense'><small>JavaScript license
information</small></a>
</body>
</html>
diff --git
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_ovr.xhtml
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting_ovr.xhtml
similarity index 95%
copy from
tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_ovr.xhtml
copy to
tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting_ovr.xhtml
index 6da2847859..7cc3b77f5f 100644
---
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_ovr.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting_ovr.xhtml
@@ -847,14 +847,11 @@ g-roupe
<style type="text/css">
<!--
-span.program-in-footer {font-size: smaller}
ul.toc-numbered-mark {list-style: none}
-->
</style>
-<link rel="stylesheet" type="text/css" href="../js/info.css"/>
-<script src="../js/modernizr.js" type="text/javascript"></script>
-<script src="../js/info.js" type="text/javascript"></script>
+
</head>
<body lang="en">
@@ -863,14 +860,12 @@ ul.toc-numbered-mark {list-style: none}
<div class="shortcontents">
<ul class="toc-numbered-mark">
-<li><a id="stoc-chapter-1" href="chapter.xhtml" rel="index">1 chapter</a></li>
+<li><a id="stoc-chapter-1" href="chapter.xhtml#chapter" rel="index">1
chapter</a></li>
<li><a id="stoc-chapter-2" href="chapter2.xhtml" rel="index">chapter 2</a></li>
</ul>
</div>
-</div><p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+</div>
+
-<a href='js_licenses.xhtml' rel='jslicense'><small>JavaScript license
information</small></a>
</body>
</html>
diff --git
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_toc.xhtml
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting_toc.xhtml
similarity index 93%
copy from
tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_toc.xhtml
copy to
tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting_toc.xhtml
index eb8023563e..5d1edbe961 100644
---
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_toc.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting_toc.xhtml
@@ -847,14 +847,11 @@ g-roupe
<style type="text/css">
<!--
-span.program-in-footer {font-size: smaller}
ul.toc-numbered-mark {list-style: none}
-->
</style>
-<link rel="stylesheet" type="text/css" href="../js/info.css"/>
-<script src="../js/modernizr.js" type="text/javascript"></script>
-<script src="../js/info.js" type="text/javascript"></script>
+
</head>
<body lang="en">
@@ -864,24 +861,22 @@ ul.toc-numbered-mark {list-style: none}
<div class="contents">
<ul class="toc-numbered-mark">
- <li><a id="toc-chapter-1" href="chapter.xhtml" rel="index">1 chapter</a>
+ <li><a id="toc-chapter-1" href="chapter.xhtml#chapter" rel="index">1
chapter</a>
<ul class="toc-numbered-mark">
- <li><a id="toc-A-section" href="s_002d_002dect_002cion.xhtml">1.1 A
section</a>
+ <li><a id="toc-A-section" href="chapter.xhtml#s_002d_002dect_002cion">1.1
A section</a>
<ul class="toc-numbered-mark">
- <li><a id="toc-subsection-1" href="subsection.xhtml">1.1.1 subsection</a>
+ <li><a id="toc-subsection-1" href="chapter.xhtml#subsection">1.1.1
subsection</a>
<ul class="toc-numbered-mark">
- <li><a id="toc-subsubsection-_0060_0060simple_002ddouble_002d_002d-1"
href="subsubsection-_0060_0060simple_002ddouble_002d_002d.xhtml">1.1.1.1
subsubsection “simple-double–</a></li>
- <li><a id="toc-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027"
href="subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.xhtml">1.1.1.2
three—four—-”</a></li>
+ <li><a id="toc-subsubsection-_0060_0060simple_002ddouble_002d_002d-1"
href="chapter.xhtml#subsubsection-_0060_0060simple_002ddouble_002d_002d">1.1.1.1
subsubsection “simple-double–</a></li>
+ <li><a id="toc-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027"
href="chapter.xhtml#subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027">1.1.1.2
three—four—-”</a></li>
</ul></li>
</ul></li>
</ul></li>
<li><a id="toc-chapter-2" href="chapter2.xhtml" rel="index">chapter
2</a></li>
</ul>
</div>
-</div><p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+</div>
+
-<a href='js_licenses.xhtml' rel='jslicense'><small>JavaScript license
information</small></a>
</body>
</html>
diff --git
a/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/nav_toc.xhtml
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/nav_toc.xhtml
index 0771e45167..c4ead43e15 100644
---
a/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/nav_toc.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/nav_toc.xhtml
@@ -9,22 +9,22 @@
<h1>Table of contents</h1>
<ol>
- <li><a href="formatting.xhtml#Top">Top section</a></li>
- <li><a href="formatting.xhtml#chapter">1 chapter</a>
+ <li><a href="formatting.xhtml">Top section</a></li>
+ <li><a href="chapter.xhtml#chapter">1 chapter</a>
<ol>
- <li><a href="formatting.xhtml#s_002d_002dect_002cion">1.1 A section</a>
+ <li><a href="chapter.xhtml#s_002d_002dect_002cion">1.1 A section</a>
<ol>
- <li><a href="formatting.xhtml#subsection">1.1.1 subsection</a>
+ <li><a href="chapter.xhtml#subsection">1.1.1 subsection</a>
<ol>
- <li><a
href="formatting.xhtml#subsubsection-_0060_0060simple_002ddouble_002d_002d">1.1.1.1
subsubsection "simple-double-</a></li>
- <li><a
href="formatting.xhtml#subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027">1.1.1.2
three--four---"</a></li>
+ <li><a
href="chapter.xhtml#subsubsection-_0060_0060simple_002ddouble_002d_002d">1.1.1.1
subsubsection "simple-double-</a></li>
+ <li><a
href="chapter.xhtml#subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027">1.1.1.2
three--four---"</a></li>
</ol>
</li>
</ol>
</li>
</ol>
</li>
- <li><a href="formatting.xhtml#chapter2">chapter 2</a></li>
+ <li><a href="chapter2.xhtml">chapter 2</a></li>
</ol>
</nav>
</body>
diff --git
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter.xhtml
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter.xhtml
index 87a1ad89d0..36685fbad4 100644
---
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter.xhtml
@@ -857,10 +857,6 @@ p.flushleft-paragraph {text-align:left}
p.flushright-paragraph {text-align:right}
pre.display-preformatted {font-family: inherit}
pre.format-preformatted {font-family: inherit}
-pre.menu-comment-preformatted {font-family: serif}
-pre.menu-entry-description-preformatted {font-family: serif; display: inline}
-pre.menu-preformatted {font-family: serif}
-span.program-in-footer {font-size: smaller}
span.r {font-family: initial; font-weight: normal; font-style: normal}
span.sansserif {font-family: sans-serif; font-weight: normal}
ul.mark-bullet {list-style-type: disc}
@@ -4911,22 +4907,9 @@ Invalid use of @':
<p><a class="footnote" id="DOCF10"
href="formatting_fot.xhtml#FOOT10"><sup>12</sup></a>
</p>
-<div class="format">
-<table class="menu" border="0" cellspacing="0"><tr><td>
-<pre class="menu-preformatted">• <a
href="s_002d_002dect_002cion.xhtml">s--ect,ion</a>:: </pre><pre
class="menu-entry-description-preformatted">s–ect,ion
-</pre><pre class="menu-comment-preformatted">
-
-Menu comment
-“simple-double–three—four—-”
-
-</pre></td></tr></table>
</div>
-</div>
-<p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
<a href='js_licenses.xhtml' rel='jslicense'><small>JavaScript license
information</small></a>
</body>
diff --git
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter2.xhtml
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter2.xhtml
index 9822621d73..e7407cd244 100644
---
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter2.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter2.xhtml
@@ -849,7 +849,6 @@ g-roupe
<!--
a.summary-letter-printindex {text-decoration: none}
h1.centerchap {text-align:center}
-span.program-in-footer {font-size: smaller}
-->
</style>
@@ -1394,9 +1393,7 @@ span.program-in-footer {font-size: smaller}
</div>
</div>
-<p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+
<a href='js_licenses.xhtml' rel='jslicense'><small>JavaScript license
information</small></a>
</body>
diff --git
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting.xhtml
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting.xhtml
index b5b4a463bb..42307913d2 100644
---
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting.xhtml
@@ -857,8 +857,6 @@ p.flushleft-paragraph {text-align:left}
p.flushright-paragraph {text-align:right}
pre.display-preformatted {font-family: inherit}
pre.format-preformatted {font-family: inherit}
-pre.menu-comment-preformatted {font-family: serif}
-span.program-in-footer {font-size: smaller}
span.r {font-family: initial; font-weight: normal; font-style: normal}
span.sansserif {font-family: sans-serif; font-weight: normal}
ul.mark-bullet {list-style-type: disc}
@@ -3039,9 +3037,7 @@ html ''
-<a class="node" id="Top"></a><a class="top" id="Top-section"></a><p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+<a class="node" id="Top"></a><a class="top" id="Top-section"></a>
<a href='js_licenses.xhtml' rel='jslicense'><small>JavaScript license
information</small></a>
</body>
diff --git
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_abt.xhtml
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_abt.xhtml
index 7ea534819c..94af5a028a 100644
---
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_abt.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_abt.xhtml
@@ -845,11 +845,6 @@ g-roupe
<meta name="Generator" content="texi2any"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
-<style type="text/css">
-<!--
-span.program-in-footer {font-size: smaller}
--->
-</style>
<link rel="stylesheet" type="text/css" href="../js/info.css"/>
<script src="../js/modernizr.js" type="text/javascript"></script>
@@ -959,9 +954,7 @@ span.program-in-footer {font-size: smaller}
</ul>
</li>
</ul>
-</div><p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+</div>
<a href='js_licenses.xhtml' rel='jslicense'><small>JavaScript license
information</small></a>
</body>
diff --git
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_fot.xhtml
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_fot.xhtml
index 65414e77a5..41c783ce11 100644
---
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_fot.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_fot.xhtml
@@ -845,11 +845,6 @@ g-roupe
<meta name="Generator" content="texi2any"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
-<style type="text/css">
-<!--
-span.program-in-footer {font-size: smaller}
--->
-</style>
<link rel="stylesheet" type="text/css" href="../js/info.css"/>
<script src="../js/modernizr.js" type="text/javascript"></script>
@@ -891,9 +886,7 @@ span.program-in-footer {font-size: smaller}
<a class="index-entry-id" id="index-counting-entry"></a>
<h5 class="footnote-body-heading"><a id="FOOT10"
href="chapter.xhtml#DOCF10">(12)</a></h5>
<p>in footnote</p>
-</div><p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+</div>
<a href='js_licenses.xhtml' rel='jslicense'><small>JavaScript license
information</small></a>
</body>
diff --git
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_ovr.xhtml
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_ovr.xhtml
index 6da2847859..1f81a2a99c 100644
---
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_ovr.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_ovr.xhtml
@@ -847,7 +847,6 @@ g-roupe
<style type="text/css">
<!--
-span.program-in-footer {font-size: smaller}
ul.toc-numbered-mark {list-style: none}
-->
</style>
@@ -867,9 +866,7 @@ ul.toc-numbered-mark {list-style: none}
<li><a id="stoc-chapter-2" href="chapter2.xhtml" rel="index">chapter 2</a></li>
</ul>
</div>
-</div><p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+</div>
<a href='js_licenses.xhtml' rel='jslicense'><small>JavaScript license
information</small></a>
</body>
diff --git
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_toc.xhtml
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_toc.xhtml
index eb8023563e..8f8c8f7b4b 100644
---
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_toc.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_toc.xhtml
@@ -847,7 +847,6 @@ g-roupe
<style type="text/css">
<!--
-span.program-in-footer {font-size: smaller}
ul.toc-numbered-mark {list-style: none}
-->
</style>
@@ -878,9 +877,7 @@ ul.toc-numbered-mark {list-style: none}
<li><a id="toc-chapter-2" href="chapter2.xhtml" rel="index">chapter
2</a></li>
</ul>
</div>
-</div><p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+</div>
<a href='js_licenses.xhtml' rel='jslicense'><small>JavaScript license
information</small></a>
</body>
diff --git
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/s_002d_002dect_002cion.xhtml
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/s_002d_002dect_002cion.xhtml
index bf7482e900..e325bb7ace 100644
---
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/s_002d_002dect_002cion.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/s_002d_002dect_002cion.xhtml
@@ -845,12 +845,6 @@ g-roupe
<meta name="Generator" content="texi2any"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
-<style type="text/css">
-<!--
-pre.menu-comment-preformatted {font-family: serif}
-span.program-in-footer {font-size: smaller}
--->
-</style>
<link rel="stylesheet" type="text/css" href="../js/info.css"/>
<script src="../js/modernizr.js" type="text/javascript"></script>
@@ -861,23 +855,9 @@ span.program-in-footer {font-size: smaller}
<div class="section-level-extent" id="s_002d_002dect_002cion">
<h2 class="section" id="A-section">1.1 A section</h2>
-<table class="menu" border="0" cellspacing="0">
-<tr><td align="left" valign="top"><a href="subsection.xhtml">1.1.1
subsection</a></td><td>  </td><td align="left" valign="top">
-</td></tr>
-<tr><th colspan="3" align="left" valign="top"><pre
class="menu-comment-preformatted">
-
-</pre></th></tr><tr><th colspan="3" align="left" valign="top"><pre
class="menu-comment-preformatted">In detailmenu
-
-</pre></th></tr><tr><td align="left" valign="top"><a
href="subsubsection-_0060_0060simple_002ddouble_002d_002d.xhtml">1.1.1.1
subsubsection “simple-double–</a></td><td>  </td><td
align="left" valign="top">
-</td></tr>
-<tr><td align="left" valign="top"><a
href="subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.xhtml">1.1.1.2
three—four—-”</a></td><td>  </td><td align="left"
valign="top">
-</td></tr>
-</table>
</div>
-<p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+
<a href='js_licenses.xhtml' rel='jslicense'><small>JavaScript license
information</small></a>
</body>
diff --git
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsection.xhtml
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsection.xhtml
index 63f67ed942..5fb04e7211 100644
---
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsection.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsection.xhtml
@@ -845,11 +845,6 @@ g-roupe
<meta name="Generator" content="texi2any"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
-<style type="text/css">
-<!--
-span.program-in-footer {font-size: smaller}
--->
-</style>
<link rel="stylesheet" type="text/css" href="../js/info.css"/>
<script src="../js/modernizr.js" type="text/javascript"></script>
@@ -860,18 +855,10 @@ span.program-in-footer {font-size: smaller}
<div class="subsection-level-extent" id="subsection">
<h3 class="subsection" id="subsection-1">1.1.1 subsection</h3>
-<table class="menu" border="0" cellspacing="0">
-<tr><td align="left" valign="top"><a
href="subsubsection-_0060_0060simple_002ddouble_002d_002d.xhtml">1.1.1.1
subsubsection “simple-double–</a></td><td>  </td><td
align="left" valign="top">
-</td></tr>
-<tr><td align="left" valign="top"><a
href="subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.xhtml">1.1.1.2
three—four—-”</a></td><td>  </td><td align="left"
valign="top">
-</td></tr>
-</table>
<a class="anchor" id="anchor"></a>
</div>
-<p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+
<a href='js_licenses.xhtml' rel='jslicense'><small>JavaScript license
information</small></a>
</body>
diff --git
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsubsection-_0060_0060simple_002ddouble_002d_002d.xhtml
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsubsection-_0060_0060simple_002ddouble_002d_002d.xhtml
index 76ec995c3e..406b6ebd5c 100644
---
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsubsection-_0060_0060simple_002ddouble_002d_002d.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsubsection-_0060_0060simple_002ddouble_002d_002d.xhtml
@@ -845,11 +845,6 @@ g-roupe
<meta name="Generator" content="texi2any"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
-<style type="text/css">
-<!--
-span.program-in-footer {font-size: smaller}
--->
-</style>
<link rel="stylesheet" type="text/css" href="../js/info.css"/>
<script src="../js/modernizr.js" type="text/javascript"></script>
@@ -861,9 +856,7 @@ span.program-in-footer {font-size: smaller}
<h4 class="subsubsection"
id="subsubsection-_0060_0060simple_002ddouble_002d_002d-1">1.1.1.1
subsubsection “simple-double–</h4>
</div>
-<p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+
<a href='js_licenses.xhtml' rel='jslicense'><small>JavaScript license
information</small></a>
</body>
diff --git
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.xhtml
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.xhtml
index b8d484f473..432fd5c2f0 100644
---
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.xhtml
+++
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.xhtml
@@ -845,11 +845,6 @@ g-roupe
<meta name="Generator" content="texi2any"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
-<style type="text/css">
-<!--
-span.program-in-footer {font-size: smaller}
--->
-</style>
<link rel="stylesheet" type="text/css" href="../js/info.css"/>
<script src="../js/modernizr.js" type="text/javascript"></script>
@@ -861,9 +856,7 @@ span.program-in-footer {font-size: smaller}
<h4 class="subsubsection"
id="three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027">1.1.1.2
three—four—-”</h4>
</div>
-<p>
- <span class="program-in-footer">This document was generated on <em
class="emph">a sunny day</em> using <a class="uref"
href="http://www.gnu.org/software/texinfo/"><em
class="emph">texi2any</em></a>.</span>
-</p>
+
<a href='js_licenses.xhtml' rel='jslicense'><small>JavaScript license
information</small></a>
</body>
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * tp/ext/epub3.pm: split at chapter, no mini_toc (epub_convert_tree_unit_type): add an output file only once.,
Patrice Dumas <=