[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * doc/texinfo.texi (Other Customization Variables
From: |
Patrice Dumas |
Subject: |
branch master updated: * doc/texinfo.texi (Other Customization Variables), tp/Texinfo/Convert/HTML.pm (non_breaking_space) (substitute_non_breaking_space, %BUTTONS_EXAMPLE) (%defaults, _indent_with_table, _set_non_breaking_space) (converter_initialize, _default_format_special_element_body): use numeric entities everywhere in HTML if USE_NUMERIC_ENTITY is set. Use functions to set and get the non breaking space entity. Set OPEN_QUOTE_SYMBOL CLOSE_QUOTE_SYMBOL and MENU_SYMBOL to undef in the default case, to set [...] |
Date: |
Sun, 19 Dec 2021 11:27:09 -0500 |
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 cb51a16 * doc/texinfo.texi (Other Customization Variables),
tp/Texinfo/Convert/HTML.pm (non_breaking_space) (substitute_non_breaking_space,
%BUTTONS_EXAMPLE) (%defaults, _indent_with_table, _set_non_breaking_space)
(converter_initialize, _default_format_special_element_body): use numeric
entities everywhere in HTML if USE_NUMERIC_ENTITY is set. Use functions to set
and get the non breaking space entity. Set OPEN_QUOTE_SYMBOL
CLOSE_QUOTE_SYMBOL and MENU_SYMBOL to undef in the d [...]
cb51a16 is described below
commit cb51a16caa4b5a6c6119d3c1fb2dcb4506fff348
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sun Dec 19 17:26:57 2021 +0100
* doc/texinfo.texi (Other Customization Variables),
tp/Texinfo/Convert/HTML.pm (non_breaking_space)
(substitute_non_breaking_space, %BUTTONS_EXAMPLE)
(%defaults, _indent_with_table, _set_non_breaking_space)
(converter_initialize, _default_format_special_element_body):
use numeric entities everywhere in HTML if USE_NUMERIC_ENTITY
is set. Use functions to set and get the non breaking space
entity. Set OPEN_QUOTE_SYMBOL CLOSE_QUOTE_SYMBOL and
MENU_SYMBOL to undef in the default case, to set them
dynamically based on USE_NUMERIC_ENTITY.
---
ChangeLog | 13 +
doc/texinfo.texi | 22 +-
tp/Texinfo/Convert/HTML.pm | 133 +-
tp/tests/layout/list-of-tests | 1 +
.../formatting_numerical_entities/formatting.1 | 0
.../formatting_numerical_entities/formatting.2 | 294 +
.../formatting_numerical_entities/formatting.html | 7291 ++++++++++++++++++++
7 files changed, 7714 insertions(+), 40 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 9abc551..ceb2882 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+2021-12-19 Patrice Dumas <pertusus@free.fr>
+
+ * doc/texinfo.texi (Other Customization Variables),
+ tp/Texinfo/Convert/HTML.pm (non_breaking_space)
+ (substitute_non_breaking_space, %BUTTONS_EXAMPLE)
+ (%defaults, _indent_with_table, _set_non_breaking_space)
+ (converter_initialize, _default_format_special_element_body):
+ use numeric entities everywhere in HTML if USE_NUMERIC_ENTITY
+ is set. Use functions to set and get the non breaking space
+ entity. Set OPEN_QUOTE_SYMBOL CLOSE_QUOTE_SYMBOL and
+ MENU_SYMBOL to undef in the default case, to set them
+ dynamically based on USE_NUMERIC_ENTITY.
+
2021-12-19 Gavin Smith <gavinsmith0123@gmail.com>
Documentation of --OPT vs. --no-OPT
diff --git a/doc/texinfo.texi b/doc/texinfo.texi
index f26df09..836bfd1 100644
--- a/doc/texinfo.texi
+++ b/doc/texinfo.texi
@@ -16538,9 +16538,10 @@ Warn if the nodes pointers (either explicitly or
automatically set)
are not consistent with the order of node menu entries.
@item CLOSE_QUOTE_SYMBOL
-When a closing quote is needed, use this character; default @code{’}
-in HTML, @code{’} in DocBook. The default for Info is the same
-as @code{OPEN_QUOTE_SYMBOL} (see below).
+When a closing quote is needed, use this character; default @code{’}
+in DocBook. Undefined in the default case in HTML and set to @code{’}
+if @code{USE_NUMERIC_ENTITY} is not set, and to @code{’} if not set.
+The default for Info is the same as @code{OPEN_QUOTE_SYMBOL} (see below).
@item CPP_LINE_DIRECTIVES
Recognize @code{#line} directives in a ``preprocessing'' pass
@@ -16647,13 +16648,14 @@ default true.
@item OPEN_QUOTE_SYMBOL
When an opening quote is needed, e.g., for @samp{@@samp} output, use
-the specified character; default @code{‘} for HTML,
-@code{‘} for DocBook. For Info, the default depends on the
-enabled document encoding (@pxref{@code{@@documentencoding}}); if no
-document encoding is set, or the encoding is US-ASCII, etc., @samp{'}
-is used. This character usually appears as an undirected single quote
-on modern systems. If the document encoding is Unicode, the Info
-output uses a Unicode left quote.
+the specified character; default @code{‘} for DocBook..
+Undefined in the default case in HTML and set to @code{‘}
+if @code{USE_NUMERIC_ENTITY} is not set, and to @code{’} if set.
+For Info, the default depends on the enabled document encoding
+(@pxref{@code{@@documentencoding}}); if no document encoding is set, or the
+encoding is US-ASCII, etc., @samp{'} is used. This character usually appears
+as an undirected single quote on modern systems. If the document encoding is
+Unicode, the Info output uses a Unicode left quote.
@item OUTPUT_ENCODING_NAME
Normalized encoding name used for output files. Should be a usable
diff --git a/tp/Texinfo/Convert/HTML.pm b/tp/Texinfo/Convert/HTML.pm
index 6d2f127..087c669 100644
--- a/tp/Texinfo/Convert/HTML.pm
+++ b/tp/Texinfo/Convert/HTML.pm
@@ -226,6 +226,28 @@ sub in_raw($)
return $self->{'document_context'}->[-1]->{'raw'};
}
+sub non_breaking_space($)
+{
+ my $self = shift;
+ return $self->{'non_breaking_space'};
+}
+
+my $xml_numeric_entity_nbsp = '&#'.hex('00A0').';';
+my $xml_named_entity_nbsp = ' ';
+
+my $html_default_entity_nbsp = $xml_named_entity_nbsp;
+
+sub substitute_non_breaking_space($$)
+{
+ my $self = shift;
+ my $text = shift;
+
+ my $non_breaking_space = $self->non_breaking_space();
+ # using \Q \E on the substitution leads to spurious \
+ $text =~ s/\Q$html_default_entity_nbsp\E/$non_breaking_space/g;
+ return $text;
+}
+
sub paragraph_number($)
{
my $self = shift;
@@ -931,10 +953,10 @@ my %BUTTONS_ACCESSKEY =
my %BUTTONS_EXAMPLE =
(
- 'Top', ' ',
- 'Contents', ' ',
- 'Overview', ' ',
- 'Index', ' ',
+ 'Top', ' '.$html_default_entity_nbsp.' ',
+ 'Contents', ' '.$html_default_entity_nbsp.' ',
+ 'Overview', ' '.$html_default_entity_nbsp.' ',
+ 'Index', ' '.$html_default_entity_nbsp.' ',
'This', '1.2.3',
'Back', '1.2.2',
'FastBack', '1',
@@ -948,11 +970,11 @@ my %BUTTONS_EXAMPLE =
'NodeBack', '1.2.2',
'Forward', '1.2.4',
'FastForward', '2',
- 'About', ' ',
+ 'About', ' '.$html_default_entity_nbsp.' ',
'First', '1.',
'Last', '1.2.4',
- 'NextFile', ' ',
- 'PrevFile', ' ',
+ 'NextFile', ' '.$html_default_entity_nbsp.' ',
+ 'PrevFile', ' '.$html_default_entity_nbsp.' ',
);
@@ -1028,8 +1050,8 @@ my %defaults = (
'NO_CSS' => 0,
'JS_WEBLABELS' => 'generate',
'JS_WEBLABELS_FILE' => 'js_licenses.html', # no clash with node name
- 'OPEN_QUOTE_SYMBOL' => '‘',
- 'CLOSE_QUOTE_SYMBOL' => '’',
+ 'OPEN_QUOTE_SYMBOL' => undef,
+ 'CLOSE_QUOTE_SYMBOL' => undef,
'USE_ISO' => 1,
'TOP_FILE' => 'index.html',
'EXTENSION' => 'html',
@@ -1089,7 +1111,7 @@ my %defaults = (
'FRAMESET_DOCTYPE' => '<!DOCTYPE html>',
'DEFAULT_RULE' => '<hr>',
'BIG_RULE' => '<hr>',
- 'MENU_SYMBOL' => '•',
+ 'MENU_SYMBOL' => undef,
'MENU_ENTRY_COLON' => ':',
'INDEX_ENTRY_COLON' => ':',
'BODYTEXT' => undef,
@@ -1165,7 +1187,7 @@ sub _translate_names($)
'Contents', $self->gdt('Contents'),
'Overview', $self->gdt('Overview'),
'Index', $self->gdt('Index'),
- ' ', ' ',
+ ' ', ' '.$self->non_breaking_space().' ',
'This', $self->gdt('current'),
'Back', ' < ',
'FastBack', ' << ',
@@ -1193,8 +1215,6 @@ sub _translate_names($)
$BUTTONS_TEXT{'FirstInFile'.$button} = $BUTTONS_TEXT{$button};
}
- #%BUTTONS_TEXT = %NAVIGATION_TEXT;
-
%BUTTONS_GOTO = (
'Top', $self->gdt('Cover (top) of document'),
'Contents', $self->gdt('Table of contents'),
@@ -2848,11 +2868,13 @@ foreach my $command (keys(%inline_commands)) {
$default_commands_conversion{$command} = \&_convert_inline_command;
}
-sub _indent_with_table ($)
+sub _indent_with_table ($$)
{
+ my $self = shift;
my $content = shift;
- return '<table><tr><td> </td><td>'.$content."</td></tr></table>\n";
+ return '<table><tr><td>'.$self->non_breaking_space().'</td><td>'.$content
+ ."</td></tr></table>\n";
}
my $html_menu_entry_index = 0;
@@ -2895,7 +2917,7 @@ sub _convert_preformatted_command($$$$)
if ($content ne '' and !$self->in_string()) {
if ($self->get_conf('COMPLEX_FORMAT_IN_TABLE')) {
if ($indented_preformatted_commands{$cmdname}) {
- return _indent_with_table ($content);
+ return _indent_with_table($self, $content);
} else {
return $content."\n";
}
@@ -2925,7 +2947,7 @@ sub _convert_indented_command($$$$)
if ($content ne '' and !$self->in_string()) {
if ($self->get_conf('COMPLEX_FORMAT_IN_TABLE')) {
- return _indent_with_table ($content);
+ return _indent_with_table($self, $content);
} else {
return $self->html_attribute_class('blockquote', $cmdname).">\n"
.$content.'</blockquote>'."\n";
@@ -3894,16 +3916,18 @@ sub _convert_printindex_command($$$$)
my $join = '';
my $non_alpha_text = '';
my $alpha_text = '';
- $join = " \n<br>\n" if (@non_alpha and @alpha);
+ my $non_breaking_space = $self->non_breaking_space();
+ $join = " $non_breaking_space \n<br>\n" if (@non_alpha and @alpha);
if (@non_alpha) {
- $non_alpha_text = join("\n \n", @non_alpha) . "\n";
+ $non_alpha_text = join("\n $non_breaking_space \n", @non_alpha) . "\n";
}
if (@alpha) {
- $alpha_text = join("\n \n", @alpha) . "\n \n";
+ $alpha_text = join("\n $non_breaking_space \n", @alpha)
+ . "\n $non_breaking_space \n";
}
# format the summary
my $summary = "<table><tr><th valign=\"top\">"
- . $self->convert_tree($self->gdt('Jump to')) .": </th><td>" .
+ . $self->convert_tree($self->gdt('Jump to')) .": $non_breaking_space
</th><td>" .
$non_alpha_text . $join . $alpha_text . "</td></tr></table>\n";
$result .= $summary;
@@ -3912,7 +3936,7 @@ sub _convert_printindex_command($$$$)
$result .= $self->html_attribute_class('table', "index-$index_name")
." border=\"0\">\n" . "<tr><td></td><th align=\"left\">"
. $self->convert_tree($self->gdt('Index Entry'))
- . "</th><td> </td><th align=\"left\"> "
+ . "</th><td>$non_breaking_space</td><th align=\"left\"> "
. $self->convert_tree($self->gdt('Section'))
."</th></tr>\n" . "<tr><td colspan=\"4\"> ".$self->get_conf('DEFAULT_RULE')
."</td></tr>\n";
@@ -3979,7 +4003,7 @@ sub _convert_printindex_command($$$$)
$entries_text .= '<tr><td></td><td valign="top">'
. "<a href=\"$entry_href\">$entry</a>" .
$self->get_conf('INDEX_ENTRY_COLON') .
- '</td><td> </td><td valign="top">';
+ '</td><td>'.$self->non_breaking_space().'</td><td valign="top">';
$entries_text .= "<a
href=\"$associated_command_href\">$associated_command_text</a>"
if ($associated_command_href);
$entries_text .= "</td></tr>\n";
@@ -4485,7 +4509,8 @@ sub _convert_menu_entry_type($$$)
eq _simplify_text_for_comparison($description));
}
}
- return "<tr><td align=\"left\"
valign=\"top\">$name$MENU_ENTRY_COLON</td><td> </td><td
align=\"left\" valign=\"top\">$description</td></tr>\n";
+ my $non_breaking_space = $self->non_breaking_space();
+ return "<tr><td align=\"left\"
valign=\"top\">$name$MENU_ENTRY_COLON</td><td>${non_breaking_space}${non_breaking_space}</td><td
align=\"left\" valign=\"top\">$description</td></tr>\n";
}
$default_types_conversion{'menu_entry'} = \&_convert_menu_entry_type;
@@ -4802,7 +4827,8 @@ sub _get_copiable_anchor {
my ($self, $id) = @_;
my $result = '';
if ($id and $self->get_conf('COPIABLE_ANCHORS')) {
- $result = "<a href='#$id' class='copiable-anchor'> ¶</a>";
+ my $paragraph_symbol = $self->{'paragraph_symbol'};
+ $result = "<a href='#$id' class='copiable-anchor'> $paragraph_symbol</a>";
}
return $result;
}
@@ -5211,6 +5237,13 @@ sub _complete_no_arg_commands_formatting($$)
}
}
+sub _set_non_breaking_space($$)
+{
+ my $self = shift;
+ my $non_breaking_space = shift;
+ $self->{'non_breaking_space'} = $non_breaking_space;
+}
+
my %htmlxref_entries = (
'node' => [ 'node', 'section', 'chapter', 'mono' ],
'section' => [ 'section', 'chapter','node', 'mono' ],
@@ -5334,7 +5367,6 @@ sub _load_htmlxref_files {
}
}
-
sub converter_initialize($)
{
my $self = shift;
@@ -5348,6 +5380,43 @@ sub converter_initialize($)
_load_htmlxref_files($self);
+ if ($self->get_conf('USE_NUMERIC_ENTITY')) {
+ $self->_set_non_breaking_space($xml_numeric_entity_nbsp);
+ $self->{'paragraph_symbol'} = '&#'.hex('00B6').';';
+ foreach my $command (keys(%Texinfo::Convert::Unicode::unicode_entities)) {
+ $default_no_arg_commands_formatting{'normal'}->{$command}
+ = $Texinfo::Convert::Unicode::unicode_entities{$command};
+ }
+ foreach my $space_command (' ', "\t", "\n") {
+ $default_no_arg_commands_formatting{'normal'}->{$space_command}
+ = $self->non_breaking_space();
+ }
+ $default_no_arg_commands_formatting{'normal'}->{'tie'}
+ = $self->substitute_non_breaking_space(
+ $default_no_arg_commands_formatting{'normal'}->{'tie'});
+ if (not defined($self->get_conf('OPEN_QUOTE_SYMBOL'))) {
+ $self->set_conf('OPEN_QUOTE_SYMBOL', '&#'.hex('2018').';');
+ }
+ if (not defined($self->get_conf('CLOSE_QUOTE_SYMBOL'))) {
+ $self->set_conf('CLOSE_QUOTE_SYMBOL', '&#'.hex('201D').';');
+ }
+ if (not defined($self->get_conf('MENU_SYMBOL'))) {
+ $self->set_conf('MENU_SYMBOL', '&#'.hex('2022').';');
+ }
+ } else {
+ $self->_set_non_breaking_space($xml_named_entity_nbsp);
+ $self->{'paragraph_symbol'} = '¶';
+ if (not defined($self->get_conf('OPEN_QUOTE_SYMBOL'))) {
+ $self->set_conf('OPEN_QUOTE_SYMBOL', '‘');
+ }
+ if (not defined($self->get_conf('CLOSE_QUOTE_SYMBOL'))) {
+ $self->set_conf('CLOSE_QUOTE_SYMBOL', '’');
+ }
+ if (not defined($self->get_conf('MENU_SYMBOL'))) {
+ $self->set_conf('MENU_SYMBOL', '•');
+ }
+ }
+
my $customized_types_conversion =
Texinfo::Config::GNUT_get_types_conversion();
foreach my $type (keys(%default_types_conversion)) {
if (exists($customized_types_conversion->{$type})) {
@@ -7111,7 +7180,8 @@ EOT
$about .=
" <td align=\"center\">".$button_name."</td>
<td>".$self->get_conf('BUTTONS_GOTO')->{$button}."</td>
- <td>".$self->get_conf('BUTTONS_EXAMPLE')->{$button}."</td>
+ <td>".$self->substitute_non_breaking_space(
+ $self->get_conf('BUTTONS_EXAMPLE')->{$button})."</td>
</tr>
";
}
@@ -7131,6 +7201,7 @@ EOT
<ul>
EOT
+ my $non_breaking_space = $self->non_breaking_space();
$about .= ' <li> 1. ' . $self->convert_tree($self->gdt('Section One')) .
"\n" .
" <ul>\n" .
' <li>1.1 ' . $self->convert_tree($self->gdt('Subsection One-One')) .
"\n";
@@ -7144,7 +7215,8 @@ EOT
" <ul>\n" .
' <li>1.2.1 ' . $self->convert_tree($self->gdt('Subsubsection
One-Two-One')) . "</li>\n" .
' <li>1.2.2 ' . $self->convert_tree($self->gdt('Subsubsection
One-Two-Two')) . "</li>\n" .
-' <li>1.2.3 ' . $self->convert_tree($self->gdt('Subsubsection
One-Two-Three')) . " \n"
+' <li>1.2.3 ' . $self->convert_tree($self->gdt('Subsubsection
One-Two-Three'))
+ . " $non_breaking_space $non_breaking_space\n"
.
' <strong><== ' . $self->convert_tree($self->gdt('Current
Position')) . " </strong></li>\n" .
' <li>1.2.4 ' . $self->convert_tree($self->gdt('Subsubsection
One-Two-Four')) . "</li>\n" .
@@ -7979,9 +8051,10 @@ sub _protect_space($$)
# Special span to avoid breaking at _-
$text =~ s/(\S*[_-]\S*)/${open}$1<\/span>/g;
}
- $text .= ' ' if (chomp($text));
+ $text .= $self->non_breaking_space() if (chomp($text));
# Protect spaces within text
- $text =~ s/ / /g;
+ my $non_breaking_space = $self->non_breaking_space();
+ $text =~ s/ /$non_breaking_space/g;
# Revert protected spaces in leading html attribute
$text =~ s/\x{1F}/ /g;
}
diff --git a/tp/tests/layout/list-of-tests b/tp/tests/layout/list-of-tests
index 5dea8f6..163332b 100644
--- a/tp/tests/layout/list-of-tests
+++ b/tp/tests/layout/list-of-tests
@@ -29,6 +29,7 @@ formatting_mathjax formatting.texi --html -c HTML_MATH=mathjax
formatting_weird_quotes formatting.texi -c 'OPEN_QUOTE_SYMBOL @' -c
"CLOSE_QUOTE_SYMBOL '‘"
formatting_html32 formatting.texi --init html32.pm
formatting_regions formatting_regions.texi
+formatting_numerical_entities formatting.texi -c 'USE_NUMERIC_ENTITY 1'
formatting_exotic formatting.texi --split section --no-header
--no-number-sections -c 'TOC_LINKS 1' -c 'DEF_TABLE 1' -c
'XREF_USE_NODE_NAME_ARG 1' --footnote-style=end --css-ref
http://www.environnement.ens.fr/perso/dumas/background-color.css
--internal-links=/dev/null -c 'USE_TITLEPAGE_FOR_TITLE 0'
formatting_fr_icons formatting.texi --document-language fr --init icons.init
formatting_chm formatting.texi -c FORMAT_MENU=nomenu --init chm.pm
diff --git
a/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.1
b/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.1
new file mode 100644
index 0000000..e69de29
diff --git
a/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.2
b/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.2
new file mode 100644
index 0000000..dfd1ac3
--- /dev/null
+++ b/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.2
@@ -0,0 +1,294 @@
+formatting.texi:18: warning: @author not meaningful outside `@titlepage' and
`@quotation' environments (possibly involving @mymacro)
+formatting.texi:18: warning: @author should only appear at the beginning of a
line (possibly involving @mymacro)
+formatting.texi:18: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:18: warning: missing category for @deffnx (possibly involving
@mymacro)
+formatting.texi:18: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:18: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:18: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:18: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:18: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:18: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:18: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:18: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:18: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:18: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:18: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:18: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:18: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:18: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:18: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:18: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:18: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:18: warning: @verb should not appear in @image (possibly
involving @mymacro)
+formatting.texi:18: warning: @verb should not appear in @image (possibly
involving @mymacro)
+formatting.texi:18: warning: @verb should not appear in @image (possibly
involving @mymacro)
+formatting.texi:18: warning: @verb should not appear in @image (possibly
involving @mymacro)
+formatting.texi:18: warning: accent command `@,' must not be followed by new
line (possibly involving @mymacro)
+formatting.texi:18: use braces to give a command as an argument to @,
(possibly involving @mymacro)
+formatting.texi:18: warning: accent command `@'' must not be followed by new
line (possibly involving @mymacro)
+formatting.texi:18: use braces to give a command as an argument to @'
(possibly involving @mymacro)
+formatting.texi:18: @dotless expects `i' or `j' as argument, not `truc'
(possibly involving @mymacro)
+formatting.texi:18: @dotless expects `i' or `j' as argument, not `ij'
(possibly involving @mymacro)
+formatting.texi:18: @dotless expects `i' or `j' as argument, not `--a'
(possibly involving @mymacro)
+formatting.texi:18: @dotless expects `i' or `j' as argument, not `a' (possibly
involving @mymacro)
+formatting.texi:18: @U expected braces (possibly involving @mymacro)
+formatting.texi:18: warning: no argument specified for @U (possibly involving
@mymacro)
+formatting.texi:18: non-hex digits in argument for @U: z (possibly involving
@mymacro)
+formatting.texi:18: warning: fewer than four hex digits in argument for @U:
abc (possibly involving @mymacro)
+formatting.texi:18: argument for @U exceeds Unicode maximum 0x10FFFF:
FFFFFFFFFFFFFF (possibly involving @mymacro)
+formatting.texi:18: argument for @U exceeds Unicode maximum 0x10FFFF: 110000
(possibly involving @mymacro)
+formatting.texi:18: @TeX expected braces (possibly involving @mymacro)
+formatting.texi:18: unexpected @ (possibly involving @mymacro)
+formatting.texi:18: @image missing filename argument (possibly involving
@mymacro)
+formatting.texi:18: @image missing filename argument (possibly involving
@mymacro)
+formatting.texi:18: @image missing filename argument (possibly involving
@mymacro)
+formatting.texi:18: @sp missing argument (possibly involving @mymacro)
+formatting.texi:18: command @bullet not accepting argument in brace should not
be on @table line (possibly involving @mymacro)
+formatting.texi:18: table requires an argument: the formatter for @item
(possibly involving @mymacro)
+formatting.texi:18: command @minus not accepting argument in brace should not
be on @ftable line (possibly involving @mymacro)
+formatting.texi:18: warning: missing name for @deffn (possibly involving
@mymacro)
+formatting.texi:18: misplaced } (possibly involving @mymacro)
+formatting.texi:18: misplaced } (possibly involving @mymacro)
+formatting.texi:18: misplaced { (possibly involving @mymacro)
+formatting.texi:18: misplaced { (possibly involving @mymacro)
+formatting.texi:18: must be after `@deffn' to use `@deffnx' (possibly
involving @mymacro)
+formatting.texi:18: warning: command @ref missing a node or external manual
argument (possibly involving @mymacro)
+formatting.texi:18: warning: command @ref missing a node or external manual
argument (possibly involving @mymacro)
+formatting.texi:18: warning: command @ref missing a node or external manual
argument (possibly involving @mymacro)
+formatting.texi:18: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:18: warning: command @inforef missing a node or external
manual argument (possibly involving @mymacro)
+formatting.texi:18: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:18: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:18: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:18: warning: command @inforef missing a node or external
manual argument (possibly involving @mymacro)
+formatting.texi:28: warning: @author should only appear at the beginning of a
line (possibly involving @mymacro)
+formatting.texi:28: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:28: warning: missing category for @deffnx (possibly involving
@mymacro)
+formatting.texi:28: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:28: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:28: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:28: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:28: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:28: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:28: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:28: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:28: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:28: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:28: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:28: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:28: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:28: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:28: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:28: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:28: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:28: warning: @verb should not appear in @image (possibly
involving @mymacro)
+formatting.texi:28: warning: @verb should not appear in @image (possibly
involving @mymacro)
+formatting.texi:28: warning: @verb should not appear in @image (possibly
involving @mymacro)
+formatting.texi:28: warning: @verb should not appear in @image (possibly
involving @mymacro)
+formatting.texi:28: warning: accent command `@,' must not be followed by new
line (possibly involving @mymacro)
+formatting.texi:28: use braces to give a command as an argument to @,
(possibly involving @mymacro)
+formatting.texi:28: warning: accent command `@'' must not be followed by new
line (possibly involving @mymacro)
+formatting.texi:28: use braces to give a command as an argument to @'
(possibly involving @mymacro)
+formatting.texi:28: @dotless expects `i' or `j' as argument, not `truc'
(possibly involving @mymacro)
+formatting.texi:28: @dotless expects `i' or `j' as argument, not `ij'
(possibly involving @mymacro)
+formatting.texi:28: @dotless expects `i' or `j' as argument, not `--a'
(possibly involving @mymacro)
+formatting.texi:28: @dotless expects `i' or `j' as argument, not `a' (possibly
involving @mymacro)
+formatting.texi:28: @U expected braces (possibly involving @mymacro)
+formatting.texi:28: warning: no argument specified for @U (possibly involving
@mymacro)
+formatting.texi:28: non-hex digits in argument for @U: z (possibly involving
@mymacro)
+formatting.texi:28: warning: fewer than four hex digits in argument for @U:
abc (possibly involving @mymacro)
+formatting.texi:28: argument for @U exceeds Unicode maximum 0x10FFFF:
FFFFFFFFFFFFFF (possibly involving @mymacro)
+formatting.texi:28: argument for @U exceeds Unicode maximum 0x10FFFF: 110000
(possibly involving @mymacro)
+formatting.texi:28: @TeX expected braces (possibly involving @mymacro)
+formatting.texi:28: unexpected @ (possibly involving @mymacro)
+formatting.texi:28: @image missing filename argument (possibly involving
@mymacro)
+formatting.texi:28: @image missing filename argument (possibly involving
@mymacro)
+formatting.texi:28: @image missing filename argument (possibly involving
@mymacro)
+formatting.texi:28: @sp missing argument (possibly involving @mymacro)
+formatting.texi:28: command @bullet not accepting argument in brace should not
be on @table line (possibly involving @mymacro)
+formatting.texi:28: table requires an argument: the formatter for @item
(possibly involving @mymacro)
+formatting.texi:28: command @minus not accepting argument in brace should not
be on @ftable line (possibly involving @mymacro)
+formatting.texi:28: warning: missing name for @deffn (possibly involving
@mymacro)
+formatting.texi:28: misplaced } (possibly involving @mymacro)
+formatting.texi:28: misplaced } (possibly involving @mymacro)
+formatting.texi:28: misplaced { (possibly involving @mymacro)
+formatting.texi:28: misplaced { (possibly involving @mymacro)
+formatting.texi:28: must be after `@deffn' to use `@deffnx' (possibly
involving @mymacro)
+formatting.texi:28: warning: command @ref missing a node or external manual
argument (possibly involving @mymacro)
+formatting.texi:28: warning: command @ref missing a node or external manual
argument (possibly involving @mymacro)
+formatting.texi:28: warning: command @ref missing a node or external manual
argument (possibly involving @mymacro)
+formatting.texi:28: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:28: warning: command @inforef missing a node or external
manual argument (possibly involving @mymacro)
+formatting.texi:28: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:28: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:28: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:28: warning: command @inforef missing a node or external
manual argument (possibly involving @mymacro)
+formatting.texi:64: warning: @author not meaningful outside `@titlepage' and
`@quotation' environments (possibly involving @mymacro)
+formatting.texi:64: warning: @author should only appear at the beginning of a
line (possibly involving @mymacro)
+formatting.texi:64: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:64: warning: missing category for @deffnx (possibly involving
@mymacro)
+formatting.texi:64: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:64: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:64: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:64: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:64: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:64: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:64: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:64: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:64: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:64: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:64: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:64: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:64: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:64: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:64: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:64: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:64: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:64: warning: @verb should not appear in @image (possibly
involving @mymacro)
+formatting.texi:64: warning: @verb should not appear in @image (possibly
involving @mymacro)
+formatting.texi:64: warning: @verb should not appear in @image (possibly
involving @mymacro)
+formatting.texi:64: warning: @verb should not appear in @image (possibly
involving @mymacro)
+formatting.texi:64: warning: accent command `@,' must not be followed by new
line (possibly involving @mymacro)
+formatting.texi:64: use braces to give a command as an argument to @,
(possibly involving @mymacro)
+formatting.texi:64: warning: accent command `@'' must not be followed by new
line (possibly involving @mymacro)
+formatting.texi:64: use braces to give a command as an argument to @'
(possibly involving @mymacro)
+formatting.texi:64: @dotless expects `i' or `j' as argument, not `truc'
(possibly involving @mymacro)
+formatting.texi:64: @dotless expects `i' or `j' as argument, not `ij'
(possibly involving @mymacro)
+formatting.texi:64: @dotless expects `i' or `j' as argument, not `--a'
(possibly involving @mymacro)
+formatting.texi:64: @dotless expects `i' or `j' as argument, not `a' (possibly
involving @mymacro)
+formatting.texi:64: @U expected braces (possibly involving @mymacro)
+formatting.texi:64: warning: no argument specified for @U (possibly involving
@mymacro)
+formatting.texi:64: non-hex digits in argument for @U: z (possibly involving
@mymacro)
+formatting.texi:64: warning: fewer than four hex digits in argument for @U:
abc (possibly involving @mymacro)
+formatting.texi:64: argument for @U exceeds Unicode maximum 0x10FFFF:
FFFFFFFFFFFFFF (possibly involving @mymacro)
+formatting.texi:64: argument for @U exceeds Unicode maximum 0x10FFFF: 110000
(possibly involving @mymacro)
+formatting.texi:64: @TeX expected braces (possibly involving @mymacro)
+formatting.texi:64: unexpected @ (possibly involving @mymacro)
+formatting.texi:64: @image missing filename argument (possibly involving
@mymacro)
+formatting.texi:64: @image missing filename argument (possibly involving
@mymacro)
+formatting.texi:64: @image missing filename argument (possibly involving
@mymacro)
+formatting.texi:64: @sp missing argument (possibly involving @mymacro)
+formatting.texi:64: command @bullet not accepting argument in brace should not
be on @table line (possibly involving @mymacro)
+formatting.texi:64: table requires an argument: the formatter for @item
(possibly involving @mymacro)
+formatting.texi:64: command @minus not accepting argument in brace should not
be on @ftable line (possibly involving @mymacro)
+formatting.texi:64: warning: missing name for @deffn (possibly involving
@mymacro)
+formatting.texi:64: misplaced } (possibly involving @mymacro)
+formatting.texi:64: misplaced } (possibly involving @mymacro)
+formatting.texi:64: misplaced { (possibly involving @mymacro)
+formatting.texi:64: misplaced { (possibly involving @mymacro)
+formatting.texi:64: must be after `@deffn' to use `@deffnx' (possibly
involving @mymacro)
+formatting.texi:64: warning: command @ref missing a node or external manual
argument (possibly involving @mymacro)
+formatting.texi:64: warning: command @ref missing a node or external manual
argument (possibly involving @mymacro)
+formatting.texi:64: warning: command @ref missing a node or external manual
argument (possibly involving @mymacro)
+formatting.texi:64: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:64: warning: command @inforef missing a node or external
manual argument (possibly involving @mymacro)
+formatting.texi:64: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:64: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:64: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:64: warning: command @inforef missing a node or external
manual argument (possibly involving @mymacro)
+formatting.texi:68: warning: @author not meaningful outside `@titlepage' and
`@quotation' environments (possibly involving @mymacro)
+formatting.texi:68: warning: @author should only appear at the beginning of a
line (possibly involving @mymacro)
+formatting.texi:68: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:68: warning: missing category for @deffnx (possibly involving
@mymacro)
+formatting.texi:68: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:68: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:68: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:68: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:68: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:68: warning: missing name for @deffnx (possibly involving
@mymacro)
+formatting.texi:68: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:68: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:68: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:68: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:68: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:68: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:68: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:68: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:68: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:68: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:68: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:68: warning: @verb should not appear in @image (possibly
involving @mymacro)
+formatting.texi:68: warning: @verb should not appear in @image (possibly
involving @mymacro)
+formatting.texi:68: warning: @verb should not appear in @image (possibly
involving @mymacro)
+formatting.texi:68: warning: @verb should not appear in @image (possibly
involving @mymacro)
+formatting.texi:68: warning: accent command `@,' must not be followed by new
line (possibly involving @mymacro)
+formatting.texi:68: use braces to give a command as an argument to @,
(possibly involving @mymacro)
+formatting.texi:68: warning: accent command `@'' must not be followed by new
line (possibly involving @mymacro)
+formatting.texi:68: use braces to give a command as an argument to @'
(possibly involving @mymacro)
+formatting.texi:68: @dotless expects `i' or `j' as argument, not `truc'
(possibly involving @mymacro)
+formatting.texi:68: @dotless expects `i' or `j' as argument, not `ij'
(possibly involving @mymacro)
+formatting.texi:68: @dotless expects `i' or `j' as argument, not `--a'
(possibly involving @mymacro)
+formatting.texi:68: @dotless expects `i' or `j' as argument, not `a' (possibly
involving @mymacro)
+formatting.texi:68: @U expected braces (possibly involving @mymacro)
+formatting.texi:68: warning: no argument specified for @U (possibly involving
@mymacro)
+formatting.texi:68: non-hex digits in argument for @U: z (possibly involving
@mymacro)
+formatting.texi:68: warning: fewer than four hex digits in argument for @U:
abc (possibly involving @mymacro)
+formatting.texi:68: argument for @U exceeds Unicode maximum 0x10FFFF:
FFFFFFFFFFFFFF (possibly involving @mymacro)
+formatting.texi:68: argument for @U exceeds Unicode maximum 0x10FFFF: 110000
(possibly involving @mymacro)
+formatting.texi:68: @TeX expected braces (possibly involving @mymacro)
+formatting.texi:68: unexpected @ (possibly involving @mymacro)
+formatting.texi:68: @image missing filename argument (possibly involving
@mymacro)
+formatting.texi:68: @image missing filename argument (possibly involving
@mymacro)
+formatting.texi:68: @image missing filename argument (possibly involving
@mymacro)
+formatting.texi:68: @sp missing argument (possibly involving @mymacro)
+formatting.texi:68: command @bullet not accepting argument in brace should not
be on @table line (possibly involving @mymacro)
+formatting.texi:68: table requires an argument: the formatter for @item
(possibly involving @mymacro)
+formatting.texi:68: command @minus not accepting argument in brace should not
be on @ftable line (possibly involving @mymacro)
+formatting.texi:68: warning: missing name for @deffn (possibly involving
@mymacro)
+formatting.texi:68: misplaced } (possibly involving @mymacro)
+formatting.texi:68: misplaced } (possibly involving @mymacro)
+formatting.texi:68: misplaced { (possibly involving @mymacro)
+formatting.texi:68: misplaced { (possibly involving @mymacro)
+formatting.texi:68: must be after `@deffn' to use `@deffnx' (possibly
involving @mymacro)
+formatting.texi:68: warning: command @ref missing a node or external manual
argument (possibly involving @mymacro)
+formatting.texi:68: warning: command @ref missing a node or external manual
argument (possibly involving @mymacro)
+formatting.texi:68: warning: command @ref missing a node or external manual
argument (possibly involving @mymacro)
+formatting.texi:68: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:68: warning: command @inforef missing a node or external
manual argument (possibly involving @mymacro)
+formatting.texi:68: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:68: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:68: warning: @inforef is obsolete. (possibly involving
@mymacro)
+formatting.texi:68: warning: command @inforef missing a node or external
manual argument (possibly involving @mymacro)
+formatting.texi:85: no more than two levels of index subentry are allowed
+formatting.texi:90: no more than two levels of index subentry are allowed
+formatting.texi:102: warning: @cindex missing argument
+formatting.texi:136: warning: printing an index `vr' merged in another one,
`cp'
+formatting.texi:152: warning: @menu in invalid context
+formatting.texi:192: warning: @centerchap is obsolete.
+formatting.texi:18: @ref reference to nonexistent node `node' (possibly
involving @mymacro)
+formatting.texi:18: @ref reference to nonexistent node `node' (possibly
involving @mymacro)
+formatting.texi:18: @ref reference to nonexistent node `node' (possibly
involving @mymacro)
+formatting.texi:18: @ref reference to nonexistent node `node' (possibly
involving @mymacro)
+formatting.texi:28: @ref reference to nonexistent node `node' (possibly
involving @mymacro)
+formatting.texi:28: @ref reference to nonexistent node `node' (possibly
involving @mymacro)
+formatting.texi:28: @ref reference to nonexistent node `node' (possibly
involving @mymacro)
+formatting.texi:28: @ref reference to nonexistent node `node' (possibly
involving @mymacro)
+formatting.texi:64: @ref reference to nonexistent node `node' (possibly
involving @mymacro)
+formatting.texi:64: @ref reference to nonexistent node `node' (possibly
involving @mymacro)
+formatting.texi:64: @ref reference to nonexistent node `node' (possibly
involving @mymacro)
+formatting.texi:64: @ref reference to nonexistent node `node' (possibly
involving @mymacro)
+formatting.texi:68: @ref reference to nonexistent node `node' (possibly
involving @mymacro)
+formatting.texi:68: @ref reference to nonexistent node `node' (possibly
involving @mymacro)
+formatting.texi:68: @ref reference to nonexistent node `node' (possibly
involving @mymacro)
+formatting.texi:68: @ref reference to nonexistent node `node' (possibly
involving @mymacro)
+formatting.texi:103: warning: empty index key in @findex
+formatting.texi:28: warning: @image file `f-ile' (for HTML) not found, using
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:28: warning: @image file `f--ile@.' (for HTML) not found,
using `f--ile@..file ext e--xt}' (possibly involving @mymacro)
+formatting.texi:28: warning: @image file `f-ile' (for HTML) not found, using
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:28: warning: @image file `filejk _" %@' (for HTML) not found,
using `filejk _" %@.jpg' (possibly involving @mymacro)
+formatting.texi:18: warning: @image file `f-ile' (for HTML) not found, using
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:18: warning: @image file `f--ile@.' (for HTML) not found,
using `f--ile@..file ext e--xt}' (possibly involving @mymacro)
+formatting.texi:18: warning: @image file `f-ile' (for HTML) not found, using
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:18: warning: @image file `filejk _" %@' (for HTML) not found,
using `filejk _" %@.jpg' (possibly involving @mymacro)
+formatting.texi:18: warning: @image file `f-ile' (for HTML) not found, using
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:18: warning: @image file `f--ile@.' (for HTML) not found,
using `f--ile@..file ext e--xt}' (possibly involving @mymacro)
+formatting.texi:18: warning: @image file `f-ile' (for HTML) not found, using
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:18: warning: @image file `filejk _" %@' (for HTML) not found,
using `filejk _" %@.jpg' (possibly involving @mymacro)
+formatting.texi:64: warning: @image file `f-ile' (for HTML) not found, using
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:64: warning: @image file `f--ile@.' (for HTML) not found,
using `f--ile@..file ext e--xt}' (possibly involving @mymacro)
+formatting.texi:64: warning: @image file `f-ile' (for HTML) not found, using
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:64: warning: @image file `filejk _" %@' (for HTML) not found,
using `filejk _" %@.jpg' (possibly involving @mymacro)
+formatting.texi:68: warning: @image file `f-ile' (for HTML) not found, using
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:68: warning: @image file `f--ile@.' (for HTML) not found,
using `f--ile@..file ext e--xt}' (possibly involving @mymacro)
+formatting.texi:68: warning: @image file `f-ile' (for HTML) not found, using
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:68: warning: @image file `filejk _" %@' (for HTML) not found,
using `filejk _" %@.jpg' (possibly involving @mymacro)
diff --git
a/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.html
b/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.html
new file mode 100644
index 0000000..0755ebc
--- /dev/null
+++ b/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.html
@@ -0,0 +1,7291 @@
+<!DOCTYPE html>
+<html>
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<!-- In copying
+
+<
+>
+"
+&
+'
+`
+
+"simple-double-three-four-"
+
+code: ``simple-double-three-four-''
+
+asis: "simple-double-three-four-"
+
+strong: "simple-double-three-four-"
+
+kbd: ``simple-double-three-four-''
+
+
+``simple-double-three-four-''
+
+
+
+@"u u"
+@"{U} U"
+@~n n~
+@^a a^
+@'e e'
+@=o o=
+@`i i`
+@'{e} e'
+@'{@dotless{i}} i'
+@dotless{i} i
+@dotless{j} j
+@`{@=E} E=`
+@l{} /l
+@,{@'C} C',
+@,c c,
+@,c@"u c,u"
+
+
+@U{0075} 0075
+
+@*
+
+@ followed by a space
+
+@ followed by a tab
+
+@ followed by a new line
+ @-
+@|
+@:
+@! !
+@? ?
+@. .
+@@ @
+@} }
+@{ {
+@/
+
+foo vs. bar.
+colon :And something else.
+semi colon ;.
+And ? ?.
+Now ! !@
+but , ,
+
+@TeX TeX
+@LaTeX LaTeX
+@bullet *
+@copyright (C)
+@dots ...
+@enddots ...
+@equiv ==
+@error error->
+@expansion ==>
+@minus -
+@point -!-
+@print -|
+@result =>
+@today a sunny day
+
+@aa aa
+@AA AA
+@ae ae
+@oe oe
+@AE AE
+@OE OE
+@o /o
+@O /O
+@ss ss
+@l /l
+@L /L
+@DH D
+@TH TH
+@dh d
+@th th
+
+@exclamdown !
+@questiondown ?
+@pounds #
+@registeredsymbol (R)
+@ordf a
+@ordm o
+@comma ,
+@quotedblleft ``
+@quotedblright ''
+@quoteleft `
+@quoteright '
+@quotedblbase ,,
+@quotesinglbase ,
+@guillemetleft <<
+@guillemetright >>
+@guillemotleft <<
+@guillemotright >>
+@guilsinglleft <
+@guilsinglright >
+@textdegree o
+@euro Euro
+@arrow ->
+@leq <=
+@geq >=
+
+@acronym{-a,an accronym} -a (an accronym)
+@acronym{-a} -a
+@abbr{@'E-. @comma{}A., @'Etude Autonome } E'-. ,A. (E'tude Autonome)
+@abbr{@'E-. @comma{}A.} E'-. ,A.
+@asis{-a} -a
+@b{-a} -a
+@cite{-a} -a
+@code{-a} -a
+@command{-a} -a
+@dfn{-a} -a
+@dmn{-a} -a
+@email{-a,-b} -b
+@email{,-b} -b
+@email{-a} -a
+@emph{-a} -a
+@env{-a} -a
+@file{-a} -a
+@i{-a} -a
+@kbd{-a} -a
+@key{-a} -a
+@math{-a {\frac{1}{2}} @minus{}} -a {\frac{1}{2}} -
+@option{-a} -a
+@r{-a} -a
+@samp{-a} -a
+@sc{-a} -A
+@strong{-a} -a
+@t{-a} -a
+@sansserif{-a} -a
+@slanted{-a} -a
+@titlefont{-a} -a
+@indicateurl{-a} -a
+@uref{-a,-b} -a (-b)
+@uref{-a} -a
+@uref{,-b} (-b)
+@uref{-a,-b,-c} -c
+@uref{,-b,-c} -c
+@uref{-a,,-c} -c
+@uref{,,-c} -c
+@url{-a,-b} -a (-b)
+@url{-a,} -a
+@url{,-b} (-b)
+@var{-a} -a
+@verb{:-a:} -a
+@verb{:a < & @ % " - b:} a < & @ % " - b
+@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} 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
+@H{a} a''
+@H{-a} -a''
+@dotaccent{a} a.
+@dotaccent{-a} -a.
+@ringaccent{a} a*
+@ringaccent{-a} -a*
+@tieaccent{a} a[
+@tieaccent{-a} -a[
+@u{a} a(
+@u{-a} -a(
+@ubaraccent{a} a_
+@ubaraccent{-a} -a_
+@udotaccent{a} .a
+@udotaccent{-a} .-a
+@v{a} a<
+@v{-a} -a<
+@,{c} c,
+@,{-c} -c,
+@ogonek{a} a;
+@ogonek{-a} -a;
+a@sup{h}@sub{l} ahl
+@footnote{in footnote}
+@footnote{in footnote2}
+
+@image{f-ile} f-ile
+@image{f-ile,l-i} f-ile
+@image{f-ile,,l-e} f-ile
+@image{f-ile,,,alt} f-ile
+@image{f-ile,,,,.e-d-xt} f-ile
+@image{f-ile,aze,az,alt,.e-xt} f-ile
+@image{f-ile,aze,,a-lt} f-ile
+@image{@file{f-ile}@@@.,aze,az,alt,@file{.file ext} e-xt@} f-ile@.
+
+@sp 2
+
+
+
+@page
+
+
+need 1002
+
+@clicksequence{click @click{} A} click -> A
+After clickstyle =>
+@clicksequence{click @click{} A} click => A
+
+``simple-double-three-four-'' aa
+``simple-double-three-four-''
+
+
+u" U" n~ a^ e' o= i` e' i j E=`
+/l C', C', c, a'' a. a* a[
+a( a_ .a a< a; ahl
+
+ ! ? . @ } {
+a sunny day
+
+->
+0075
+TeX LaTeX * (C) ... ... ==
+error-> ==> - -!- -| =>
+aa AA ae oe AE OE /o /O ss /l /L D
+TH d th ! ? #
+(R) a o ,
+
+`` ''
+` ' ,, , <<
+>> << >> <
+> o Euro -> <= >=
+
+b i r SC t sansserif slanted
+
+default kbdinputstyle
+in example default kbdinputstyle
+
+code kbdinputstyle
+in example code kbdinputstyle
+
+example kbdinputstyle
+in example example kbdinputstyle
+
+distinct kbdinputstyle
+in example distinct kbdinputstyle
+
+A quot-ation
+
+Note
+A Note
+
+note
+A note
+
+Caution
+Caution
+
+Important
+Important
+
+Tip
+a Tip
+
+Warning
+a Warning.
+
+something e' TeX
+The something e' TeX is here.
+
+@ at the end of line
+A @ at the end of the @quotation line.
+
+something, other thing
+something, other thing
+
+Note, the note
+Note, the note
+
+
+Empty
+
+
+
+aaa quotation
+
+indent in quotation
+
+A small quot-ation
+
+Note
+A small Note
+
+something, other thing
+something, other thing
+
+i-temize
+
+i-tem +
+
+b-ullet
+
+minu-s
+
+e-mph item
+
+i-tem 1
+i-tem 2
+
+1. e-numerate
+
+3. first third
+4. second third
+
+a. e-numerate
+
+c. first c
+d. second c
+
+mu-ltitable headitem another tab
+mu-ltitable item multitable tab
+mu-ltitable item 2 multitable tab 2
+lone mu-ltitable item
+
+truc bidule
+
+e-xample some
+ text
+
+example one arg
+
+example two args
+
+example three args
+
+example four args
+
+example five args
+
+The something e' TeX is here.
+
+A @ at the end of the @example line.
+
+example with empty args
+
+example with empty and non empty args mix
+
+s-mallexample
+
+@noindent after smallexample.
+$ 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'
+Less recent versions are also present.
+
+d-isplay
+
+s-malldisplay
+
+l-isp
+
+s-malllisp
+
+f-ormat
+
+s-mallformat
+
+disp-laymath
+f(x) = {1 \over \sigma \sqrt{2\pi}}e-{1 \over 2}\left({x-\mu \over
\sigma}\right)^2
+
+c-ategory: d-effn_name a-rguments...
+d-effn
+
+cate-gory: de-ffn_name ar-guments more args
+ even more so
+def-fn
+
+fset: i a g
+cmde: truc
+Command: log trap
+Command: log trap1
+Command: log trap2
+cmde: id ule truc
+cmde2: id i ule truc
+id i ule:
+aaa:
+:
+:
+: machin
+: bidule machin
+truc: machin
+truc:
+truc: followed by a comment
+truc:
+:
+truc: a b c d e f g h i
+truc: deffnx before end deffn
+
+
+empty: deffn
+
+empty: deffn with deffnx
+empty: deffnx
+
+fset: i a g
+cmde: truc
+text in def item for second def item
+
+
+c-ategory: d-efvr_name
+d-efvr
+
+c-ategory: n-ame a-rguments...
+d-effn
+
+c-ategory: n-ame
+d-effn no arg
+
+c-ategory: t-ype d-eftypefn_name a-rguments...
+d-eftypefn
+
+c-ategory: t-ype d-eftypefn_name
+d-eftypefn no arg
+
+c-ategory on c-lass: t-ype d-eftypeop_name a-rguments...
+d-eftypeop
+
+c-ategory on c-lass: t-ype d-eftypeop_name
+d-eftypeop no arg
+
+c-ategory: t-ype d-eftypevr_name
+d-eftypevr
+
+c-ategory of c-lass: d-efcv_name
+d-efcv
+
+c-ategory of c-lass: d-efcv_name a-rguments...
+d-efcv with arguments
+
+c-ategory of c-lass: t-ype d-eftypecv_name
+d-eftypecv
+
+c-ategory of c-lass: t-ype d-eftypecv_name a-rguments...
+d-eftypecv with arguments
+
+c-ategory on c-lass: d-efop_name a-rguments...
+d-efop
+
+c-ategory on c-lass: d-efop_name
+d-efop no arg
+
+c-ategory: d-eftp_name a-ttributes...
+d-eftp
+
+Function: d-efun_name a-rguments...
+d-efun
+
+Macro: d-efmac_name a-rguments...
+d-efmac
+
+Special Form: d-efspec_name a-rguments...
+d-efspec
+
+Variable: d-efvar_name
+d-efvar
+
+Variable: d-efvar_name arg-var arg-var1
+d-efvar with args
+
+User Option: d-efopt_name
+d-efopt
+
+Function: t-ype d-eftypefun_name a-rguments...
+d-eftypefun
+
+Variable: t-ype d-eftypevar_name
+d-eftypevar
+
+Instance Variable of c-lass: d-efivar_name
+d-efivar
+
+Instance Variable of c-lass: t-ype d-eftypeivar_name
+d-eftypeivar
+
+Method on c-lass: d-efmethod_name a-rguments...
+d-efmethod
+
+Method on c-lass: t-ype d-eftypemethod_name a-rguments...
+d-eftypemethod
+
+
+Function: data-type2 name2 arguments2...
+aaa2
+
+c-ategory2: t-ype2 d-eftypefn_name2
+d-eftypefn no arg2
+
+c-ategory2 on c-lass2: t-ype2 d-eftypeop_name2 a-rguments2...
+d-eftypeop2
+
+c-ategory2 on c-lass2: t-ype2 d-eftypeop_name2
+d-eftypeop no arg2
+
+c-ategory2 of c-lass2: t-ype2 d-eftypecv_name2
+d-eftypecv2
+
+c-ategory2 of c-lass2: t-ype2 d-eftypecv_name2 a-rguments2...
+d-eftypecv with arguments2
+
+fun2: arg2
+fff2
+
+
+@xref{c-hapter@@, cross r-ef name@@, t-itle@@, file n-ame@@, ma-nual@@}
c-hapter@.
+@ref{chapter, cross ref name, title, file name, manual} chapter
+@pxref{chapter, cross ref name, title, file name, manual} chapter
+@inforef{chapter, cross ref name, file name} chapter
+
+@ref{chapter} chapter
+@xref{chapter} chapter.
+@pxref{chapter} chapter
+@ref{s-ect@comma{}ion} s-ect,ion
+
+@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 }
+s-ect,ion
+
+@ref{chapter,cross ref name} chapter
+@ref{chapter,,title} chapter
+@ref{chapter,,,file name} chapter
+@ref{chapter,,,,manual} chapter
+@ref{chapter,cross ref name,title,} chapter
+@ref{chapter,cross ref name,,file name} chapter
+@ref{chapter,cross ref name,,,manual} chapter
+@ref{chapter,cross ref name,title,file name} chapter
+@ref{chapter,cross ref name,title,,manual} chapter
+@ref{chapter,cross ref name,title, file name, manual} chapter
+@ref{chapter,,title,file name} chapter
+@ref{chapter,,title,,manual} chapter
+@ref{chapter,,title, file name, manual} chapter
+@ref{chapter,,,file name,manual} chapter
+
+
+@ref{(pman)anode,cross ref name} (pman)anode
+@ref{(pman)anode,,title} (pman)anode
+@ref{(pman)anode,,,file name} (pman)anode
+@ref{(pman)anode,,,,manual} (pman)anode
+@ref{(pman)anode,cross ref name,title,} (pman)anode
+@ref{(pman)anode,cross ref name,,file name} (pman)anode
+@ref{(pman)anode,cross ref name,,,manual} (pman)anode
+@ref{(pman)anode,cross ref name,title,file name} (pman)anode
+@ref{(pman)anode,cross ref name,title,,manual} (pman)anode
+@ref{(pman)anode,cross ref name,title, file name, manual} (pman)anode
+@ref{(pman)anode,,title,file name} (pman)anode
+@ref{(pman)anode,,title,,manual} (pman)anode
+@ref{(pman)anode,,title, file name, manual} (pman)anode
+@ref{(pman)anode,,,file name,manual} (pman)anode
+
+
+@inforef{chapter, cross ref name, file name} chapter
+@inforef{chapter} chapter
+@inforef{chapter, cross ref name} chapter
+@inforef{chapter,,file name} chapter
+@inforef{node, cross ref name, file name} node
+@inforef{node} node
+@inforef{node, cross ref name} node
+@inforef{node,,file name} node
+@inforef{chapter, cross ref name, file name, spurious arg} chapter
+
+@inforef{s-ect@comma{}ion, a @comma{} in cross
+ref, a comma@comma{} in file}
+s-ect,ion
+
+chapter.
+
+ext
+chapter
+
+a-strong
+l-ine
+
+a-asis
+b
+l-ine
+
+a
+b
+l-ine
+
+Title
+a-code
+Value-table code
+
+Title
+a-samp
+a2-samp
+Value-table samp
+
+c-artouche
+
+g-roupe
+
+f-lushleft
+more text
+
+f-lushright
+more text
+
+ce-ntered line
+
+r-raggedright
+more text
+
+\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
+
+in verbatim ''
+
+
+html ''
+
+
+
+
+majorheading
+************
+
+chapheading
+***********
+
+heading
+=======
+
+subheading
+-
+
+subsubheading
+.............
+
+
+@acronym{-a,an accronym @comma{} @enddots{}} -a (an accronym , ...)
+@abbr{@'E-. @comma{}A., @'Etude-@comma{} @b{Autonome} } E'-. ,A. (E'tude-,
Autonome)
+@abbr{@'E-. @comma{}A.} E'-. ,A.
+
+@math{-a@minus{} {\frac{1}{2}}} -a- {\frac{1}{2}}
+
+@image{f-ile,,,alt@verb{:jk _" %}} f-ile
+@image{f-ile,aze,az,@verb{:jk _" %@:} @b{in b "},e-xt} f-ile
+@image{file@verb{:jk _" %@:},,,alt@verb{:jk _" %@:}} filejk _" %@
+
+
+
+
+Somehow invalid use of @,:
+
+@, ,
+
+
+@,@"u ,u"
+
+Invalid use of @':
+
+@' '
+
+
+@'@"u 'u"
+
+@dotless{truc} truc
+@dotless{ij} ij
+@dotless{-a} -a
+@dotless{a} a
+
+@U, without braces @U{}, with empty arg
+@U{z}, with non-hex arg z
+@U{abc}, with <4 hex digits abc
+@U{FFFFFFFFFFFFFF}, value much too large FFFFFFFFFFFFFF
+@U{110000}, value just beyond Unicode 110000
+
+@TeX, but without brace TeX@# #
+
+@w{-a} -a
+
+@image{,1-xt}
+@image{,,2-xt}
+@image{,,,3-xt}
+
+
+e-mph item
+
+e-mph item
+
+i-tem 1
+i-tem 2
+
+a
+l-ine
+
+a-missing style formatting
+l-ine
+
+a
+b
+l-ine
+
+fun:
+truc: machin bidule chose and
+truc: machin bidule chose and after
+truc: machin bidule chose and
+truc: machin bidule chose and and after
+truc: followed by a comment
+Various deff lines
+truc: after a deff item
+
+@ref{node} node
+
+@ref{,cross ref name}
+@ref{,,title}
+@ref{,,,file name}
+@ref{,,,,manual}
+@ref{node,cross ref name} node
+@ref{node,,title} node
+@ref{node,,,file name} node
+@ref{node,,,,manual} node
+@ref{node,cross ref name,title,} node
+@ref{node,cross ref name,,file name} node
+@ref{node,cross ref name,,,manual} node
+@ref{node,cross ref name,title,file name} node
+@ref{node,cross ref name,title,,manual} node
+@ref{node,cross ref name,title, file name, manual} node
+@ref{node,,title,file name} node
+@ref{node,,title,,manual} node
+@ref{chapter,,title, file name, manual} chapter
+@ref{node,,title, file name, manual} node
+@ref{node,,,file name,manual} node
+@ref{,cross ref name,title,}
+@ref{,cross ref name,,file name}
+@ref{,cross ref name,,,manual}
+@ref{,cross ref name,title,file name}
+@ref{,cross ref name,title,,manual}
+@ref{,cross ref name,title, file name, manual}
+@ref{,,title,file name}
+@ref{,,title,,manual}
+@ref{,,title, file name, manual}
+@ref{,,,file name,manual}
+
+@inforef{,cross ref name }
+@inforef{,,file name}
+@inforef{,cross ref name, file name}
+@inforef{}
+
+ -->
+<title>title –a</title>
+
+<meta name="description" content="title –a">
+<meta name="keywords" content="title –a">
+<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">
+<!--
+a.copiable-anchor {visibility: hidden; text-decoration: none; line-height: 0em}
+a.summary-letter {text-decoration: none}
+blockquote.indentedblock {margin-right: 0em}
+div.display {margin-left: 3.2em}
+div.example {margin-left: 3.2em}
+kbd {font-style: oblique}
+pre.display {font-family: inherit}
+pre.format {font-family: inherit}
+pre.menu-comment {font-family: serif}
+pre.menu-preformatted {font-family: serif}
+span.nolinebreak {white-space: nowrap}
+span.roman {font-family: initial; font-weight: normal}
+span.sansserif {font-family: sans-serif; font-weight: normal}
+span:hover a.copiable-anchor {visibility: visible}
+ul.no-bullet {list-style: none}
+-->
+</style>
+
+
+</head>
+
+<body lang="en">
+<h1>title –a</h1>
+<h3 align="right">formatting subtitle –a</h3>
+<h3 align="right">subtitle 2 –a</h3>
+<strong>author1 –a with accents in name Téça</strong><br>
+<strong>author2 –a</strong><br>
+<p>In titlepage
+</p>
+<p><
+>
+"
+&
+’
+‘
+</p>
+<p>“simple-double–three—four—-”<br>
+code: <code>``simple-double--three---four----''</code> <br>
+asis: “simple-double–three—four—-” <br>
+strong:
<strong>“simple-double–three—four—-”</strong> <br>
+kbd: <kbd>``simple-double--three---four----''</kbd> <br>
+</p>
+<p>‘<!-- /@w -->‘simple-double-<!-- /@w
-->-three—four—-’<!-- /@w -->’<br>
+</p>
+<span id="index-titlepage-_002d_002doption"></span>
+<span id="index-titlepage-_0060_0060"></span>
+<span id="index-titlepage-_0060_0060-1"></span>
+<span id="index-titlepage-_002d_002dfoption"></span>
+
+<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>@-</code>
+<code>@|</code>
+<code>@:</code>
+<code>@!</code> !
+<code>@?</code> ?
+<code>@.</code> .
+<code>@@</code> @
+<code>@}</code> }
+<code>@{</code> {
+<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 ›
+@textdegree °
+@euro €
+@arrow →
+@leq ≤
+@geq ≥
+</p>
+<p><code>@acronym{--a,an accronym}</code> <acronym title="an
accronym">–a</acronym> (an accronym)
+<code>@acronym{--a}</code> <acronym title="an accronym">–a</acronym>
+<code>@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr
title="Étude Autonome">É–. ,A.</abbr> (Étude Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="Étude
Autonome">É–. ,A.</abbr>
+<code>@asis{--a}</code> –a
+<code>@b{--a}</code> <b>–a</b>
+<code>@cite{--a}</code> <cite>–a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@dfn{--a}</code> <em>–a</em>
+<code>@dmn{--a}</code> –a
+<code>@email{--a,--b}</code> <a href="mailto:--a">–b</a>
+<code>@email{,--b}</code> –b
+<code>@email{--a}</code> <a href="mailto:--a">--a</a>
+<code>@emph{--a}</code> <em>–a</em>
+<code>@env{--a}</code> <code>--a</code>
+<code>@file{--a}</code> <samp>--a</samp>
+<code>@i{--a}</code> <i>–a</i>
+<code>@kbd{--a}</code> <kbd>--a</kbd>
+<code>@key{--a}</code> <tt class="key">--a</tt>
+<code>@math{--a {\frac{1}{2}} @minus{}}</code> <em class='math'>--a
{\frac{1}{2}} −</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">–a</span>
+<code>@samp{--a}</code> ‘<samp>--a</samp>”
+<code>@sc{--a}</code> <small>–A</small>
+<code>@strong{--a}</code> <strong>–a</strong>
+<code>@t{--a}</code> <tt>--a</tt>
+<code>@sansserif{--a}</code> <span class="sansserif">–a</span>
+<code>@slanted{--a}</code> <i>–a</i>
+<code>@titlefont{--a}</code> </p><h1 class="titlefont">–a</h1>
+<p><code>@indicateurl{--a}</code> ‘<code>--a</code>”
+<code>@uref{--a,--b}</code> <a href="--a">–b</a>
+<code>@uref{--a}</code> <a href="--a">--a</a>
+<code>@uref{,--b}</code> –b
+<code>@uref{--a,--b,--c}</code> <a href="--a">–c</a>
+<code>@uref{,--b,--c}</code> –c
+<code>@uref{--a,,--c}</code> <a href="--a">–c</a>
+<code>@uref{,,--c}</code> –c
+<code>@url{--a,--b}</code> <a href="--a">–b</a>
+<code>@url{--a,}</code> <a href="--a">--a</a>
+<code>@url{,--b}</code> –b
+<code>@var{--a}</code> <var>–a</var>
+<code>@verb{:--a:}</code> <tt>--a</tt>
+<code>@verb{:a < & @ % " -- b:}</code> <tt>a < & @ %
" -- b</tt>
+<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>@H{a}</code> a̋
+<code>@H{--a}</code> –a̋
+<code>@dotaccent{a}</code> ȧ
+<code>@dotaccent{--a}</code> –ȧ
+<code>@ringaccent{a}</code> å
+<code>@ringaccent{--a}</code> –å
+<code>@tieaccent{a}</code> a͡
+<code>@tieaccent{--a}</code> –a͡
+<code>@u{a}</code> ă
+<code>@u{--a}</code> –ă
+<code>@ubaraccent{a}</code> a̲
+<code>@ubaraccent{--a}</code> –a̲
+<code>@udotaccent{a}</code> ạ
+<code>@udotaccent{--a}</code> –ạ
+<code>@v{a}</code> ǎ
+<code>@v{--a}</code> –ǎ
+<code>@,{c}</code> ç
+<code>@,{--c}</code> –ç
+<code>@ogonek{a}</code> ą
+<code>@ogonek{--a}</code> –ą
+<code>a@sup{h}@sub{l}</code> a<sup>h</sup><sub>l</sub>
+<code>@footnote{in footnote}</code> <a id="DOCF3"
href="#FOOT3"><sup>1</sup></a>
+<code>@footnote{in footnote2}</code> <a id="DOCF4"
href="#FOOT4"><sup>2</sup></a>
+</p>
+<p><code>@image{f--ile}</code> <img src="f--ile.png" alt="f--ile">
+<code>@image{f--ile,l--i}</code> <img src="f--ile.png" alt="f--ile">
+<code>@image{f--ile,,l--e}</code> <img src="f--ile.png" alt="f--ile">
+<code>@image{f--ile,,,alt}</code> <img src="f--ile.png" alt="alt">
+<code>@image{f--ile,,,,.e-d-xt}</code> <img src="f--ile.e--xt" alt="f--ile">
+<code>@image{f--ile,aze,az,alt,.e--xt}</code> <img src="f--ile.e--xt"
alt="alt">
+<code>@image{f-ile,aze,,a--lt}</code> <img src="f-ile.jpg" alt="a–lt">
+<code>@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext} e--xt@}</code> <img
src="f--ile@..file ext e--xt}" alt="alt">
+</p>
+<p><code>@sp 2</code><br>
+</p><br>
+<br>
+<p><code>@page</code><br>
+</p><strong>author</strong><br>
+
+<p><code>need 1002</code>
+</p>
+<p><code>@clicksequence{click @click{} A}</code> click → A
+After clickstyle ⇒
+<code>@clicksequence{click @click{} A}</code> click ⇒ A
+</p>
+<div
class="displaymath"><em><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͡
+ă a̲ ạ ǎ ą a<sup>h</sup><sub>l</sub>
+
+      ! ? . @ } {
+a sunny day
+</em></div>
+<div class="displaymath"><em>→
+u
+TeX LaTeX • © … ... ≡
+error→ ↦ − ★ ⊣ ⇒
+å Å æ œ Æ Œ ø Ø ß ł Ł
Ð
+Þ ð þ ¡ ¿ £
+® ª º ,
+</em></div>
+<div class="displaymath"><em>“ ”
+‘ ’ „ ‚ «
+» « » ‹
+› ° € → ≤ ≥
+</em></div>
+<div class="displaymath"><em><b>b</b> <i>i</i> <span class="roman">r</span>
<small>SC</small> <tt>t</tt> <span class="sansserif">sansserif</span>
<i>slanted</i>
+</em></div>
+<p><kbd>default kbdinputstyle</kbd>
+</p><div class="example">
+<pre class="example"><kbd>in example default kbdinputstyle</kbd>
+</pre></div>
+
+<p><code>code kbdinputstyle</code>
+</p><div class="example">
+<pre class="example"><code>in example code kbdinputstyle</code>
+</pre></div>
+
+<p><kbd>example kbdinputstyle</kbd>
+</p><div class="example">
+<pre class="example"><code>in example example kbdinputstyle</code>
+</pre></div>
+
+<p><kbd>distinct kbdinputstyle</kbd>
+</p><div class="example">
+<pre class="example"><kbd>in example distinct kbdinputstyle</kbd>
+</pre></div>
+
+<blockquote>
+<p>A quot—ation
+</p></blockquote>
+
+<blockquote>
+<p><b>Note:</b> A Note
+</p></blockquote>
+
+<blockquote>
+<p><b>note:</b> A note
+</p></blockquote>
+
+<blockquote>
+<p><b>Caution:</b> Caution
+</p></blockquote>
+
+<blockquote>
+<p><b>Important:</b> Important
+</p></blockquote>
+
+<blockquote>
+<p><b>Tip:</b> a Tip
+</p></blockquote>
+
+<blockquote>
+<p><b>Warning:</b> a Warning.
+</p></blockquote>
+
+<blockquote>
+<p><b>something é TeX:</b> The something é TeX is here.
+</p></blockquote>
+
+<blockquote>
+<p><b>@ at the end of line  :</b> A @ at the end of the @quotation line.
+</p></blockquote>
+
+<blockquote>
+<p><b>something, other thing:</b> something, other thing
+</p></blockquote>
+
+<blockquote>
+<p><b>Note, the note:</b> Note, the note
+</p></blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+<p>aaa quotation
+</p></blockquote>
+<div align="center">— <em>quotation author</em>
+</div>
+<blockquote>
+<p>indent in quotation
+</p></blockquote>
+
+<blockquote>
+<p>A small quot—ation
+</p></blockquote>
+
+<blockquote>
+<p><b>Note:</b> A small Note
+</p></blockquote>
+
+<blockquote>
+<p><b>something, other thing:</b> something, other thing
+</p></blockquote>
+
+<ul>
+<li> i–temize
+</li></ul>
+
+<ul class="no-bullet">
+<li>+ i–tem +
+</li></ul>
+
+<ul>
+<li> b–ullet
+</li></ul>
+
+<ul class="no-bullet">
+<li>− minu–s
+</li></ul>
+
+<ul class="no-bullet">
+<li><em>after emph</em> e–mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>• a–n itemize line <span
id="index-titlepage-index-entry-within-itemize"></span>
+i–tem 1
+</li><li>• a–n itemize line i–tem 2
+</li></ul>
+
+<ol>
+<li> e–numerate
+</li></ol>
+
+<ol start="3">
+<li> first third
+</li><li> second third
+</li></ol>
+
+<ol type="a" start="1">
+<li> e–numerate
+</li></ol>
+
+<ol type="a" start="3">
+<li> first c
+</li><li> second c
+</li></ol>
+
+<table>
+<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
+<span id="index-titlepage-index-entry-within-multitable"></span></td></tr>
+<tr><td width="40%">lone mu–ltitable item</td></tr>
+</tbody>
+</table>
+
+<table>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
+</table>
+
+<div class="example">
+<pre class="example">e--xample some
+ text
+</pre></div>
+
+<div class="example first-arg">
+<pre class="example">example one arg
+</pre></div>
+
+<div class="example first-arg second-arg">
+<pre class="example">example two args
+</pre></div>
+
+<div class="example first-arg second-arg third-arg">
+<pre class="example">example three args
+</pre></div>
+
+<div class="example first-arg second-arg third-arg fourth-arg">
+<pre class="example">example four args
+</pre></div>
+
+<div class="example first-arg second-arg third-arg fourth-arg fifth-arg">
+<pre class="example">example five args
+</pre></div>
+
+<div class="example something-é-TeX">
+<pre class="example">The something é TeX is here.
+</pre></div>
+
+<div class="example @-at-the-end-of-line--">
+<pre class="example">A @ at the end of the @example line.
+</pre></div>
+
+<div class="example">
+<pre class="example">example with empty args
+</pre></div>
+
+<div class="example nonempty">
+<pre class="example">example with empty and non empty args mix
+</pre></div>
+
+<div class="example">
+<pre class="example">s--mallexample
+</pre></div>
+
+<p><code>@noindent</code> after smallexample.
+</p><div class="example">
+<pre class="example">$ 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">d–isplay
+</pre></div>
+
+<div class="display">
+<pre class="display">s–malldisplay
+</pre></div>
+
+<div class="example lisp">
+<pre class="lisp">l--isp
+</pre></div>
+
+<div class="example lisp">
+<pre class="lisp">s--malllisp
+</pre></div>
+
+<div class="format">
+<pre class="format">f–ormat
+</pre></div>
+
+<div class="format">
+<pre class="format">s–mallformat
+</pre></div>
+
+<div class="displaymath"><em>disp--laymath
+f(x) = {1 \over \sigma \sqrt{2\pi}}e<sup>-{1 \over 2}\left({x-\mu \over
\sigma}\right)^2</sup>
+</em></div>
+<dl class="def">
+<dt id="index-titlepage-d_002d_002deffn_005fname"><span
class="category">c--ategory: </span><span><strong>d--effn_name</strong>
<em>a--rguments...</em><a href='#index-titlepage-d_002d_002deffn_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–effn
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-de_002d_002dffn_005fname"><span
class="category">cate--gory: </span><span><strong>de--ffn_name</strong>
<em>ar--guments more args <br> even more so</em><a
href='#index-titlepage-de_002d_002dffn_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>def–fn
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-i"><span class="category">fset:
</span><span><strong><var>i</var></strong> <em>a g</em><a
href='#index-titlepage-i' class='copiable-anchor'> ¶</a></span></dt>
+<dd><span id="index-titlepage-index-entry-within-deffn"></span>
+</dd><dt id="index-titlepage-truc"><span class="category">cmde:
</span><span><strong>truc</strong> <em></em><a href='#index-titlepage-truc'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-titlepage-log-trap"><span class="category">Command:
</span><span><strong>log trap</strong> <em></em><a
href='#index-titlepage-log-trap' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-titlepage-log-trap1"><span class="category">Command:
</span><span><strong>log trap1</strong> <em></em><a
href='#index-titlepage-log-trap1' class='copiable-anchor'>
¶</a></span></dt>
+<dt id="index-titlepage-log-trap2"><span class="category">Command:
</span><span><strong>log trap2</strong> <em></em><a
href='#index-titlepage-log-trap2' class='copiable-anchor'>
¶</a></span></dt>
+<dt id="index-titlepage-id-ule"><span class="category">cmde:
</span><span><strong><b>id ule</b></strong> <em>truc</em><a
href='#index-titlepage-id-ule' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-titlepage-id-i-ule"><span class="category">cmde2:
</span><span><strong><b>id ‘<samp>i</samp>” ule</b></strong>
<em>truc</em><a href='#index-titlepage-id-i-ule' class='copiable-anchor'>
¶</a></span></dt>
+<dt><span class="category"><b>id ‘<samp>i</samp>” ule</b>:
</span><span><strong></strong></span></dt>
+<dt><span><strong></strong></span></dt>
+<dt><span class="category">aaa: </span><span><strong></strong></span></dt>
+<dt><span class="category">: </span><span><strong></strong></span></dt>
+<dt><span class="category">: </span><span><strong></strong></span></dt>
+<dt id="index-titlepage-machin"><span class="category">:
</span><span><strong>machin</strong><a href='#index-titlepage-machin'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-titlepage-bidule-machin"><span class="category">:
</span><span><strong>bidule machin</strong><a
href='#index-titlepage-bidule-machin' class='copiable-anchor'>
¶</a></span></dt>
+<dt id="index-titlepage-machin-1"><span class="category">truc:
</span><span><strong>machin</strong><a href='#index-titlepage-machin-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dt><span class="category">truc: </span><span><strong></strong></span></dt>
+<dt id="index-titlepage-followed"><span class="category">truc:
</span><span><strong>followed</strong> <em>by a comment</em><a
href='#index-titlepage-followed' class='copiable-anchor'> ¶</a></span></dt>
+<dt><span class="category">truc: </span><span><strong></strong></span></dt>
+<dt><span class="category">: </span><span><strong></strong></span></dt>
+<dt id="index-titlepage-a"><span class="category">truc:
</span><span><strong>a</strong> <em>b c d e <b>f g</b> h i</em><a
href='#index-titlepage-a' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-titlepage-deffnx"><span class="category">truc:
</span><span><strong>deffnx</strong> <em>before end deffn</em><a
href='#index-titlepage-deffnx' class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+
+
+<dl class="def">
+<dt id="index-titlepage-deffn"><span class="category">empty:
</span><span><strong>deffn</strong><a href='#index-titlepage-deffn'
class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+
+<dl class="def">
+<dt id="index-titlepage-deffn-1"><span class="category">empty:
</span><span><strong>deffn</strong> <em>with deffnx</em><a
href='#index-titlepage-deffn-1' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-titlepage-deffnx-1"><span class="category">empty:
</span><span><strong>deffnx</strong><a href='#index-titlepage-deffnx-1'
class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+
+<dl class="def">
+<dt id="index-titlepage-i-1"><span class="category">fset:
</span><span><strong><var>i</var></strong> <em>a g</em><a
href='#index-titlepage-i-1' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-titlepage-truc-1"><span class="category">cmde:
</span><span><strong>truc</strong> <em></em><a href='#index-titlepage-truc-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>text in def item for second def item
+</p></dd></dl>
+
+
+<dl class="def">
+<dt id="index-titlepage-d_002d_002defvr_005fname"><span
class="category">c--ategory: </span><span><strong>d--efvr_name</strong><a
href='#index-titlepage-d_002d_002defvr_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efvr
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-n_002d_002dame"><span class="category">c--ategory:
</span><span><strong>n--ame</strong> <em>a--rguments...</em><a
href='#index-titlepage-n_002d_002dame' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–effn
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-n_002d_002dame-1"><span class="category">c--ategory:
</span><span><strong>n--ame</strong><a href='#index-titlepage-n_002d_002dame-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–effn no arg
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-d_002d_002deftypefn_005fname"><span
class="category">c--ategory: </span><span><em>t--ype</em>
<strong>d--eftypefn_name</strong> <em>a--rguments...</em><a
href='#index-titlepage-d_002d_002deftypefn_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypefn
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-d_002d_002deftypefn_005fname-1"><span
class="category">c--ategory: </span><span><em>t--ype</em>
<strong>d--eftypefn_name</strong><a
href='#index-titlepage-d_002d_002deftypefn_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypefn no arg
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-titlepage-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><span>c--ategory
on c--lass: <em>t--ype</em> <strong>d--eftypeop_name</strong>
<em>a--rguments...</em><a
href='#index-titlepage-d_002d_002deftypeop_005fname-on-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeop
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-titlepage-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><span>c--ategory
on c--lass: <em>t--ype</em> <strong>d--eftypeop_name</strong><a
href='#index-titlepage-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeop no arg
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-d_002d_002deftypevr_005fname"><span
class="category">c--ategory: </span><span><em>t--ype</em>
<strong>d--eftypevr_name</strong><a
href='#index-titlepage-d_002d_002deftypevr_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypevr
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-d_002d_002defcv_005fname"><span>c--ategory of c--lass:
<strong>d--efcv_name</strong><a
href='#index-titlepage-d_002d_002defcv_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efcv
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-d_002d_002defcv_005fname-1"><span>c--ategory of
c--lass: <strong>d--efcv_name</strong> <em>a--rguments...</em><a
href='#index-titlepage-d_002d_002defcv_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efcv with arguments
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-titlepage-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><span>c--ategory
of c--lass: <em>t--ype</em> <strong>d--eftypecv_name</strong><a
href='#index-titlepage-d_002d_002deftypecv_005fname-of-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypecv
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-titlepage-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><span>c--ategory
of c--lass: <em>t--ype</em> <strong>d--eftypecv_name</strong>
<em>a--rguments...</em><a
href='#index-titlepage-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypecv with arguments
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-titlepage-d_002d_002defop_005fname-on-c_002d_002dlass"><span>c--ategory
on c--lass: <strong>d--efop_name</strong> <em>a--rguments...</em><a
href='#index-titlepage-d_002d_002defop_005fname-on-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efop
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-titlepage-d_002d_002defop_005fname-on-c_002d_002dlass-1"><span>c--ategory
on c--lass: <strong>d--efop_name</strong><a
href='#index-titlepage-d_002d_002defop_005fname-on-c_002d_002dlass-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efop no arg
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-d_002d_002deftp_005fname"><span
class="category">c--ategory: </span><span><strong>d--eftp_name</strong>
<em>a--ttributes...</em><a href='#index-titlepage-d_002d_002deftp_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftp
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-d_002d_002defun_005fname"><span
class="category">Function: </span><span><strong>d--efun_name</strong>
<em>a--rguments...</em><a href='#index-titlepage-d_002d_002defun_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efun
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-d_002d_002defmac_005fname"><span
class="category">Macro: </span><span><strong>d--efmac_name</strong>
<em>a--rguments...</em><a href='#index-titlepage-d_002d_002defmac_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efmac
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-d_002d_002defspec_005fname"><span
class="category">Special Form: </span><span><strong>d--efspec_name</strong>
<em>a--rguments...</em><a href='#index-titlepage-d_002d_002defspec_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efspec
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-d_002d_002defvar_005fname"><span
class="category">Variable: </span><span><strong>d--efvar_name</strong><a
href='#index-titlepage-d_002d_002defvar_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efvar
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-d_002d_002defvar_005fname-1"><span
class="category">Variable: </span><span><strong>d--efvar_name</strong>
<em>arg--var arg--var1</em><a
href='#index-titlepage-d_002d_002defvar_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efvar with args
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-d_002d_002defopt_005fname"><span class="category">User
Option: </span><span><strong>d--efopt_name</strong><a
href='#index-titlepage-d_002d_002defopt_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efopt
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-d_002d_002deftypefun_005fname"><span
class="category">Function: </span><span><em>t--ype</em>
<strong>d--eftypefun_name</strong> <em>a--rguments...</em><a
href='#index-titlepage-d_002d_002deftypefun_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypefun
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-d_002d_002deftypevar_005fname"><span
class="category">Variable: </span><span><em>t--ype</em>
<strong>d--eftypevar_name</strong><a
href='#index-titlepage-d_002d_002deftypevar_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypevar
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-titlepage-d_002d_002defivar_005fname-of-c_002d_002dlass"><span>Instance
Variable of c--lass: <strong>d--efivar_name</strong><a
href='#index-titlepage-d_002d_002defivar_005fname-of-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efivar
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-titlepage-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><span>Instance
Variable of c--lass: <em>t--ype</em> <strong>d--eftypeivar_name</strong><a
href='#index-titlepage-d_002d_002deftypeivar_005fname-of-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeivar
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-titlepage-d_002d_002defmethod_005fname-on-c_002d_002dlass"><span>Method
on c--lass: <strong>d--efmethod_name</strong> <em>a--rguments...</em><a
href='#index-titlepage-d_002d_002defmethod_005fname-on-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efmethod
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-titlepage-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><span>Method
on c--lass: <em>t--ype</em> <strong>d--eftypemethod_name</strong>
<em>a--rguments...</em><a
href='#index-titlepage-d_002d_002deftypemethod_005fname-on-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypemethod
+</p></dd></dl>
+
+
+<dl class="def">
+<dt id="index-titlepage-name2"><span class="category">Function:<br>
</span><span><em>data-type2</em><br> <strong>name2</strong>
<em>arguments2...</em><a href='#index-titlepage-name2' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>aaa2
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-d_002d_002deftypefn_005fname2"><span
class="category">c--ategory2:<br> </span><span><em>t--ype2</em><br>
<strong>d--eftypefn_name2</strong><a
href='#index-titlepage-d_002d_002deftypefn_005fname2' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypefn no arg2
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-titlepage-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><span>c--ategory2
on c--lass2:<br> <em>t--ype2</em><br> <strong>d--eftypeop_name2</strong>
<em>a--rguments2...</em><a
href='#index-titlepage-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeop2
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-titlepage-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><span>c--ategory2
on c--lass2:<br> <em>t--ype2</em><br> <strong>d--eftypeop_name2</strong><a
href='#index-titlepage-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeop no arg2
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-titlepage-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><span>c--ategory2
of c--lass2:<br> <em>t--ype2</em><br> <strong>d--eftypecv_name2</strong><a
href='#index-titlepage-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypecv2
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-titlepage-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><span>c--ategory2
of c--lass2:<br> <em>t--ype2</em><br> <strong>d--eftypecv_name2</strong>
<em>a--rguments2...</em><a
href='#index-titlepage-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypecv with arguments2
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-titlepage-arg2"><span class="category">fun2:
</span><span><strong>arg2</strong><a href='#index-titlepage-arg2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>fff2
+</p></dd></dl>
+
+
+<p><code>@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@,
ma---nual@@}</code> See <a data-manual="file n---ame@" href="file
n---ame@.html#c_002d_002d_002dhapter_0040">t—itle@</a> in
<cite>ma—nual@</cite>.
+<code>@ref{chapter, cross ref name, title, file name, manual}</code> <a
data-manual="file name" href="file name.html#chapter">title</a> in
<cite>manual</cite>
+<code>@pxref{chapter, cross ref name, title, file name, manual}</code> see <a
data-manual="file name" href="file name.html#chapter">title</a> in
<cite>manual</cite>
+<code>@inforef{chapter, cross ref name, file name}</code> See <a
data-manual="file name" href="file name.html#chapter">(file name)cross ref
name</a>
+</p>
+<p><code>@ref{chapter}</code> <a href="#chapter">chapter</a>
+<code>@xref{chapter}</code> See <a href="#chapter">chapter</a>.
+<code>@pxref{chapter}</code> see <a href="#chapter">chapter</a>
+<code>@ref{s--ect@comma{}ion}</code> <a href="#s_002d_002dect_002cion">A
section</a>
+</p>
+<p><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 data-manual="a comma, in file" href="a comma, in
file.html#s_002d_002dect_002cion">a comma, in title</a> in <cite>a , in
manual name</cite>
+</p>
+<p><code>@ref{chapter,cross ref name}</code> <a href="#chapter">cross ref
name</a>
+<code>@ref{chapter,,title}</code> <a href="#chapter">title</a>
+<code>@ref{chapter,,,file name}</code> <a data-manual="file name" href="file
name.html#chapter">(file name)chapter</a>
+<code>@ref{chapter,,,,manual}</code> ‘chapter’ in
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,}</code> <a href="#chapter">title</a>
+<code>@ref{chapter,cross ref name,,file name}</code> <a data-manual="file
name" href="file name.html#chapter">(file name)cross ref name</a>
+<code>@ref{chapter,cross ref name,,,manual}</code> ‘cross ref
name’ in <cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,file name}</code> <a data-manual="file
name" href="file name.html#chapter">(file name)title</a>
+<code>@ref{chapter,cross ref name,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#chapter">title</a> in
<cite>manual</cite>
+<code>@ref{chapter,,title,file name}</code> <a data-manual="file name"
href="file name.html#chapter">(file name)title</a>
+<code>@ref{chapter,,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a data-manual="file
name" href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,,file name,manual}</code> <a data-manual="file name"
href="file name.html#chapter">chapter</a> in <cite>manual</cite>
+</p>
+
+<p><code>@ref{(pman)anode,cross ref name}</code> <a data-manual="pman"
href="pman.html#anode">(pman)cross ref name</a>
+<code>@ref{(pman)anode,,title}</code> <a data-manual="pman"
href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,,,file name}</code> <a data-manual="file name"
href="file name.html#anode">(file name)anode</a>
+<code>@ref{(pman)anode,,,,manual}</code> <a data-manual="pman"
href="pman.html#anode">anode</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,}</code> <a data-manual="pman"
href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,cross ref name,,file name}</code> <a data-manual="file
name" href="file name.html#anode">(file name)cross ref name</a>
+<code>@ref{(pman)anode,cross ref name,,,manual}</code> <a data-manual="pman"
href="pman.html#anode">cross ref name</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,file name}</code> <a
data-manual="file name" href="file name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,cross ref name,title,,manual}</code> <a
data-manual="pman" href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#anode">title</a> in
<cite>manual</cite>
+<code>@ref{(pman)anode,,title,file name}</code> <a data-manual="file name"
href="file name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,,title,,manual}</code> <a data-manual="pman"
href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title, file name, manual}</code> <a data-manual="file
name" href="file name.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,,file name,manual}</code> <a data-manual="file name"
href="file name.html#anode">anode</a> in <cite>manual</cite>
+</p>
+
+<p><code>@inforef{chapter, cross ref name, file name}</code> See <a
data-manual="file name" href="file name.html#chapter">(file name)cross ref
name</a>
+<code>@inforef{chapter}</code> See ‘chapter’
+<code>@inforef{chapter, cross ref name}</code> See ‘cross ref name’
+<code>@inforef{chapter,,file name}</code> See <a data-manual="file name"
href="file name.html#chapter">(file name)chapter</a>
+<code>@inforef{node, cross ref name, file name}</code> See <a
data-manual="file name" href="file name.html#node">(file name)cross ref name</a>
+<code>@inforef{node}</code> See ‘node’
+<code>@inforef{node, cross ref name}</code> See ‘cross ref name’
+<code>@inforef{node,,file name}</code> See <a data-manual="file name"
href="file name.html#node">(file name)node</a>
+<code>@inforef{chapter, cross ref name, file name, spurious arg}</code> See <a
data-manual="file name, spurious arg" href="file name, spurious
arg.html#chapter">(file name, spurious arg)cross ref name</a>
+</p>
+<p><code>@inforef{s--ect@comma{}ion, a @comma{} in cross
+ref, a comma@comma{} in file}</code>
+See <a data-manual="a comma, in file" href="a comma, in
file.html#s_002d_002dect_002cion">(a comma, in file)a , in cross
+ref</a>
+</p>
+<p>‘<samp><a href="#chapter">chapter</a></samp>”.
+</p>
+<p><a data-manual="info file with uref3 href://http/myhost.com/index3.html
(uref3)" href="index3.html (uref3).html#ext">title with uref2 <a
href="href://http/myhost.com/index2.html">uref2</a></a> in <cite>printed manual
with uref4 <a href="href://http/myhost.com/index4.html">uref4</a></cite>
+<a href="#chapter">title with uref2 <a
href="href://http/myhost.com/index2.html">uref2</a></a>
+</p>
+<dl compact="compact">
+<dt><span><strong>a–strong</strong></span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-titlepage-a_002d_002dasis'><span>a–asis<a
href='#index-titlepage-a_002d_002dasis' class='copiable-anchor'>
¶</a></span></dt>
+<dt id='index-titlepage-b-2'><span>b<a href='#index-titlepage-b-2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-titlepage-a-1'><span><em>a</em><a href='#index-titlepage-a-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><span id="index-titlepage-index-entry-between-item-and-itemx"></span>
+</dd>
+<dt id='index-titlepage-b'><span><em>b</em><a href='#index-titlepage-b'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt><span><code>a--code</code></span></dt>
+<dd><p>Value–table code
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt><span>‘<samp>a--samp</samp>”</span></dt>
+<dt><span>‘<samp>a2--samp</samp>”</span></dt>
+<dd><p>Value–table samp
+</p></dd>
+</dl>
+
+<table class="cartouche" border="1"><tr><td>
+<p>c–artouche
+</p></td></tr></table>
+
+<p>g–roupe
+</p>
+<p align="left">f–lushleft
+more text
+</p>
+<p align="right">f–lushright
+more text
+</p>
+<div align="center">ce–ntered line
+</div>
+<p>r–raggedright
+more text
+</p>
+<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 ''
+
+
+
+
+<span id="majorheading"></span><h1 class="majorheading">majorheading</h1>
+
+<span id="chapheading"></span><h1 class="chapheading">chapheading</h1>
+
+<span id="heading"></span><h2 class="heading">heading</h2>
+
+<span id="subheading"></span><h3 class="subheading">subheading</h3>
+
+<span id="subsubheading"></span><h4 class="subsubheading">subsubheading</h4>
+
+
+<p><code>@acronym{--a,an accronym @comma{} @enddots{}}</code> <acronym
title="an accronym , ...">–a</acronym> (an accronym , <small
class="enddots">...</small>)
+<code>@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome} }</code> <abbr
title="Étude–, Autonome">É–. ,A.</abbr>
(Étude–, <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="Étude–,
Autonome">É–. ,A.</abbr>
+</p>
+<p><code>@math{--a@minus{} {\frac{1}{2}}}</code> <em class='math'>--a−
{\frac{1}{2}}</em>
+</p>
+<p><code>@image{f-ile,,,alt@verb{:jk _" %}}</code> <img src="f-ile.jpg"
alt="altjk _" %@">
+<code>@image{f--ile,aze,az,@verb{:jk _" %@:} @b{in b
"},e--xt}</code> <img src="f--ile.e--xt" alt="jk _" %@ in b "">
+<code>@image{file@verb{:jk _" %@:},,,alt@verb{:jk _" %@:}}</code>
<img src="filejk _" %@.jpg" alt="altjk _" %@">
+</p>
+
+
+
+<p>Somehow invalid use of @,:<br>
+@, ̧
+<br>
+@,@"u ̧ü
+</p>
+<p>Invalid use of @’:<br>
+@’ ́
+<br>
+@’@"u ́ü
+</p>
+<p>@dotless{truc} truc
+@dotless{ij} ij
+<code>@dotless{--a}</code> –a
+<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>@#</code> #
+</p>
+<p><code>@w{--a}</code> –a<!-- /@w -->
+</p>
+<p><code>@image{,1--xt}</code>
+<code>@image{,,2--xt}</code>
+<code>@image{,,,3--xt}</code>
+</p>
+
+<ul class="no-bullet">
+<li> e–mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li> after emph e–mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>• a–n itemize line i–tem 1
+</li><li>• a–n itemize line i–tem 2
+</li></ul>
+
+<dl compact="compact">
+<dt><span>a</span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt><span>a–missing style formatting</span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-titlepage-a-2'><span>a<a href='#index-titlepage-a-2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><span id="index-titlepage-index-entry-between-item-and-itemx-1"></span>
+</dd>
+<dt id='index-titlepage-b-1'><span>b<a href='#index-titlepage-b-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl class="def">
+<dt><span class="category">fun: </span><span><strong></strong></span></dt>
+<dt id="index-titlepage-machin-2"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and</em><a
href='#index-titlepage-machin-2' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-titlepage-machin-3"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and after</em><a
href='#index-titlepage-machin-3' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-titlepage-machin-4"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and </em><a
href='#index-titlepage-machin-4' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-titlepage-machin-5"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and and after</em><a
href='#index-titlepage-machin-5' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-titlepage-followed-1"><span class="category">truc:
</span><span><strong>followed</strong> <em>by a comment</em><a
href='#index-titlepage-followed-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>Various deff lines
+</p></dd><dt id="index-titlepage-after"><span class="category">truc:
</span><span><strong>after</strong> <em>a deff item</em><a
href='#index-titlepage-after' class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+
+<p><code>@ref{node}</code> ‘node’
+</p>
+<p><code>@ref{,cross ref name}</code> ‘cross ref name’
+<code>@ref{,,title}</code> ‘title’
+<code>@ref{,,,file name}</code> <a data-manual="file name" href="file
name.html#Top">(file name)</a>
+<code>@ref{,,,,manual}</code> <cite>manual</cite>
+<code>@ref{node,cross ref name}</code> ‘cross ref name’
+<code>@ref{node,,title}</code> ‘title’
+<code>@ref{node,,,file name}</code> <a data-manual="file name" href="file
name.html#node">(file name)node</a>
+<code>@ref{node,,,,manual}</code> ‘node’ in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,}</code> ‘title’
+<code>@ref{node,cross ref name,,file name}</code> <a data-manual="file name"
href="file name.html#node">(file name)cross ref name</a>
+<code>@ref{node,cross ref name,,,manual}</code> ‘cross ref name’
in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,file name}</code> <a data-manual="file
name" href="file name.html#node">(file name)title</a>
+<code>@ref{node,cross ref name,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{node,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#node">title</a> in
<cite>manual</cite>
+<code>@ref{node,,title,file name}</code> <a data-manual="file name" href="file
name.html#node">(file name)title</a>
+<code>@ref{node,,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a data-manual="file
name" href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{node,,title, file name, manual}</code> <a data-manual="file name"
href="file name.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,,file name,manual}</code> <a data-manual="file name"
href="file name.html#node">node</a> in <cite>manual</cite>
+<code>@ref{,cross ref name,title,}</code> ‘title’
+<code>@ref{,cross ref name,,file name}</code> <a data-manual="file name"
href="file name.html#Top">(file name)cross ref name</a>
+<code>@ref{,cross ref name,,,manual}</code> ‘cross ref name’ in
<cite>manual</cite>
+<code>@ref{,cross ref name,title,file name}</code> <a data-manual="file name"
href="file name.html#Top">(file name)title</a>
+<code>@ref{,cross ref name,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#Top">title</a> in
<cite>manual</cite>
+<code>@ref{,,title,file name}</code> <a data-manual="file name" href="file
name.html#Top">(file name)title</a>
+<code>@ref{,,title,,manual}</code> ‘title’ in <cite>manual</cite>
+<code>@ref{,,title, file name, manual}</code> <a data-manual="file name"
href="file name.html#Top">title</a> in <cite>manual</cite>
+<code>@ref{,,,file name,manual}</code> <cite><a data-manual="file name"
href="file name.html#Top">manual</a></cite>
+</p>
+<p><code>@inforef{,cross ref name }</code> See ‘cross ref name’
+<code>@inforef{,,file name}</code> See <a data-manual="file name" href="file
name.html#Top">(file name)</a>
+<code>@inforef{,cross ref name, file name}</code> See <a data-manual="file
name" href="file name.html#Top">(file name)cross ref name</a>
+<code>@inforef{}</code>
+</p>
+
+
+<p>Insercopying in titlepage
+</p><p>In copying
+</p>
+<p><
+>
+"
+&
+’
+‘
+</p>
+<p>“simple-double–three—four—-”<br>
+code: <code>``simple-double--three---four----''</code> <br>
+asis: “simple-double–three—four—-” <br>
+strong:
<strong>“simple-double–three—four—-”</strong> <br>
+kbd: <kbd>``simple-double--three---four----''</kbd> <br>
+</p>
+<p>‘<!-- /@w -->‘simple-double-<!-- /@w
-->-three—four—-’<!-- /@w -->’<br>
+</p>
+<span id="index-copying-_002d_002doption"></span>
+<span id="index-copying-_0060_0060"></span>
+<span id="index-copying-_0060_0060-1"></span>
+<span id="index-copying-_002d_002dfoption"></span>
+
+<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>@-</code>
+<code>@|</code>
+<code>@:</code>
+<code>@!</code> !
+<code>@?</code> ?
+<code>@.</code> .
+<code>@@</code> @
+<code>@}</code> }
+<code>@{</code> {
+<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 ›
+@textdegree °
+@euro €
+@arrow →
+@leq ≤
+@geq ≥
+</p>
+<p><code>@acronym{--a,an accronym}</code> <acronym title="an
accronym">–a</acronym> (an accronym)
+<code>@acronym{--a}</code> <acronym title="an accronym">–a</acronym>
+<code>@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr
title="Étude Autonome">É–. ,A.</abbr> (Étude Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="Étude
Autonome">É–. ,A.</abbr>
+<code>@asis{--a}</code> –a
+<code>@b{--a}</code> <b>–a</b>
+<code>@cite{--a}</code> <cite>–a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@dfn{--a}</code> <em>–a</em>
+<code>@dmn{--a}</code> –a
+<code>@email{--a,--b}</code> <a href="mailto:--a">–b</a>
+<code>@email{,--b}</code> –b
+<code>@email{--a}</code> <a href="mailto:--a">--a</a>
+<code>@emph{--a}</code> <em>–a</em>
+<code>@env{--a}</code> <code>--a</code>
+<code>@file{--a}</code> <samp>--a</samp>
+<code>@i{--a}</code> <i>–a</i>
+<code>@kbd{--a}</code> <kbd>--a</kbd>
+<code>@key{--a}</code> <tt class="key">--a</tt>
+<code>@math{--a {\frac{1}{2}} @minus{}}</code> <em class='math'>--a
{\frac{1}{2}} −</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">–a</span>
+<code>@samp{--a}</code> ‘<samp>--a</samp>”
+<code>@sc{--a}</code> <small>–A</small>
+<code>@strong{--a}</code> <strong>–a</strong>
+<code>@t{--a}</code> <tt>--a</tt>
+<code>@sansserif{--a}</code> <span class="sansserif">–a</span>
+<code>@slanted{--a}</code> <i>–a</i>
+<code>@titlefont{--a}</code> </p><h1 class="titlefont">–a</h1>
+<p><code>@indicateurl{--a}</code> ‘<code>--a</code>”
+<code>@uref{--a,--b}</code> <a href="--a">–b</a>
+<code>@uref{--a}</code> <a href="--a">--a</a>
+<code>@uref{,--b}</code> –b
+<code>@uref{--a,--b,--c}</code> <a href="--a">–c</a>
+<code>@uref{,--b,--c}</code> –c
+<code>@uref{--a,,--c}</code> <a href="--a">–c</a>
+<code>@uref{,,--c}</code> –c
+<code>@url{--a,--b}</code> <a href="--a">–b</a>
+<code>@url{--a,}</code> <a href="--a">--a</a>
+<code>@url{,--b}</code> –b
+<code>@var{--a}</code> <var>–a</var>
+<code>@verb{:--a:}</code> <tt>--a</tt>
+<code>@verb{:a < & @ % " -- b:}</code> <tt>a < & @ %
" -- b</tt>
+<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>@H{a}</code> a̋
+<code>@H{--a}</code> –a̋
+<code>@dotaccent{a}</code> ȧ
+<code>@dotaccent{--a}</code> –ȧ
+<code>@ringaccent{a}</code> å
+<code>@ringaccent{--a}</code> –å
+<code>@tieaccent{a}</code> a͡
+<code>@tieaccent{--a}</code> –a͡
+<code>@u{a}</code> ă
+<code>@u{--a}</code> –ă
+<code>@ubaraccent{a}</code> a̲
+<code>@ubaraccent{--a}</code> –a̲
+<code>@udotaccent{a}</code> ạ
+<code>@udotaccent{--a}</code> –ạ
+<code>@v{a}</code> ǎ
+<code>@v{--a}</code> –ǎ
+<code>@,{c}</code> ç
+<code>@,{--c}</code> –ç
+<code>@ogonek{a}</code> ą
+<code>@ogonek{--a}</code> –ą
+<code>a@sup{h}@sub{l}</code> a<sup>h</sup><sub>l</sub>
+<code>@footnote{in footnote}</code> <a id="DOCF1"
href="#FOOT1"><sup>3</sup></a>
+<code>@footnote{in footnote2}</code> <a id="DOCF2"
href="#FOOT2"><sup>4</sup></a>
+</p>
+<p><code>@image{f--ile}</code> <img src="f--ile.png" alt="f--ile">
+<code>@image{f--ile,l--i}</code> <img src="f--ile.png" alt="f--ile">
+<code>@image{f--ile,,l--e}</code> <img src="f--ile.png" alt="f--ile">
+<code>@image{f--ile,,,alt}</code> <img src="f--ile.png" alt="alt">
+<code>@image{f--ile,,,,.e-d-xt}</code> <img src="f--ile.e--xt" alt="f--ile">
+<code>@image{f--ile,aze,az,alt,.e--xt}</code> <img src="f--ile.e--xt"
alt="alt">
+<code>@image{f-ile,aze,,a--lt}</code> <img src="f-ile.jpg" alt="a–lt">
+<code>@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext} e--xt@}</code> <img
src="f--ile@..file ext e--xt}" alt="alt">
+</p>
+<p><code>@sp 2</code><br>
+</p><br>
+<br>
+<p><code>@page</code><br>
+</p>
+<p><code>need 1002</code>
+</p>
+<p><code>@clicksequence{click @click{} A}</code> click → A
+After clickstyle ⇒
+<code>@clicksequence{click @click{} A}</code> click ⇒ A
+</p>
+<div
class="displaymath"><em><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͡
+ă a̲ ạ ǎ ą a<sup>h</sup><sub>l</sub>
+
+      ! ? . @ } {
+a sunny day
+</em></div>
+<div class="displaymath"><em>→
+u
+TeX LaTeX • © … ... ≡
+error→ ↦ − ★ ⊣ ⇒
+å Å æ œ Æ Œ ø Ø ß ł Ł
Ð
+Þ ð þ ¡ ¿ £
+® ª º ,
+</em></div>
+<div class="displaymath"><em>“ ”
+‘ ’ „ ‚ «
+» « » ‹
+› ° € → ≤ ≥
+</em></div>
+<div class="displaymath"><em><b>b</b> <i>i</i> <span class="roman">r</span>
<small>SC</small> <tt>t</tt> <span class="sansserif">sansserif</span>
<i>slanted</i>
+</em></div>
+<p><kbd>default kbdinputstyle</kbd>
+</p><div class="example">
+<pre class="example"><kbd>in example default kbdinputstyle</kbd>
+</pre></div>
+
+<p><code>code kbdinputstyle</code>
+</p><div class="example">
+<pre class="example"><code>in example code kbdinputstyle</code>
+</pre></div>
+
+<p><kbd>example kbdinputstyle</kbd>
+</p><div class="example">
+<pre class="example"><code>in example example kbdinputstyle</code>
+</pre></div>
+
+<p><kbd>distinct kbdinputstyle</kbd>
+</p><div class="example">
+<pre class="example"><kbd>in example distinct kbdinputstyle</kbd>
+</pre></div>
+
+<blockquote>
+<p>A quot—ation
+</p></blockquote>
+
+<blockquote>
+<p><b>Note:</b> A Note
+</p></blockquote>
+
+<blockquote>
+<p><b>note:</b> A note
+</p></blockquote>
+
+<blockquote>
+<p><b>Caution:</b> Caution
+</p></blockquote>
+
+<blockquote>
+<p><b>Important:</b> Important
+</p></blockquote>
+
+<blockquote>
+<p><b>Tip:</b> a Tip
+</p></blockquote>
+
+<blockquote>
+<p><b>Warning:</b> a Warning.
+</p></blockquote>
+
+<blockquote>
+<p><b>something é TeX:</b> The something é TeX is here.
+</p></blockquote>
+
+<blockquote>
+<p><b>@ at the end of line  :</b> A @ at the end of the @quotation line.
+</p></blockquote>
+
+<blockquote>
+<p><b>something, other thing:</b> something, other thing
+</p></blockquote>
+
+<blockquote>
+<p><b>Note, the note:</b> Note, the note
+</p></blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+<p>aaa quotation
+</p></blockquote>
+<div align="center">— <em>quotation author</em>
+</div>
+<blockquote>
+<p>indent in quotation
+</p></blockquote>
+
+<blockquote>
+<p>A small quot—ation
+</p></blockquote>
+
+<blockquote>
+<p><b>Note:</b> A small Note
+</p></blockquote>
+
+<blockquote>
+<p><b>something, other thing:</b> something, other thing
+</p></blockquote>
+
+<ul>
+<li> i–temize
+</li></ul>
+
+<ul class="no-bullet">
+<li>+ i–tem +
+</li></ul>
+
+<ul>
+<li> b–ullet
+</li></ul>
+
+<ul class="no-bullet">
+<li>− minu–s
+</li></ul>
+
+<ul class="no-bullet">
+<li><em>after emph</em> e–mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>• a–n itemize line <span
id="index-copying-index-entry-within-itemize"></span>
+i–tem 1
+</li><li>• a–n itemize line i–tem 2
+</li></ul>
+
+<ol>
+<li> e–numerate
+</li></ol>
+
+<ol start="3">
+<li> first third
+</li><li> second third
+</li></ol>
+
+<ol type="a" start="1">
+<li> e–numerate
+</li></ol>
+
+<ol type="a" start="3">
+<li> first c
+</li><li> second c
+</li></ol>
+
+<table>
+<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
+<span id="index-copying-index-entry-within-multitable"></span></td></tr>
+<tr><td width="40%">lone mu–ltitable item</td></tr>
+</tbody>
+</table>
+
+<table>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
+</table>
+
+<div class="example">
+<pre class="example">e--xample some
+ text
+</pre></div>
+
+<div class="example first-arg">
+<pre class="example">example one arg
+</pre></div>
+
+<div class="example first-arg second-arg">
+<pre class="example">example two args
+</pre></div>
+
+<div class="example first-arg second-arg third-arg">
+<pre class="example">example three args
+</pre></div>
+
+<div class="example first-arg second-arg third-arg fourth-arg">
+<pre class="example">example four args
+</pre></div>
+
+<div class="example first-arg second-arg third-arg fourth-arg fifth-arg">
+<pre class="example">example five args
+</pre></div>
+
+<div class="example something-é-TeX">
+<pre class="example">The something é TeX is here.
+</pre></div>
+
+<div class="example @-at-the-end-of-line--">
+<pre class="example">A @ at the end of the @example line.
+</pre></div>
+
+<div class="example">
+<pre class="example">example with empty args
+</pre></div>
+
+<div class="example nonempty">
+<pre class="example">example with empty and non empty args mix
+</pre></div>
+
+<div class="example">
+<pre class="example">s--mallexample
+</pre></div>
+
+<p><code>@noindent</code> after smallexample.
+</p><div class="example">
+<pre class="example">$ 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">d–isplay
+</pre></div>
+
+<div class="display">
+<pre class="display">s–malldisplay
+</pre></div>
+
+<div class="example lisp">
+<pre class="lisp">l--isp
+</pre></div>
+
+<div class="example lisp">
+<pre class="lisp">s--malllisp
+</pre></div>
+
+<div class="format">
+<pre class="format">f–ormat
+</pre></div>
+
+<div class="format">
+<pre class="format">s–mallformat
+</pre></div>
+
+<div class="displaymath"><em>disp--laymath
+f(x) = {1 \over \sigma \sqrt{2\pi}}e<sup>-{1 \over 2}\left({x-\mu \over
\sigma}\right)^2</sup>
+</em></div>
+<dl class="def">
+<dt id="index-copying-d_002d_002deffn_005fname"><span
class="category">c--ategory: </span><span><strong>d--effn_name</strong>
<em>a--rguments...</em><a href='#index-copying-d_002d_002deffn_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–effn
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-de_002d_002dffn_005fname"><span
class="category">cate--gory: </span><span><strong>de--ffn_name</strong>
<em>ar--guments more args <br> even more so</em><a
href='#index-copying-de_002d_002dffn_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>def–fn
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-i"><span class="category">fset:
</span><span><strong><var>i</var></strong> <em>a g</em><a
href='#index-copying-i' class='copiable-anchor'> ¶</a></span></dt>
+<dd><span id="index-copying-index-entry-within-deffn"></span>
+</dd><dt id="index-copying-truc"><span class="category">cmde:
</span><span><strong>truc</strong> <em></em><a href='#index-copying-truc'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-log-trap"><span class="category">Command:
</span><span><strong>log trap</strong> <em></em><a
href='#index-copying-log-trap' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-log-trap1"><span class="category">Command:
</span><span><strong>log trap1</strong> <em></em><a
href='#index-copying-log-trap1' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-log-trap2"><span class="category">Command:
</span><span><strong>log trap2</strong> <em></em><a
href='#index-copying-log-trap2' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-id-ule"><span class="category">cmde:
</span><span><strong><b>id ule</b></strong> <em>truc</em><a
href='#index-copying-id-ule' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-id-i-ule"><span class="category">cmde2:
</span><span><strong><b>id ‘<samp>i</samp>” ule</b></strong>
<em>truc</em><a href='#index-copying-id-i-ule' class='copiable-anchor'>
¶</a></span></dt>
+<dt><span class="category"><b>id ‘<samp>i</samp>” ule</b>:
</span><span><strong></strong></span></dt>
+<dt><span><strong></strong></span></dt>
+<dt><span class="category">aaa: </span><span><strong></strong></span></dt>
+<dt><span class="category">: </span><span><strong></strong></span></dt>
+<dt><span class="category">: </span><span><strong></strong></span></dt>
+<dt id="index-copying-machin"><span class="category">:
</span><span><strong>machin</strong><a href='#index-copying-machin'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-bidule-machin"><span class="category">:
</span><span><strong>bidule machin</strong><a
href='#index-copying-bidule-machin' class='copiable-anchor'>
¶</a></span></dt>
+<dt id="index-copying-machin-1"><span class="category">truc:
</span><span><strong>machin</strong><a href='#index-copying-machin-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dt><span class="category">truc: </span><span><strong></strong></span></dt>
+<dt id="index-copying-followed"><span class="category">truc:
</span><span><strong>followed</strong> <em>by a comment</em><a
href='#index-copying-followed' class='copiable-anchor'> ¶</a></span></dt>
+<dt><span class="category">truc: </span><span><strong></strong></span></dt>
+<dt><span class="category">: </span><span><strong></strong></span></dt>
+<dt id="index-copying-a"><span class="category">truc:
</span><span><strong>a</strong> <em>b c d e <b>f g</b> h i</em><a
href='#index-copying-a' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-deffnx"><span class="category">truc:
</span><span><strong>deffnx</strong> <em>before end deffn</em><a
href='#index-copying-deffnx' class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+
+
+<dl class="def">
+<dt id="index-copying-deffn"><span class="category">empty:
</span><span><strong>deffn</strong><a href='#index-copying-deffn'
class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+
+<dl class="def">
+<dt id="index-copying-deffn-1"><span class="category">empty:
</span><span><strong>deffn</strong> <em>with deffnx</em><a
href='#index-copying-deffn-1' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-deffnx-1"><span class="category">empty:
</span><span><strong>deffnx</strong><a href='#index-copying-deffnx-1'
class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+
+<dl class="def">
+<dt id="index-copying-i-1"><span class="category">fset:
</span><span><strong><var>i</var></strong> <em>a g</em><a
href='#index-copying-i-1' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-truc-1"><span class="category">cmde:
</span><span><strong>truc</strong> <em></em><a href='#index-copying-truc-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>text in def item for second def item
+</p></dd></dl>
+
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defvr_005fname"><span
class="category">c--ategory: </span><span><strong>d--efvr_name</strong><a
href='#index-copying-d_002d_002defvr_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efvr
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-n_002d_002dame"><span class="category">c--ategory:
</span><span><strong>n--ame</strong> <em>a--rguments...</em><a
href='#index-copying-n_002d_002dame' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–effn
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-n_002d_002dame-1"><span class="category">c--ategory:
</span><span><strong>n--ame</strong><a href='#index-copying-n_002d_002dame-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–effn no arg
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002deftypefn_005fname"><span
class="category">c--ategory: </span><span><em>t--ype</em>
<strong>d--eftypefn_name</strong> <em>a--rguments...</em><a
href='#index-copying-d_002d_002deftypefn_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypefn
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002deftypefn_005fname-1"><span
class="category">c--ategory: </span><span><em>t--ype</em>
<strong>d--eftypefn_name</strong><a
href='#index-copying-d_002d_002deftypefn_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypefn no arg
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><span>c--ategory
on c--lass: <em>t--ype</em> <strong>d--eftypeop_name</strong>
<em>a--rguments...</em><a
href='#index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeop
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><span>c--ategory
on c--lass: <em>t--ype</em> <strong>d--eftypeop_name</strong><a
href='#index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeop no arg
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002deftypevr_005fname"><span
class="category">c--ategory: </span><span><em>t--ype</em>
<strong>d--eftypevr_name</strong><a
href='#index-copying-d_002d_002deftypevr_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypevr
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defcv_005fname"><span>c--ategory of c--lass:
<strong>d--efcv_name</strong><a href='#index-copying-d_002d_002defcv_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efcv
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defcv_005fname-1"><span>c--ategory of c--lass:
<strong>d--efcv_name</strong> <em>a--rguments...</em><a
href='#index-copying-d_002d_002defcv_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efcv with arguments
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><span>c--ategory
of c--lass: <em>t--ype</em> <strong>d--eftypecv_name</strong><a
href='#index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypecv
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><span>c--ategory
of c--lass: <em>t--ype</em> <strong>d--eftypecv_name</strong>
<em>a--rguments...</em><a
href='#index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypecv with arguments
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002defop_005fname-on-c_002d_002dlass"><span>c--ategory
on c--lass: <strong>d--efop_name</strong> <em>a--rguments...</em><a
href='#index-copying-d_002d_002defop_005fname-on-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efop
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002defop_005fname-on-c_002d_002dlass-1"><span>c--ategory
on c--lass: <strong>d--efop_name</strong><a
href='#index-copying-d_002d_002defop_005fname-on-c_002d_002dlass-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efop no arg
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002deftp_005fname"><span
class="category">c--ategory: </span><span><strong>d--eftp_name</strong>
<em>a--ttributes...</em><a href='#index-copying-d_002d_002deftp_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftp
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defun_005fname"><span
class="category">Function: </span><span><strong>d--efun_name</strong>
<em>a--rguments...</em><a href='#index-copying-d_002d_002defun_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efun
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defmac_005fname"><span class="category">Macro:
</span><span><strong>d--efmac_name</strong> <em>a--rguments...</em><a
href='#index-copying-d_002d_002defmac_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efmac
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defspec_005fname"><span
class="category">Special Form: </span><span><strong>d--efspec_name</strong>
<em>a--rguments...</em><a href='#index-copying-d_002d_002defspec_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efspec
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defvar_005fname"><span
class="category">Variable: </span><span><strong>d--efvar_name</strong><a
href='#index-copying-d_002d_002defvar_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efvar
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defvar_005fname-1"><span
class="category">Variable: </span><span><strong>d--efvar_name</strong>
<em>arg--var arg--var1</em><a href='#index-copying-d_002d_002defvar_005fname-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efvar with args
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defopt_005fname"><span class="category">User
Option: </span><span><strong>d--efopt_name</strong><a
href='#index-copying-d_002d_002defopt_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efopt
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002deftypefun_005fname"><span
class="category">Function: </span><span><em>t--ype</em>
<strong>d--eftypefun_name</strong> <em>a--rguments...</em><a
href='#index-copying-d_002d_002deftypefun_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypefun
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002deftypevar_005fname"><span
class="category">Variable: </span><span><em>t--ype</em>
<strong>d--eftypevar_name</strong><a
href='#index-copying-d_002d_002deftypevar_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypevar
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002defivar_005fname-of-c_002d_002dlass"><span>Instance
Variable of c--lass: <strong>d--efivar_name</strong><a
href='#index-copying-d_002d_002defivar_005fname-of-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efivar
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><span>Instance
Variable of c--lass: <em>t--ype</em> <strong>d--eftypeivar_name</strong><a
href='#index-copying-d_002d_002deftypeivar_005fname-of-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeivar
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002defmethod_005fname-on-c_002d_002dlass"><span>Method
on c--lass: <strong>d--efmethod_name</strong> <em>a--rguments...</em><a
href='#index-copying-d_002d_002defmethod_005fname-on-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efmethod
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><span>Method
on c--lass: <em>t--ype</em> <strong>d--eftypemethod_name</strong>
<em>a--rguments...</em><a
href='#index-copying-d_002d_002deftypemethod_005fname-on-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypemethod
+</p></dd></dl>
+
+
+<dl class="def">
+<dt id="index-copying-name2"><span class="category">Function:<br>
</span><span><em>data-type2</em><br> <strong>name2</strong>
<em>arguments2...</em><a href='#index-copying-name2' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>aaa2
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002deftypefn_005fname2"><span
class="category">c--ategory2:<br> </span><span><em>t--ype2</em><br>
<strong>d--eftypefn_name2</strong><a
href='#index-copying-d_002d_002deftypefn_005fname2' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypefn no arg2
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><span>c--ategory2
on c--lass2:<br> <em>t--ype2</em><br> <strong>d--eftypeop_name2</strong>
<em>a--rguments2...</em><a
href='#index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeop2
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><span>c--ategory2
on c--lass2:<br> <em>t--ype2</em><br> <strong>d--eftypeop_name2</strong><a
href='#index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeop no arg2
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><span>c--ategory2
of c--lass2:<br> <em>t--ype2</em><br> <strong>d--eftypecv_name2</strong><a
href='#index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypecv2
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><span>c--ategory2
of c--lass2:<br> <em>t--ype2</em><br> <strong>d--eftypecv_name2</strong>
<em>a--rguments2...</em><a
href='#index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypecv with arguments2
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-arg2"><span class="category">fun2:
</span><span><strong>arg2</strong><a href='#index-copying-arg2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>fff2
+</p></dd></dl>
+
+
+<p><code>@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@,
ma---nual@@}</code> See <a data-manual="file n---ame@" href="file
n---ame@.html#c_002d_002d_002dhapter_0040">t—itle@</a> in
<cite>ma—nual@</cite>.
+<code>@ref{chapter, cross ref name, title, file name, manual}</code> <a
data-manual="file name" href="file name.html#chapter">title</a> in
<cite>manual</cite>
+<code>@pxref{chapter, cross ref name, title, file name, manual}</code> see <a
data-manual="file name" href="file name.html#chapter">title</a> in
<cite>manual</cite>
+<code>@inforef{chapter, cross ref name, file name}</code> See <a
data-manual="file name" href="file name.html#chapter">(file name)cross ref
name</a>
+</p>
+<p><code>@ref{chapter}</code> <a href="#chapter">chapter</a>
+<code>@xref{chapter}</code> See <a href="#chapter">chapter</a>.
+<code>@pxref{chapter}</code> see <a href="#chapter">chapter</a>
+<code>@ref{s--ect@comma{}ion}</code> <a href="#s_002d_002dect_002cion">A
section</a>
+</p>
+<p><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 data-manual="a comma, in file" href="a comma, in
file.html#s_002d_002dect_002cion">a comma, in title</a> in <cite>a , in
manual name</cite>
+</p>
+<p><code>@ref{chapter,cross ref name}</code> <a href="#chapter">cross ref
name</a>
+<code>@ref{chapter,,title}</code> <a href="#chapter">title</a>
+<code>@ref{chapter,,,file name}</code> <a data-manual="file name" href="file
name.html#chapter">(file name)chapter</a>
+<code>@ref{chapter,,,,manual}</code> ‘chapter’ in
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,}</code> <a href="#chapter">title</a>
+<code>@ref{chapter,cross ref name,,file name}</code> <a data-manual="file
name" href="file name.html#chapter">(file name)cross ref name</a>
+<code>@ref{chapter,cross ref name,,,manual}</code> ‘cross ref
name’ in <cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,file name}</code> <a data-manual="file
name" href="file name.html#chapter">(file name)title</a>
+<code>@ref{chapter,cross ref name,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#chapter">title</a> in
<cite>manual</cite>
+<code>@ref{chapter,,title,file name}</code> <a data-manual="file name"
href="file name.html#chapter">(file name)title</a>
+<code>@ref{chapter,,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a data-manual="file
name" href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,,file name,manual}</code> <a data-manual="file name"
href="file name.html#chapter">chapter</a> in <cite>manual</cite>
+</p>
+
+<p><code>@ref{(pman)anode,cross ref name}</code> <a data-manual="pman"
href="pman.html#anode">(pman)cross ref name</a>
+<code>@ref{(pman)anode,,title}</code> <a data-manual="pman"
href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,,,file name}</code> <a data-manual="file name"
href="file name.html#anode">(file name)anode</a>
+<code>@ref{(pman)anode,,,,manual}</code> <a data-manual="pman"
href="pman.html#anode">anode</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,}</code> <a data-manual="pman"
href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,cross ref name,,file name}</code> <a data-manual="file
name" href="file name.html#anode">(file name)cross ref name</a>
+<code>@ref{(pman)anode,cross ref name,,,manual}</code> <a data-manual="pman"
href="pman.html#anode">cross ref name</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,file name}</code> <a
data-manual="file name" href="file name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,cross ref name,title,,manual}</code> <a
data-manual="pman" href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#anode">title</a> in
<cite>manual</cite>
+<code>@ref{(pman)anode,,title,file name}</code> <a data-manual="file name"
href="file name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,,title,,manual}</code> <a data-manual="pman"
href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title, file name, manual}</code> <a data-manual="file
name" href="file name.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,,file name,manual}</code> <a data-manual="file name"
href="file name.html#anode">anode</a> in <cite>manual</cite>
+</p>
+
+<p><code>@inforef{chapter, cross ref name, file name}</code> See <a
data-manual="file name" href="file name.html#chapter">(file name)cross ref
name</a>
+<code>@inforef{chapter}</code> See ‘chapter’
+<code>@inforef{chapter, cross ref name}</code> See ‘cross ref name’
+<code>@inforef{chapter,,file name}</code> See <a data-manual="file name"
href="file name.html#chapter">(file name)chapter</a>
+<code>@inforef{node, cross ref name, file name}</code> See <a
data-manual="file name" href="file name.html#node">(file name)cross ref name</a>
+<code>@inforef{node}</code> See ‘node’
+<code>@inforef{node, cross ref name}</code> See ‘cross ref name’
+<code>@inforef{node,,file name}</code> See <a data-manual="file name"
href="file name.html#node">(file name)node</a>
+<code>@inforef{chapter, cross ref name, file name, spurious arg}</code> See <a
data-manual="file name, spurious arg" href="file name, spurious
arg.html#chapter">(file name, spurious arg)cross ref name</a>
+</p>
+<p><code>@inforef{s--ect@comma{}ion, a @comma{} in cross
+ref, a comma@comma{} in file}</code>
+See <a data-manual="a comma, in file" href="a comma, in
file.html#s_002d_002dect_002cion">(a comma, in file)a , in cross
+ref</a>
+</p>
+<p>‘<samp><a href="#chapter">chapter</a></samp>”.
+</p>
+<p><a data-manual="info file with uref3 href://http/myhost.com/index3.html
(uref3)" href="index3.html (uref3).html#ext">title with uref2 <a
href="href://http/myhost.com/index2.html">uref2</a></a> in <cite>printed manual
with uref4 <a href="href://http/myhost.com/index4.html">uref4</a></cite>
+<a href="#chapter">title with uref2 <a
href="href://http/myhost.com/index2.html">uref2</a></a>
+</p>
+<dl compact="compact">
+<dt><span><strong>a–strong</strong></span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-copying-a_002d_002dasis'><span>a–asis<a
href='#index-copying-a_002d_002dasis' class='copiable-anchor'>
¶</a></span></dt>
+<dt id='index-copying-b-2'><span>b<a href='#index-copying-b-2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-copying-a-1'><span><em>a</em><a href='#index-copying-a-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><span id="index-copying-index-entry-between-item-and-itemx"></span>
+</dd>
+<dt id='index-copying-b'><span><em>b</em><a href='#index-copying-b'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt><span><code>a--code</code></span></dt>
+<dd><p>Value–table code
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt><span>‘<samp>a--samp</samp>”</span></dt>
+<dt><span>‘<samp>a2--samp</samp>”</span></dt>
+<dd><p>Value–table samp
+</p></dd>
+</dl>
+
+<table class="cartouche" border="1"><tr><td>
+<p>c–artouche
+</p></td></tr></table>
+
+<p>g–roupe
+</p>
+<p align="left">f–lushleft
+more text
+</p>
+<p align="right">f–lushright
+more text
+</p>
+<div align="center">ce–ntered line
+</div>
+<p>r–raggedright
+more text
+</p>
+<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 ''
+
+
+
+
+<span id="majorheading-1"></span><h1 class="majorheading">majorheading</h1>
+
+<span id="chapheading-1"></span><h1 class="chapheading">chapheading</h1>
+
+<span id="heading-1"></span><h2 class="heading">heading</h2>
+
+<span id="subheading-1"></span><h3 class="subheading">subheading</h3>
+
+<span id="subsubheading-1"></span><h4 class="subsubheading">subsubheading</h4>
+
+
+<p><code>@acronym{--a,an accronym @comma{} @enddots{}}</code> <acronym
title="an accronym , ...">–a</acronym> (an accronym , <small
class="enddots">...</small>)
+<code>@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome} }</code> <abbr
title="Étude–, Autonome">É–. ,A.</abbr>
(Étude–, <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="Étude–,
Autonome">É–. ,A.</abbr>
+</p>
+<p><code>@math{--a@minus{} {\frac{1}{2}}}</code> <em class='math'>--a−
{\frac{1}{2}}</em>
+</p>
+<p><code>@image{f-ile,,,alt@verb{:jk _" %}}</code> <img src="f-ile.jpg"
alt="altjk _" %@">
+<code>@image{f--ile,aze,az,@verb{:jk _" %@:} @b{in b
"},e--xt}</code> <img src="f--ile.e--xt" alt="jk _" %@ in b "">
+<code>@image{file@verb{:jk _" %@:},,,alt@verb{:jk _" %@:}}</code>
<img src="filejk _" %@.jpg" alt="altjk _" %@">
+</p>
+
+
+
+<p>Somehow invalid use of @,:<br>
+@, ̧
+<br>
+@,@"u ̧ü
+</p>
+<p>Invalid use of @’:<br>
+@’ ́
+<br>
+@’@"u ́ü
+</p>
+<p>@dotless{truc} truc
+@dotless{ij} ij
+<code>@dotless{--a}</code> –a
+<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>@#</code> #
+</p>
+<p><code>@w{--a}</code> –a<!-- /@w -->
+</p>
+<p><code>@image{,1--xt}</code>
+<code>@image{,,2--xt}</code>
+<code>@image{,,,3--xt}</code>
+</p>
+
+<ul class="no-bullet">
+<li> e–mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li> after emph e–mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>• a–n itemize line i–tem 1
+</li><li>• a–n itemize line i–tem 2
+</li></ul>
+
+<dl compact="compact">
+<dt><span>a</span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt><span>a–missing style formatting</span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-copying-a-2'><span>a<a href='#index-copying-a-2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><span id="index-copying-index-entry-between-item-and-itemx-1"></span>
+</dd>
+<dt id='index-copying-b-1'><span>b<a href='#index-copying-b-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl class="def">
+<dt><span class="category">fun: </span><span><strong></strong></span></dt>
+<dt id="index-copying-machin-2"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and</em><a
href='#index-copying-machin-2' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-machin-3"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and after</em><a
href='#index-copying-machin-3' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-machin-4"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and </em><a
href='#index-copying-machin-4' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-machin-5"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and and after</em><a
href='#index-copying-machin-5' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-followed-1"><span class="category">truc:
</span><span><strong>followed</strong> <em>by a comment</em><a
href='#index-copying-followed-1' class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>Various deff lines
+</p></dd><dt id="index-copying-after"><span class="category">truc:
</span><span><strong>after</strong> <em>a deff item</em><a
href='#index-copying-after' class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+
+<p><code>@ref{node}</code> ‘node’
+</p>
+<p><code>@ref{,cross ref name}</code> ‘cross ref name’
+<code>@ref{,,title}</code> ‘title’
+<code>@ref{,,,file name}</code> <a data-manual="file name" href="file
name.html#Top">(file name)</a>
+<code>@ref{,,,,manual}</code> <cite>manual</cite>
+<code>@ref{node,cross ref name}</code> ‘cross ref name’
+<code>@ref{node,,title}</code> ‘title’
+<code>@ref{node,,,file name}</code> <a data-manual="file name" href="file
name.html#node">(file name)node</a>
+<code>@ref{node,,,,manual}</code> ‘node’ in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,}</code> ‘title’
+<code>@ref{node,cross ref name,,file name}</code> <a data-manual="file name"
href="file name.html#node">(file name)cross ref name</a>
+<code>@ref{node,cross ref name,,,manual}</code> ‘cross ref name’
in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,file name}</code> <a data-manual="file
name" href="file name.html#node">(file name)title</a>
+<code>@ref{node,cross ref name,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{node,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#node">title</a> in
<cite>manual</cite>
+<code>@ref{node,,title,file name}</code> <a data-manual="file name" href="file
name.html#node">(file name)title</a>
+<code>@ref{node,,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a data-manual="file
name" href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{node,,title, file name, manual}</code> <a data-manual="file name"
href="file name.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,,file name,manual}</code> <a data-manual="file name"
href="file name.html#node">node</a> in <cite>manual</cite>
+<code>@ref{,cross ref name,title,}</code> ‘title’
+<code>@ref{,cross ref name,,file name}</code> <a data-manual="file name"
href="file name.html#Top">(file name)cross ref name</a>
+<code>@ref{,cross ref name,,,manual}</code> ‘cross ref name’ in
<cite>manual</cite>
+<code>@ref{,cross ref name,title,file name}</code> <a data-manual="file name"
href="file name.html#Top">(file name)title</a>
+<code>@ref{,cross ref name,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#Top">title</a> in
<cite>manual</cite>
+<code>@ref{,,title,file name}</code> <a data-manual="file name" href="file
name.html#Top">(file name)title</a>
+<code>@ref{,,title,,manual}</code> ‘title’ in <cite>manual</cite>
+<code>@ref{,,title, file name, manual}</code> <a data-manual="file name"
href="file name.html#Top">title</a> in <cite>manual</cite>
+<code>@ref{,,,file name,manual}</code> <cite><a data-manual="file name"
href="file name.html#Top">manual</a></cite>
+</p>
+<p><code>@inforef{,cross ref name }</code> See ‘cross ref name’
+<code>@inforef{,,file name}</code> See <a data-manual="file name" href="file
name.html#Top">(file name)</a>
+<code>@inforef{,cross ref name, file name}</code> See <a data-manual="file
name" href="file name.html#Top">(file name)cross ref name</a>
+<code>@inforef{}</code>
+</p>
+
+<hr>
+
+
+
+
+
+
+<div class="top" id="Top">
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[ < ]</td>
+<td valign="middle" align="left">[<a href="#chapter" title="Next section in
reading order"> > </a>]</td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#chapter"
title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ?
</a>]</td>
+</tr></table>
+<span id="Top-section"></span><h1 class="top">Top section</h1>
+
+<table class="menu" border="0" cellspacing="0">
+<tr><td align="left" valign="top"><a href="#chapter" rel="index">1
chapter</a></td><td>  </td><td align="left" valign="top"></td></tr>
+<tr><th colspan="3" align="left" valign="top"><pre class="menu-comment">
+
+Menu comment
+
+</pre></th></tr><tr><td align="left" valign="top"><a href="#chapter2"
rel="index">chapter 2</a></td><td>  </td><td align="left"
valign="top">Chapter 2
+</td></tr>
+</table>
+
+
+<hr size="6">
+<div class="chapter" id="chapter">
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#Top" title="Beginning of this
chapter or previous chapter"> << </a>]</td>
+<td valign="middle" align="left">[<a href="#Top" title="Previous section in
reading order"> < </a>]</td>
+<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up
</a>]</td>
+<td valign="middle" align="left">[<a href="#s_002d_002dect_002cion"
title="Next section in reading order"> > </a>]</td>
+<td valign="middle" align="left">[<a href="#chapter2" title="Next chapter">
>> </a>]</td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#chapter"
title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ?
</a>]</td>
+</tr></table>
+<span id="chapter-1"></span><h1 class="chapter">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>``simple-double--three---four----''</code> <br>
+asis: “simple-double–three—four—-” <br>
+strong:
<strong>“simple-double–three—four—-”</strong> <br>
+kbd: <kbd>``simple-double--three---four----''</kbd> <br>
+</p>
+<p>‘<!-- /@w -->‘simple-double-<!-- /@w
-->-three—four—-’<!-- /@w -->’<br>
+</p>
+<span id="index-copying-_002d_002doption"></span>
+<span id="index-copying-_0060_0060"></span>
+<span id="index-copying-_0060_0060-1"></span>
+<span id="index-copying-_002d_002dfoption"></span>
+
+<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>@-</code>
+<code>@|</code>
+<code>@:</code>
+<code>@!</code> !
+<code>@?</code> ?
+<code>@.</code> .
+<code>@@</code> @
+<code>@}</code> }
+<code>@{</code> {
+<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 ›
+@textdegree °
+@euro €
+@arrow →
+@leq ≤
+@geq ≥
+</p>
+<p><code>@acronym{--a,an accronym}</code> <acronym title="an
accronym">–a</acronym> (an accronym)
+<code>@acronym{--a}</code> <acronym title="an accronym">–a</acronym>
+<code>@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr
title="Étude Autonome">É–. ,A.</abbr> (Étude Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="Étude
Autonome">É–. ,A.</abbr>
+<code>@asis{--a}</code> –a
+<code>@b{--a}</code> <b>–a</b>
+<code>@cite{--a}</code> <cite>–a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@dfn{--a}</code> <em>–a</em>
+<code>@dmn{--a}</code> –a
+<code>@email{--a,--b}</code> <a href="mailto:--a">–b</a>
+<code>@email{,--b}</code> –b
+<code>@email{--a}</code> <a href="mailto:--a">--a</a>
+<code>@emph{--a}</code> <em>–a</em>
+<code>@env{--a}</code> <code>--a</code>
+<code>@file{--a}</code> <samp>--a</samp>
+<code>@i{--a}</code> <i>–a</i>
+<code>@kbd{--a}</code> <kbd>--a</kbd>
+<code>@key{--a}</code> <tt class="key">--a</tt>
+<code>@math{--a {\frac{1}{2}} @minus{}}</code> <em class='math'>--a
{\frac{1}{2}} −</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">–a</span>
+<code>@samp{--a}</code> ‘<samp>--a</samp>”
+<code>@sc{--a}</code> <small>–A</small>
+<code>@strong{--a}</code> <strong>–a</strong>
+<code>@t{--a}</code> <tt>--a</tt>
+<code>@sansserif{--a}</code> <span class="sansserif">–a</span>
+<code>@slanted{--a}</code> <i>–a</i>
+<code>@titlefont{--a}</code> </p><h1 class="titlefont">–a</h1>
+<p><code>@indicateurl{--a}</code> ‘<code>--a</code>”
+<code>@uref{--a,--b}</code> <a href="--a">–b</a>
+<code>@uref{--a}</code> <a href="--a">--a</a>
+<code>@uref{,--b}</code> –b
+<code>@uref{--a,--b,--c}</code> <a href="--a">–c</a>
+<code>@uref{,--b,--c}</code> –c
+<code>@uref{--a,,--c}</code> <a href="--a">–c</a>
+<code>@uref{,,--c}</code> –c
+<code>@url{--a,--b}</code> <a href="--a">–b</a>
+<code>@url{--a,}</code> <a href="--a">--a</a>
+<code>@url{,--b}</code> –b
+<code>@var{--a}</code> <var>–a</var>
+<code>@verb{:--a:}</code> <tt>--a</tt>
+<code>@verb{:a < & @ % " -- b:}</code> <tt>a < & @ %
" -- b</tt>
+<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>@H{a}</code> a̋
+<code>@H{--a}</code> –a̋
+<code>@dotaccent{a}</code> ȧ
+<code>@dotaccent{--a}</code> –ȧ
+<code>@ringaccent{a}</code> å
+<code>@ringaccent{--a}</code> –å
+<code>@tieaccent{a}</code> a͡
+<code>@tieaccent{--a}</code> –a͡
+<code>@u{a}</code> ă
+<code>@u{--a}</code> –ă
+<code>@ubaraccent{a}</code> a̲
+<code>@ubaraccent{--a}</code> –a̲
+<code>@udotaccent{a}</code> ạ
+<code>@udotaccent{--a}</code> –ạ
+<code>@v{a}</code> ǎ
+<code>@v{--a}</code> –ǎ
+<code>@,{c}</code> ç
+<code>@,{--c}</code> –ç
+<code>@ogonek{a}</code> ą
+<code>@ogonek{--a}</code> –ą
+<code>a@sup{h}@sub{l}</code> a<sup>h</sup><sub>l</sub>
+<code>@footnote{in footnote}</code> <a id="DOCF1_5"
href="#FOOT1_5"><sup>5</sup></a>
+<code>@footnote{in footnote2}</code> <a id="DOCF2_6"
href="#FOOT2_6"><sup>6</sup></a>
+</p>
+<p><code>@image{f--ile}</code> <img src="f--ile.png" alt="f--ile">
+<code>@image{f--ile,l--i}</code> <img src="f--ile.png" alt="f--ile">
+<code>@image{f--ile,,l--e}</code> <img src="f--ile.png" alt="f--ile">
+<code>@image{f--ile,,,alt}</code> <img src="f--ile.png" alt="alt">
+<code>@image{f--ile,,,,.e-d-xt}</code> <img src="f--ile.e--xt" alt="f--ile">
+<code>@image{f--ile,aze,az,alt,.e--xt}</code> <img src="f--ile.e--xt"
alt="alt">
+<code>@image{f-ile,aze,,a--lt}</code> <img src="f-ile.jpg" alt="a–lt">
+<code>@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext} e--xt@}</code> <img
src="f--ile@..file ext e--xt}" alt="alt">
+</p>
+<p><code>@sp 2</code><br>
+</p><br>
+<br>
+<p><code>@page</code><br>
+</p>
+<p><code>need 1002</code>
+</p>
+<p><code>@clicksequence{click @click{} A}</code> click → A
+After clickstyle ⇒
+<code>@clicksequence{click @click{} A}</code> click ⇒ A
+</p>
+<div
class="displaymath"><em><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͡
+ă a̲ ạ ǎ ą a<sup>h</sup><sub>l</sub>
+
+      ! ? . @ } {
+a sunny day
+</em></div>
+<div class="displaymath"><em>→
+u
+TeX LaTeX • © … ... ≡
+error→ ↦ − ★ ⊣ ⇒
+å Å æ œ Æ Œ ø Ø ß ł Ł
Ð
+Þ ð þ ¡ ¿ £
+® ª º ,
+</em></div>
+<div class="displaymath"><em>“ ”
+‘ ’ „ ‚ «
+» « » ‹
+› ° € → ≤ ≥
+</em></div>
+<div class="displaymath"><em><b>b</b> <i>i</i> <span class="roman">r</span>
<small>SC</small> <tt>t</tt> <span class="sansserif">sansserif</span>
<i>slanted</i>
+</em></div>
+<p><kbd>default kbdinputstyle</kbd>
+</p><div class="example">
+<pre class="example"><kbd>in example default kbdinputstyle</kbd>
+</pre></div>
+
+<p><code>code kbdinputstyle</code>
+</p><div class="example">
+<pre class="example"><code>in example code kbdinputstyle</code>
+</pre></div>
+
+<p><kbd>example kbdinputstyle</kbd>
+</p><div class="example">
+<pre class="example"><code>in example example kbdinputstyle</code>
+</pre></div>
+
+<p><kbd>distinct kbdinputstyle</kbd>
+</p><div class="example">
+<pre class="example"><kbd>in example distinct kbdinputstyle</kbd>
+</pre></div>
+
+<blockquote>
+<p>A quot—ation
+</p></blockquote>
+
+<blockquote>
+<p><b>Note:</b> A Note
+</p></blockquote>
+
+<blockquote>
+<p><b>note:</b> A note
+</p></blockquote>
+
+<blockquote>
+<p><b>Caution:</b> Caution
+</p></blockquote>
+
+<blockquote>
+<p><b>Important:</b> Important
+</p></blockquote>
+
+<blockquote>
+<p><b>Tip:</b> a Tip
+</p></blockquote>
+
+<blockquote>
+<p><b>Warning:</b> a Warning.
+</p></blockquote>
+
+<blockquote>
+<p><b>something é TeX:</b> The something é TeX is here.
+</p></blockquote>
+
+<blockquote>
+<p><b>@ at the end of line  :</b> A @ at the end of the @quotation line.
+</p></blockquote>
+
+<blockquote>
+<p><b>something, other thing:</b> something, other thing
+</p></blockquote>
+
+<blockquote>
+<p><b>Note, the note:</b> Note, the note
+</p></blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+<p>aaa quotation
+</p></blockquote>
+<div align="center">— <em>quotation author</em>
+</div>
+<blockquote>
+<p>indent in quotation
+</p></blockquote>
+
+<blockquote>
+<p>A small quot—ation
+</p></blockquote>
+
+<blockquote>
+<p><b>Note:</b> A small Note
+</p></blockquote>
+
+<blockquote>
+<p><b>something, other thing:</b> something, other thing
+</p></blockquote>
+
+<ul>
+<li> i–temize
+</li></ul>
+
+<ul class="no-bullet">
+<li>+ i–tem +
+</li></ul>
+
+<ul>
+<li> b–ullet
+</li></ul>
+
+<ul class="no-bullet">
+<li>− minu–s
+</li></ul>
+
+<ul class="no-bullet">
+<li><em>after emph</em> e–mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>• a–n itemize line <span
id="index-copying-index-entry-within-itemize"></span>
+i–tem 1
+</li><li>• a–n itemize line i–tem 2
+</li></ul>
+
+<ol>
+<li> e–numerate
+</li></ol>
+
+<ol start="3">
+<li> first third
+</li><li> second third
+</li></ol>
+
+<ol type="a" start="1">
+<li> e–numerate
+</li></ol>
+
+<ol type="a" start="3">
+<li> first c
+</li><li> second c
+</li></ol>
+
+<table>
+<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
+<span id="index-copying-index-entry-within-multitable"></span></td></tr>
+<tr><td width="40%">lone mu–ltitable item</td></tr>
+</tbody>
+</table>
+
+<table>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
+</table>
+
+<div class="example">
+<pre class="example">e--xample some
+ text
+</pre></div>
+
+<div class="example first-arg">
+<pre class="example">example one arg
+</pre></div>
+
+<div class="example first-arg second-arg">
+<pre class="example">example two args
+</pre></div>
+
+<div class="example first-arg second-arg third-arg">
+<pre class="example">example three args
+</pre></div>
+
+<div class="example first-arg second-arg third-arg fourth-arg">
+<pre class="example">example four args
+</pre></div>
+
+<div class="example first-arg second-arg third-arg fourth-arg fifth-arg">
+<pre class="example">example five args
+</pre></div>
+
+<div class="example something-é-TeX">
+<pre class="example">The something é TeX is here.
+</pre></div>
+
+<div class="example @-at-the-end-of-line--">
+<pre class="example">A @ at the end of the @example line.
+</pre></div>
+
+<div class="example">
+<pre class="example">example with empty args
+</pre></div>
+
+<div class="example nonempty">
+<pre class="example">example with empty and non empty args mix
+</pre></div>
+
+<div class="example">
+<pre class="example">s--mallexample
+</pre></div>
+
+<p><code>@noindent</code> after smallexample.
+</p><div class="example">
+<pre class="example">$ 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">d–isplay
+</pre></div>
+
+<div class="display">
+<pre class="display">s–malldisplay
+</pre></div>
+
+<div class="example lisp">
+<pre class="lisp">l--isp
+</pre></div>
+
+<div class="example lisp">
+<pre class="lisp">s--malllisp
+</pre></div>
+
+<div class="format">
+<pre class="format">f–ormat
+</pre></div>
+
+<div class="format">
+<pre class="format">s–mallformat
+</pre></div>
+
+<div class="displaymath"><em>disp--laymath
+f(x) = {1 \over \sigma \sqrt{2\pi}}e<sup>-{1 \over 2}\left({x-\mu \over
\sigma}\right)^2</sup>
+</em></div>
+<dl class="def">
+<dt id="index-copying-d_002d_002deffn_005fname"><span
class="category">c--ategory: </span><span><strong>d--effn_name</strong>
<em>a--rguments...</em><a href='#index-copying-d_002d_002deffn_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–effn
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-de_002d_002dffn_005fname"><span
class="category">cate--gory: </span><span><strong>de--ffn_name</strong>
<em>ar--guments more args <br> even more so</em><a
href='#index-copying-de_002d_002dffn_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>def–fn
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-i"><span class="category">fset:
</span><span><strong><var>i</var></strong> <em>a g</em><a
href='#index-copying-i' class='copiable-anchor'> ¶</a></span></dt>
+<dd><span id="index-copying-index-entry-within-deffn"></span>
+</dd><dt id="index-copying-truc"><span class="category">cmde:
</span><span><strong>truc</strong> <em></em><a href='#index-copying-truc'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-log-trap"><span class="category">Command:
</span><span><strong>log trap</strong> <em></em><a
href='#index-copying-log-trap' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-log-trap1"><span class="category">Command:
</span><span><strong>log trap1</strong> <em></em><a
href='#index-copying-log-trap1' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-log-trap2"><span class="category">Command:
</span><span><strong>log trap2</strong> <em></em><a
href='#index-copying-log-trap2' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-id-ule"><span class="category">cmde:
</span><span><strong><b>id ule</b></strong> <em>truc</em><a
href='#index-copying-id-ule' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-id-i-ule"><span class="category">cmde2:
</span><span><strong><b>id ‘<samp>i</samp>” ule</b></strong>
<em>truc</em><a href='#index-copying-id-i-ule' class='copiable-anchor'>
¶</a></span></dt>
+<dt><span class="category"><b>id ‘<samp>i</samp>” ule</b>:
</span><span><strong></strong></span></dt>
+<dt><span><strong></strong></span></dt>
+<dt><span class="category">aaa: </span><span><strong></strong></span></dt>
+<dt><span class="category">: </span><span><strong></strong></span></dt>
+<dt><span class="category">: </span><span><strong></strong></span></dt>
+<dt id="index-copying-machin"><span class="category">:
</span><span><strong>machin</strong><a href='#index-copying-machin'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-bidule-machin"><span class="category">:
</span><span><strong>bidule machin</strong><a
href='#index-copying-bidule-machin' class='copiable-anchor'>
¶</a></span></dt>
+<dt id="index-copying-machin-1"><span class="category">truc:
</span><span><strong>machin</strong><a href='#index-copying-machin-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dt><span class="category">truc: </span><span><strong></strong></span></dt>
+<dt id="index-copying-followed"><span class="category">truc:
</span><span><strong>followed</strong> <em>by a comment</em><a
href='#index-copying-followed' class='copiable-anchor'> ¶</a></span></dt>
+<dt><span class="category">truc: </span><span><strong></strong></span></dt>
+<dt><span class="category">: </span><span><strong></strong></span></dt>
+<dt id="index-copying-a"><span class="category">truc:
</span><span><strong>a</strong> <em>b c d e <b>f g</b> h i</em><a
href='#index-copying-a' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-deffnx"><span class="category">truc:
</span><span><strong>deffnx</strong> <em>before end deffn</em><a
href='#index-copying-deffnx' class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+
+
+<dl class="def">
+<dt id="index-copying-deffn"><span class="category">empty:
</span><span><strong>deffn</strong><a href='#index-copying-deffn'
class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+
+<dl class="def">
+<dt id="index-copying-deffn-1"><span class="category">empty:
</span><span><strong>deffn</strong> <em>with deffnx</em><a
href='#index-copying-deffn-1' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-deffnx-1"><span class="category">empty:
</span><span><strong>deffnx</strong><a href='#index-copying-deffnx-1'
class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+
+<dl class="def">
+<dt id="index-copying-i-1"><span class="category">fset:
</span><span><strong><var>i</var></strong> <em>a g</em><a
href='#index-copying-i-1' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-truc-1"><span class="category">cmde:
</span><span><strong>truc</strong> <em></em><a href='#index-copying-truc-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>text in def item for second def item
+</p></dd></dl>
+
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defvr_005fname"><span
class="category">c--ategory: </span><span><strong>d--efvr_name</strong><a
href='#index-copying-d_002d_002defvr_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efvr
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-n_002d_002dame"><span class="category">c--ategory:
</span><span><strong>n--ame</strong> <em>a--rguments...</em><a
href='#index-copying-n_002d_002dame' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–effn
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-n_002d_002dame-1"><span class="category">c--ategory:
</span><span><strong>n--ame</strong><a href='#index-copying-n_002d_002dame-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–effn no arg
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002deftypefn_005fname"><span
class="category">c--ategory: </span><span><em>t--ype</em>
<strong>d--eftypefn_name</strong> <em>a--rguments...</em><a
href='#index-copying-d_002d_002deftypefn_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypefn
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002deftypefn_005fname-1"><span
class="category">c--ategory: </span><span><em>t--ype</em>
<strong>d--eftypefn_name</strong><a
href='#index-copying-d_002d_002deftypefn_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypefn no arg
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><span>c--ategory
on c--lass: <em>t--ype</em> <strong>d--eftypeop_name</strong>
<em>a--rguments...</em><a
href='#index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeop
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><span>c--ategory
on c--lass: <em>t--ype</em> <strong>d--eftypeop_name</strong><a
href='#index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeop no arg
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002deftypevr_005fname"><span
class="category">c--ategory: </span><span><em>t--ype</em>
<strong>d--eftypevr_name</strong><a
href='#index-copying-d_002d_002deftypevr_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypevr
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defcv_005fname"><span>c--ategory of c--lass:
<strong>d--efcv_name</strong><a href='#index-copying-d_002d_002defcv_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efcv
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defcv_005fname-1"><span>c--ategory of c--lass:
<strong>d--efcv_name</strong> <em>a--rguments...</em><a
href='#index-copying-d_002d_002defcv_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efcv with arguments
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><span>c--ategory
of c--lass: <em>t--ype</em> <strong>d--eftypecv_name</strong><a
href='#index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypecv
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><span>c--ategory
of c--lass: <em>t--ype</em> <strong>d--eftypecv_name</strong>
<em>a--rguments...</em><a
href='#index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypecv with arguments
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002defop_005fname-on-c_002d_002dlass"><span>c--ategory
on c--lass: <strong>d--efop_name</strong> <em>a--rguments...</em><a
href='#index-copying-d_002d_002defop_005fname-on-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efop
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002defop_005fname-on-c_002d_002dlass-1"><span>c--ategory
on c--lass: <strong>d--efop_name</strong><a
href='#index-copying-d_002d_002defop_005fname-on-c_002d_002dlass-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efop no arg
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002deftp_005fname"><span
class="category">c--ategory: </span><span><strong>d--eftp_name</strong>
<em>a--ttributes...</em><a href='#index-copying-d_002d_002deftp_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftp
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defun_005fname"><span
class="category">Function: </span><span><strong>d--efun_name</strong>
<em>a--rguments...</em><a href='#index-copying-d_002d_002defun_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efun
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defmac_005fname"><span class="category">Macro:
</span><span><strong>d--efmac_name</strong> <em>a--rguments...</em><a
href='#index-copying-d_002d_002defmac_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efmac
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defspec_005fname"><span
class="category">Special Form: </span><span><strong>d--efspec_name</strong>
<em>a--rguments...</em><a href='#index-copying-d_002d_002defspec_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efspec
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defvar_005fname"><span
class="category">Variable: </span><span><strong>d--efvar_name</strong><a
href='#index-copying-d_002d_002defvar_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efvar
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defvar_005fname-1"><span
class="category">Variable: </span><span><strong>d--efvar_name</strong>
<em>arg--var arg--var1</em><a href='#index-copying-d_002d_002defvar_005fname-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efvar with args
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002defopt_005fname"><span class="category">User
Option: </span><span><strong>d--efopt_name</strong><a
href='#index-copying-d_002d_002defopt_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efopt
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002deftypefun_005fname"><span
class="category">Function: </span><span><em>t--ype</em>
<strong>d--eftypefun_name</strong> <em>a--rguments...</em><a
href='#index-copying-d_002d_002deftypefun_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypefun
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002deftypevar_005fname"><span
class="category">Variable: </span><span><em>t--ype</em>
<strong>d--eftypevar_name</strong><a
href='#index-copying-d_002d_002deftypevar_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypevar
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002defivar_005fname-of-c_002d_002dlass"><span>Instance
Variable of c--lass: <strong>d--efivar_name</strong><a
href='#index-copying-d_002d_002defivar_005fname-of-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efivar
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><span>Instance
Variable of c--lass: <em>t--ype</em> <strong>d--eftypeivar_name</strong><a
href='#index-copying-d_002d_002deftypeivar_005fname-of-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeivar
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002defmethod_005fname-on-c_002d_002dlass"><span>Method
on c--lass: <strong>d--efmethod_name</strong> <em>a--rguments...</em><a
href='#index-copying-d_002d_002defmethod_005fname-on-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efmethod
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><span>Method
on c--lass: <em>t--ype</em> <strong>d--eftypemethod_name</strong>
<em>a--rguments...</em><a
href='#index-copying-d_002d_002deftypemethod_005fname-on-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypemethod
+</p></dd></dl>
+
+
+<dl class="def">
+<dt id="index-copying-name2"><span class="category">Function:<br>
</span><span><em>data-type2</em><br> <strong>name2</strong>
<em>arguments2...</em><a href='#index-copying-name2' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>aaa2
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-d_002d_002deftypefn_005fname2"><span
class="category">c--ategory2:<br> </span><span><em>t--ype2</em><br>
<strong>d--eftypefn_name2</strong><a
href='#index-copying-d_002d_002deftypefn_005fname2' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypefn no arg2
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><span>c--ategory2
on c--lass2:<br> <em>t--ype2</em><br> <strong>d--eftypeop_name2</strong>
<em>a--rguments2...</em><a
href='#index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeop2
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><span>c--ategory2
on c--lass2:<br> <em>t--ype2</em><br> <strong>d--eftypeop_name2</strong><a
href='#index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeop no arg2
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><span>c--ategory2
of c--lass2:<br> <em>t--ype2</em><br> <strong>d--eftypecv_name2</strong><a
href='#index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypecv2
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><span>c--ategory2
of c--lass2:<br> <em>t--ype2</em><br> <strong>d--eftypecv_name2</strong>
<em>a--rguments2...</em><a
href='#index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypecv with arguments2
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-copying-arg2"><span class="category">fun2:
</span><span><strong>arg2</strong><a href='#index-copying-arg2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>fff2
+</p></dd></dl>
+
+
+<p><code>@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@,
ma---nual@@}</code> See <a data-manual="file n---ame@" href="file
n---ame@.html#c_002d_002d_002dhapter_0040">t—itle@</a> in
<cite>ma—nual@</cite>.
+<code>@ref{chapter, cross ref name, title, file name, manual}</code> <a
data-manual="file name" href="file name.html#chapter">title</a> in
<cite>manual</cite>
+<code>@pxref{chapter, cross ref name, title, file name, manual}</code> see <a
data-manual="file name" href="file name.html#chapter">title</a> in
<cite>manual</cite>
+<code>@inforef{chapter, cross ref name, file name}</code> See <a
data-manual="file name" href="file name.html#chapter">(file name)cross ref
name</a>
+</p>
+<p><code>@ref{chapter}</code> <a href="#chapter">chapter</a>
+<code>@xref{chapter}</code> See <a href="#chapter">chapter</a>.
+<code>@pxref{chapter}</code> see <a href="#chapter">chapter</a>
+<code>@ref{s--ect@comma{}ion}</code> <a href="#s_002d_002dect_002cion">A
section</a>
+</p>
+<p><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 data-manual="a comma, in file" href="a comma, in
file.html#s_002d_002dect_002cion">a comma, in title</a> in <cite>a , in
manual name</cite>
+</p>
+<p><code>@ref{chapter,cross ref name}</code> <a href="#chapter">cross ref
name</a>
+<code>@ref{chapter,,title}</code> <a href="#chapter">title</a>
+<code>@ref{chapter,,,file name}</code> <a data-manual="file name" href="file
name.html#chapter">(file name)chapter</a>
+<code>@ref{chapter,,,,manual}</code> ‘chapter’ in
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,}</code> <a href="#chapter">title</a>
+<code>@ref{chapter,cross ref name,,file name}</code> <a data-manual="file
name" href="file name.html#chapter">(file name)cross ref name</a>
+<code>@ref{chapter,cross ref name,,,manual}</code> ‘cross ref
name’ in <cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,file name}</code> <a data-manual="file
name" href="file name.html#chapter">(file name)title</a>
+<code>@ref{chapter,cross ref name,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#chapter">title</a> in
<cite>manual</cite>
+<code>@ref{chapter,,title,file name}</code> <a data-manual="file name"
href="file name.html#chapter">(file name)title</a>
+<code>@ref{chapter,,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a data-manual="file
name" href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,,file name,manual}</code> <a data-manual="file name"
href="file name.html#chapter">chapter</a> in <cite>manual</cite>
+</p>
+
+<p><code>@ref{(pman)anode,cross ref name}</code> <a data-manual="pman"
href="pman.html#anode">(pman)cross ref name</a>
+<code>@ref{(pman)anode,,title}</code> <a data-manual="pman"
href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,,,file name}</code> <a data-manual="file name"
href="file name.html#anode">(file name)anode</a>
+<code>@ref{(pman)anode,,,,manual}</code> <a data-manual="pman"
href="pman.html#anode">anode</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,}</code> <a data-manual="pman"
href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,cross ref name,,file name}</code> <a data-manual="file
name" href="file name.html#anode">(file name)cross ref name</a>
+<code>@ref{(pman)anode,cross ref name,,,manual}</code> <a data-manual="pman"
href="pman.html#anode">cross ref name</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,file name}</code> <a
data-manual="file name" href="file name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,cross ref name,title,,manual}</code> <a
data-manual="pman" href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#anode">title</a> in
<cite>manual</cite>
+<code>@ref{(pman)anode,,title,file name}</code> <a data-manual="file name"
href="file name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,,title,,manual}</code> <a data-manual="pman"
href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title, file name, manual}</code> <a data-manual="file
name" href="file name.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,,file name,manual}</code> <a data-manual="file name"
href="file name.html#anode">anode</a> in <cite>manual</cite>
+</p>
+
+<p><code>@inforef{chapter, cross ref name, file name}</code> See <a
data-manual="file name" href="file name.html#chapter">(file name)cross ref
name</a>
+<code>@inforef{chapter}</code> See ‘chapter’
+<code>@inforef{chapter, cross ref name}</code> See ‘cross ref name’
+<code>@inforef{chapter,,file name}</code> See <a data-manual="file name"
href="file name.html#chapter">(file name)chapter</a>
+<code>@inforef{node, cross ref name, file name}</code> See <a
data-manual="file name" href="file name.html#node">(file name)cross ref name</a>
+<code>@inforef{node}</code> See ‘node’
+<code>@inforef{node, cross ref name}</code> See ‘cross ref name’
+<code>@inforef{node,,file name}</code> See <a data-manual="file name"
href="file name.html#node">(file name)node</a>
+<code>@inforef{chapter, cross ref name, file name, spurious arg}</code> See <a
data-manual="file name, spurious arg" href="file name, spurious
arg.html#chapter">(file name, spurious arg)cross ref name</a>
+</p>
+<p><code>@inforef{s--ect@comma{}ion, a @comma{} in cross
+ref, a comma@comma{} in file}</code>
+See <a data-manual="a comma, in file" href="a comma, in
file.html#s_002d_002dect_002cion">(a comma, in file)a , in cross
+ref</a>
+</p>
+<p>‘<samp><a href="#chapter">chapter</a></samp>”.
+</p>
+<p><a data-manual="info file with uref3 href://http/myhost.com/index3.html
(uref3)" href="index3.html (uref3).html#ext">title with uref2 <a
href="href://http/myhost.com/index2.html">uref2</a></a> in <cite>printed manual
with uref4 <a href="href://http/myhost.com/index4.html">uref4</a></cite>
+<a href="#chapter">title with uref2 <a
href="href://http/myhost.com/index2.html">uref2</a></a>
+</p>
+<dl compact="compact">
+<dt><span><strong>a–strong</strong></span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-copying-a_002d_002dasis'><span>a–asis<a
href='#index-copying-a_002d_002dasis' class='copiable-anchor'>
¶</a></span></dt>
+<dt id='index-copying-b-2'><span>b<a href='#index-copying-b-2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-copying-a-1'><span><em>a</em><a href='#index-copying-a-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><span id="index-copying-index-entry-between-item-and-itemx"></span>
+</dd>
+<dt id='index-copying-b'><span><em>b</em><a href='#index-copying-b'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt><span><code>a--code</code></span></dt>
+<dd><p>Value–table code
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt><span>‘<samp>a--samp</samp>”</span></dt>
+<dt><span>‘<samp>a2--samp</samp>”</span></dt>
+<dd><p>Value–table samp
+</p></dd>
+</dl>
+
+<table class="cartouche" border="1"><tr><td>
+<p>c–artouche
+</p></td></tr></table>
+
+<p>g–roupe
+</p>
+<p align="left">f–lushleft
+more text
+</p>
+<p align="right">f–lushright
+more text
+</p>
+<div align="center">ce–ntered line
+</div>
+<p>r–raggedright
+more text
+</p>
+<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 ''
+
+
+
+
+<span id="majorheading-1"></span><h1 class="majorheading">majorheading</h1>
+
+<span id="chapheading-1"></span><h1 class="chapheading">chapheading</h1>
+
+<span id="heading-1"></span><h2 class="heading">heading</h2>
+
+<span id="subheading-1"></span><h3 class="subheading">subheading</h3>
+
+<span id="subsubheading-1"></span><h4 class="subsubheading">subsubheading</h4>
+
+
+<p><code>@acronym{--a,an accronym @comma{} @enddots{}}</code> <acronym
title="an accronym , ...">–a</acronym> (an accronym , <small
class="enddots">...</small>)
+<code>@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome} }</code> <abbr
title="Étude–, Autonome">É–. ,A.</abbr>
(Étude–, <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="Étude–,
Autonome">É–. ,A.</abbr>
+</p>
+<p><code>@math{--a@minus{} {\frac{1}{2}}}</code> <em class='math'>--a−
{\frac{1}{2}}</em>
+</p>
+<p><code>@image{f-ile,,,alt@verb{:jk _" %}}</code> <img src="f-ile.jpg"
alt="altjk _" %@">
+<code>@image{f--ile,aze,az,@verb{:jk _" %@:} @b{in b
"},e--xt}</code> <img src="f--ile.e--xt" alt="jk _" %@ in b "">
+<code>@image{file@verb{:jk _" %@:},,,alt@verb{:jk _" %@:}}</code>
<img src="filejk _" %@.jpg" alt="altjk _" %@">
+</p>
+
+
+
+<p>Somehow invalid use of @,:<br>
+@, ̧
+<br>
+@,@"u ̧ü
+</p>
+<p>Invalid use of @’:<br>
+@’ ́
+<br>
+@’@"u ́ü
+</p>
+<p>@dotless{truc} truc
+@dotless{ij} ij
+<code>@dotless{--a}</code> –a
+<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>@#</code> #
+</p>
+<p><code>@w{--a}</code> –a<!-- /@w -->
+</p>
+<p><code>@image{,1--xt}</code>
+<code>@image{,,2--xt}</code>
+<code>@image{,,,3--xt}</code>
+</p>
+
+<ul class="no-bullet">
+<li> e–mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li> after emph e–mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>• a–n itemize line i–tem 1
+</li><li>• a–n itemize line i–tem 2
+</li></ul>
+
+<dl compact="compact">
+<dt><span>a</span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt><span>a–missing style formatting</span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-copying-a-2'><span>a<a href='#index-copying-a-2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><span id="index-copying-index-entry-between-item-and-itemx-1"></span>
+</dd>
+<dt id='index-copying-b-1'><span>b<a href='#index-copying-b-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl class="def">
+<dt><span class="category">fun: </span><span><strong></strong></span></dt>
+<dt id="index-copying-machin-2"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and</em><a
href='#index-copying-machin-2' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-machin-3"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and after</em><a
href='#index-copying-machin-3' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-machin-4"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and </em><a
href='#index-copying-machin-4' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-machin-5"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and and after</em><a
href='#index-copying-machin-5' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-copying-followed-1"><span class="category">truc:
</span><span><strong>followed</strong> <em>by a comment</em><a
href='#index-copying-followed-1' class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>Various deff lines
+</p></dd><dt id="index-copying-after"><span class="category">truc:
</span><span><strong>after</strong> <em>a deff item</em><a
href='#index-copying-after' class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+
+<p><code>@ref{node}</code> ‘node’
+</p>
+<p><code>@ref{,cross ref name}</code> ‘cross ref name’
+<code>@ref{,,title}</code> ‘title’
+<code>@ref{,,,file name}</code> <a data-manual="file name" href="file
name.html#Top">(file name)</a>
+<code>@ref{,,,,manual}</code> <cite>manual</cite>
+<code>@ref{node,cross ref name}</code> ‘cross ref name’
+<code>@ref{node,,title}</code> ‘title’
+<code>@ref{node,,,file name}</code> <a data-manual="file name" href="file
name.html#node">(file name)node</a>
+<code>@ref{node,,,,manual}</code> ‘node’ in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,}</code> ‘title’
+<code>@ref{node,cross ref name,,file name}</code> <a data-manual="file name"
href="file name.html#node">(file name)cross ref name</a>
+<code>@ref{node,cross ref name,,,manual}</code> ‘cross ref name’
in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,file name}</code> <a data-manual="file
name" href="file name.html#node">(file name)title</a>
+<code>@ref{node,cross ref name,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{node,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#node">title</a> in
<cite>manual</cite>
+<code>@ref{node,,title,file name}</code> <a data-manual="file name" href="file
name.html#node">(file name)title</a>
+<code>@ref{node,,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a data-manual="file
name" href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{node,,title, file name, manual}</code> <a data-manual="file name"
href="file name.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,,file name,manual}</code> <a data-manual="file name"
href="file name.html#node">node</a> in <cite>manual</cite>
+<code>@ref{,cross ref name,title,}</code> ‘title’
+<code>@ref{,cross ref name,,file name}</code> <a data-manual="file name"
href="file name.html#Top">(file name)cross ref name</a>
+<code>@ref{,cross ref name,,,manual}</code> ‘cross ref name’ in
<cite>manual</cite>
+<code>@ref{,cross ref name,title,file name}</code> <a data-manual="file name"
href="file name.html#Top">(file name)title</a>
+<code>@ref{,cross ref name,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#Top">title</a> in
<cite>manual</cite>
+<code>@ref{,,title,file name}</code> <a data-manual="file name" href="file
name.html#Top">(file name)title</a>
+<code>@ref{,,title,,manual}</code> ‘title’ in <cite>manual</cite>
+<code>@ref{,,title, file name, manual}</code> <a data-manual="file name"
href="file name.html#Top">title</a> in <cite>manual</cite>
+<code>@ref{,,,file name,manual}</code> <cite><a data-manual="file name"
href="file name.html#Top">manual</a></cite>
+</p>
+<p><code>@inforef{,cross ref name }</code> See ‘cross ref name’
+<code>@inforef{,,file name}</code> See <a data-manual="file name" href="file
name.html#Top">(file name)</a>
+<code>@inforef{,cross ref name, file name}</code> See <a data-manual="file
name" href="file name.html#Top">(file name)cross ref name</a>
+<code>@inforef{}</code>
+</p>
+
+
+<p>Normal text
+</p>
+<p><
+>
+"
+&
+’
+‘
+</p>
+<p>“simple-double–three—four—-”<br>
+code: <code>``simple-double--three---four----''</code> <br>
+asis: “simple-double–three—four—-” <br>
+strong:
<strong>“simple-double–three—four—-”</strong> <br>
+kbd: <kbd>``simple-double--three---four----''</kbd> <br>
+</p>
+<p>‘<!-- /@w -->‘simple-double-<!-- /@w
-->-three—four—-’<!-- /@w -->’<br>
+</p>
+<span id="index-_002d_002doption"></span>
+<span id="index-_0060_0060"></span>
+<span id="index-_0060_0060-2"></span>
+<span id="index-_002d_002dfoption"></span>
+
+<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>@-</code>
+<code>@|</code>
+<code>@:</code>
+<code>@!</code> !
+<code>@?</code> ?
+<code>@.</code> .
+<code>@@</code> @
+<code>@}</code> }
+<code>@{</code> {
+<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 ›
+@textdegree °
+@euro €
+@arrow →
+@leq ≤
+@geq ≥
+</p>
+<p><code>@acronym{--a,an accronym}</code> <acronym title="an
accronym">–a</acronym> (an accronym)
+<code>@acronym{--a}</code> <acronym title="an accronym">–a</acronym>
+<code>@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr
title="Étude Autonome">É–. ,A.</abbr> (Étude Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="Étude
Autonome">É–. ,A.</abbr>
+<code>@asis{--a}</code> –a
+<code>@b{--a}</code> <b>–a</b>
+<code>@cite{--a}</code> <cite>–a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@dfn{--a}</code> <em>–a</em>
+<code>@dmn{--a}</code> –a
+<code>@email{--a,--b}</code> <a href="mailto:--a">–b</a>
+<code>@email{,--b}</code> –b
+<code>@email{--a}</code> <a href="mailto:--a">--a</a>
+<code>@emph{--a}</code> <em>–a</em>
+<code>@env{--a}</code> <code>--a</code>
+<code>@file{--a}</code> <samp>--a</samp>
+<code>@i{--a}</code> <i>–a</i>
+<code>@kbd{--a}</code> <kbd>--a</kbd>
+<code>@key{--a}</code> <tt class="key">--a</tt>
+<code>@math{--a {\frac{1}{2}} @minus{}}</code> <em class='math'>--a
{\frac{1}{2}} −</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">–a</span>
+<code>@samp{--a}</code> ‘<samp>--a</samp>”
+<code>@sc{--a}</code> <small>–A</small>
+<code>@strong{--a}</code> <strong>–a</strong>
+<code>@t{--a}</code> <tt>--a</tt>
+<code>@sansserif{--a}</code> <span class="sansserif">–a</span>
+<code>@slanted{--a}</code> <i>–a</i>
+<code>@titlefont{--a}</code> </p><h1 class="titlefont">–a</h1>
+<p><code>@indicateurl{--a}</code> ‘<code>--a</code>”
+<code>@uref{--a,--b}</code> <a href="--a">–b</a>
+<code>@uref{--a}</code> <a href="--a">--a</a>
+<code>@uref{,--b}</code> –b
+<code>@uref{--a,--b,--c}</code> <a href="--a">–c</a>
+<code>@uref{,--b,--c}</code> –c
+<code>@uref{--a,,--c}</code> <a href="--a">–c</a>
+<code>@uref{,,--c}</code> –c
+<code>@url{--a,--b}</code> <a href="--a">–b</a>
+<code>@url{--a,}</code> <a href="--a">--a</a>
+<code>@url{,--b}</code> –b
+<code>@var{--a}</code> <var>–a</var>
+<code>@verb{:--a:}</code> <tt>--a</tt>
+<code>@verb{:a < & @ % " -- b:}</code> <tt>a < & @ %
" -- b</tt>
+<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>@H{a}</code> a̋
+<code>@H{--a}</code> –a̋
+<code>@dotaccent{a}</code> ȧ
+<code>@dotaccent{--a}</code> –ȧ
+<code>@ringaccent{a}</code> å
+<code>@ringaccent{--a}</code> –å
+<code>@tieaccent{a}</code> a͡
+<code>@tieaccent{--a}</code> –a͡
+<code>@u{a}</code> ă
+<code>@u{--a}</code> –ă
+<code>@ubaraccent{a}</code> a̲
+<code>@ubaraccent{--a}</code> –a̲
+<code>@udotaccent{a}</code> ạ
+<code>@udotaccent{--a}</code> –ạ
+<code>@v{a}</code> ǎ
+<code>@v{--a}</code> –ǎ
+<code>@,{c}</code> ç
+<code>@,{--c}</code> –ç
+<code>@ogonek{a}</code> ą
+<code>@ogonek{--a}</code> –ą
+<code>a@sup{h}@sub{l}</code> a<sup>h</sup><sub>l</sub>
+<code>@footnote{in footnote}</code> <a id="DOCF5"
href="#FOOT5"><sup>7</sup></a>
+<code>@footnote{in footnote2}</code> <a id="DOCF6"
href="#FOOT6"><sup>8</sup></a>
+</p>
+<p><code>@image{f--ile}</code> <img src="f--ile.png" alt="f--ile">
+<code>@image{f--ile,l--i}</code> <img src="f--ile.png" alt="f--ile">
+<code>@image{f--ile,,l--e}</code> <img src="f--ile.png" alt="f--ile">
+<code>@image{f--ile,,,alt}</code> <img src="f--ile.png" alt="alt">
+<code>@image{f--ile,,,,.e-d-xt}</code> <img src="f--ile.e--xt" alt="f--ile">
+<code>@image{f--ile,aze,az,alt,.e--xt}</code> <img src="f--ile.e--xt"
alt="alt">
+<code>@image{f-ile,aze,,a--lt}</code> <img src="f-ile.jpg" alt="a–lt">
+<code>@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext} e--xt@}</code> <img
src="f--ile@..file ext e--xt}" alt="alt">
+</p>
+<p><code>@sp 2</code><br>
+</p><br>
+<br>
+<p><code>@page</code><br>
+</p>
+<p><code>need 1002</code>
+</p>
+<p><code>@clicksequence{click @click{} A}</code> click → A
+After clickstyle ⇒
+<code>@clicksequence{click @click{} A}</code> click ⇒ A
+</p>
+<div
class="displaymath"><em><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͡
+ă a̲ ạ ǎ ą a<sup>h</sup><sub>l</sub>
+
+      ! ? . @ } {
+a sunny day
+</em></div>
+<div class="displaymath"><em>→
+u
+TeX LaTeX • © … ... ≡
+error→ ↦ − ★ ⊣ ⇒
+å Å æ œ Æ Œ ø Ø ß ł Ł
Ð
+Þ ð þ ¡ ¿ £
+® ª º ,
+</em></div>
+<div class="displaymath"><em>“ ”
+‘ ’ „ ‚ «
+» « » ‹
+› ° € → ≤ ≥
+</em></div>
+<div class="displaymath"><em><b>b</b> <i>i</i> <span class="roman">r</span>
<small>SC</small> <tt>t</tt> <span class="sansserif">sansserif</span>
<i>slanted</i>
+</em></div>
+<p><kbd>default kbdinputstyle</kbd>
+</p><div class="example">
+<pre class="example"><kbd>in example default kbdinputstyle</kbd>
+</pre></div>
+
+<p><code>code kbdinputstyle</code>
+</p><div class="example">
+<pre class="example"><code>in example code kbdinputstyle</code>
+</pre></div>
+
+<p><kbd>example kbdinputstyle</kbd>
+</p><div class="example">
+<pre class="example"><code>in example example kbdinputstyle</code>
+</pre></div>
+
+<p><kbd>distinct kbdinputstyle</kbd>
+</p><div class="example">
+<pre class="example"><kbd>in example distinct kbdinputstyle</kbd>
+</pre></div>
+
+<blockquote>
+<p>A quot—ation
+</p></blockquote>
+
+<blockquote>
+<p><b>Note:</b> A Note
+</p></blockquote>
+
+<blockquote>
+<p><b>note:</b> A note
+</p></blockquote>
+
+<blockquote>
+<p><b>Caution:</b> Caution
+</p></blockquote>
+
+<blockquote>
+<p><b>Important:</b> Important
+</p></blockquote>
+
+<blockquote>
+<p><b>Tip:</b> a Tip
+</p></blockquote>
+
+<blockquote>
+<p><b>Warning:</b> a Warning.
+</p></blockquote>
+
+<blockquote>
+<p><b>something é TeX:</b> The something é TeX is here.
+</p></blockquote>
+
+<blockquote>
+<p><b>@ at the end of line  :</b> A @ at the end of the @quotation line.
+</p></blockquote>
+
+<blockquote>
+<p><b>something, other thing:</b> something, other thing
+</p></blockquote>
+
+<blockquote>
+<p><b>Note, the note:</b> Note, the note
+</p></blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+<p>aaa quotation
+</p></blockquote>
+<div align="center">— <em>quotation author</em>
+</div>
+<blockquote>
+<p>indent in quotation
+</p></blockquote>
+
+<blockquote>
+<p>A small quot—ation
+</p></blockquote>
+
+<blockquote>
+<p><b>Note:</b> A small Note
+</p></blockquote>
+
+<blockquote>
+<p><b>something, other thing:</b> something, other thing
+</p></blockquote>
+
+<ul>
+<li> i–temize
+</li></ul>
+
+<ul class="no-bullet">
+<li>+ i–tem +
+</li></ul>
+
+<ul>
+<li> b–ullet
+</li></ul>
+
+<ul class="no-bullet">
+<li>− minu–s
+</li></ul>
+
+<ul class="no-bullet">
+<li><em>after emph</em> e–mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>• a–n itemize line <span
id="index-index-entry-within-itemize"></span>
+i–tem 1
+</li><li>• a–n itemize line i–tem 2
+</li></ul>
+
+<ol>
+<li> e–numerate
+</li></ol>
+
+<ol start="3">
+<li> first third
+</li><li> second third
+</li></ol>
+
+<ol type="a" start="1">
+<li> e–numerate
+</li></ol>
+
+<ol type="a" start="3">
+<li> first c
+</li><li> second c
+</li></ol>
+
+<table>
+<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
+<span id="index-index-entry-within-multitable"></span></td></tr>
+<tr><td width="40%">lone mu–ltitable item</td></tr>
+</tbody>
+</table>
+
+<table>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
+</table>
+
+<div class="example">
+<pre class="example">e--xample some
+ text
+</pre></div>
+
+<div class="example first-arg">
+<pre class="example">example one arg
+</pre></div>
+
+<div class="example first-arg second-arg">
+<pre class="example">example two args
+</pre></div>
+
+<div class="example first-arg second-arg third-arg">
+<pre class="example">example three args
+</pre></div>
+
+<div class="example first-arg second-arg third-arg fourth-arg">
+<pre class="example">example four args
+</pre></div>
+
+<div class="example first-arg second-arg third-arg fourth-arg fifth-arg">
+<pre class="example">example five args
+</pre></div>
+
+<div class="example something-é-TeX">
+<pre class="example">The something é TeX is here.
+</pre></div>
+
+<div class="example @-at-the-end-of-line--">
+<pre class="example">A @ at the end of the @example line.
+</pre></div>
+
+<div class="example">
+<pre class="example">example with empty args
+</pre></div>
+
+<div class="example nonempty">
+<pre class="example">example with empty and non empty args mix
+</pre></div>
+
+<div class="example">
+<pre class="example">s--mallexample
+</pre></div>
+
+<p><code>@noindent</code> after smallexample.
+</p><div class="example">
+<pre class="example">$ 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">d–isplay
+</pre></div>
+
+<div class="display">
+<pre class="display">s–malldisplay
+</pre></div>
+
+<div class="example lisp">
+<pre class="lisp">l--isp
+</pre></div>
+
+<div class="example lisp">
+<pre class="lisp">s--malllisp
+</pre></div>
+
+<div class="format">
+<pre class="format">f–ormat
+</pre></div>
+
+<div class="format">
+<pre class="format">s–mallformat
+</pre></div>
+
+<div class="displaymath"><em>disp--laymath
+f(x) = {1 \over \sigma \sqrt{2\pi}}e<sup>-{1 \over 2}\left({x-\mu \over
\sigma}\right)^2</sup>
+</em></div>
+<dl class="def">
+<dt id="index-d_002d_002deffn_005fname"><span class="category">c--ategory:
</span><span><strong>d--effn_name</strong> <em>a--rguments...</em><a
href='#index-d_002d_002deffn_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–effn
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-de_002d_002dffn_005fname"><span class="category">cate--gory:
</span><span><strong>de--ffn_name</strong> <em>ar--guments more args <br>
even more so</em><a href='#index-de_002d_002dffn_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>def–fn
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-i"><span class="category">fset:
</span><span><strong><var>i</var></strong> <em>a g</em><a href='#index-i'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><span id="index-index-entry-within-deffn"></span>
+</dd><dt id="index-truc"><span class="category">cmde:
</span><span><strong>truc</strong> <em></em><a href='#index-truc'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-log-trap"><span class="category">Command:
</span><span><strong>log trap</strong> <em></em><a href='#index-log-trap'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-log-trap1"><span class="category">Command:
</span><span><strong>log trap1</strong> <em></em><a href='#index-log-trap1'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-log-trap2"><span class="category">Command:
</span><span><strong>log trap2</strong> <em></em><a href='#index-log-trap2'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-id-ule"><span class="category">cmde: </span><span><strong><b>id
ule</b></strong> <em>truc</em><a href='#index-id-ule' class='copiable-anchor'>
¶</a></span></dt>
+<dt id="index-id-i-ule"><span class="category">cmde2:
</span><span><strong><b>id ‘<samp>i</samp>” ule</b></strong>
<em>truc</em><a href='#index-id-i-ule' class='copiable-anchor'>
¶</a></span></dt>
+<dt><span class="category"><b>id ‘<samp>i</samp>” ule</b>:
</span><span><strong></strong></span></dt>
+<dt><span><strong></strong></span></dt>
+<dt><span class="category">aaa: </span><span><strong></strong></span></dt>
+<dt><span class="category">: </span><span><strong></strong></span></dt>
+<dt><span class="category">: </span><span><strong></strong></span></dt>
+<dt id="index-machin"><span class="category">:
</span><span><strong>machin</strong><a href='#index-machin'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-bidule-machin"><span class="category">:
</span><span><strong>bidule machin</strong><a href='#index-bidule-machin'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-machin-1"><span class="category">truc:
</span><span><strong>machin</strong><a href='#index-machin-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dt><span class="category">truc: </span><span><strong></strong></span></dt>
+<dt id="index-followed"><span class="category">truc:
</span><span><strong>followed</strong> <em>by a comment</em><a
href='#index-followed' class='copiable-anchor'> ¶</a></span></dt>
+<dt><span class="category">truc: </span><span><strong></strong></span></dt>
+<dt><span class="category">: </span><span><strong></strong></span></dt>
+<dt id="index-a-1"><span class="category">truc:
</span><span><strong>a</strong> <em>b c d e <b>f g</b> h i</em><a
href='#index-a-1' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-deffnx"><span class="category">truc:
</span><span><strong>deffnx</strong> <em>before end deffn</em><a
href='#index-deffnx' class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+
+
+<dl class="def">
+<dt id="index-deffn"><span class="category">empty:
</span><span><strong>deffn</strong><a href='#index-deffn'
class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+
+<dl class="def">
+<dt id="index-deffn-1"><span class="category">empty:
</span><span><strong>deffn</strong> <em>with deffnx</em><a
href='#index-deffn-1' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-deffnx-1"><span class="category">empty:
</span><span><strong>deffnx</strong><a href='#index-deffnx-1'
class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+
+<dl class="def">
+<dt id="index-i-1"><span class="category">fset:
</span><span><strong><var>i</var></strong> <em>a g</em><a href='#index-i-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-truc-1"><span class="category">cmde:
</span><span><strong>truc</strong> <em></em><a href='#index-truc-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>text in def item for second def item
+</p></dd></dl>
+
+
+<dl class="def">
+<dt id="index-d_002d_002defvr_005fname"><span class="category">c--ategory:
</span><span><strong>d--efvr_name</strong><a
href='#index-d_002d_002defvr_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efvr
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-n_002d_002dame"><span class="category">c--ategory:
</span><span><strong>n--ame</strong> <em>a--rguments...</em><a
href='#index-n_002d_002dame' class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–effn
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-n_002d_002dame-1"><span class="category">c--ategory:
</span><span><strong>n--ame</strong><a href='#index-n_002d_002dame-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–effn no arg
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002deftypefn_005fname"><span class="category">c--ategory:
</span><span><em>t--ype</em> <strong>d--eftypefn_name</strong>
<em>a--rguments...</em><a href='#index-d_002d_002deftypefn_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypefn
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002deftypefn_005fname-1"><span
class="category">c--ategory: </span><span><em>t--ype</em>
<strong>d--eftypefn_name</strong><a
href='#index-d_002d_002deftypefn_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypefn no arg
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><span>c--ategory on
c--lass: <em>t--ype</em> <strong>d--eftypeop_name</strong>
<em>a--rguments...</em><a
href='#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeop
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><span>c--ategory
on c--lass: <em>t--ype</em> <strong>d--eftypeop_name</strong><a
href='#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeop no arg
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002deftypevr_005fname"><span class="category">c--ategory:
</span><span><em>t--ype</em> <strong>d--eftypevr_name</strong><a
href='#index-d_002d_002deftypevr_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypevr
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002defcv_005fname"><span>c--ategory of c--lass:
<strong>d--efcv_name</strong><a href='#index-d_002d_002defcv_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efcv
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002defcv_005fname-1"><span>c--ategory of c--lass:
<strong>d--efcv_name</strong> <em>a--rguments...</em><a
href='#index-d_002d_002defcv_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efcv with arguments
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><span>c--ategory of
c--lass: <em>t--ype</em> <strong>d--eftypecv_name</strong><a
href='#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypecv
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><span>c--ategory
of c--lass: <em>t--ype</em> <strong>d--eftypecv_name</strong>
<em>a--rguments...</em><a
href='#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypecv with arguments
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002defop_005fname-on-c_002d_002dlass"><span>c--ategory on
c--lass: <strong>d--efop_name</strong> <em>a--rguments...</em><a
href='#index-d_002d_002defop_005fname-on-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efop
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002defop_005fname-on-c_002d_002dlass-1"><span>c--ategory
on c--lass: <strong>d--efop_name</strong><a
href='#index-d_002d_002defop_005fname-on-c_002d_002dlass-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efop no arg
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002deftp_005fname"><span class="category">c--ategory:
</span><span><strong>d--eftp_name</strong> <em>a--ttributes...</em><a
href='#index-d_002d_002deftp_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftp
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002defun_005fname"><span class="category">Function:
</span><span><strong>d--efun_name</strong> <em>a--rguments...</em><a
href='#index-d_002d_002defun_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efun
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002defmac_005fname"><span class="category">Macro:
</span><span><strong>d--efmac_name</strong> <em>a--rguments...</em><a
href='#index-d_002d_002defmac_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efmac
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002defspec_005fname"><span class="category">Special Form:
</span><span><strong>d--efspec_name</strong> <em>a--rguments...</em><a
href='#index-d_002d_002defspec_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efspec
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002defvar_005fname"><span class="category">Variable:
</span><span><strong>d--efvar_name</strong><a
href='#index-d_002d_002defvar_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efvar
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002defvar_005fname-1"><span class="category">Variable:
</span><span><strong>d--efvar_name</strong> <em>arg--var arg--var1</em><a
href='#index-d_002d_002defvar_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efvar with args
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002defopt_005fname"><span class="category">User Option:
</span><span><strong>d--efopt_name</strong><a
href='#index-d_002d_002defopt_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–efopt
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002deftypefun_005fname"><span class="category">Function:
</span><span><em>t--ype</em> <strong>d--eftypefun_name</strong>
<em>a--rguments...</em><a href='#index-d_002d_002deftypefun_005fname'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypefun
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002deftypevar_005fname"><span class="category">Variable:
</span><span><em>t--ype</em> <strong>d--eftypevar_name</strong><a
href='#index-d_002d_002deftypevar_005fname' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypevar
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002defivar_005fname-of-c_002d_002dlass"><span>Instance
Variable of c--lass: <strong>d--efivar_name</strong><a
href='#index-d_002d_002defivar_005fname-of-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efivar
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><span>Instance
Variable of c--lass: <em>t--ype</em> <strong>d--eftypeivar_name</strong><a
href='#index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeivar
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002defmethod_005fname-on-c_002d_002dlass"><span>Method on
c--lass: <strong>d--efmethod_name</strong> <em>a--rguments...</em><a
href='#index-d_002d_002defmethod_005fname-on-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–efmethod
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><span>Method on
c--lass: <em>t--ype</em> <strong>d--eftypemethod_name</strong>
<em>a--rguments...</em><a
href='#index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypemethod
+</p></dd></dl>
+
+
+<dl class="def">
+<dt id="index-name2"><span class="category">Function:<br>
</span><span><em>data-type2</em><br> <strong>name2</strong>
<em>arguments2...</em><a href='#index-name2' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>aaa2
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-d_002d_002deftypefn_005fname2"><span
class="category">c--ategory2:<br> </span><span><em>t--ype2</em><br>
<strong>d--eftypefn_name2</strong><a
href='#index-d_002d_002deftypefn_005fname2' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>d–eftypefn no arg2
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><span>c--ategory2
on c--lass2:<br> <em>t--ype2</em><br> <strong>d--eftypeop_name2</strong>
<em>a--rguments2...</em><a
href='#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeop2
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><span>c--ategory2
on c--lass2:<br> <em>t--ype2</em><br> <strong>d--eftypeop_name2</strong><a
href='#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypeop no arg2
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><span>c--ategory2
of c--lass2:<br> <em>t--ype2</em><br> <strong>d--eftypecv_name2</strong><a
href='#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypecv2
+</p></dd></dl>
+
+<dl class="def">
+<dt
id="index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><span>c--ategory2
of c--lass2:<br> <em>t--ype2</em><br> <strong>d--eftypecv_name2</strong>
<em>a--rguments2...</em><a
href='#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>d–eftypecv with arguments2
+</p></dd></dl>
+
+<dl class="def">
+<dt id="index-arg2"><span class="category">fun2:
</span><span><strong>arg2</strong><a href='#index-arg2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>fff2
+</p></dd></dl>
+
+
+<p><code>@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@,
ma---nual@@}</code> See <a data-manual="file n---ame@" href="file
n---ame@.html#c_002d_002d_002dhapter_0040">t—itle@</a> in
<cite>ma—nual@</cite>.
+<code>@ref{chapter, cross ref name, title, file name, manual}</code> <a
data-manual="file name" href="file name.html#chapter">title</a> in
<cite>manual</cite>
+<code>@pxref{chapter, cross ref name, title, file name, manual}</code> see <a
data-manual="file name" href="file name.html#chapter">title</a> in
<cite>manual</cite>
+<code>@inforef{chapter, cross ref name, file name}</code> See <a
data-manual="file name" href="file name.html#chapter">(file name)cross ref
name</a>
+</p>
+<p><code>@ref{chapter}</code> <a href="#chapter">chapter</a>
+<code>@xref{chapter}</code> See <a href="#chapter">chapter</a>.
+<code>@pxref{chapter}</code> see <a href="#chapter">chapter</a>
+<code>@ref{s--ect@comma{}ion}</code> <a href="#s_002d_002dect_002cion">A
section</a>
+</p>
+<p><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 data-manual="a comma, in file" href="a comma, in
file.html#s_002d_002dect_002cion">a comma, in title</a> in <cite>a , in
manual name</cite>
+</p>
+<p><code>@ref{chapter,cross ref name}</code> <a href="#chapter">cross ref
name</a>
+<code>@ref{chapter,,title}</code> <a href="#chapter">title</a>
+<code>@ref{chapter,,,file name}</code> <a data-manual="file name" href="file
name.html#chapter">(file name)chapter</a>
+<code>@ref{chapter,,,,manual}</code> ‘chapter’ in
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,}</code> <a href="#chapter">title</a>
+<code>@ref{chapter,cross ref name,,file name}</code> <a data-manual="file
name" href="file name.html#chapter">(file name)cross ref name</a>
+<code>@ref{chapter,cross ref name,,,manual}</code> ‘cross ref
name’ in <cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,file name}</code> <a data-manual="file
name" href="file name.html#chapter">(file name)title</a>
+<code>@ref{chapter,cross ref name,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#chapter">title</a> in
<cite>manual</cite>
+<code>@ref{chapter,,title,file name}</code> <a data-manual="file name"
href="file name.html#chapter">(file name)title</a>
+<code>@ref{chapter,,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a data-manual="file
name" href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,,file name,manual}</code> <a data-manual="file name"
href="file name.html#chapter">chapter</a> in <cite>manual</cite>
+</p>
+
+<p><code>@ref{(pman)anode,cross ref name}</code> <a data-manual="pman"
href="pman.html#anode">(pman)cross ref name</a>
+<code>@ref{(pman)anode,,title}</code> <a data-manual="pman"
href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,,,file name}</code> <a data-manual="file name"
href="file name.html#anode">(file name)anode</a>
+<code>@ref{(pman)anode,,,,manual}</code> <a data-manual="pman"
href="pman.html#anode">anode</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,}</code> <a data-manual="pman"
href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,cross ref name,,file name}</code> <a data-manual="file
name" href="file name.html#anode">(file name)cross ref name</a>
+<code>@ref{(pman)anode,cross ref name,,,manual}</code> <a data-manual="pman"
href="pman.html#anode">cross ref name</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,file name}</code> <a
data-manual="file name" href="file name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,cross ref name,title,,manual}</code> <a
data-manual="pman" href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#anode">title</a> in
<cite>manual</cite>
+<code>@ref{(pman)anode,,title,file name}</code> <a data-manual="file name"
href="file name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,,title,,manual}</code> <a data-manual="pman"
href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title, file name, manual}</code> <a data-manual="file
name" href="file name.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,,file name,manual}</code> <a data-manual="file name"
href="file name.html#anode">anode</a> in <cite>manual</cite>
+</p>
+
+<p><code>@inforef{chapter, cross ref name, file name}</code> See <a
data-manual="file name" href="file name.html#chapter">(file name)cross ref
name</a>
+<code>@inforef{chapter}</code> See ‘chapter’
+<code>@inforef{chapter, cross ref name}</code> See ‘cross ref name’
+<code>@inforef{chapter,,file name}</code> See <a data-manual="file name"
href="file name.html#chapter">(file name)chapter</a>
+<code>@inforef{node, cross ref name, file name}</code> See <a
data-manual="file name" href="file name.html#node">(file name)cross ref name</a>
+<code>@inforef{node}</code> See ‘node’
+<code>@inforef{node, cross ref name}</code> See ‘cross ref name’
+<code>@inforef{node,,file name}</code> See <a data-manual="file name"
href="file name.html#node">(file name)node</a>
+<code>@inforef{chapter, cross ref name, file name, spurious arg}</code> See <a
data-manual="file name, spurious arg" href="file name, spurious
arg.html#chapter">(file name, spurious arg)cross ref name</a>
+</p>
+<p><code>@inforef{s--ect@comma{}ion, a @comma{} in cross
+ref, a comma@comma{} in file}</code>
+See <a data-manual="a comma, in file" href="a comma, in
file.html#s_002d_002dect_002cion">(a comma, in file)a , in cross
+ref</a>
+</p>
+<p>‘<samp><a href="#chapter">chapter</a></samp>”.
+</p>
+<p><a data-manual="info file with uref3 href://http/myhost.com/index3.html
(uref3)" href="index3.html (uref3).html#ext">title with uref2 <a
href="href://http/myhost.com/index2.html">uref2</a></a> in <cite>printed manual
with uref4 <a href="href://http/myhost.com/index4.html">uref4</a></cite>
+<a href="#chapter">title with uref2 <a
href="href://http/myhost.com/index2.html">uref2</a></a>
+</p>
+<dl compact="compact">
+<dt><span><strong>a–strong</strong></span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-a_002d_002dasis'><span>a–asis<a
href='#index-a_002d_002dasis' class='copiable-anchor'> ¶</a></span></dt>
+<dt id='index-b-4'><span>b<a href='#index-b-4' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-a-2'><span><em>a</em><a href='#index-a-2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><span id="index-index-entry-between-item-and-itemx"></span>
+</dd>
+<dt id='index-b'><span><em>b</em><a href='#index-b' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt><span><code>a--code</code></span></dt>
+<dd><p>Value–table code
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt><span>‘<samp>a--samp</samp>”</span></dt>
+<dt><span>‘<samp>a2--samp</samp>”</span></dt>
+<dd><p>Value–table samp
+</p></dd>
+</dl>
+
+<table class="cartouche" border="1"><tr><td>
+<p>c–artouche
+</p></td></tr></table>
+
+<p>g–roupe
+</p>
+<p align="left">f–lushleft
+more text
+</p>
+<p align="right">f–lushright
+more text
+</p>
+<div align="center">ce–ntered line
+</div>
+<p>r–raggedright
+more text
+</p>
+<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 ''
+
+
+
+
+<span id="majorheading-2"></span><h1 class="majorheading">majorheading</h1>
+
+<span id="chapheading-2"></span><h1 class="chapheading">chapheading</h1>
+
+<span id="heading-2"></span><h2 class="heading">heading</h2>
+
+<span id="subheading-2"></span><h3 class="subheading">subheading</h3>
+
+<span id="subsubheading-2"></span><h4 class="subsubheading">subsubheading</h4>
+
+
+<p><code>@acronym{--a,an accronym @comma{} @enddots{}}</code> <acronym
title="an accronym , ...">–a</acronym> (an accronym , <small
class="enddots">...</small>)
+<code>@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome} }</code> <abbr
title="Étude–, Autonome">É–. ,A.</abbr>
(Étude–, <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="Étude–,
Autonome">É–. ,A.</abbr>
+</p>
+<p><code>@math{--a@minus{} {\frac{1}{2}}}</code> <em class='math'>--a−
{\frac{1}{2}}</em>
+</p>
+<p><code>@image{f-ile,,,alt@verb{:jk _" %}}</code> <img src="f-ile.jpg"
alt="altjk _" %@">
+<code>@image{f--ile,aze,az,@verb{:jk _" %@:} @b{in b
"},e--xt}</code> <img src="f--ile.e--xt" alt="jk _" %@ in b "">
+<code>@image{file@verb{:jk _" %@:},,,alt@verb{:jk _" %@:}}</code>
<img src="filejk _" %@.jpg" alt="altjk _" %@">
+</p>
+
+
+
+<p>Somehow invalid use of @,:<br>
+@, ̧
+<br>
+@,@"u ̧ü
+</p>
+<p>Invalid use of @’:<br>
+@’ ́
+<br>
+@’@"u ́ü
+</p>
+<p>@dotless{truc} truc
+@dotless{ij} ij
+<code>@dotless{--a}</code> –a
+<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>@#</code> #
+</p>
+<p><code>@w{--a}</code> –a<!-- /@w -->
+</p>
+<p><code>@image{,1--xt}</code>
+<code>@image{,,2--xt}</code>
+<code>@image{,,,3--xt}</code>
+</p>
+
+<ul class="no-bullet">
+<li> e–mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li> after emph e–mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>• a–n itemize line i–tem 1
+</li><li>• a–n itemize line i–tem 2
+</li></ul>
+
+<dl compact="compact">
+<dt><span>a</span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt><span>a–missing style formatting</span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-a-3'><span>a<a href='#index-a-3' class='copiable-anchor'>
¶</a></span></dt>
+<dd><span id="index-index-entry-between-item-and-itemx-1"></span>
+</dd>
+<dt id='index-b-1'><span>b<a href='#index-b-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><p>l–ine
+</p></dd>
+</dl>
+
+<dl class="def">
+<dt><span class="category">fun: </span><span><strong></strong></span></dt>
+<dt id="index-machin-2"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and</em><a
href='#index-machin-2' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-machin-3"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and after</em><a
href='#index-machin-3' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-machin-4"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and </em><a
href='#index-machin-4' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-machin-5"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and and after</em><a
href='#index-machin-5' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-followed-1"><span class="category">truc:
</span><span><strong>followed</strong> <em>by a comment</em><a
href='#index-followed-1' class='copiable-anchor'> ¶</a></span></dt>
+<dd><p>Various deff lines
+</p></dd><dt id="index-after"><span class="category">truc:
</span><span><strong>after</strong> <em>a deff item</em><a href='#index-after'
class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+
+<p><code>@ref{node}</code> ‘node’
+</p>
+<p><code>@ref{,cross ref name}</code> ‘cross ref name’
+<code>@ref{,,title}</code> ‘title’
+<code>@ref{,,,file name}</code> <a data-manual="file name" href="file
name.html#Top">(file name)</a>
+<code>@ref{,,,,manual}</code> <cite>manual</cite>
+<code>@ref{node,cross ref name}</code> ‘cross ref name’
+<code>@ref{node,,title}</code> ‘title’
+<code>@ref{node,,,file name}</code> <a data-manual="file name" href="file
name.html#node">(file name)node</a>
+<code>@ref{node,,,,manual}</code> ‘node’ in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,}</code> ‘title’
+<code>@ref{node,cross ref name,,file name}</code> <a data-manual="file name"
href="file name.html#node">(file name)cross ref name</a>
+<code>@ref{node,cross ref name,,,manual}</code> ‘cross ref name’
in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,file name}</code> <a data-manual="file
name" href="file name.html#node">(file name)title</a>
+<code>@ref{node,cross ref name,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{node,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#node">title</a> in
<cite>manual</cite>
+<code>@ref{node,,title,file name}</code> <a data-manual="file name" href="file
name.html#node">(file name)title</a>
+<code>@ref{node,,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a data-manual="file
name" href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{node,,title, file name, manual}</code> <a data-manual="file name"
href="file name.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,,file name,manual}</code> <a data-manual="file name"
href="file name.html#node">node</a> in <cite>manual</cite>
+<code>@ref{,cross ref name,title,}</code> ‘title’
+<code>@ref{,cross ref name,,file name}</code> <a data-manual="file name"
href="file name.html#Top">(file name)cross ref name</a>
+<code>@ref{,cross ref name,,,manual}</code> ‘cross ref name’ in
<cite>manual</cite>
+<code>@ref{,cross ref name,title,file name}</code> <a data-manual="file name"
href="file name.html#Top">(file name)title</a>
+<code>@ref{,cross ref name,title,,manual}</code> ‘title’ in
<cite>manual</cite>
+<code>@ref{,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#Top">title</a> in
<cite>manual</cite>
+<code>@ref{,,title,file name}</code> <a data-manual="file name" href="file
name.html#Top">(file name)title</a>
+<code>@ref{,,title,,manual}</code> ‘title’ in <cite>manual</cite>
+<code>@ref{,,title, file name, manual}</code> <a data-manual="file name"
href="file name.html#Top">title</a> in <cite>manual</cite>
+<code>@ref{,,,file name,manual}</code> <cite><a data-manual="file name"
href="file name.html#Top">manual</a></cite>
+</p>
+<p><code>@inforef{,cross ref name }</code> See ‘cross ref name’
+<code>@inforef{,,file name}</code> See <a data-manual="file name" href="file
name.html#Top">(file name)</a>
+<code>@inforef{,cross ref name, file name}</code> See <a data-manual="file
name" href="file name.html#Top">(file name)cross ref name</a>
+<code>@inforef{}</code>
+</p>
+
+
+<p>In example.
+</p><div class="example">
+<pre class="example">
+
+<
+>
+"
+&
+'
+`
+
+``simple-double--three---four----''
+
+code: <code>``simple-double--three---four----''</code>
+
+asis: ``simple-double--three---four----''
+
+strong: <strong>``simple-double--three---four----''</strong>
+
+kbd: <kbd>``simple-double--three---four----''</kbd>
+
+
+`<!-- /@w -->`simple-double-<!-- /@w -->-three---four----'<!-- /@w -->'
+
+
+<span id="index-_002d_002doption-1"></span><span
id="index-_0060_0060-1"></span><span id="index-_0060_0060-3"></span><span
id="index-_002d_002dfoption-1"></span>
+@"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>@-</code>
+<code>@|</code>
+<code>@:</code>
+<code>@!</code> !
+<code>@?</code> ?
+<code>@.</code> .
+<code>@@</code> @
+<code>@}</code> }
+<code>@{</code> {
+<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 ≥
+
+<code>@acronym{--a,an accronym}</code> <acronym title="an
accronym">--a</acronym> (an accronym)
+<code>@acronym{--a}</code> <acronym title="an accronym">--a</acronym>
+<code>@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr
title="Étude Autonome">É--. ,A.</abbr> (Étude Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="Étude
Autonome">É--. ,A.</abbr>
+<code>@asis{--a}</code> --a
+<code>@b{--a}</code> <b>–a</b>
+<code>@cite{--a}</code> <cite>--a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@dfn{--a}</code> <em>--a</em>
+<code>@dmn{--a}</code> --a
+<code>@email{--a,--b}</code> <a href="mailto:--a">--b</a>
+<code>@email{,--b}</code> --b
+<code>@email{--a}</code> <a href="mailto:--a">--a</a>
+<code>@emph{--a}</code> <em>--a</em>
+<code>@env{--a}</code> <code>--a</code>
+<code>@file{--a}</code> <samp>--a</samp>
+<code>@i{--a}</code> <i>–a</i>
+<code>@kbd{--a}</code> <kbd>--a</kbd>
+<code>@key{--a}</code> <span class="key">--a</span>
+<code>@math{--a {\frac{1}{2}} @minus{}}</code> <em class='math'>--a
{\frac{1}{2}} −</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">–a</span>
+<code>@samp{--a}</code> ‘<samp>--a</samp>”
+<code>@sc{--a}</code> --A
+<code>@strong{--a}</code> <strong>--a</strong>
+<code>@t{--a}</code> <tt>--a</tt>
+<code>@sansserif{--a}</code> <span class="sansserif">–a</span>
+<code>@slanted{--a}</code> <i>–a</i>
+<code>@titlefont{--a}</code> </pre><h1 class="titlefont">--a</h1><pre
class="example">
+
+<code>@indicateurl{--a}</code> ‘<code>--a</code>”
+<code>@uref{--a,--b}</code> <a href="--a">--b</a>
+<code>@uref{--a}</code> <a href="--a">--a</a>
+<code>@uref{,--b}</code> --b
+<code>@uref{--a,--b,--c}</code> <a href="--a">--c</a>
+<code>@uref{,--b,--c}</code> --c
+<code>@uref{--a,,--c}</code> <a href="--a">--c</a>
+<code>@uref{,,--c}</code> --c
+<code>@url{--a,--b}</code> <a href="--a">--b</a>
+<code>@url{--a,}</code> <a href="--a">--a</a>
+<code>@url{,--b}</code> --b
+<code>@var{--a}</code> <var>--a</var>
+<code>@verb{:--a:}</code> <tt>--a</tt>
+<code>@verb{:a < & @ % " -- b:}</code> <tt>a < & @ %
" -- b</tt>
+<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>@H{a}</code> a̋
+<code>@H{--a}</code> --a̋
+<code>@dotaccent{a}</code> ȧ
+<code>@dotaccent{--a}</code> --ȧ
+<code>@ringaccent{a}</code> å
+<code>@ringaccent{--a}</code> --å
+<code>@tieaccent{a}</code> a͡
+<code>@tieaccent{--a}</code> --a͡
+<code>@u{a}</code> ă
+<code>@u{--a}</code> --ă
+<code>@ubaraccent{a}</code> a̲
+<code>@ubaraccent{--a}</code> --a̲
+<code>@udotaccent{a}</code> ạ
+<code>@udotaccent{--a}</code> --ạ
+<code>@v{a}</code> ǎ
+<code>@v{--a}</code> --ǎ
+<code>@,{c}</code> ç
+<code>@,{--c}</code> --ç
+<code>@ogonek{a}</code> ą
+<code>@ogonek{--a}</code> --ą
+<code>a@sup{h}@sub{l}</code> a<sup>h</sup><sub>l</sub>
+<code>@footnote{in footnote}</code> <a id="DOCF7" href="#FOOT7">(9)</a>
+<code>@footnote{in footnote2}</code> <a id="DOCF8" href="#FOOT8">(10)</a>
+
+<code>@image{f--ile}</code> <img src="f--ile.png" alt="f--ile">
+<code>@image{f--ile,l--i}</code> <img src="f--ile.png" alt="f--ile">
+<code>@image{f--ile,,l--e}</code> <img src="f--ile.png" alt="f--ile">
+<code>@image{f--ile,,,alt}</code> <img src="f--ile.png" alt="alt">
+<code>@image{f--ile,,,,.e-d-xt}</code> <img src="f--ile.e--xt" alt="f--ile">
+<code>@image{f--ile,aze,az,alt,.e--xt}</code> <img src="f--ile.e--xt"
alt="alt">
+<code>@image{f-ile,aze,,a--lt}</code> <img src="f-ile.jpg" alt="a–lt">
+<code>@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext} e--xt@}</code> <img
src="f--ile@..file ext e--xt}" alt="alt">
+
+<code>@sp 2</code>
+
+
+
+<code>@page</code>
+
+</pre><pre class="example">
+
+<code>need 1002</code>
+
+<code>@clicksequence{click @click{} A}</code> click → A
+After clickstyle ⇒
+<code>@clicksequence{click @click{} A}</code> click ⇒ A
+
+</pre><div
class="displaymath"><em><strong>``simple-double--three---four----''</strong>
aa<!-- /@w -->
+`<!-- /@w -->`simple-double-<!-- /@w -->-three---four----'<!-- /@w -->'
+
+</em></div><pre class="example">
+
+</pre><div class="displaymath"><em>ü Ü ñ â é ō
ì é i j Ḕ
+ł Ḉ Ḉ ç a̋ ȧ å a͡
+ă a̲ ạ ǎ ą a<sup>h</sup><sub>l</sub>
+
+      ! ? . @ } {
+a sunny day
+</em></div><pre class="example">
+
+</pre><div class="displaymath"><em>→
+u
+TeX LaTeX • © … ... ≡
+error→ ↦ − ★ ⊣ ⇒
+å Å æ œ Æ Œ ø Ø ß ł Ł
Ð
+Þ ð þ ¡ ¿ £
+® ª º ,
+</em></div><pre class="example">
+
+</pre><div class="displaymath"><em>“ ”
+‘ ’ „ ‚ «
+» « » ‹
+› ° € → ≤ ≥
+</em></div><pre class="example">
+
+</pre><div class="displaymath"><em><b>b</b> <i>i</i> <span
class="roman">r</span> SC <tt>t</tt> <span class="sansserif">sansserif</span>
<i>slanted</i>
+</em></div><pre class="example">
+
+<kbd>default kbdinputstyle</kbd>
+</pre><div class="example">
+<pre class="example"><kbd>in example default kbdinputstyle</kbd>
+</pre></div>
+<pre class="example">
+
+<code>code kbdinputstyle</code>
+</pre><div class="example">
+<pre class="example"><code>in example code kbdinputstyle</code>
+</pre></div>
+<pre class="example">
+
+<code>example kbdinputstyle</code>
+</pre><div class="example">
+<pre class="example"><code>in example example kbdinputstyle</code>
+</pre></div>
+<pre class="example">
+
+<kbd>distinct kbdinputstyle</kbd>
+</pre><div class="example">
+<pre class="example"><kbd>in example distinct kbdinputstyle</kbd>
+</pre></div>
+<pre class="example">
+
+</pre><blockquote>
+<pre class="example">A quot---ation
+</pre></blockquote>
+<pre class="example">
+
+</pre><blockquote>
+<pre class="example"><b>Note:</b> A Note
+</pre></blockquote>
+<pre class="example">
+
+</pre><blockquote>
+<pre class="example"><b>note:</b> A note
+</pre></blockquote>
+<pre class="example">
+
+</pre><blockquote>
+<pre class="example"><b>Caution:</b> Caution
+</pre></blockquote>
+<pre class="example">
+
+</pre><blockquote>
+<pre class="example"><b>Important:</b> Important
+</pre></blockquote>
+<pre class="example">
+
+</pre><blockquote>
+<pre class="example"><b>Tip:</b> a Tip
+</pre></blockquote>
+<pre class="example">
+
+</pre><blockquote>
+<pre class="example"><b>Warning:</b> a Warning.
+</pre></blockquote>
+<pre class="example">
+
+</pre><blockquote>
+<pre class="example"><b>something é TeX:</b> The something é TeX is
here.
+</pre></blockquote>
+<pre class="example">
+
+</pre><blockquote>
+<pre class="example"><b>@ at the end of line  :</b> A @ at the end of the
@quotation line.
+</pre></blockquote>
+<pre class="example">
+
+</pre><blockquote>
+<pre class="example"><b>something, other thing:</b> something, other thing
+</pre></blockquote>
+<pre class="example">
+
+</pre><blockquote>
+<pre class="example"><b>Note, the note:</b> Note, the note
+</pre></blockquote>
+<pre class="example">
+
+</pre><blockquote>
+</blockquote>
+<pre class="example">
+
+</pre><blockquote>
+</blockquote>
+<pre class="example">
+
+</pre><blockquote>
+</blockquote>
+<pre class="example">
+
+</pre><blockquote>
+</blockquote>
+<pre class="example">
+
+</pre><blockquote>
+<pre class="example">aaa quotation
+</pre></blockquote>
+<div align="center">--- <em>quotation author</em>
+</div><pre class="example">
+
+</pre><blockquote>
+<pre class="example">indent in quotation
+</pre></blockquote>
+<pre class="example">
+
+</pre><blockquote>
+<pre class="example">A small quot---ation
+</pre></blockquote>
+<pre class="example">
+
+</pre><blockquote>
+<pre class="example"><b>Note:</b> A small Note
+</pre></blockquote>
+<pre class="example">
+
+</pre><blockquote>
+<pre class="example"><b>something, other thing:</b> something, other thing
+</pre></blockquote>
+<pre class="example">
+
+</pre><ul>
+<li> <pre class="example">i--temize
+</pre></li></ul>
+<pre class="example">
+
+</pre><ul class="no-bullet">
+<li>+ <pre class="example">i--tem +
+</pre></li></ul>
+<pre class="example">
+
+</pre><ul>
+<li> <pre class="example">b--ullet
+</pre></li></ul>
+<pre class="example">
+
+</pre><ul class="no-bullet">
+<li>− <pre class="example">minu--s
+</pre></li></ul>
+<pre class="example">
+
+</pre><ul class="no-bullet">
+<li><em>after emph</em> <pre class="example">e--mph item
+</pre></li></ul>
+<pre class="example">
+
+</pre><ul class="no-bullet">
+<li>• a–n itemize line <pre class="example"><span
id="index-index-entry-within-itemize-1"></span>i--tem 1
+</pre></li><li>• a–n itemize line <pre class="example">i--tem 2
+</pre></li></ul>
+<pre class="example">
+
+</pre><ol>
+<li> <pre class="example">e--numerate
+</pre></li></ol>
+<pre class="example">
+
+</pre><ol start="3">
+<li> <pre class="example">first third
+</pre></li><li> <pre class="example">second third
+</pre></li></ol>
+<pre class="example">
+
+</pre><ol type="a" start="1">
+<li> <pre class="example">e--numerate
+</pre></li></ol>
+<pre class="example">
+
+</pre><ol type="a" start="3">
+<li> <pre class="example">first c
+</pre></li><li> <pre class="example">second c
+</pre></li></ol>
+<pre class="example">
+
+</pre><table>
+<thead><tr><th width="40%"><pre class="example">mu--ltitable
headitem</pre></th><th width="60%"><pre class="example">another
tab</pre></th></tr></thead>
+<tbody><tr><td width="40%"><pre class="example">mu--ltitable
item</pre></td><td width="60%"><pre class="example">multitable
tab</pre></td></tr>
+<tr><td width="40%"><pre class="example">mu--ltitable item 2</pre></td><td
width="60%"><pre class="example">multitable tab 2
+<span id="index-index-entry-within-multitable-1"></span></pre></td></tr>
+<tr><td width="40%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
+</table>
+<pre class="example">
+
+</pre><table>
+<tbody><tr><td><pre class="example">truc</pre></td><td><pre
class="example">bidule</pre></td></tr>
+</tbody>
+</table>
+<pre class="example">
+
+</pre><div class="example">
+<pre class="example">e--xample some
+ text
+</pre></div>
+<pre class="example">
+
+</pre><div class="example first-arg">
+<pre class="example">example one arg
+</pre></div>
+<pre class="example">
+
+</pre><div class="example first-arg second-arg">
+<pre class="example">example two args
+</pre></div>
+<pre class="example">
+
+</pre><div class="example first-arg second-arg third-arg">
+<pre class="example">example three args
+</pre></div>
+<pre class="example">
+
+</pre><div class="example first-arg second-arg third-arg fourth-arg">
+<pre class="example">example four args
+</pre></div>
+<pre class="example">
+
+</pre><div class="example first-arg second-arg third-arg fourth-arg fifth-arg">
+<pre class="example">example five args
+</pre></div>
+<pre class="example">
+
+</pre><div class="example something-é-TeX">
+<pre class="example">The something é TeX is here.
+</pre></div>
+<pre class="example">
+
+</pre><div class="example @-at-the-end-of-line--">
+<pre class="example">A @ at the end of the @example line.
+</pre></div>
+<pre class="example">
+
+</pre><div class="example">
+<pre class="example">example with empty args
+</pre></div>
+<pre class="example">
+
+</pre><div class="example nonempty">
+<pre class="example">example with empty and non empty args mix
+</pre></div>
+<pre class="example">
+
+</pre><div class="example">
+<pre class="example">s--mallexample
+</pre></div>
+<pre class="example">
+
+<code>@noindent</code> after smallexample.
+</pre><div class="example">
+<pre class="example">$ 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">Less recent versions are also present.
+
+</pre><div class="display">
+<pre class="example">d--isplay
+</pre></div>
+<pre class="example">
+
+</pre><div class="display">
+<pre class="example">s--malldisplay
+</pre></div>
+<pre class="example">
+
+</pre><div class="example lisp">
+<pre class="lisp">l--isp
+</pre></div>
+<pre class="example">
+
+</pre><div class="example lisp">
+<pre class="lisp">s--malllisp
+</pre></div>
+<pre class="example">
+
+</pre><div class="format">
+<pre class="example">f--ormat
+</pre></div>
+<pre class="example">
+
+</pre><div class="format">
+<pre class="example">s--mallformat
+</pre></div>
+<pre class="example">
+
+</pre><div class="displaymath"><em>disp--laymath
+f(x) = {1 \over \sigma \sqrt{2\pi}}e<sup>-{1 \over 2}\left({x-\mu \over
\sigma}\right)^2</sup>
+</em></div><pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002deffn_005fname-1"><span class="category">c--ategory:
</span><span><strong>d--effn_name</strong> <em>a--rguments...</em><a
href='#index-d_002d_002deffn_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><pre class="example">d--effn
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-de_002d_002dffn_005fname-1"><span class="category">cate--gory:
</span><span><strong>de--ffn_name</strong> <em>ar--guments more args
+ even more so</em><a href='#index-de_002d_002dffn_005fname-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">def--fn
+</pre></dd></dl>
+<pre class="example">
+</pre><dl class="def">
+<dt id="index-i-2"><span class="category">fset:
</span><span><strong><var>i</var></strong> <em>a g</em><a href='#index-i-2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example"><span
id="index-index-entry-within-deffn-1"></span></pre></dd><dt
id="index-truc-2"><span class="category">cmde:
</span><span><strong>truc</strong> <em></em><a href='#index-truc-2'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-log-trap-1"><span class="category">Command:
</span><span><strong>log trap</strong> <em></em><a href='#index-log-trap-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-log-trap1-1"><span class="category">Command:
</span><span><strong>log trap1</strong> <em></em><a href='#index-log-trap1-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-log-trap2-1"><span class="category">Command:
</span><span><strong>log trap2</strong> <em></em><a href='#index-log-trap2-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-id-ule-1"><span class="category">cmde:
</span><span><strong><b>id ule</b></strong> <em>truc</em><a
href='#index-id-ule-1' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-id-i-ule-1"><span class="category">cmde2:
</span><span><strong><b>id ‘<samp>i</samp>” ule</b></strong>
<em>truc</em><a href='#index-id-i-ule-1' class='copiable-anchor'>
¶</a></span></dt>
+<dt><span class="category"><b>id ‘<samp>i</samp>” ule</b>:
</span><span><strong></strong></span></dt>
+<dt><span><strong></strong></span></dt>
+<dt><span class="category">aaa: </span><span><strong></strong></span></dt>
+<dt><span class="category">: </span><span><strong></strong></span></dt>
+<dt><span class="category">: </span><span><strong></strong></span></dt>
+<dt id="index-machin-6"><span class="category">:
</span><span><strong>machin</strong><a href='#index-machin-6'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-bidule-machin-1"><span class="category">:
</span><span><strong>bidule machin</strong><a href='#index-bidule-machin-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-machin-7"><span class="category">truc:
</span><span><strong>machin</strong><a href='#index-machin-7'
class='copiable-anchor'> ¶</a></span></dt>
+<dt><span class="category">truc: </span><span><strong></strong></span></dt>
+<dt id="index-followed-2"><span class="category">truc:
</span><span><strong>followed</strong> <em>by a comment</em><a
href='#index-followed-2' class='copiable-anchor'> ¶</a></span></dt>
+<dt><span class="category">truc: </span><span><strong></strong></span></dt>
+<dt><span class="category">: </span><span><strong></strong></span></dt>
+<dt id="index-a-4"><span class="category">truc:
</span><span><strong>a</strong> <em>b c d e <b>f g</b> h i</em><a
href='#index-a-4' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-deffnx-2"><span class="category">truc:
</span><span><strong>deffnx</strong> <em>before end deffn</em><a
href='#index-deffnx-2' class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+<pre class="example">
+
+
+</pre><dl class="def">
+<dt id="index-deffn-2"><span class="category">empty:
</span><span><strong>deffn</strong><a href='#index-deffn-2'
class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-deffn-3"><span class="category">empty:
</span><span><strong>deffn</strong> <em>with deffnx</em><a
href='#index-deffn-3' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-deffnx-3"><span class="category">empty:
</span><span><strong>deffnx</strong><a href='#index-deffnx-3'
class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-i-3"><span class="category">fset:
</span><span><strong><var>i</var></strong> <em>a g</em><a href='#index-i-3'
class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-truc-3"><span class="category">cmde:
</span><span><strong>truc</strong> <em></em><a href='#index-truc-3'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">text in def item for second def item
+</pre></dd></dl>
+<pre class="example">
+
+
+</pre><dl class="def">
+<dt id="index-d_002d_002defvr_005fname-1"><span class="category">c--ategory:
</span><span><strong>d--efvr_name</strong><a
href='#index-d_002d_002defvr_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><pre class="example">d--efvr
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-n_002d_002dame-2"><span class="category">c--ategory:
</span><span><strong>n--ame</strong> <em>a--rguments...</em><a
href='#index-n_002d_002dame-2' class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">d--effn
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-n_002d_002dame-3"><span class="category">c--ategory:
</span><span><strong>n--ame</strong><a href='#index-n_002d_002dame-3'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">d--effn no arg
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002deftypefn_005fname-2"><span
class="category">c--ategory: </span><span><em>t--ype</em>
<strong>d--eftypefn_name</strong> <em>a--rguments...</em><a
href='#index-d_002d_002deftypefn_005fname-2' class='copiable-anchor'>
¶</a></span></dt>
+<dd><pre class="example">d--eftypefn
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002deftypefn_005fname-3"><span
class="category">c--ategory: </span><span><em>t--ype</em>
<strong>d--eftypefn_name</strong><a
href='#index-d_002d_002deftypefn_005fname-3' class='copiable-anchor'>
¶</a></span></dt>
+<dd><pre class="example">d--eftypefn no arg
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt
id="index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-2"><span>c--ategory
on c--lass: <em>t--ype</em> <strong>d--eftypeop_name</strong>
<em>a--rguments...</em><a
href='#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">d--eftypeop
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt
id="index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-3"><span>c--ategory
on c--lass: <em>t--ype</em> <strong>d--eftypeop_name</strong><a
href='#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-3'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">d--eftypeop no arg
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002deftypevr_005fname-1"><span
class="category">c--ategory: </span><span><em>t--ype</em>
<strong>d--eftypevr_name</strong><a
href='#index-d_002d_002deftypevr_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><pre class="example">d--eftypevr
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002defcv_005fname-2"><span>c--ategory of c--lass:
<strong>d--efcv_name</strong><a href='#index-d_002d_002defcv_005fname-2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">d--efcv
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002defcv_005fname-3"><span>c--ategory of c--lass:
<strong>d--efcv_name</strong> <em>a--rguments...</em><a
href='#index-d_002d_002defcv_005fname-3' class='copiable-anchor'>
¶</a></span></dt>
+<dd><pre class="example">d--efcv with arguments
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt
id="index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-2"><span>c--ategory
of c--lass: <em>t--ype</em> <strong>d--eftypecv_name</strong><a
href='#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">d--eftypecv
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt
id="index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-3"><span>c--ategory
of c--lass: <em>t--ype</em> <strong>d--eftypecv_name</strong>
<em>a--rguments...</em><a
href='#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-3'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">d--eftypecv with arguments
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002defop_005fname-on-c_002d_002dlass-2"><span>c--ategory
on c--lass: <strong>d--efop_name</strong> <em>a--rguments...</em><a
href='#index-d_002d_002defop_005fname-on-c_002d_002dlass-2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">d--efop
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002defop_005fname-on-c_002d_002dlass-3"><span>c--ategory
on c--lass: <strong>d--efop_name</strong><a
href='#index-d_002d_002defop_005fname-on-c_002d_002dlass-3'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">d--efop no arg
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002deftp_005fname-1"><span class="category">c--ategory:
</span><span><strong>d--eftp_name</strong> <em>a--ttributes...</em><a
href='#index-d_002d_002deftp_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><pre class="example">d--eftp
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002defun_005fname-1"><span class="category">Function:
</span><span><strong>d--efun_name</strong> <em>a--rguments...</em><a
href='#index-d_002d_002defun_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><pre class="example">d--efun
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002defmac_005fname-1"><span class="category">Macro:
</span><span><strong>d--efmac_name</strong> <em>a--rguments...</em><a
href='#index-d_002d_002defmac_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><pre class="example">d--efmac
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002defspec_005fname-1"><span class="category">Special
Form: </span><span><strong>d--efspec_name</strong> <em>a--rguments...</em><a
href='#index-d_002d_002defspec_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><pre class="example">d--efspec
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002defvar_005fname-2"><span class="category">Variable:
</span><span><strong>d--efvar_name</strong><a
href='#index-d_002d_002defvar_005fname-2' class='copiable-anchor'>
¶</a></span></dt>
+<dd><pre class="example">d--efvar
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002defvar_005fname-3"><span class="category">Variable:
</span><span><strong>d--efvar_name</strong> <em>arg--var arg--var1</em><a
href='#index-d_002d_002defvar_005fname-3' class='copiable-anchor'>
¶</a></span></dt>
+<dd><pre class="example">d--efvar with args
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002defopt_005fname-1"><span class="category">User Option:
</span><span><strong>d--efopt_name</strong><a
href='#index-d_002d_002defopt_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><pre class="example">d--efopt
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002deftypefun_005fname-1"><span
class="category">Function: </span><span><em>t--ype</em>
<strong>d--eftypefun_name</strong> <em>a--rguments...</em><a
href='#index-d_002d_002deftypefun_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><pre class="example">d--eftypefun
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002deftypevar_005fname-1"><span
class="category">Variable: </span><span><em>t--ype</em>
<strong>d--eftypevar_name</strong><a
href='#index-d_002d_002deftypevar_005fname-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><pre class="example">d--eftypevar
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002defivar_005fname-of-c_002d_002dlass-1"><span>Instance
Variable of c--lass: <strong>d--efivar_name</strong><a
href='#index-d_002d_002defivar_005fname-of-c_002d_002dlass-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">d--efivar
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt
id="index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass-1"><span>Instance
Variable of c--lass: <em>t--ype</em> <strong>d--eftypeivar_name</strong><a
href='#index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">d--eftypeivar
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002defmethod_005fname-on-c_002d_002dlass-1"><span>Method
on c--lass: <strong>d--efmethod_name</strong> <em>a--rguments...</em><a
href='#index-d_002d_002defmethod_005fname-on-c_002d_002dlass-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">d--efmethod
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt
id="index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass-1"><span>Method
on c--lass: <em>t--ype</em> <strong>d--eftypemethod_name</strong>
<em>a--rguments...</em><a
href='#index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">d--eftypemethod
+</pre></dd></dl>
+<pre class="example">
+
+
+</pre><dl class="def">
+<dt id="index-name2-1"><span class="category">Function:
+ </span><span><em>data-type2</em>
+ <strong>name2</strong> <em>arguments2...</em><a href='#index-name2-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">aaa2
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-d_002d_002deftypefn_005fname2-1"><span
class="category">c--ategory2:
+ </span><span><em>t--ype2</em>
+ <strong>d--eftypefn_name2</strong><a
href='#index-d_002d_002deftypefn_005fname2-1' class='copiable-anchor'>
¶</a></span></dt>
+<dd><pre class="example">d--eftypefn no arg2
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt
id="index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-2"><span>c--ategory2
on c--lass2:
+ <em>t--ype2</em>
+ <strong>d--eftypeop_name2</strong> <em>a--rguments2...</em><a
href='#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">d--eftypeop2
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt
id="index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-3"><span>c--ategory2
on c--lass2:
+ <em>t--ype2</em>
+ <strong>d--eftypeop_name2</strong><a
href='#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-3'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">d--eftypeop no arg2
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt
id="index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-2"><span>c--ategory2
of c--lass2:
+ <em>t--ype2</em>
+ <strong>d--eftypecv_name2</strong><a
href='#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">d--eftypecv2
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt
id="index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-3"><span>c--ategory2
of c--lass2:
+ <em>t--ype2</em>
+ <strong>d--eftypecv_name2</strong> <em>a--rguments2...</em><a
href='#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-3'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">d--eftypecv with arguments2
+</pre></dd></dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt id="index-arg2-1"><span class="category">fun2:
</span><span><strong>arg2</strong><a href='#index-arg2-1'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">fff2
+</pre></dd></dl>
+<pre class="example">
+
+
+<code>@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@,
ma---nual@@}</code> See <a data-manual="file n---ame@" href="file
n---ame@.html#c_002d_002d_002dhapter_0040">t---itle@</a> in
<cite>ma---nual@</cite>.
+<code>@ref{chapter, cross ref name, title, file name, manual}</code> <a
data-manual="file name" href="file name.html#chapter">title</a> in
<cite>manual</cite>
+<code>@pxref{chapter, cross ref name, title, file name, manual}</code> see <a
data-manual="file name" href="file name.html#chapter">title</a> in
<cite>manual</cite>
+<code>@inforef{chapter, cross ref name, file name}</code> See <a
data-manual="file name" href="file name.html#chapter">(file name)cross ref
name</a>
+
+<code>@ref{chapter}</code> <a href="#chapter">chapter</a>
+<code>@xref{chapter}</code> See <a href="#chapter">chapter</a>.
+<code>@pxref{chapter}</code> see <a href="#chapter">chapter</a>
+<code>@ref{s--ect@comma{}ion}</code> <a href="#s_002d_002dect_002cion">A
section</a>
+
+<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 data-manual="a comma, in file" href="a comma, in
file.html#s_002d_002dect_002cion">a comma, in title</a> in <cite>a , in
manual name</cite>
+
+<code>@ref{chapter,cross ref name}</code> <a href="#chapter">cross ref name</a>
+<code>@ref{chapter,,title}</code> <a href="#chapter">title</a>
+<code>@ref{chapter,,,file name}</code> <a data-manual="file name" href="file
name.html#chapter">(file name)chapter</a>
+<code>@ref{chapter,,,,manual}</code> `chapter' in <cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,}</code> <a href="#chapter">title</a>
+<code>@ref{chapter,cross ref name,,file name}</code> <a data-manual="file
name" href="file name.html#chapter">(file name)cross ref name</a>
+<code>@ref{chapter,cross ref name,,,manual}</code> `cross ref name' in
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,file name}</code> <a data-manual="file
name" href="file name.html#chapter">(file name)title</a>
+<code>@ref{chapter,cross ref name,title,,manual}</code> `title' in
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#chapter">title</a> in
<cite>manual</cite>
+<code>@ref{chapter,,title,file name}</code> <a data-manual="file name"
href="file name.html#chapter">(file name)title</a>
+<code>@ref{chapter,,title,,manual}</code> `title' in <cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a data-manual="file
name" href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,,file name,manual}</code> <a data-manual="file name"
href="file name.html#chapter">chapter</a> in <cite>manual</cite>
+
+
+<code>@ref{(pman)anode,cross ref name}</code> <a data-manual="pman"
href="pman.html#anode">(pman)cross ref name</a>
+<code>@ref{(pman)anode,,title}</code> <a data-manual="pman"
href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,,,file name}</code> <a data-manual="file name"
href="file name.html#anode">(file name)anode</a>
+<code>@ref{(pman)anode,,,,manual}</code> <a data-manual="pman"
href="pman.html#anode">anode</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,}</code> <a data-manual="pman"
href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,cross ref name,,file name}</code> <a data-manual="file
name" href="file name.html#anode">(file name)cross ref name</a>
+<code>@ref{(pman)anode,cross ref name,,,manual}</code> <a data-manual="pman"
href="pman.html#anode">cross ref name</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,file name}</code> <a
data-manual="file name" href="file name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,cross ref name,title,,manual}</code> <a
data-manual="pman" href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#anode">title</a> in
<cite>manual</cite>
+<code>@ref{(pman)anode,,title,file name}</code> <a data-manual="file name"
href="file name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,,title,,manual}</code> <a data-manual="pman"
href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title, file name, manual}</code> <a data-manual="file
name" href="file name.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,,file name,manual}</code> <a data-manual="file name"
href="file name.html#anode">anode</a> in <cite>manual</cite>
+
+
+<code>@inforef{chapter, cross ref name, file name}</code> See <a
data-manual="file name" href="file name.html#chapter">(file name)cross ref
name</a>
+<code>@inforef{chapter}</code> See `chapter'
+<code>@inforef{chapter, cross ref name}</code> See `cross ref name'
+<code>@inforef{chapter,,file name}</code> See <a data-manual="file name"
href="file name.html#chapter">(file name)chapter</a>
+<code>@inforef{node, cross ref name, file name}</code> See <a
data-manual="file name" href="file name.html#node">(file name)cross ref name</a>
+<code>@inforef{node}</code> See `node'
+<code>@inforef{node, cross ref name}</code> See `cross ref name'
+<code>@inforef{node,,file name}</code> See <a data-manual="file name"
href="file name.html#node">(file name)node</a>
+<code>@inforef{chapter, cross ref name, file name, spurious arg}</code> See <a
data-manual="file name, spurious arg" href="file name, spurious
arg.html#chapter">(file name, spurious arg)cross ref name</a>
+
+<code>@inforef{s--ect@comma{}ion, a @comma{} in cross
+ref, a comma@comma{} in file}</code>
+See <a data-manual="a comma, in file" href="a comma, in
file.html#s_002d_002dect_002cion">(a comma, in file)a , in cross
+ref</a>
+
+‘<samp><a href="#chapter">chapter</a></samp>”.
+
+<a data-manual="info file with uref3 href://http/myhost.com/index3.html
(uref3)" href="index3.html (uref3).html#ext">title with uref2 <a
href="href://http/myhost.com/index2.html">uref2</a></a> in <cite>printed manual
with uref4 <a href="href://http/myhost.com/index4.html">uref4</a></cite>
+<a href="#chapter">title with uref2 <a
href="href://http/myhost.com/index2.html">uref2</a></a>
+
+</pre><dl compact="compact">
+<dt><span><tt><strong>a--strong</strong></tt></span></dt>
+<dd><pre class="example">l--ine
+</pre></dd>
+</dl>
+<pre class="example">
+
+</pre><dl compact="compact">
+<dt id='index-a_002d_002dasis-1'><span><tt>a--asis</tt><a
href='#index-a_002d_002dasis-1' class='copiable-anchor'> ¶</a></span></dt>
+<dt id='index-b-5'><span><tt>b</tt><a href='#index-b-5'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">l--ine
+</pre></dd>
+</dl>
+<pre class="example">
+
+</pre><dl compact="compact">
+<dt id='index-a-5'><span><tt><em>a</em></tt><a href='#index-a-5'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example"><span
id="index-index-entry-between-item-and-itemx-2"></span></pre></dd>
+<dt id='index-b-2'><span><tt><em>b</em></tt><a href='#index-b-2'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">l--ine
+</pre></dd>
+</dl>
+<pre class="example">
+
+</pre><dl compact="compact">
+<dd><pre class="example">Title
+</pre></dd>
+<dt><span><tt><code>a--code</code></tt></span></dt>
+<dd><pre class="example">Value--table code
+</pre></dd>
+</dl>
+<pre class="example">
+
+</pre><dl compact="compact">
+<dd><pre class="example">Title
+</pre></dd>
+<dt><span><tt>‘<samp>a--samp</samp>”</tt></span></dt>
+<dt><span><tt>‘<samp>a2--samp</samp>”</tt></span></dt>
+<dd><pre class="example">Value--table samp
+</pre></dd>
+</dl>
+<pre class="example">
+
+</pre><table class="cartouche" border="1"><tr><td>
+<pre class="example">c--artouche
+</pre></td></tr></table>
+<pre class="example">
+
+</pre><pre class="example">g--roupe
+</pre><pre class="example">
+
+</pre><pre class="example">f--lushleft
+more text
+</pre><pre class="example">
+
+</pre><pre class="example">f--lushright
+more text
+</pre><pre class="example">
+
+</pre><div align="center">ce--ntered line
+</div><pre class="example">
+
+</pre><pre class="example">r--raggedright
+more text
+</pre><pre class="example">
+
+</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">
+
+</pre><pre class="verbatim">in verbatim ''
+</pre><pre class="example">
+
+
+html ''
+
+
+
+
+</pre><span id="majorheading-3"></span><strong>majorheading</strong>
+<pre class="example">
+
+</pre><span id="chapheading-3"></span><strong>chapheading</strong>
+<pre class="example">
+
+</pre><span id="heading-3"></span><strong>heading</strong>
+<pre class="example">
+
+</pre><span id="subheading-3"></span><strong>subheading</strong>
+<pre class="example">
+
+</pre><span id="subsubheading-3"></span><strong>subsubheading</strong>
+<pre class="example">
+
+
+<code>@acronym{--a,an accronym @comma{} @enddots{}}</code> <acronym title="an
accronym , ...">--a</acronym> (an accronym , ...)
+<code>@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome} }</code> <abbr
title="Étude–, Autonome">É--. ,A.</abbr>
(Étude--, <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="Étude–,
Autonome">É--. ,A.</abbr>
+
+<code>@math{--a@minus{} {\frac{1}{2}}}</code> <em class='math'>--a−
{\frac{1}{2}}</em>
+
+<code>@image{f-ile,,,alt@verb{:jk _" %}}</code> <img src="f-ile.jpg"
alt="altjk _" %@">
+<code>@image{f--ile,aze,az,@verb{:jk _" %@:} @b{in b
"},e--xt}</code> <img src="f--ile.e--xt" alt="jk _" %@ in b "">
+<code>@image{file@verb{:jk _" %@:},,,alt@verb{:jk _" %@:}}</code>
<img src="filejk _" %@.jpg" alt="altjk _" %@">
+
+
+
+
+Somehow invalid use of @,:
+
+@, ̧
+
+
+@,@"u ̧ü
+
+Invalid use of @':
+
+@' ́
+
+
+@'@"u ́ü
+
+@dotless{truc} truc
+@dotless{ij} ij
+<code>@dotless{--a}</code> --a
+<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>@#</code> #
+
+<code>@w{--a}</code> --a<!-- /@w -->
+
+<code>@image{,1--xt}</code>
+<code>@image{,,2--xt}</code>
+<code>@image{,,,3--xt}</code>
+
+
+</pre><ul class="no-bullet">
+<li> <pre class="example">e--mph item
+</pre></li></ul>
+<pre class="example">
+
+</pre><ul class="no-bullet">
+<li> after emph <pre class="example">e--mph item
+</pre></li></ul>
+<pre class="example">
+
+</pre><ul class="no-bullet">
+<li>• a–n itemize line <pre class="example">i--tem 1
+</pre></li><li>• a–n itemize line <pre class="example">i--tem 2
+</pre></li></ul>
+<pre class="example">
+
+</pre><dl compact="compact">
+<dt><span><tt>a</tt></span></dt>
+<dd><pre class="example">l--ine
+</pre></dd>
+</dl>
+<pre class="example">
+
+</pre><dl compact="compact">
+<dt><span><tt>a--missing style formatting</tt></span></dt>
+<dd><pre class="example">l--ine
+</pre></dd>
+</dl>
+<pre class="example">
+
+</pre><dl compact="compact">
+<dt id='index-a-6'><span><tt>a</tt><a href='#index-a-6'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example"><span
id="index-index-entry-between-item-and-itemx-3"></span></pre></dd>
+<dt id='index-b-3'><span><tt>b</tt><a href='#index-b-3'
class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">l--ine
+</pre></dd>
+</dl>
+<pre class="example">
+
+</pre><dl class="def">
+<dt><span class="category">fun: </span><span><strong></strong></span></dt>
+<dt id="index-machin-8"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and</em><a
href='#index-machin-8' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-machin-9"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and after</em><a
href='#index-machin-9' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-machin-10"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and </em><a
href='#index-machin-10' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-machin-11"><span class="category">truc:
</span><span><strong>machin</strong> <em>bidule chose and and after</em><a
href='#index-machin-11' class='copiable-anchor'> ¶</a></span></dt>
+<dt id="index-followed-3"><span class="category">truc:
</span><span><strong>followed</strong> <em>by a comment</em><a
href='#index-followed-3' class='copiable-anchor'> ¶</a></span></dt>
+<dd><pre class="example">Various deff lines
+</pre></dd><dt id="index-after-1"><span class="category">truc:
</span><span><strong>after</strong> <em>a deff item</em><a
href='#index-after-1' class='copiable-anchor'> ¶</a></span></dt>
+</dl>
+<pre class="example">
+
+<code>@ref{node}</code> `node'
+
+<code>@ref{,cross ref name}</code> `cross ref name'
+<code>@ref{,,title}</code> `title'
+<code>@ref{,,,file name}</code> <a data-manual="file name" href="file
name.html#Top">(file name)</a>
+<code>@ref{,,,,manual}</code> <cite>manual</cite>
+<code>@ref{node,cross ref name}</code> `cross ref name'
+<code>@ref{node,,title}</code> `title'
+<code>@ref{node,,,file name}</code> <a data-manual="file name" href="file
name.html#node">(file name)node</a>
+<code>@ref{node,,,,manual}</code> `node' in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,}</code> `title'
+<code>@ref{node,cross ref name,,file name}</code> <a data-manual="file name"
href="file name.html#node">(file name)cross ref name</a>
+<code>@ref{node,cross ref name,,,manual}</code> `cross ref name' in
<cite>manual</cite>
+<code>@ref{node,cross ref name,title,file name}</code> <a data-manual="file
name" href="file name.html#node">(file name)title</a>
+<code>@ref{node,cross ref name,title,,manual}</code> `title' in
<cite>manual</cite>
+<code>@ref{node,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#node">title</a> in
<cite>manual</cite>
+<code>@ref{node,,title,file name}</code> <a data-manual="file name" href="file
name.html#node">(file name)title</a>
+<code>@ref{node,,title,,manual}</code> `title' in <cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a data-manual="file
name" href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{node,,title, file name, manual}</code> <a data-manual="file name"
href="file name.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,,file name,manual}</code> <a data-manual="file name"
href="file name.html#node">node</a> in <cite>manual</cite>
+<code>@ref{,cross ref name,title,}</code> `title'
+<code>@ref{,cross ref name,,file name}</code> <a data-manual="file name"
href="file name.html#Top">(file name)cross ref name</a>
+<code>@ref{,cross ref name,,,manual}</code> `cross ref name' in
<cite>manual</cite>
+<code>@ref{,cross ref name,title,file name}</code> <a data-manual="file name"
href="file name.html#Top">(file name)title</a>
+<code>@ref{,cross ref name,title,,manual}</code> `title' in <cite>manual</cite>
+<code>@ref{,cross ref name,title, file name, manual}</code> <a
data-manual="file name" href="file name.html#Top">title</a> in
<cite>manual</cite>
+<code>@ref{,,title,file name}</code> <a data-manual="file name" href="file
name.html#Top">(file name)title</a>
+<code>@ref{,,title,,manual}</code> `title' in <cite>manual</cite>
+<code>@ref{,,title, file name, manual}</code> <a data-manual="file name"
href="file name.html#Top">title</a> in <cite>manual</cite>
+<code>@ref{,,,file name,manual}</code> <cite><a data-manual="file name"
href="file name.html#Top">manual</a></cite>
+
+<code>@inforef{,cross ref name }</code> See `cross ref name'
+<code>@inforef{,,file name}</code> See <a data-manual="file name" href="file
name.html#Top">(file name)</a>
+<code>@inforef{,cross ref name, file name}</code> See <a data-manual="file
name" href="file name.html#Top">(file name)cross ref name</a>
+<code>@inforef{}</code>
+
+
+</pre></div>
+
+<span id="index-t_002d_002druc"></span>
+<span id="index-T_002d_002druc"></span>
+<span id="index-_002e"></span>
+<span id="index-_003f"></span>
+<span id="index-a"></span>
+<span id="index-t_002d_002druc-1"></span>
+<span id="index-T_002d_002druc-1"></span>
+<span id="index-_002e-1"></span>
+<span id="index-_003f-1"></span>
+<span id="index-a-7"></span>
+
+<span id="index-a_002d_002d_002da"></span>
+<span id="index-b_002d_002d_002db"></span>
+<span id="index-d_002d_002d_002ddd"></span>
+<span id="index-g_002d_002d_002dgg"></span>
+
+<span id="index-f_002d_002d_002daa"></span>
+<span id="index-f_002d_002d_002dbb"></span>
+<span id="index-f_002d_002d_002dddd"></span>
+<span id="index-f_002d_002d_002dggg"></span>
+
+
+
+<span id="index-aaa"></span>
+
+<span id="index-xxx"></span>
+
+<span id="index-"></span>
+
+<span id="index-a-index_002d_002d_002dentry-te-_002d_002d_002d-i"></span>
+
+<span id="index-truc-4"></span>
+
+
+<p>Text<a id="DOCF9" href="#FOOT9"><sup>11</sup></a>
+</p>
+<p>truc
+</p>
+<table><tr><th valign="top">Jump to:   </th><td><a class="summary-letter"
href="#chapter-1_truc_letter-T"><b>T</b></a>
+  
+</td></tr></table>
+<table class="index-truc" border="0">
+<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left">
Section</th></tr>
+<tr><td colspan="4"> <hr></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"> <hr></td></tr>
+</table>
+<table><tr><th valign="top">Jump to:   </th><td><a class="summary-letter"
href="#chapter-1_truc_letter-T"><b>T</b></a>
+  
+</td></tr></table>
+
+<p>codeidx
+</p>
+<table><tr><th valign="top">Jump to:   </th><td><a class="summary-letter"
href="#chapter-1_codeidx_letter-A"><b>A</b></a>
+  
+</td></tr></table>
+<table class="index-codeidx" border="0">
+<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left">
Section</th></tr>
+<tr><td colspan="4"> <hr></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>index---entry</var> tẽ --- î</code></a></td><td> </td><td
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+</table>
+<table><tr><th valign="top">Jump to:   </th><td><a class="summary-letter"
href="#chapter-1_codeidx_letter-A"><b>A</b></a>
+  
+</td></tr></table>
+
+<p>cp
+</p><table><tr><th valign="top">Jump to:   </th><td><a
class="summary-letter" href="#chapter-1_cp_symbol-1"><b>"</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_symbol-2"><b>-</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_symbol-3"><b>.</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_symbol-4"><b>?</b></a>
+  
+<br>
+<a class="summary-letter" href="#chapter-1_cp_letter-A"><b>A</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_letter-B"><b>B</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_letter-C"><b>C</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_letter-D"><b>D</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_letter-G"><b>G</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_letter-I"><b>I</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_letter-T"><b>T</b></a>
+  
+</td></tr></table>
+<table class="index-cp" border="0">
+<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left">
Section</th></tr>
+<tr><td colspan="4"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></td></tr>
+</table>
+<table><tr><th valign="top">Jump to:   </th><td><a class="summary-letter"
href="#chapter-1_cp_symbol-1"><b>"</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_symbol-2"><b>-</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_symbol-3"><b>.</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_symbol-4"><b>?</b></a>
+  
+<br>
+<a class="summary-letter" href="#chapter-1_cp_letter-A"><b>A</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_letter-B"><b>B</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_letter-C"><b>C</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_letter-D"><b>D</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_letter-G"><b>G</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_letter-I"><b>I</b></a>
+  
+<a class="summary-letter" href="#chapter-1_cp_letter-T"><b>T</b></a>
+  
+</td></tr></table>
+
+<p>fn
+</p><table><tr><th valign="top">Jump to:   </th><td><a
class="summary-letter" href="#chapter-1_fn_symbol-1"><b>-</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_symbol-2"><b>.</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_symbol-3"><b>?</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_symbol-4"><b>`</b></a>
+  
+<br>
+<a class="summary-letter" href="#chapter-1_fn_letter-A"><b>A</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-B"><b>B</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-D"><b>D</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-F"><b>F</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-I"><b>I</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-L"><b>L</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-M"><b>M</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-N"><b>N</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-T"><b>T</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-X"><b>X</b></a>
+  
+</td></tr></table>
+<table class="index-fn" border="0">
+<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left">
Section</th></tr>
+<tr><td colspan="4"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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>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>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>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>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>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>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>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>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>id
‘<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>id
‘<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>id
‘<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>id
‘<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>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>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>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>id
ule</b></code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
+<tr><td colspan="4"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></td></tr>
+</table>
+<table><tr><th valign="top">Jump to:   </th><td><a class="summary-letter"
href="#chapter-1_fn_symbol-1"><b>-</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_symbol-2"><b>.</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_symbol-3"><b>?</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_symbol-4"><b>`</b></a>
+  
+<br>
+<a class="summary-letter" href="#chapter-1_fn_letter-A"><b>A</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-B"><b>B</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-D"><b>D</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-F"><b>F</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-I"><b>I</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-L"><b>L</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-M"><b>M</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-N"><b>N</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-T"><b>T</b></a>
+  
+<a class="summary-letter" href="#chapter-1_fn_letter-X"><b>X</b></a>
+  
+</td></tr></table>
+
+<p>vr
+</p>
+<p>ky
+</p>
+<p>pg
+</p>
+<p>tp
+</p><table><tr><th valign="top">Jump to:   </th><td><a
class="summary-letter" href="#chapter-1_tp_letter-D"><b>D</b></a>
+  
+</td></tr></table>
+<table class="index-tp" border="0">
+<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left">
Section</th></tr>
+<tr><td colspan="4"> <hr></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"> <hr></td></tr>
+</table>
+<table><tr><th valign="top">Jump to:   </th><td><a class="summary-letter"
href="#chapter-1_tp_letter-D"><b>D</b></a>
+  
+</td></tr></table>
+
+
+
+<p><a 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>:: s–ect,ion
+</pre><pre class="menu-comment">
+
+Menu comment
+“simple-double–three—four—-”
+
+
+</pre></td></tr></table>
+</div>
+
+<hr>
+<div class="section" id="s_002d_002dect_002cion">
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#chapter" title="Beginning of
this chapter or previous chapter"> << </a>]</td>
+<td valign="middle" align="left">[<a href="#chapter" title="Previous section
in reading order"> < </a>]</td>
+<td valign="middle" align="left">[<a href="#chapter" title="Up section"> Up
</a>]</td>
+<td valign="middle" align="left">[<a href="#subsection" title="Next section in
reading order"> > </a>]</td>
+<td valign="middle" align="left">[<a href="#chapter2" title="Next chapter">
>> </a>]</td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#chapter"
title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ?
</a>]</td>
+</tr></table>
+<span id="A-section"></span><h2 class="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">
+
+</pre></th></tr><tr><th colspan="3" align="left" valign="top"><pre
class="menu-comment">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>
+
+<hr>
+<div class="subsection" id="subsection">
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#chapter" title="Beginning of
this chapter or previous chapter"> << </a>]</td>
+<td valign="middle" align="left">[<a href="#s_002d_002dect_002cion"
title="Previous section in reading order"> < </a>]</td>
+<td valign="middle" align="left">[<a href="#s_002d_002dect_002cion" title="Up
section"> Up </a>]</td>
+<td valign="middle" align="left">[<a
href="#subsubsection-_0060_0060simple_002ddouble_002d_002d" title="Next section
in reading order"> > </a>]</td>
+<td valign="middle" align="left">[<a href="#chapter2" title="Next chapter">
>> </a>]</td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#chapter"
title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ?
</a>]</td>
+</tr></table>
+<span id="subsection-1"></span><h3 class="subsection">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>
+
+<span id="anchor"></span>
+<hr>
+<div class="subsubsection"
id="subsubsection-_0060_0060simple_002ddouble_002d_002d">
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#chapter" title="Beginning of
this chapter or previous chapter"> << </a>]</td>
+<td valign="middle" align="left">[<a href="#subsection" title="Previous
section in reading order"> < </a>]</td>
+<td valign="middle" align="left">[<a href="#subsection" title="Up section"> Up
</a>]</td>
+<td valign="middle" align="left">[<a
href="#subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027"
title="Next section in reading order"> > </a>]</td>
+<td valign="middle" align="left">[<a href="#chapter2" title="Next chapter">
>> </a>]</td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#chapter"
title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ?
</a>]</td>
+</tr></table>
+<span id="subsubsection-_0060_0060simple_002ddouble_002d_002d-1"></span><h4
class="subsubsection">1.1.1.1 subsubsection “simple-double–</h4>
+
+<hr>
+</div>
+<div class="subsubsection"
id="subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027">
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#chapter" title="Beginning of
this chapter or previous chapter"> << </a>]</td>
+<td valign="middle" align="left">[<a
href="#subsubsection-_0060_0060simple_002ddouble_002d_002d" title="Previous
section in reading order"> < </a>]</td>
+<td valign="middle" align="left">[<a href="#subsection" title="Up section"> Up
</a>]</td>
+<td valign="middle" align="left">[<a href="#chapter2" title="Next section in
reading order"> > </a>]</td>
+<td valign="middle" align="left">[<a href="#chapter2" title="Next chapter">
>> </a>]</td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#chapter"
title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ?
</a>]</td>
+</tr></table>
+<span id="three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027"></span><h4
class="subsubsection">1.1.1.2 three—four—-”</h4>
+
+<hr>
+</div>
+</div>
+</div>
+</div>
+<div class="centerchap" id="chapter2">
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#chapter" title="Beginning of
this chapter or previous chapter"> << </a>]</td>
+<td valign="middle" align="left">[<a
href="#subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027"
title="Previous section in reading order"> < </a>]</td>
+<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up
</a>]</td>
+<td valign="middle" align="left">[ > ]</td>
+<td valign="middle" align="left">[ >> ]</td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">   </td>
+<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#chapter"
title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ?
</a>]</td>
+</tr></table>
+<span id="chapter-2"></span><h1 class="centerchap" align="center">chapter
2</h1>
+
+<table><tr><th valign="top">Jump to:   </th><td><a class="summary-letter"
href="#chapter-2_cp_symbol-1"><b>"</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_symbol-2"><b>-</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_symbol-3"><b>.</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_symbol-4"><b>?</b></a>
+  
+<br>
+<a class="summary-letter" href="#chapter-2_cp_letter-A"><b>A</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_letter-B"><b>B</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_letter-C"><b>C</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_letter-D"><b>D</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_letter-G"><b>G</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_letter-I"><b>I</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_letter-T"><b>T</b></a>
+  
+</td></tr></table>
+<table class="index-cp" border="0">
+<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left">
Section</th></tr>
+<tr><td colspan="4"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></td></tr>
+</table>
+<table><tr><th valign="top">Jump to:   </th><td><a class="summary-letter"
href="#chapter-2_cp_symbol-1"><b>"</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_symbol-2"><b>-</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_symbol-3"><b>.</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_symbol-4"><b>?</b></a>
+  
+<br>
+<a class="summary-letter" href="#chapter-2_cp_letter-A"><b>A</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_letter-B"><b>B</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_letter-C"><b>C</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_letter-D"><b>D</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_letter-G"><b>G</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_letter-I"><b>I</b></a>
+  
+<a class="summary-letter" href="#chapter-2_cp_letter-T"><b>T</b></a>
+  
+</td></tr></table>
+<table><tr><th valign="top">Jump to:   </th><td><a class="summary-letter"
href="#chapter-2_fn_symbol-1"><b>-</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_symbol-2"><b>.</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_symbol-3"><b>?</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_symbol-4"><b>`</b></a>
+  
+<br>
+<a class="summary-letter" href="#chapter-2_fn_letter-A"><b>A</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-B"><b>B</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-D"><b>D</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-F"><b>F</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-I"><b>I</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-L"><b>L</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-M"><b>M</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-N"><b>N</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-T"><b>T</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-X"><b>X</b></a>
+  
+</td></tr></table>
+<table class="index-fn" border="0">
+<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left">
Section</th></tr>
+<tr><td colspan="4"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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>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>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>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>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>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>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>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>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>id
‘<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>id
‘<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>id
‘<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>id
‘<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>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>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>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>id
ule</b></code></a></td><td> </td><td valign="top"><a href="#chapter">1
chapter</a></td></tr>
+<tr><td colspan="4"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></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"> <hr></td></tr>
+</table>
+<table><tr><th valign="top">Jump to:   </th><td><a class="summary-letter"
href="#chapter-2_fn_symbol-1"><b>-</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_symbol-2"><b>.</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_symbol-3"><b>?</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_symbol-4"><b>`</b></a>
+  
+<br>
+<a class="summary-letter" href="#chapter-2_fn_letter-A"><b>A</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-B"><b>B</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-D"><b>D</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-F"><b>F</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-I"><b>I</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-L"><b>L</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-M"><b>M</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-N"><b>N</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-T"><b>T</b></a>
+  
+<a class="summary-letter" href="#chapter-2_fn_letter-X"><b>X</b></a>
+  
+</td></tr></table>
+
+<hr size="6">
+</div>
+</div>
+<div class="Footnotes_element" id="SEC_Foot">
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#chapter"
title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ?
</a>]</td>
+</tr></table>
+<h1 class="footnotes-heading">Footnotes</h1>
+
+<h5><a id="FOOT3" href="#DOCF3">(1)</a></h5>
+<p>in footnote</p>
+<h5><a id="FOOT4" href="#DOCF4">(2)</a></h5>
+<p>in footnote2</p>
+<h5><a id="FOOT1" href="#DOCF1">(3)</a></h5>
+<p>in footnote</p>
+<h5><a id="FOOT2" href="#DOCF2">(4)</a></h5>
+<p>in footnote2</p>
+<h5><a id="FOOT1_5" href="#DOCF1_5">(5)</a></h5>
+<p>in footnote</p>
+<h5><a id="FOOT2_6" href="#DOCF2_6">(6)</a></h5>
+<p>in footnote2</p>
+<h5><a id="FOOT5" href="#DOCF5">(7)</a></h5>
+<p>in footnote</p>
+<h5><a id="FOOT6" href="#DOCF6">(8)</a></h5>
+<p>in footnote2</p>
+<h5><a id="FOOT7" href="#DOCF7">(9)</a></h5>
+<p>in footnote</p>
+<h5><a id="FOOT8" href="#DOCF8">(10)</a></h5>
+<p>in footnote2</p>
+<h5><a id="FOOT9" href="#DOCF9">(11)</a></h5>
+<p>in footnote
+<span id="index-index-entry-in-footnote"></span>
+</p>
+<p>Blah
+</p>
+<p>Blih
+</p>
+<span id="index-counting-entry"></span>
+<h5><a id="FOOT10" href="#DOCF10">(12)</a></h5>
+<p>in footnote</p>
+</div><hr>
+<div class="Contents_element" id="SEC_Contents">
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#chapter"
title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ?
</a>]</td>
+</tr></table>
+<h1 class="contents-heading">Table of Contents</h1>
+
+<div class="contents">
+
+<ul class="no-bullet">
+ <li><a id="toc-chapter-1" href="#chapter" rel="index">1 chapter</a>
+ <ul class="no-bullet">
+ <li><a id="toc-A-section" href="#s_002d_002dect_002cion">1.1 A section</a>
+ <ul class="no-bullet">
+ <li><a id="toc-subsection-1" href="#subsection">1.1.1 subsection</a>
+ <ul class="no-bullet">
+ <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><hr>
+<div class="Overview_element" id="SEC_Overview">
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#chapter"
title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ?
</a>]</td>
+</tr></table>
+<h1 class="shortcontents-heading">Short Table of Contents</h1>
+
+<div class="shortcontents">
+<ul class="no-bullet">
+<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><hr>
+<div class="About_element" id="SEC_About">
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#chapter"
title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ?
</a>]</td>
+</tr></table>
+<h1 class="about-heading">About This Document</h1>
+
+<p>
+ This document was generated on <em>a sunny day</em> using <a
href="http://www.gnu.org/software/texinfo/"><em>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> Example </strong> assumes that the current position is at
<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><hr>
+<p><font size="-1">
+ This document was generated on <em>a sunny day</em> using <a
href="http://www.gnu.org/software/texinfo/"><em>texi2any</em></a>.
+</font></p>
+
+
+</body>
+</html>
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * doc/texinfo.texi (Other Customization Variables), tp/Texinfo/Convert/HTML.pm (non_breaking_space) (substitute_non_breaking_space, %BUTTONS_EXAMPLE) (%defaults, _indent_with_table, _set_non_breaking_space) (converter_initialize, _default_format_special_element_body): use numeric entities everywhere in HTML if USE_NUMERIC_ENTITY is set. Use functions to set and get the non breaking space entity. Set OPEN_QUOTE_SYMBOL CLOSE_QUOTE_SYMBOL and MENU_SYMBOL to undef in the default case, to set [...],
Patrice Dumas <=