texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: * tp/init/epub3.pm: conversion to epub 3.2.


From: Patrice Dumas
Subject: branch master updated: * tp/init/epub3.pm: conversion to epub 3.2.
Date: Thu, 23 Dec 2021 15:38:53 -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 b324bb9  * tp/init/epub3.pm: conversion to epub 3.2.
b324bb9 is described below

commit b324bb952ac9231c1a37d2c8837b2b5e6b8eb6f2
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Thu Dec 23 21:36:16 2021 +0100

    * tp/init/epub3.pm: conversion to epub 3.2.
---
 ChangeLog                                          |    4 +
 tp/init/epub3.pm                                   |  586 ++
 tp/tests/layout/list-of-tests                      |    4 +-
 .../layout/res_parser/formatting_epub/formatting.1 |    0
 .../layout/res_parser/formatting_epub/formatting.2 |  314 +
 .../formatting_epub_package/EPUB/formatting.opf    |   29 +
 .../EPUB/images/f--ile.e--xt                       |    0
 .../formatting_epub_package/EPUB/images/f--ile.png |    0
 .../EPUB/xhtml/formatting.xhtml                    | 7063 ++++++++++++++++++++
 .../EPUB/xhtml/nav_toc.xhtml                       |   27 +
 .../formatting_epub_package/META-INF/container.xml |    7 +
 .../formatting_epub_package/mimetype               |    1 +
 .../res_parser/formatting_epub_nodes/formatting.1  |    0
 .../res_parser/formatting_epub_nodes/formatting.2  |  314 +
 .../formatting_epub_package/EPUB/formatting.opf    |   29 +
 .../EPUB/images/f--ile.e--xt                       |    0
 .../formatting_epub_package/EPUB/images/f--ile.png |    0
 .../EPUB/xhtml/chapter.xhtml                       | 4496 +++++++++++++
 .../EPUB/xhtml/chapter2.xhtml                      | 1303 ++++
 .../EPUB/xhtml/formatting.xhtml                    | 2792 ++++++++
 .../EPUB/xhtml/formatting_abt.xhtml                |  917 +++
 .../EPUB/xhtml/formatting_fot.xhtml                |  848 +++
 .../EPUB/xhtml/formatting_ovr.xhtml                |  823 +++
 .../EPUB/xhtml/formatting_toc.xhtml                |  834 +++
 .../EPUB/xhtml/nav_toc.xhtml                       |   27 +
 .../EPUB/xhtml/s_002d_002dect_002cion.xhtml        |  831 +++
 .../EPUB/xhtml/subsection.xhtml                    |  826 +++
 ...ion-_0060_0060simple_002ddouble_002d_002d.xhtml |  818 +++
 ...2d_002dfour_002d_002d_002d_002d_0027_0027.xhtml |  818 +++
 .../formatting_epub_package/META-INF/container.xml |    7 +
 .../formatting_epub_package/mimetype               |    1 +
 tp/tests/test_scripts/layout_formatting_epub.sh    |   19 +
 .../test_scripts/layout_formatting_epub_nodes.sh   |   19 +
 33 files changed, 23756 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 75ccf25..58ae310 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,10 @@
 
 2021-12-23  Patrice Dumas  <pertusus@free.fr>
 
+       * tp/init/epub3.pm: conversion to epub 3.2.
+
+2021-12-23  Patrice Dumas  <pertusus@free.fr>
+
        * doc/texinfo.texi (@code{@@format}): add missing protection
        or { and } in @format example.
 
diff --git a/tp/init/epub3.pm b/tp/init/epub3.pm
new file mode 100644
index 0000000..1a9826f
--- /dev/null
+++ b/tp/init/epub3.pm
@@ -0,0 +1,586 @@
+# -*-perl-*-
+
+# epub3.pm: setup an EPUB publication
+#
+#    Copyright 2021 Free Software Foundation, Inc.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License,
+# or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+# Originally written by Patrice Dumas.
+#
+# Note that OUTFILE is used for the epub file, but it is reset for
+# the conversion to XHTML.
+#
+# TODO:
+# set up a cover with @titlepage?
+# is the mini_toc relevant?
+# what about node directions?
+# use the navigation information as a page instead of texi2any generated TOC?
+# separate TOC after titlepage?
+# indices?
+# cross manual references?
+# list of tables/list of floats
+
+use strict;
+
+use File::Path;
+use File::Spec;
+use File::Copy;
+
+# AZ_OK is used
+use Archive::Zip qw( :ERROR_CODES :CONSTANTS );
+
+use Texinfo::Common;
+
+my $epub_format_version = '3.2';
+
+# used in tests to avoid creating the .epub file.
+texinfo_add_valid_customization_option('EPUB_CREATE_CONTAINER');
+texinfo_set_from_init_file('EPUB_CREATE_CONTAINER', 1);
+
+texinfo_set_format_from_init_file('html');
+
+# output valid XHTML
+texinfo_set_from_init_file('HTML_ROOT_ELEMENT_ATTRIBUTES',
+                           'xmlns="http://www.w3.org/1999/xhtml";');
+texinfo_set_from_init_file('NO_CUSTOM_HTML_ATTRIBUTE', 1);
+texinfo_set_from_init_file('USE_XML_SYNTAX', 1);
+texinfo_set_from_init_file('DOCTYPE', '<?xml version="1.0" 
encoding="UTF-8"?>'."\n"
+                                      .'<!DOCTYPE html>');
+texinfo_set_from_init_file('USE_NUMERIC_ENTITY', 1);
+
+# this is for the XHTML formatting, the .epub extension is
+# also used hardcoded for the container.
+texinfo_set_from_init_file('EXTENSION', 'xhtml');
+
+texinfo_set_from_init_file('TOP_FILE', undef);
+# no redirections files
+texinfo_set_from_init_file('NODE_FILES', 0);
+
+my $epub_images_dir_name = 'images';
+texinfo_set_from_init_file('IMAGE_LINK_PREFIX', "../${epub_images_dir_name}/");
+
+#texinfo_set_from_init_file('contents', 1);
+
+texinfo_set_from_init_file('DEFAULT_RULE', '');
+texinfo_set_from_init_file('BIG_RULE', '');
+texinfo_set_from_init_file('HEADERS', 0);
+
+texinfo_register_formatting_function('format_navigation_header', \&epub_noop);
+texinfo_register_formatting_function('format_navigation_header_panel', 
\&epub_noop);
+
+texinfo_register_command_formatting('image', \&epub_convert_image_command);
+
+texinfo_register_type_formatting('unit', \&epub_convert_tree_unit_type);
+
+my %epub_images_extensions_mimetypes = (
+  '.png' =>  ' image/png',
+  '.jpg' => 'image/jpeg',
+  '.jpeg' => 'image/jpeg',
+  '.gif' => 'image/gif',
+);
+
+sub _epub_convert_tree_to_text($$;$)
+{
+  my $converter = shift;
+  my $tree = shift;
+  my $options = shift;
+
+  $options = {} if (!defined($options));
+
+  return $converter->protect_text(
+    Texinfo::Convert::Text::convert_to_text($tree,
+   {Texinfo::Convert::Text::copy_options_for_convert_text($converter),
+     %$options}));
+}
+
+sub epub_noop($$)
+{
+  return '';
+}
+
+# file scope variables
+my $epub_destination_directory;
+my $epub_document_destination_directory; 
+
+my $epub_document_dir_name = 'EPUB';
+
+my %epub_images;
+
+# collect and copy images
+# FIXME if the file is given by a path, the path will be included in the
+# destination too, but the directory path will not be created, so it
+# will fail.
+sub epub_convert_image_command($$$$)
+{
+  my $self = shift;
+  my $cmdname = shift;
+  my $command = shift;
+  my $args = shift;
+
+  my $result = &{$self->default_commands_conversion($cmdname)}($self,
+                                                 $cmdname, $command, $args);
+
+  my ($image_file, $image_basefile, $image_extension, $image_path)
+      = $self->html_image_file_location_name($cmdname, $command, $args);
+  if (defined($image_file)) {
+    if (not defined($image_path)) {
+      $self->document_error($self,
+            sprintf(__("\@image file `%s' can not be copied"),
+                   $image_basefile));
+    } else {
+      my $images_destination_dir
+               = File::Spec->catdir($epub_destination_directory,
+                                    $epub_document_dir_name, 
$epub_images_dir_name);
+      if (! -d $images_destination_dir) {
+        if (!mkdir($images_destination_dir, oct(755))) {
+          $self->document_error($self, sprintf(__(
+                                 "could not create directory `%s': %s"),
+                                         $images_destination_dir, $!));
+          return $result;
+        }
+      }
+      my $image_destination_path = File::Spec->catfile($images_destination_dir,
+                                                       $image_file);
+      my $copy_succeeded = copy($image_path, $image_destination_path);
+      if (not $copy_succeeded) {
+        $self->document_error($self, sprintf(__(
+                            "could not copy `%s' to `%s': %s"),
+                            $image_path, $image_destination_path, $!));
+      }
+      $epub_images{$image_file} = $image_extension;
+    }
+  }
+  return $result;
+}
+
+my @epub_output_filenames;
+# collect filenames in units order
+sub epub_convert_tree_unit_type($$$$)
+{
+  my $self = shift;
+  my $type = shift;
+  my $element = shift;
+  my $content = shift;
+
+  push @epub_output_filenames, $element->{'filename'};
+  return &{$self->default_types_conversion($type)}($self,
+                                      $type, $element, $content);
+}
+
+my $epub_xhtml_dir = 'xhtml';
+# should not clash with generated files.  Could clash with
+# OUTFILE but it is explicitly handled.
+my $default_nav_filename = 'nav_toc.xhtml';
+my $nav_filename;
+
+my $epub_outfile;
+
+sub epub_setup($)
+{
+  my $self = shift;
+
+  @epub_output_filenames = ();
+  %epub_images = ();
+  $nav_filename = $default_nav_filename;
+  
+  # determine main epub directory and directory for xhtml files,
+  # reset OUTFILE and SUBDIR to match with the epub directory
+  # for XHTML output
+  
+  if (defined($self->get_conf('OUTFILE'))) {
+    $epub_outfile = $self->get_conf('OUTFILE');
+    # if not undef, will be used as directory name in
+    # determine_files_and_directory() which does not make sense
+    if ($self->get_conf('SPLIT')) {
+      $self->force_conf('OUTFILE', undef);
+    }
+  }
+  my ($output_file, $destination_directory, $output_filename,
+              $document_name) = $self->determine_files_and_directory();
+  if (not defined($epub_outfile)) {
+    $epub_outfile = ${document_name}.'.epub';
+  }
+  # the $epub_destination_directory is removed automatically,
+  # so we try to set it to a directory that the user would not create
+  # nor populate with files.
+  if (defined($self->get_conf('SUBDIR'))) {
+    $epub_destination_directory = File::Spec->catdir($self->get_conf('SUBDIR'),
+                                          $document_name . '_epub_package');
+  } elsif ($self->get_conf('SPLIT')) {
+    $epub_destination_directory = $destination_directory . '_epub_package';
+  } else {
+    $epub_destination_directory = $document_name . '_epub_package';
+  }
+  $epub_document_destination_directory
+             = File::Spec->catdir($epub_destination_directory,
+                                  $epub_document_dir_name, $epub_xhtml_dir);
+  # set for XHTML conversion
+  if ($self->get_conf('SPLIT')) {
+    $self->force_conf('SUBDIR', $epub_document_destination_directory);
+    $self->force_conf('OUTFILE', undef);
+  } else {
+    my $xhtml_output_file = $document_name;
+    $xhtml_output_file .= '.'.$self->get_conf('EXTENSION')
+        if (defined($self->get_conf('EXTENSION'))
+            and $self->get_conf('EXTENSION') ne '');
+    # to avoid a clash with nav file name
+    if ($xhtml_output_file eq $default_nav_filename) {
+      $nav_filename = 'Gtexinfo_' . $default_nav_filename;
+    }
+    $self->force_conf('OUTFILE',
+     File::Spec->catfile($epub_document_destination_directory, 
$xhtml_output_file));
+  }
+  my $err_remove_tree;
+  File::Path::remove_tree($epub_destination_directory,
+                          {'error' => $err_remove_tree});
+  if ($err_remove_tree and scalar(@$err_remove_tree)) {
+    for my $diag (@$err_remove_tree) {
+      my ($file, $message) = %$diag;
+      if ($file eq '') {
+        $self->document_error($self,
+           sprintf(__("error removing directory: %s: %s"),
+                   $epub_destination_directory, $message));
+      }
+      else {
+        $self->document_error($self,
+          sprintf(__("error removing directory: %s: unlinking %s: %s"),
+                  $epub_destination_directory, $file, $message));
+      }
+    }
+    return 0;
+  }
+  my $err_make_path;
+  File::Path::make_path($epub_document_destination_directory,
+                        {'mode' => 0755, 'error' => $err_make_path});
+  if ($err_make_path and scalar(@$err_make_path)) {
+    for my $diag (@$err_make_path) {
+      my ($file, $message) = %$diag;
+      if ($file eq '') {
+        $self->document_error($self,
+           sprintf(__("error creating directory: %s: %s"),
+                  $epub_document_destination_directory, $message));
+      }
+      else {
+        $self->document_error($self,
+          sprintf(__("error creating directory: %s: creating %s: %s"),
+                 $epub_document_destination_directory, $file, $message));
+      }
+    }
+    return 0;
+  }
+  return 1;
+}
+
+texinfo_register_handler('setup', \&epub_setup);
+
+# need to be after tree units and images conversion
+sub epub_finish($$)
+{
+  my $self = shift;
+  my $document_root = shift;
+
+  if (scalar(@epub_output_filenames) == 0) {
+    if (defined($self->{'filename'})) {
+      push @epub_output_filenames, $self->{'filename'};
+    } else {
+      $self->document_warn($self,
+        __("epub: no filename output"));
+    }
+  }
+
+  my $meta_inf_directory_name = 'META-INF';
+  my $meta_inf_directory = File::Spec->catdir($epub_destination_directory,
+                                              $meta_inf_directory_name);
+  if (!mkdir($meta_inf_directory, oct(755))) {
+    $self->document_error($self, sprintf(__(
+                                 "could not create directory `%s': %s"),
+                                         $meta_inf_directory, $!));
+    return 0;
+  }
+  my $container_file = File::Spec->catfile($meta_inf_directory,
+                                           'container.xml');
+  my $container_fh = Texinfo::Common::output_files_open_out(
+               $self->output_files_information(), $self, $container_file,
+               undef, 'utf-8');
+  if (!defined($container_fh)) {
+    $self->document_error($self,
+         sprintf(__("epub3.pm: could not open %s for writing: %s\n"),
+                  $container_file, $!));
+    return 0;
+  }
+  my $document_name = $self->{'document_name'};
+  my $opf_filename = $document_name . '.opf';
+  print $container_fh <<EOT;
+<?xml version="1.0"?>
+<container version="1.0" 
xmlns="urn:oasis:names:tc:opendocument:xmlns:container">
+    <rootfiles>
+        <rootfile full-path="${epub_document_dir_name}/${opf_filename}"
+            media-type="application/oebps-package+xml" />      
+    </rootfiles>
+</container>
+EOT
+
+  Texinfo::Common::output_files_register_closed(
+    $self->output_files_information(), $container_file);
+  if (!close ($container_fh)) {
+    $self->document_error($self,
+         sprintf(__("epub3.pm: error on closing %s: %s"),
+                          $container_file, $!));
+    return 0;
+  }
+
+  my $mimetype_filename = 'mimetype';
+  my $mimetype_file = File::Spec->catfile($epub_destination_directory,
+                                          $mimetype_filename);
+  my $mimetype_fh = Texinfo::Common::output_files_open_out(
+               $self->output_files_information(), $self, $mimetype_file,
+               undef, 'utf-8');
+  if (!defined($mimetype_fh)) {
+    $self->document_error($self,
+         sprintf(__("epub3.pm: could not open %s for writing: %s\n"),
+                  $mimetype_file, $!));
+    return 0;
+  }
+  print $mimetype_fh 'application/epub+zip'."\n";
+
+  Texinfo::Common::output_files_register_closed(
+    $self->output_files_information(), $mimetype_file);
+  if (!close ($mimetype_fh)) {
+    $self->document_error($self,
+         sprintf(__("epub3.pm: error on closing %s: %s"),
+                          $mimetype_file, $!));
+    return 0;
+  }
+  my $nav_file;
+  my $title = _epub_convert_tree_to_text($self, $self->{'title_tree'});
+  if ($self->{'structuring'} and $self->{'structuring'}->{'sectioning_root'}) {
+    $nav_file = File::Spec->catfile($epub_document_destination_directory,
+                                           $nav_filename);
+    my $nav_fh = Texinfo::Common::output_files_open_out(
+                 $self->output_files_information(), $self, $nav_file,
+                 undef, 'utf-8');
+    if (!defined($nav_fh)) {
+      $self->document_error($self,
+           sprintf(__("epub3.pm: could not open %s for writing: %s\n"),
+                    $nav_file, $!));
+      return 0;
+    }
+    my $table_of_content_str = _epub_convert_tree_to_text($self,
+                                             $self->gdt('Table of contents'));
+    my $nav_file_title = $title.' - '.$table_of_content_str;
+    print $nav_fh <<EOT;
+<?xml version="1.0" encoding="utf-8"?>
+<html xmlns="http://www.w3.org/1999/xhtml"; 
xmlns:epub="http://www.idpf.org/2007/ops";>
+<head>
+<meta charset="utf-8" />
+<title>$nav_file_title</title>
+</head>
+<body>
+<nav epub:type="toc">
+<h1>$table_of_content_str</h1>
+EOT
+
+    # similar code as in chm.pm
+    my $section_root = $self->{'structuring'}->{'sectioning_root'};
+    my $upper_level = $section_root->{'section_childs'}->[0]->{'level'};
+    foreach my $top_section(@{$section_root->{'section_childs'}}) {
+      $upper_level = $top_section->{'level'}
+      if ($top_section->{'level'} < $upper_level);
+    }
+    $upper_level = 1 if ($upper_level <= 0);
+    my $root_level = $upper_level - 1;
+    my $level = $root_level;
+    foreach my $section (@{$self->{'structuring'}->{'sections_list'}}) {
+      next if ($section->{'cmdname'} eq 'part');
+      my $section_level = $section->{'level'};
+      $section_level = 1 if ($section_level == 0);
+      if ($level < $section_level) {
+        while ($level < $section_level) {
+          print $nav_fh "<ol>\n";
+          $level++;
+        }
+      } elsif ($level > $section->{'level'}) {
+        while ($level > $section_level) {
+          print $nav_fh "</ol>\n";
+          $level--;
+        }
+      }
+      my $text = _epub_convert_tree_to_text($self, $section->{'args'}->[0]);
+      $text = Texinfo::Convert::Utils::numbered_heading($self, $section, $text,
+                          $self->get_conf('NUMBER_SECTIONS'));
+      my $file = $self->command_filename($section);
+      my $anchor = $self->command_target($section);
+      my $origin_href = "$file#$anchor";
+      print $nav_fh "<li><a href=\"$origin_href\">$text</a></li>\n";
+    }
+    while ($level > $root_level) {
+      print $nav_fh "</ol>\n";
+      $level--;
+    }
+
+    print $nav_fh '</nav>'."\n";
+    # TODO add landmarks?
+    print $nav_fh '</body>'."\n".'</html>'."\n";
+
+    Texinfo::Common::output_files_register_closed(
+      $self->output_files_information(), $nav_file);
+    if (!close ($nav_fh)) {
+      $self->document_error($self,
+           sprintf(__("epub3.pm: error on closing %s: %s"),
+                            $nav_file, $!));
+      return 0;
+    }
+  }
+
+
+  my $unique_uid = 'texi-uid';
+  # TODO to discuss on bug-texinfo
+  my $identifier = 'texinfo:'.$document_name;
+  # also to discuss
+  # <meta property="dcterms:modified">2012-03-05T12:47:00Z</meta>
+  # also <dc:rights>
+  my $opf_file = File::Spec->catfile($epub_destination_directory,
+                                        $epub_document_dir_name, $opf_filename 
);
+  my $opf_fh = Texinfo::Common::output_files_open_out(
+               $self->output_files_information(), $self, $opf_file,
+               undef, 'utf-8');
+  if (!defined($opf_fh)) {
+    $self->document_error($self,
+         sprintf(__("epub3.pm: could not open %s for writing: %s\n"),
+                  $opf_file, $!));
+    return 0;
+  }
+  print $opf_fh <<EOT;
+<?xml version="1.0" encoding="UTF-8"?>
+<package xmlns="http://www.idpf.org/2007/opf"; version="$epub_format_version" 
unique-identifier="$unique_uid">
+   <metadata xmlns:dc="http://purl.org/dc/elements/1.1/";>
+      <dc:identifier id="$unique_uid">$identifier</dc:identifier>
+      <dc:title>$title</dc:title>
+EOT
+  my @relevant_commands = ('author', 'documentlanguage');
+  my $collected_commands = Texinfo::Common::collect_commands_list_in_tree(
+                                        $document_root, \@relevant_commands);
+  my @authors = ();
+  my @languages = ();
+  if (scalar(@{$collected_commands})) {
+    foreach my $element (@{$collected_commands}) {
+      my $command = $element->{'cmdname'};
+      if ($command eq 'author') {
+        if ($element->{'extra'}->{'titlepage'}
+             and $element->{'args'}->[0]->{'contents'}) {
+          my $author_str = _epub_convert_tree_to_text($self,
+               {'contents' => $element->{'args'}->[0]->{'contents'}});
+          if ($author_str =~ /\S/) {
+            push @authors, $author_str;
+          }
+        }
+      } else {
+        if (defined($element->{'extra'}->{'text_arg'})) {
+          # TODO the EPUB specification describes specific language
+          # tags.  Not sure there is not a need for some mapping here.
+          push @languages, $element->{'extra'}->{'text_arg'};
+        }
+      }
+    }
+  }
+  foreach my $author (@authors) {
+    print $opf_fh "<dc:creator>$author</dc:creator>\n";
+  }
+  foreach my $language (@languages) {
+    print $opf_fh "<dc:language>$language</dc:language>\n";
+  }
+  print $opf_fh <<EOT;
+   </metadata>
+   <manifest>
+EOT
+
+  my $nav_id = 'nav';
+  if (defined($nav_file)) {
+    print $opf_fh "      <item id=\"$nav_id\" properties=\"nav\" "
+      . "media-type=\"application/xhtml+xml\" 
href=\"${epub_xhtml_dir}/${nav_filename}\"/>\n";
+  }
+  my $spine_uid_str = 'unit';
+  my @output_filename_ids = ();
+  my $id_count = 0;
+  foreach my $output_filename (@epub_output_filenames) {
+    $id_count++;
+    print $opf_fh "      <item id=\"${spine_uid_str}${id_count}\" "
+     . "media-type=\"application/xhtml+xml\" 
href=\"${epub_xhtml_dir}/${output_filename}\"/>\n";
+  }
+  my $image_count = 0;
+  foreach my $image_file (sort keys(%epub_images)) {
+    $image_count++;
+    my $image_extension = $epub_images{$image_file};
+    my $image_mimetype;
+    if (defined($epub_images_extensions_mimetypes{$image_extension})) {
+      $image_mimetype = $epub_images_extensions_mimetypes{$image_extension};
+    } else {
+      my $extension = $image_extension;
+      $extension =~ s/^\.//;
+      $image_mimetype = $extension . '/image';
+    }
+    print $opf_fh "      <item id=\"image${image_count}\" "
+      . "media-type=\"${image_mimetype}\" 
href=\"${epub_images_dir_name}/${image_file}\"/>";
+  }
+  print $opf_fh <<EOT;
+   </manifest>
+   <spine>
+EOT
+
+  # To put the nav file as part of the document
+  #if (defined($nav_file)) {
+  #  print $opf_fh "      <itemref idref=\"${nav_id}\"/>\n";
+  #}
+  $id_count = 0;
+  foreach my $output_filename (@epub_output_filenames) {
+    $id_count++;
+    print $opf_fh "      <itemref idref=\"${spine_uid_str}${id_count}\"/>\n";
+  }
+
+  print $opf_fh <<EOT;
+   </spine>
+</package>
+EOT
+
+  Texinfo::Common::output_files_register_closed(
+    $self->output_files_information(), $opf_file);
+  if (!close ($opf_fh)) {
+    $self->document_error($self,
+         sprintf(__("epub3.pm: error on closing %s: %s"),
+                          $opf_file, $!));
+    return 0;
+  }
+
+  if ($self->get_conf('EPUB_CREATE_CONTAINER')) {
+    my $zip = Archive::Zip->new();
+    $zip->addFile($mimetype_file, $mimetype_filename);
+    $zip->addTree($meta_inf_directory, $meta_inf_directory_name);
+    $zip->addTree(File::Spec->catdir($epub_destination_directory,
+                                     $epub_document_dir_name),
+                  $epub_document_dir_name);
+
+    unless ($zip->writeToFileNamed($epub_outfile) == AZ_OK) {
+      $self->document_error($self,
+           sprintf(__("epub3.pm: error writing archive %s"),
+                   $epub_outfile));
+      return 0;
+    }
+  }
+  return 1;
+}
+
+texinfo_register_handler('finish', \&epub_finish);
+
+1;
diff --git a/tp/tests/layout/list-of-tests b/tp/tests/layout/list-of-tests
index 1a0c305..2cff7fb 100644
--- a/tp/tests/layout/list-of-tests
+++ b/tp/tests/layout/list-of-tests
@@ -24,6 +24,7 @@ formatting_rawtext formatting.texi -c 
TEXINFO_OUTPUT_FORMAT=rawtext
 # formats present in the documentation not tested: debugtree and texinfosxml
 #formatting_sxml formatting.texi -c TEXINFO_OUTPUT_FORMAT=texinfosxml
 
+formatting_nodes formatting.texi --split node
 formatting_mathjax formatting.texi --html -c HTML_MATH=mathjax
 #formatting_mediawiki formatting.texi --init mediawiki.pm
 formatting_weird_quotes formatting.texi -c 'OPEN_QUOTE_SYMBOL @' -c 
"CLOSE_QUOTE_SYMBOL '&lsquo;"
@@ -37,7 +38,8 @@ formatting_exotic formatting.texi --split section --no-header 
--no-number-sectio
 formatting_inline_css formatting.texi -c 'INLINE_CSS_STYLE 1' -c 
DOCTYPE='<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd";>'
 formatting_fr_icons formatting.texi --document-language fr --init icons.init
 formatting_chm formatting.texi -c FORMAT_MENU=nomenu --init chm.pm
-formatting_nodes formatting.texi --split node
+formatting_epub formatting.texi --init epub3.pm -c 'EPUB_CREATE_CONTAINER 0'
+formatting_epub_nodes formatting.texi --split node --init epub3.pm -c 
'EPUB_CREATE_CONTAINER 0'
 formatting formatting.texi 
--internal-links=@OUT_DIR@internal_links_formatting.txt
 
 #lightweight_markups_mediawiki lightweight_markups.texi --init mediawiki.pm
diff --git a/tp/tests/layout/res_parser/formatting_epub/formatting.1 
b/tp/tests/layout/res_parser/formatting_epub/formatting.1
new file mode 100644
index 0000000..e69de29
diff --git a/tp/tests/layout/res_parser/formatting_epub/formatting.2 
b/tp/tests/layout/res_parser/formatting_epub/formatting.2
new file mode 100644
index 0000000..b3b87ea
--- /dev/null
+++ b/tp/tests/layout/res_parser/formatting_epub/formatting.2
@@ -0,0 +1,314 @@
+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)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:28: warning: @image file `f--ile@.' (for HTML) not found, 
using `f--ile@..file ext e--xt}' (possibly involving @mymacro)
+texi2any: @image file `f--ile@.' can not be copied
+formatting.texi:28: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:28: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" %@.jpg' (possibly involving @mymacro)
+texi2any: @image file `filejk _" %@' can not be copied
+formatting.texi:18: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:18: warning: @image file `f--ile@.' (for HTML) not found, 
using `f--ile@..file ext e--xt}' (possibly involving @mymacro)
+texi2any: @image file `f--ile@.' can not be copied
+formatting.texi:18: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:18: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" %@.jpg' (possibly involving @mymacro)
+texi2any: @image file `filejk _" %@' can not be copied
+formatting.texi:18: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:18: warning: @image file `f--ile@.' (for HTML) not found, 
using `f--ile@..file ext e--xt}' (possibly involving @mymacro)
+texi2any: @image file `f--ile@.' can not be copied
+formatting.texi:18: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:18: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" %@.jpg' (possibly involving @mymacro)
+texi2any: @image file `filejk _" %@' can not be copied
+formatting.texi:64: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:64: warning: @image file `f--ile@.' (for HTML) not found, 
using `f--ile@..file ext e--xt}' (possibly involving @mymacro)
+texi2any: @image file `f--ile@.' can not be copied
+formatting.texi:64: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:64: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" %@.jpg' (possibly involving @mymacro)
+texi2any: @image file `filejk _" %@' can not be copied
+formatting.texi:68: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:68: warning: @image file `f--ile@.' (for HTML) not found, 
using `f--ile@..file ext e--xt}' (possibly involving @mymacro)
+texi2any: @image file `f--ile@.' can not be copied
+formatting.texi:68: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:68: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" %@.jpg' (possibly involving @mymacro)
+texi2any: @image file `filejk _" %@' can not be copied
diff --git 
a/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/formatting.opf
 
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/formatting.opf
new file mode 100644
index 0000000..a274c15
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/formatting.opf
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<package xmlns="http://www.idpf.org/2007/opf"; version="3.2" 
unique-identifier="texi-uid">
+   <metadata xmlns:dc="http://purl.org/dc/elements/1.1/";>
+      <dc:identifier id="texi-uid">texinfo:formatting</dc:identifier>
+      <dc:title>title -a</dc:title>
+<dc:creator>author1 -a with accents in name Te'c,a</dc:creator>
+<dc:creator>author2 -a</dc:creator>
+<dc:creator>author</dc:creator>
+   </metadata>
+   <manifest>
+      <item id="nav" properties="nav" media-type="application/xhtml+xml" 
href="xhtml/nav_toc.xhtml"/>
+      <item id="unit1" media-type="application/xhtml+xml" 
href="xhtml/formatting.xhtml"/>
+      <item id="unit2" media-type="application/xhtml+xml" 
href="xhtml/formatting.xhtml"/>
+      <item id="unit3" media-type="application/xhtml+xml" 
href="xhtml/formatting.xhtml"/>
+      <item id="unit4" media-type="application/xhtml+xml" 
href="xhtml/formatting.xhtml"/>
+      <item id="unit5" media-type="application/xhtml+xml" 
href="xhtml/formatting.xhtml"/>
+      <item id="unit6" media-type="application/xhtml+xml" 
href="xhtml/formatting.xhtml"/>
+      <item id="unit7" media-type="application/xhtml+xml" 
href="xhtml/formatting.xhtml"/>
+      <item id="image1" media-type="e--xt/image" href="images/f--ile.e--xt"/>  
    <item id="image2" media-type=" image/png" href="images/f--ile.png"/>   
</manifest>
+   <spine>
+      <itemref idref="unit1"/>
+      <itemref idref="unit2"/>
+      <itemref idref="unit3"/>
+      <itemref idref="unit4"/>
+      <itemref idref="unit5"/>
+      <itemref idref="unit6"/>
+      <itemref idref="unit7"/>
+   </spine>
+</package>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/f--ile.e--xt
 
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/f--ile.e--xt
new file mode 100644
index 0000000..e69de29
diff --git 
a/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/f--ile.png
 
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/f--ile.png
new file mode 100644
index 0000000..e69de29
diff --git 
a/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting.xhtml
 
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting.xhtml
new file mode 100644
index 0000000..c7b62ff
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting.xhtml
@@ -0,0 +1,7063 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml";>
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<!-- 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 >=
+@tie a b
+
+@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 &#8211;a</title>
+
+<meta name="description" content="title &#8211;a"/>
+<meta name="keywords" content="title &#8211;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.smaller {font-size: smaller}
+span:hover a.copiable-anchor {visibility: visible}
+ul.no-bullet {list-style: none}
+-->
+</style>
+
+
+</head>
+
+<body lang="en">
+<h1>title &#8211;a</h1>
+<h3 align="right">formatting subtitle &#8211;a</h3>
+<h3 align="right">subtitle 2 &#8211;a</h3>
+<strong>author1 &#8211;a with accents in name T&#233;&#231;a</strong><br/>
+<strong>author2 &#8211;a</strong><br/>
+<p>In titlepage
+</p>
+<p>&lt;
+&gt;
+&quot;
+&amp;
+&#8217;
+&#8216;
+</p>
+<p>&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;<br/>
+code: <code>``simple-double--three---four----''</code> <br/>
+asis: &#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221; <br/>
+strong: 
<strong>&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;</strong> 
<br/>
+kbd: <kbd>``simple-double--three---four----''</kbd> <br/>
+</p>
+<p>&#8216;<!-- /@w -->&#8216;simple-double-<!-- /@w 
-->-three&#8212;four&#8212;-&#8217;<!-- /@w -->&#8217;<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>@&quot;u &#252; 
+@&quot;{U} &#220; 
+@~n &#241;
+@^a &#226;
+@&#8217;e &#233;
+@=o &#333;
+@&#8216;i &#236;
+@&#8217;{e} &#233;
+@&#8217;{@dotless{i}} &#237; 
+@dotless{i} i
+@dotless{j} j
+@&#8216;{@=E} &#274;&#768; 
+@l{} &#322;
+@,{@&#8217;C} &#262;&#807;
+@,c &#231;
+@,c@&quot;u &#231;&#252; <br/>
+</p>
+<p>@U{0075} &#x0075;
+</p>
+<p>@* <br/>
+@ followed by a space
+&#160;
+@ followed by a tab
+&#160;
+@ followed by a new line
+&#160;<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 &#8226;
+@copyright &#169;
+@dots &#8230;
+@enddots <small class="enddots">...</small>
+@equiv &#8801;
+@error error&#8594;
+@expansion &#8614;
+@minus &#8722;
+@point &#9733;
+@print &#8867;
+@result &#8658;
+@today a sunny day
+</p>
+<p>@aa &#229;
+@AA &#197;
+@ae &#230;
+@oe &#339;
+@AE &#198;
+@OE &#338;
+@o &#248;
+@O &#216;
+@ss &#223;
+@l &#322;
+@L &#321;
+@DH &#208;
+@TH &#222;
+@dh &#240;
+@th &#254;
+</p>
+<p>@exclamdown &#161;
+@questiondown &#191;
+@pounds &#163;
+@registeredsymbol &#174;
+@ordf &#170;
+@ordm &#186;
+@comma &#44;
+@quotedblleft &#8220;
+@quotedblright &#8221;
+@quoteleft &#8216;
+@quoteright &#8217;
+@quotedblbase &#8222;
+@quotesinglbase &#8218;
+@guillemetleft &#171;
+@guillemetright &#187;
+@guillemotleft &#171;
+@guillemotright &#187;
+@guilsinglleft &#8249;
+@guilsinglright &#8250;
+@textdegree &#176;
+@euro &#8364;
+@arrow &#8594;
+@leq &#8804;
+@geq &#8805;
+@tie a&#160;b
+</p>
+<p><code>@acronym{--a,an accronym}</code> <acronym title="an 
accronym">&#8211;a</acronym> (an accronym)
+<code>@acronym{--a}</code> <acronym title="an accronym">&#8211;a</acronym>
+<code>@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr 
title="&#201;tude Autonome">&#201;&#8211;. &#44;A.</abbr> (&#201;tude Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude 
Autonome">&#201;&#8211;. &#44;A.</abbr>
+<code>@asis{--a}</code> &#8211;a
+<code>@b{--a}</code> <b>&#8211;a</b>
+<code>@cite{--a}</code> <cite>&#8211;a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@dfn{--a}</code> <em>&#8211;a</em>
+<code>@dmn{--a}</code> &#8211;a
+<code>@email{--a,--b}</code> <a href="mailto:--a";>&#8211;b</a>
+<code>@email{,--b}</code> &#8211;b
+<code>@email{--a}</code> <a href="mailto:--a";>--a</a>
+<code>@emph{--a}</code> <em>&#8211;a</em>
+<code>@env{--a}</code> <code>--a</code>
+<code>@file{--a}</code> <samp>--a</samp>
+<code>@i{--a}</code> <i>&#8211;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}} &#8722;</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">&#8211;a</span>
+<code>@samp{--a}</code> &#8216;<samp>--a</samp>&#8221;
+<code>@sc{--a}</code> <small>&#8211;A</small>
+<code>@strong{--a}</code> <strong>&#8211;a</strong>
+<code>@t{--a}</code> <tt>--a</tt>
+<code>@sansserif{--a}</code> <span class="sansserif">&#8211;a</span>
+<code>@slanted{--a}</code> <i>&#8211;a</i>
+<code>@titlefont{--a}</code> </p><h1 class="titlefont">&#8211;a</h1>
+<p><code>@indicateurl{--a}</code> &#8216;<code>--a</code>&#8221;
+<code>@uref{--a,--b}</code> <a href="--a">&#8211;b</a>
+<code>@uref{--a}</code> <a href="--a">--a</a>
+<code>@uref{,--b}</code> &#8211;b
+<code>@uref{--a,--b,--c}</code> <a href="--a">&#8211;c</a>
+<code>@uref{,--b,--c}</code> &#8211;c
+<code>@uref{--a,,--c}</code> <a href="--a">&#8211;c</a>
+<code>@uref{,,--c}</code> &#8211;c
+<code>@url{--a,--b}</code> <a href="--a">&#8211;b</a>
+<code>@url{--a,}</code> <a href="--a">--a</a>
+<code>@url{,--b}</code> &#8211;b
+<code>@var{--a}</code> <var>&#8211;a</var>
+<code>@verb{:--a:}</code> <tt>--a</tt>
+<code>@verb{:a  &lt; &amp; @ % &quot; --    b:}</code> <tt>a  &lt; &amp; @ % 
&quot; --    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&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a<!--
 /@w -->
+<code>@H{a}</code> a&#779;
+<code>@H{--a}</code> &#8211;a&#779;
+<code>@dotaccent{a}</code> &#551;
+<code>@dotaccent{--a}</code> &#8211;a&#775;
+<code>@ringaccent{a}</code> &#229;
+<code>@ringaccent{--a}</code> &#8211;a&#778;
+<code>@tieaccent{a}</code> a&#865;
+<code>@tieaccent{--a}</code> &#8211;a&#865;
+<code>@u{a}</code> &#259;
+<code>@u{--a}</code> &#8211;a&#774;
+<code>@ubaraccent{a}</code> a&#818;
+<code>@ubaraccent{--a}</code> &#8211;a&#818;
+<code>@udotaccent{a}</code> &#7841;
+<code>@udotaccent{--a}</code> &#8211;a&#803;
+<code>@v{a}</code> &#462;
+<code>@v{--a}</code> &#8211;a&#780;
+<code>@,{c}</code> &#231;
+<code>@,{--c}</code> &#8211;c&#807;
+<code>@ogonek{a}</code> &#261;
+<code>@ogonek{--a}</code> &#8211;a&#808;
+<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="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,l--i}</code> <img src="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,,l--e}</code> <img src="../images/f--ile.png" 
alt="f--ile"/>
+<code>@image{f--ile,,,alt}</code> <img src="../images/f--ile.png" alt="alt"/>
+<code>@image{f--ile,,,,.e-d-xt}</code> <img src="../images/f--ile.e--xt" 
alt="f--ile"/>
+<code>@image{f--ile,aze,az,alt,.e--xt}</code> <img 
src="../images/f--ile.e--xt" alt="alt"/>
+<code>@image{f-ile,aze,,a--lt}</code> <img src="../images/f-ile.jpg" 
alt="a&#8211;lt"/>
+<code>@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext} e--xt@}</code> <img 
src="../images/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 &#8594; A
+After clickstyle &#8658;
+<code>@clicksequence{click @click{} A}</code> click &#8658; 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>&#252; &#220; &#241; &#226; &#233; &#333; &#236; 
&#233; i j &#274;&#768;
+&#322; &#262;&#807; &#262;&#807; &#231; a&#779; &#551; &#229; a&#865;
+&#259; a&#818; &#7841; &#462; &#261; a<sup>h</sup><sub>l</sub>
+
+ &#160;&#160; &#160;   ! ? . @ } { 
+a sunny day
+</em></div>
+<div class="displaymath"><em>&#8594;
+&#x0075;
+TeX LaTeX &#8226; &#169; &#8230; ... &#8801;
+error&#8594; &#8614; &#8722; &#9733; &#8867; &#8658;
+&#229; &#197; &#230; &#339; &#198; &#338; &#248; &#216; &#223; &#322; &#321; 
&#208;
+&#222; &#240; &#254; &#161; &#191; &#163;
+&#174; &#170; &#186; &#44; 
+</em></div>
+<div class="displaymath"><em>&#8220; &#8221; 
+&#8216; &#8217; &#8222; &#8218; &#171;
+&#187; &#171; &#187; &#8249;
+&#8250; &#176; &#8364; &#8594; &#8804; &#8805;
+</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&#8212;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 &#233; TeX:</b> The something &#233; TeX is here.
+</p></blockquote>
+
+<blockquote>
+<p><b>@ at the end of line &#160;:</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">&#8212; <em>quotation author</em>
+</div>
+<blockquote>
+<p>indent in quotation
+</p></blockquote>
+
+<blockquote>
+<p>A small quot&#8212;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&#8211;temize
+</li></ul>
+
+<ul class="no-bullet">
+<li>+ i&#8211;tem +
+</li></ul>
+
+<ul>
+<li> b&#8211;ullet
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8722; minu&#8211;s
+</li></ul>
+
+<ul class="no-bullet">
+<li><em>after emph</em> e&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8226; a&#8211;n itemize line <span 
id="index-titlepage-index-entry-within-itemize"></span>
+i&#8211;tem 1
+</li><li>&#8226; a&#8211;n itemize line i&#8211;tem 2
+</li></ul>
+
+<ol>
+<li> e&#8211;numerate
+</li></ol>
+
+<ol start="3">
+<li> first third
+</li><li> second third
+</li></ol>
+
+<ol type="a" start="1">
+<li> e&#8211;numerate
+</li></ol>
+
+<ol type="a" start="3">
+<li> first c
+</li><li> second c
+</li></ol>
+
+<table>
+<thead><tr><th width="40%">mu&#8211;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
+<tbody><tr><td width="40%">mu&#8211;ltitable item</td><td 
width="60%">multitable tab</td></tr>
+<tr><td width="40%">mu&#8211;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&#8211;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 &#233; 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&amp;content-type=text/plain'
+$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD&amp;content-type=text/plain'
+</pre></div>
+<p>Less recent versions are also present.
+</p>
+<div class="display">
+<pre class="display">d&#8211;isplay
+</pre></div>
+
+<div class="display">
+<pre class="display">s&#8211;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&#8211;ormat
+</pre></div>
+
+<div class="format">
+<pre class="format">s&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>def&#8211;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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</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'> 
&#182;</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'> &#182;</a></span></dt>
+<dt id="index-titlepage-id-i-ule"><span class="category">cmde2: 
</span><span><strong><b>id &#8216;<samp>i</samp>&#8221; ule</b></strong> 
<em>truc</em><a href='#index-titlepage-id-i-ule' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dt><span class="category"><b>id &#8216;<samp>i</samp>&#8221; ule</b>: 
</span><strong></strong></dt>
+<dt><strong></strong></dt>
+<dt><span class="category">aaa: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt id="index-titlepage-machin"><span class="category">: 
</span><span><strong>machin</strong><a href='#index-titlepage-machin' 
class='copiable-anchor'> &#182;</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'> 
&#182;</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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</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 href="file 
n---ame@.html#c_002d_002d_002dhapter_0040">t&#8212;itle@</a> in 
<cite>ma&#8212;nual@</cite>.
+<code>@ref{chapter, cross ref name, title, file name, manual}</code> <a 
href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@pxref{chapter, cross ref name, title, file name, manual}</code> see <a 
href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@inforef{chapter, cross ref name, file name}</code> See <a 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 href="a comma, in file.html#s_002d_002dect_002cion">a comma&#44; in 
title</a> in <cite>a &#44; 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 href="file name.html#chapter">(file 
name)chapter</a>
+<code>@ref{chapter,,,,manual}</code> &#8216;chapter&#8217; 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 href="file 
name.html#chapter">(file name)cross ref name</a>
+<code>@ref{chapter,cross ref name,,,manual}</code> &#8216;cross ref 
name&#8217; in <cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,file name}</code> <a href="file 
name.html#chapter">(file name)title</a>
+<code>@ref{chapter,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title, file name, manual}</code> <a 
href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,title,file name}</code> <a href="file 
name.html#chapter">(file name)title</a>
+<code>@ref{chapter,,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a href="file 
name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,,file name,manual}</code> <a href="file 
name.html#chapter">chapter</a> in <cite>manual</cite>
+</p>
+
+<p><code>@ref{(pman)anode,cross ref name}</code> <a 
href="pman.html#anode">(pman)cross ref name</a>
+<code>@ref{(pman)anode,,title}</code> <a href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,,,file name}</code> <a href="file 
name.html#anode">(file name)anode</a>
+<code>@ref{(pman)anode,,,,manual}</code> <a href="pman.html#anode">anode</a> 
in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,}</code> <a 
href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,cross ref name,,file name}</code> <a href="file 
name.html#anode">(file name)cross ref name</a>
+<code>@ref{(pman)anode,cross ref name,,,manual}</code> <a 
href="pman.html#anode">cross ref name</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,file name}</code> <a href="file 
name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,cross ref name,title,,manual}</code> <a 
href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title, file name, manual}</code> <a 
href="file name.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title,file name}</code> <a href="file 
name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,,title,,manual}</code> <a 
href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title, file name, manual}</code> <a href="file 
name.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,,file name,manual}</code> <a href="file 
name.html#anode">anode</a> in <cite>manual</cite>
+</p>
+
+<p><code>@inforef{chapter, cross ref name, file name}</code> See <a href="file 
name.html#chapter">(file name)cross ref name</a>
+<code>@inforef{chapter}</code> See &#8216;chapter&#8217;
+<code>@inforef{chapter, cross ref name}</code> See &#8216;cross ref name&#8217;
+<code>@inforef{chapter,,file name}</code> See <a href="file 
name.html#chapter">(file name)chapter</a>
+<code>@inforef{node, cross ref name, file name}</code> See <a href="file 
name.html#node">(file name)cross ref name</a>
+<code>@inforef{node}</code> See &#8216;node&#8217;
+<code>@inforef{node, cross ref name}</code> See &#8216;cross ref name&#8217;
+<code>@inforef{node,,file name}</code> See <a href="file name.html#node">(file 
name)node</a>
+<code>@inforef{chapter, cross ref name, file name, spurious arg}</code> See <a 
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 href="a comma, in file.html#s_002d_002dect_002cion">(a comma, in file)a 
&#44; in cross
+ref</a>
+</p>
+<p>&#8216;<samp><a href="#chapter">chapter</a></samp>&#8221;.
+</p>
+<p><a 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><strong>a&#8211;strong</strong></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-titlepage-a_002d_002dasis'><span>a&#8211;asis<a 
href='#index-titlepage-a_002d_002dasis' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dt id='index-titlepage-b-2'><span>b<a href='#index-titlepage-b-2' 
class='copiable-anchor'> &#182;</a></span></dt>
+<dd><p>l&#8211;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'> &#182;</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'> &#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt><code>a--code</code></dt>
+<dd><p>Value&#8211;table code
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt>&#8216;<samp>a--samp</samp>&#8221;</dt>
+<dt>&#8216;<samp>a2--samp</samp>&#8221;</dt>
+<dd><p>Value&#8211;table samp
+</p></dd>
+</dl>
+
+<table class="cartouche" border="1"><tr><td>
+<p>c&#8211;artouche
+</p></td></tr></table>
+
+<p>g&#8211;roupe
+</p>
+<p align="left">f&#8211;lushleft
+more text
+</p>
+<p align="right">f&#8211;lushright
+more text
+</p>
+<div align="center">ce&#8211;ntered line
+</div>
+<p>r&#8211;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 @  &lt;&gt;.
+
+@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 &#44; ...">&#8211;a</acronym> (an accronym &#44; <small 
class="enddots">...</small>)
+<code>@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome} }</code> <abbr 
title="&#201;tude&#8211;&#44; Autonome">&#201;&#8211;. &#44;A.</abbr> 
(&#201;tude&#8211;&#44; <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude&#8211;&#44; 
Autonome">&#201;&#8211;. &#44;A.</abbr>
+</p>
+<p><code>@math{--a@minus{} {\frac{1}{2}}}</code> <em class="math">--a&#8722; 
{\frac{1}{2}}</em>
+</p>
+<p><code>@image{f-ile,,,alt@verb{:jk _&quot; %}}</code> <img 
src="../images/f-ile.jpg" alt="altjk _&quot; %@"/>
+<code>@image{f--ile,aze,az,@verb{:jk _&quot; %@:} @b{in b 
&quot;},e--xt}</code> <img src="../images/f--ile.e--xt" alt="jk _&quot; %@ in b 
&quot;"/>
+<code>@image{file@verb{:jk _&quot; %@:},,,alt@verb{:jk _&quot; %@:}}</code> 
<img src="../images/filejk _&quot; %@.jpg" alt="altjk _&quot; %@"/>
+</p>
+
+
+
+<p>Somehow invalid use of @,:<br/>
+@, &#807;
+<br/>
+@,@&quot;u &#807;&#252;
+</p>
+<p>Invalid use of @&#8217;:<br/>
+@&#8217; &#769;
+<br/>
+@&#8217;@&quot;u &#769;&#252;
+</p>
+<p>@dotless{truc} truc
+@dotless{ij} ij
+<code>@dotless{--a}</code> &#8211;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 &lt;4 hex digits &#xabc;
+@U{FFFFFFFFFFFFFF}, value much too large &#xFFFFFFFFFFFFFF;
+@U{110000}, value just beyond Unicode &#x110000;
+</p>
+<p>@TeX, but without brace TeX<code>@#</code> #
+</p>
+<p><code>@w{--a}</code> &#8211;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&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li> after emph e&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8226; a&#8211;n itemize line i&#8211;tem 1
+</li><li>&#8226; a&#8211;n itemize line i&#8211;tem 2
+</li></ul>
+
+<dl compact="compact">
+<dt>a</dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt>a&#8211;missing style formatting</dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-titlepage-a-2'><span>a<a href='#index-titlepage-a-2' 
class='copiable-anchor'> &#182;</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'> &#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl class="def">
+<dt><span class="category">fun: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</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'> &#182;</a></span></dt>
+</dl>
+
+<p><code>@ref{node}</code> &#8216;node&#8217;
+</p>
+<p><code>@ref{,cross ref name}</code> &#8216;cross ref name&#8217;
+<code>@ref{,,title}</code> &#8216;title&#8217;
+<code>@ref{,,,file name}</code> <a href="file name.html#Top">(file name)</a>
+<code>@ref{,,,,manual}</code> <cite>manual</cite>
+<code>@ref{node,cross ref name}</code> &#8216;cross ref name&#8217;
+<code>@ref{node,,title}</code> &#8216;title&#8217;
+<code>@ref{node,,,file name}</code> <a href="file name.html#node">(file 
name)node</a>
+<code>@ref{node,,,,manual}</code> &#8216;node&#8217; in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,}</code> &#8216;title&#8217;
+<code>@ref{node,cross ref name,,file name}</code> <a href="file 
name.html#node">(file name)cross ref name</a>
+<code>@ref{node,cross ref name,,,manual}</code> &#8216;cross ref name&#8217; 
in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,file name}</code> <a href="file 
name.html#node">(file name)title</a>
+<code>@ref{node,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{node,cross ref name,title, file name, manual}</code> <a href="file 
name.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,title,file name}</code> <a href="file name.html#node">(file 
name)title</a>
+<code>@ref{node,,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a href="file 
name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{node,,title, file name, manual}</code> <a href="file 
name.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,,file name,manual}</code> <a href="file 
name.html#node">node</a> in <cite>manual</cite>
+<code>@ref{,cross ref name,title,}</code> &#8216;title&#8217;
+<code>@ref{,cross ref name,,file name}</code> <a href="file 
name.html#Top">(file name)cross ref name</a>
+<code>@ref{,cross ref name,,,manual}</code> &#8216;cross ref name&#8217; in 
<cite>manual</cite>
+<code>@ref{,cross ref name,title,file name}</code> <a href="file 
name.html#Top">(file name)title</a>
+<code>@ref{,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{,cross ref name,title, file name, manual}</code> <a href="file 
name.html#Top">title</a> in <cite>manual</cite>
+<code>@ref{,,title,file name}</code> <a href="file name.html#Top">(file 
name)title</a>
+<code>@ref{,,title,,manual}</code> &#8216;title&#8217; in <cite>manual</cite>
+<code>@ref{,,title, file name, manual}</code> <a href="file 
name.html#Top">title</a> in <cite>manual</cite>
+<code>@ref{,,,file name,manual}</code> <cite><a href="file 
name.html#Top">manual</a></cite>
+</p>
+<p><code>@inforef{,cross ref name }</code> See &#8216;cross ref name&#8217;
+<code>@inforef{,,file name}</code> See <a href="file name.html#Top">(file 
name)</a>
+<code>@inforef{,cross ref name, file name}</code> See <a 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>&lt;
+&gt;
+&quot;
+&amp;
+&#8217;
+&#8216;
+</p>
+<p>&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;<br/>
+code: <code>``simple-double--three---four----''</code> <br/>
+asis: &#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221; <br/>
+strong: 
<strong>&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;</strong> 
<br/>
+kbd: <kbd>``simple-double--three---four----''</kbd> <br/>
+</p>
+<p>&#8216;<!-- /@w -->&#8216;simple-double-<!-- /@w 
-->-three&#8212;four&#8212;-&#8217;<!-- /@w -->&#8217;<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>@&quot;u &#252; 
+@&quot;{U} &#220; 
+@~n &#241;
+@^a &#226;
+@&#8217;e &#233;
+@=o &#333;
+@&#8216;i &#236;
+@&#8217;{e} &#233;
+@&#8217;{@dotless{i}} &#237; 
+@dotless{i} i
+@dotless{j} j
+@&#8216;{@=E} &#274;&#768; 
+@l{} &#322;
+@,{@&#8217;C} &#262;&#807;
+@,c &#231;
+@,c@&quot;u &#231;&#252; <br/>
+</p>
+<p>@U{0075} &#x0075;
+</p>
+<p>@* <br/>
+@ followed by a space
+&#160;
+@ followed by a tab
+&#160;
+@ followed by a new line
+&#160;<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 &#8226;
+@copyright &#169;
+@dots &#8230;
+@enddots <small class="enddots">...</small>
+@equiv &#8801;
+@error error&#8594;
+@expansion &#8614;
+@minus &#8722;
+@point &#9733;
+@print &#8867;
+@result &#8658;
+@today a sunny day
+</p>
+<p>@aa &#229;
+@AA &#197;
+@ae &#230;
+@oe &#339;
+@AE &#198;
+@OE &#338;
+@o &#248;
+@O &#216;
+@ss &#223;
+@l &#322;
+@L &#321;
+@DH &#208;
+@TH &#222;
+@dh &#240;
+@th &#254;
+</p>
+<p>@exclamdown &#161;
+@questiondown &#191;
+@pounds &#163;
+@registeredsymbol &#174;
+@ordf &#170;
+@ordm &#186;
+@comma &#44;
+@quotedblleft &#8220;
+@quotedblright &#8221;
+@quoteleft &#8216;
+@quoteright &#8217;
+@quotedblbase &#8222;
+@quotesinglbase &#8218;
+@guillemetleft &#171;
+@guillemetright &#187;
+@guillemotleft &#171;
+@guillemotright &#187;
+@guilsinglleft &#8249;
+@guilsinglright &#8250;
+@textdegree &#176;
+@euro &#8364;
+@arrow &#8594;
+@leq &#8804;
+@geq &#8805;
+@tie a&#160;b
+</p>
+<p><code>@acronym{--a,an accronym}</code> <acronym title="an 
accronym">&#8211;a</acronym> (an accronym)
+<code>@acronym{--a}</code> <acronym title="an accronym">&#8211;a</acronym>
+<code>@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr 
title="&#201;tude Autonome">&#201;&#8211;. &#44;A.</abbr> (&#201;tude Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude 
Autonome">&#201;&#8211;. &#44;A.</abbr>
+<code>@asis{--a}</code> &#8211;a
+<code>@b{--a}</code> <b>&#8211;a</b>
+<code>@cite{--a}</code> <cite>&#8211;a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@dfn{--a}</code> <em>&#8211;a</em>
+<code>@dmn{--a}</code> &#8211;a
+<code>@email{--a,--b}</code> <a href="mailto:--a";>&#8211;b</a>
+<code>@email{,--b}</code> &#8211;b
+<code>@email{--a}</code> <a href="mailto:--a";>--a</a>
+<code>@emph{--a}</code> <em>&#8211;a</em>
+<code>@env{--a}</code> <code>--a</code>
+<code>@file{--a}</code> <samp>--a</samp>
+<code>@i{--a}</code> <i>&#8211;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}} &#8722;</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">&#8211;a</span>
+<code>@samp{--a}</code> &#8216;<samp>--a</samp>&#8221;
+<code>@sc{--a}</code> <small>&#8211;A</small>
+<code>@strong{--a}</code> <strong>&#8211;a</strong>
+<code>@t{--a}</code> <tt>--a</tt>
+<code>@sansserif{--a}</code> <span class="sansserif">&#8211;a</span>
+<code>@slanted{--a}</code> <i>&#8211;a</i>
+<code>@titlefont{--a}</code> </p><h1 class="titlefont">&#8211;a</h1>
+<p><code>@indicateurl{--a}</code> &#8216;<code>--a</code>&#8221;
+<code>@uref{--a,--b}</code> <a href="--a">&#8211;b</a>
+<code>@uref{--a}</code> <a href="--a">--a</a>
+<code>@uref{,--b}</code> &#8211;b
+<code>@uref{--a,--b,--c}</code> <a href="--a">&#8211;c</a>
+<code>@uref{,--b,--c}</code> &#8211;c
+<code>@uref{--a,,--c}</code> <a href="--a">&#8211;c</a>
+<code>@uref{,,--c}</code> &#8211;c
+<code>@url{--a,--b}</code> <a href="--a">&#8211;b</a>
+<code>@url{--a,}</code> <a href="--a">--a</a>
+<code>@url{,--b}</code> &#8211;b
+<code>@var{--a}</code> <var>&#8211;a</var>
+<code>@verb{:--a:}</code> <tt>--a</tt>
+<code>@verb{:a  &lt; &amp; @ % &quot; --    b:}</code> <tt>a  &lt; &amp; @ % 
&quot; --    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&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a<!--
 /@w -->
+<code>@H{a}</code> a&#779;
+<code>@H{--a}</code> &#8211;a&#779;
+<code>@dotaccent{a}</code> &#551;
+<code>@dotaccent{--a}</code> &#8211;a&#775;
+<code>@ringaccent{a}</code> &#229;
+<code>@ringaccent{--a}</code> &#8211;a&#778;
+<code>@tieaccent{a}</code> a&#865;
+<code>@tieaccent{--a}</code> &#8211;a&#865;
+<code>@u{a}</code> &#259;
+<code>@u{--a}</code> &#8211;a&#774;
+<code>@ubaraccent{a}</code> a&#818;
+<code>@ubaraccent{--a}</code> &#8211;a&#818;
+<code>@udotaccent{a}</code> &#7841;
+<code>@udotaccent{--a}</code> &#8211;a&#803;
+<code>@v{a}</code> &#462;
+<code>@v{--a}</code> &#8211;a&#780;
+<code>@,{c}</code> &#231;
+<code>@,{--c}</code> &#8211;c&#807;
+<code>@ogonek{a}</code> &#261;
+<code>@ogonek{--a}</code> &#8211;a&#808;
+<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="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,l--i}</code> <img src="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,,l--e}</code> <img src="../images/f--ile.png" 
alt="f--ile"/>
+<code>@image{f--ile,,,alt}</code> <img src="../images/f--ile.png" alt="alt"/>
+<code>@image{f--ile,,,,.e-d-xt}</code> <img src="../images/f--ile.e--xt" 
alt="f--ile"/>
+<code>@image{f--ile,aze,az,alt,.e--xt}</code> <img 
src="../images/f--ile.e--xt" alt="alt"/>
+<code>@image{f-ile,aze,,a--lt}</code> <img src="../images/f-ile.jpg" 
alt="a&#8211;lt"/>
+<code>@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext} e--xt@}</code> <img 
src="../images/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 &#8594; A
+After clickstyle &#8658;
+<code>@clicksequence{click @click{} A}</code> click &#8658; 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>&#252; &#220; &#241; &#226; &#233; &#333; &#236; 
&#233; i j &#274;&#768;
+&#322; &#262;&#807; &#262;&#807; &#231; a&#779; &#551; &#229; a&#865;
+&#259; a&#818; &#7841; &#462; &#261; a<sup>h</sup><sub>l</sub>
+
+ &#160;&#160; &#160;   ! ? . @ } { 
+a sunny day
+</em></div>
+<div class="displaymath"><em>&#8594;
+&#x0075;
+TeX LaTeX &#8226; &#169; &#8230; ... &#8801;
+error&#8594; &#8614; &#8722; &#9733; &#8867; &#8658;
+&#229; &#197; &#230; &#339; &#198; &#338; &#248; &#216; &#223; &#322; &#321; 
&#208;
+&#222; &#240; &#254; &#161; &#191; &#163;
+&#174; &#170; &#186; &#44; 
+</em></div>
+<div class="displaymath"><em>&#8220; &#8221; 
+&#8216; &#8217; &#8222; &#8218; &#171;
+&#187; &#171; &#187; &#8249;
+&#8250; &#176; &#8364; &#8594; &#8804; &#8805;
+</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&#8212;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 &#233; TeX:</b> The something &#233; TeX is here.
+</p></blockquote>
+
+<blockquote>
+<p><b>@ at the end of line &#160;:</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">&#8212; <em>quotation author</em>
+</div>
+<blockquote>
+<p>indent in quotation
+</p></blockquote>
+
+<blockquote>
+<p>A small quot&#8212;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&#8211;temize
+</li></ul>
+
+<ul class="no-bullet">
+<li>+ i&#8211;tem +
+</li></ul>
+
+<ul>
+<li> b&#8211;ullet
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8722; minu&#8211;s
+</li></ul>
+
+<ul class="no-bullet">
+<li><em>after emph</em> e&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8226; a&#8211;n itemize line <span 
id="index-copying-index-entry-within-itemize"></span>
+i&#8211;tem 1
+</li><li>&#8226; a&#8211;n itemize line i&#8211;tem 2
+</li></ul>
+
+<ol>
+<li> e&#8211;numerate
+</li></ol>
+
+<ol start="3">
+<li> first third
+</li><li> second third
+</li></ol>
+
+<ol type="a" start="1">
+<li> e&#8211;numerate
+</li></ol>
+
+<ol type="a" start="3">
+<li> first c
+</li><li> second c
+</li></ol>
+
+<table>
+<thead><tr><th width="40%">mu&#8211;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
+<tbody><tr><td width="40%">mu&#8211;ltitable item</td><td 
width="60%">multitable tab</td></tr>
+<tr><td width="40%">mu&#8211;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&#8211;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 &#233; 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&amp;content-type=text/plain'
+$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD&amp;content-type=text/plain'
+</pre></div>
+<p>Less recent versions are also present.
+</p>
+<div class="display">
+<pre class="display">d&#8211;isplay
+</pre></div>
+
+<div class="display">
+<pre class="display">s&#8211;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&#8211;ormat
+</pre></div>
+
+<div class="format">
+<pre class="format">s&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>def&#8211;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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</a></span></dt>
+<dt id="index-copying-id-i-ule"><span class="category">cmde2: 
</span><span><strong><b>id &#8216;<samp>i</samp>&#8221; ule</b></strong> 
<em>truc</em><a href='#index-copying-id-i-ule' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dt><span class="category"><b>id &#8216;<samp>i</samp>&#8221; ule</b>: 
</span><strong></strong></dt>
+<dt><strong></strong></dt>
+<dt><span class="category">aaa: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt id="index-copying-machin"><span class="category">: 
</span><span><strong>machin</strong><a href='#index-copying-machin' 
class='copiable-anchor'> &#182;</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'> 
&#182;</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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</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 href="file 
n---ame@.html#c_002d_002d_002dhapter_0040">t&#8212;itle@</a> in 
<cite>ma&#8212;nual@</cite>.
+<code>@ref{chapter, cross ref name, title, file name, manual}</code> <a 
href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@pxref{chapter, cross ref name, title, file name, manual}</code> see <a 
href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@inforef{chapter, cross ref name, file name}</code> See <a 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 href="a comma, in file.html#s_002d_002dect_002cion">a comma&#44; in 
title</a> in <cite>a &#44; 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 href="file name.html#chapter">(file 
name)chapter</a>
+<code>@ref{chapter,,,,manual}</code> &#8216;chapter&#8217; 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 href="file 
name.html#chapter">(file name)cross ref name</a>
+<code>@ref{chapter,cross ref name,,,manual}</code> &#8216;cross ref 
name&#8217; in <cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,file name}</code> <a href="file 
name.html#chapter">(file name)title</a>
+<code>@ref{chapter,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title, file name, manual}</code> <a 
href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,title,file name}</code> <a href="file 
name.html#chapter">(file name)title</a>
+<code>@ref{chapter,,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a href="file 
name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,,file name,manual}</code> <a href="file 
name.html#chapter">chapter</a> in <cite>manual</cite>
+</p>
+
+<p><code>@ref{(pman)anode,cross ref name}</code> <a 
href="pman.html#anode">(pman)cross ref name</a>
+<code>@ref{(pman)anode,,title}</code> <a href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,,,file name}</code> <a href="file 
name.html#anode">(file name)anode</a>
+<code>@ref{(pman)anode,,,,manual}</code> <a href="pman.html#anode">anode</a> 
in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,}</code> <a 
href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,cross ref name,,file name}</code> <a href="file 
name.html#anode">(file name)cross ref name</a>
+<code>@ref{(pman)anode,cross ref name,,,manual}</code> <a 
href="pman.html#anode">cross ref name</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,file name}</code> <a href="file 
name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,cross ref name,title,,manual}</code> <a 
href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title, file name, manual}</code> <a 
href="file name.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title,file name}</code> <a href="file 
name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,,title,,manual}</code> <a 
href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title, file name, manual}</code> <a href="file 
name.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,,file name,manual}</code> <a href="file 
name.html#anode">anode</a> in <cite>manual</cite>
+</p>
+
+<p><code>@inforef{chapter, cross ref name, file name}</code> See <a href="file 
name.html#chapter">(file name)cross ref name</a>
+<code>@inforef{chapter}</code> See &#8216;chapter&#8217;
+<code>@inforef{chapter, cross ref name}</code> See &#8216;cross ref name&#8217;
+<code>@inforef{chapter,,file name}</code> See <a href="file 
name.html#chapter">(file name)chapter</a>
+<code>@inforef{node, cross ref name, file name}</code> See <a href="file 
name.html#node">(file name)cross ref name</a>
+<code>@inforef{node}</code> See &#8216;node&#8217;
+<code>@inforef{node, cross ref name}</code> See &#8216;cross ref name&#8217;
+<code>@inforef{node,,file name}</code> See <a href="file name.html#node">(file 
name)node</a>
+<code>@inforef{chapter, cross ref name, file name, spurious arg}</code> See <a 
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 href="a comma, in file.html#s_002d_002dect_002cion">(a comma, in file)a 
&#44; in cross
+ref</a>
+</p>
+<p>&#8216;<samp><a href="#chapter">chapter</a></samp>&#8221;.
+</p>
+<p><a 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><strong>a&#8211;strong</strong></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-copying-a_002d_002dasis'><span>a&#8211;asis<a 
href='#index-copying-a_002d_002dasis' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dt id='index-copying-b-2'><span>b<a href='#index-copying-b-2' 
class='copiable-anchor'> &#182;</a></span></dt>
+<dd><p>l&#8211;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'> &#182;</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'> &#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt><code>a--code</code></dt>
+<dd><p>Value&#8211;table code
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt>&#8216;<samp>a--samp</samp>&#8221;</dt>
+<dt>&#8216;<samp>a2--samp</samp>&#8221;</dt>
+<dd><p>Value&#8211;table samp
+</p></dd>
+</dl>
+
+<table class="cartouche" border="1"><tr><td>
+<p>c&#8211;artouche
+</p></td></tr></table>
+
+<p>g&#8211;roupe
+</p>
+<p align="left">f&#8211;lushleft
+more text
+</p>
+<p align="right">f&#8211;lushright
+more text
+</p>
+<div align="center">ce&#8211;ntered line
+</div>
+<p>r&#8211;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 @  &lt;&gt;.
+
+@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 &#44; ...">&#8211;a</acronym> (an accronym &#44; <small 
class="enddots">...</small>)
+<code>@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome} }</code> <abbr 
title="&#201;tude&#8211;&#44; Autonome">&#201;&#8211;. &#44;A.</abbr> 
(&#201;tude&#8211;&#44; <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude&#8211;&#44; 
Autonome">&#201;&#8211;. &#44;A.</abbr>
+</p>
+<p><code>@math{--a@minus{} {\frac{1}{2}}}</code> <em class="math">--a&#8722; 
{\frac{1}{2}}</em>
+</p>
+<p><code>@image{f-ile,,,alt@verb{:jk _&quot; %}}</code> <img 
src="../images/f-ile.jpg" alt="altjk _&quot; %@"/>
+<code>@image{f--ile,aze,az,@verb{:jk _&quot; %@:} @b{in b 
&quot;},e--xt}</code> <img src="../images/f--ile.e--xt" alt="jk _&quot; %@ in b 
&quot;"/>
+<code>@image{file@verb{:jk _&quot; %@:},,,alt@verb{:jk _&quot; %@:}}</code> 
<img src="../images/filejk _&quot; %@.jpg" alt="altjk _&quot; %@"/>
+</p>
+
+
+
+<p>Somehow invalid use of @,:<br/>
+@, &#807;
+<br/>
+@,@&quot;u &#807;&#252;
+</p>
+<p>Invalid use of @&#8217;:<br/>
+@&#8217; &#769;
+<br/>
+@&#8217;@&quot;u &#769;&#252;
+</p>
+<p>@dotless{truc} truc
+@dotless{ij} ij
+<code>@dotless{--a}</code> &#8211;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 &lt;4 hex digits &#xabc;
+@U{FFFFFFFFFFFFFF}, value much too large &#xFFFFFFFFFFFFFF;
+@U{110000}, value just beyond Unicode &#x110000;
+</p>
+<p>@TeX, but without brace TeX<code>@#</code> #
+</p>
+<p><code>@w{--a}</code> &#8211;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&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li> after emph e&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8226; a&#8211;n itemize line i&#8211;tem 1
+</li><li>&#8226; a&#8211;n itemize line i&#8211;tem 2
+</li></ul>
+
+<dl compact="compact">
+<dt>a</dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt>a&#8211;missing style formatting</dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-copying-a-2'><span>a<a href='#index-copying-a-2' 
class='copiable-anchor'> &#182;</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'> &#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl class="def">
+<dt><span class="category">fun: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</a></span></dt>
+</dl>
+
+<p><code>@ref{node}</code> &#8216;node&#8217;
+</p>
+<p><code>@ref{,cross ref name}</code> &#8216;cross ref name&#8217;
+<code>@ref{,,title}</code> &#8216;title&#8217;
+<code>@ref{,,,file name}</code> <a href="file name.html#Top">(file name)</a>
+<code>@ref{,,,,manual}</code> <cite>manual</cite>
+<code>@ref{node,cross ref name}</code> &#8216;cross ref name&#8217;
+<code>@ref{node,,title}</code> &#8216;title&#8217;
+<code>@ref{node,,,file name}</code> <a href="file name.html#node">(file 
name)node</a>
+<code>@ref{node,,,,manual}</code> &#8216;node&#8217; in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,}</code> &#8216;title&#8217;
+<code>@ref{node,cross ref name,,file name}</code> <a href="file 
name.html#node">(file name)cross ref name</a>
+<code>@ref{node,cross ref name,,,manual}</code> &#8216;cross ref name&#8217; 
in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,file name}</code> <a href="file 
name.html#node">(file name)title</a>
+<code>@ref{node,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{node,cross ref name,title, file name, manual}</code> <a href="file 
name.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,title,file name}</code> <a href="file name.html#node">(file 
name)title</a>
+<code>@ref{node,,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a href="file 
name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{node,,title, file name, manual}</code> <a href="file 
name.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,,file name,manual}</code> <a href="file 
name.html#node">node</a> in <cite>manual</cite>
+<code>@ref{,cross ref name,title,}</code> &#8216;title&#8217;
+<code>@ref{,cross ref name,,file name}</code> <a href="file 
name.html#Top">(file name)cross ref name</a>
+<code>@ref{,cross ref name,,,manual}</code> &#8216;cross ref name&#8217; in 
<cite>manual</cite>
+<code>@ref{,cross ref name,title,file name}</code> <a href="file 
name.html#Top">(file name)title</a>
+<code>@ref{,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{,cross ref name,title, file name, manual}</code> <a href="file 
name.html#Top">title</a> in <cite>manual</cite>
+<code>@ref{,,title,file name}</code> <a href="file name.html#Top">(file 
name)title</a>
+<code>@ref{,,title,,manual}</code> &#8216;title&#8217; in <cite>manual</cite>
+<code>@ref{,,title, file name, manual}</code> <a href="file 
name.html#Top">title</a> in <cite>manual</cite>
+<code>@ref{,,,file name,manual}</code> <cite><a href="file 
name.html#Top">manual</a></cite>
+</p>
+<p><code>@inforef{,cross ref name }</code> See &#8216;cross ref name&#8217;
+<code>@inforef{,,file name}</code> See <a href="file name.html#Top">(file 
name)</a>
+<code>@inforef{,cross ref name, file name}</code> See <a href="file 
name.html#Top">(file name)cross ref name</a>
+<code>@inforef{}</code> 
+</p>
+
+
+
+
+
+
+
+
+<div class="top" id="Top">
+<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>&#160;&#160;</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>&#160;&#160;</td><td align="left" 
valign="top">Chapter 2
+</td></tr>
+</table>
+
+
+<div class="chapter" id="chapter">
+<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>&lt;
+&gt;
+&quot;
+&amp;
+&#8217;
+&#8216;
+</p>
+<p>&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;<br/>
+code: <code>``simple-double--three---four----''</code> <br/>
+asis: &#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221; <br/>
+strong: 
<strong>&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;</strong> 
<br/>
+kbd: <kbd>``simple-double--three---four----''</kbd> <br/>
+</p>
+<p>&#8216;<!-- /@w -->&#8216;simple-double-<!-- /@w 
-->-three&#8212;four&#8212;-&#8217;<!-- /@w -->&#8217;<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>@&quot;u &#252; 
+@&quot;{U} &#220; 
+@~n &#241;
+@^a &#226;
+@&#8217;e &#233;
+@=o &#333;
+@&#8216;i &#236;
+@&#8217;{e} &#233;
+@&#8217;{@dotless{i}} &#237; 
+@dotless{i} i
+@dotless{j} j
+@&#8216;{@=E} &#274;&#768; 
+@l{} &#322;
+@,{@&#8217;C} &#262;&#807;
+@,c &#231;
+@,c@&quot;u &#231;&#252; <br/>
+</p>
+<p>@U{0075} &#x0075;
+</p>
+<p>@* <br/>
+@ followed by a space
+&#160;
+@ followed by a tab
+&#160;
+@ followed by a new line
+&#160;<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 &#8226;
+@copyright &#169;
+@dots &#8230;
+@enddots <small class="enddots">...</small>
+@equiv &#8801;
+@error error&#8594;
+@expansion &#8614;
+@minus &#8722;
+@point &#9733;
+@print &#8867;
+@result &#8658;
+@today a sunny day
+</p>
+<p>@aa &#229;
+@AA &#197;
+@ae &#230;
+@oe &#339;
+@AE &#198;
+@OE &#338;
+@o &#248;
+@O &#216;
+@ss &#223;
+@l &#322;
+@L &#321;
+@DH &#208;
+@TH &#222;
+@dh &#240;
+@th &#254;
+</p>
+<p>@exclamdown &#161;
+@questiondown &#191;
+@pounds &#163;
+@registeredsymbol &#174;
+@ordf &#170;
+@ordm &#186;
+@comma &#44;
+@quotedblleft &#8220;
+@quotedblright &#8221;
+@quoteleft &#8216;
+@quoteright &#8217;
+@quotedblbase &#8222;
+@quotesinglbase &#8218;
+@guillemetleft &#171;
+@guillemetright &#187;
+@guillemotleft &#171;
+@guillemotright &#187;
+@guilsinglleft &#8249;
+@guilsinglright &#8250;
+@textdegree &#176;
+@euro &#8364;
+@arrow &#8594;
+@leq &#8804;
+@geq &#8805;
+@tie a&#160;b
+</p>
+<p><code>@acronym{--a,an accronym}</code> <acronym title="an 
accronym">&#8211;a</acronym> (an accronym)
+<code>@acronym{--a}</code> <acronym title="an accronym">&#8211;a</acronym>
+<code>@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr 
title="&#201;tude Autonome">&#201;&#8211;. &#44;A.</abbr> (&#201;tude Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude 
Autonome">&#201;&#8211;. &#44;A.</abbr>
+<code>@asis{--a}</code> &#8211;a
+<code>@b{--a}</code> <b>&#8211;a</b>
+<code>@cite{--a}</code> <cite>&#8211;a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@dfn{--a}</code> <em>&#8211;a</em>
+<code>@dmn{--a}</code> &#8211;a
+<code>@email{--a,--b}</code> <a href="mailto:--a";>&#8211;b</a>
+<code>@email{,--b}</code> &#8211;b
+<code>@email{--a}</code> <a href="mailto:--a";>--a</a>
+<code>@emph{--a}</code> <em>&#8211;a</em>
+<code>@env{--a}</code> <code>--a</code>
+<code>@file{--a}</code> <samp>--a</samp>
+<code>@i{--a}</code> <i>&#8211;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}} &#8722;</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">&#8211;a</span>
+<code>@samp{--a}</code> &#8216;<samp>--a</samp>&#8221;
+<code>@sc{--a}</code> <small>&#8211;A</small>
+<code>@strong{--a}</code> <strong>&#8211;a</strong>
+<code>@t{--a}</code> <tt>--a</tt>
+<code>@sansserif{--a}</code> <span class="sansserif">&#8211;a</span>
+<code>@slanted{--a}</code> <i>&#8211;a</i>
+<code>@titlefont{--a}</code> </p><h1 class="titlefont">&#8211;a</h1>
+<p><code>@indicateurl{--a}</code> &#8216;<code>--a</code>&#8221;
+<code>@uref{--a,--b}</code> <a href="--a">&#8211;b</a>
+<code>@uref{--a}</code> <a href="--a">--a</a>
+<code>@uref{,--b}</code> &#8211;b
+<code>@uref{--a,--b,--c}</code> <a href="--a">&#8211;c</a>
+<code>@uref{,--b,--c}</code> &#8211;c
+<code>@uref{--a,,--c}</code> <a href="--a">&#8211;c</a>
+<code>@uref{,,--c}</code> &#8211;c
+<code>@url{--a,--b}</code> <a href="--a">&#8211;b</a>
+<code>@url{--a,}</code> <a href="--a">--a</a>
+<code>@url{,--b}</code> &#8211;b
+<code>@var{--a}</code> <var>&#8211;a</var>
+<code>@verb{:--a:}</code> <tt>--a</tt>
+<code>@verb{:a  &lt; &amp; @ % &quot; --    b:}</code> <tt>a  &lt; &amp; @ % 
&quot; --    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&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a<!--
 /@w -->
+<code>@H{a}</code> a&#779;
+<code>@H{--a}</code> &#8211;a&#779;
+<code>@dotaccent{a}</code> &#551;
+<code>@dotaccent{--a}</code> &#8211;a&#775;
+<code>@ringaccent{a}</code> &#229;
+<code>@ringaccent{--a}</code> &#8211;a&#778;
+<code>@tieaccent{a}</code> a&#865;
+<code>@tieaccent{--a}</code> &#8211;a&#865;
+<code>@u{a}</code> &#259;
+<code>@u{--a}</code> &#8211;a&#774;
+<code>@ubaraccent{a}</code> a&#818;
+<code>@ubaraccent{--a}</code> &#8211;a&#818;
+<code>@udotaccent{a}</code> &#7841;
+<code>@udotaccent{--a}</code> &#8211;a&#803;
+<code>@v{a}</code> &#462;
+<code>@v{--a}</code> &#8211;a&#780;
+<code>@,{c}</code> &#231;
+<code>@,{--c}</code> &#8211;c&#807;
+<code>@ogonek{a}</code> &#261;
+<code>@ogonek{--a}</code> &#8211;a&#808;
+<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="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,l--i}</code> <img src="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,,l--e}</code> <img src="../images/f--ile.png" 
alt="f--ile"/>
+<code>@image{f--ile,,,alt}</code> <img src="../images/f--ile.png" alt="alt"/>
+<code>@image{f--ile,,,,.e-d-xt}</code> <img src="../images/f--ile.e--xt" 
alt="f--ile"/>
+<code>@image{f--ile,aze,az,alt,.e--xt}</code> <img 
src="../images/f--ile.e--xt" alt="alt"/>
+<code>@image{f-ile,aze,,a--lt}</code> <img src="../images/f-ile.jpg" 
alt="a&#8211;lt"/>
+<code>@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext} e--xt@}</code> <img 
src="../images/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 &#8594; A
+After clickstyle &#8658;
+<code>@clicksequence{click @click{} A}</code> click &#8658; 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>&#252; &#220; &#241; &#226; &#233; &#333; &#236; 
&#233; i j &#274;&#768;
+&#322; &#262;&#807; &#262;&#807; &#231; a&#779; &#551; &#229; a&#865;
+&#259; a&#818; &#7841; &#462; &#261; a<sup>h</sup><sub>l</sub>
+
+ &#160;&#160; &#160;   ! ? . @ } { 
+a sunny day
+</em></div>
+<div class="displaymath"><em>&#8594;
+&#x0075;
+TeX LaTeX &#8226; &#169; &#8230; ... &#8801;
+error&#8594; &#8614; &#8722; &#9733; &#8867; &#8658;
+&#229; &#197; &#230; &#339; &#198; &#338; &#248; &#216; &#223; &#322; &#321; 
&#208;
+&#222; &#240; &#254; &#161; &#191; &#163;
+&#174; &#170; &#186; &#44; 
+</em></div>
+<div class="displaymath"><em>&#8220; &#8221; 
+&#8216; &#8217; &#8222; &#8218; &#171;
+&#187; &#171; &#187; &#8249;
+&#8250; &#176; &#8364; &#8594; &#8804; &#8805;
+</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&#8212;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 &#233; TeX:</b> The something &#233; TeX is here.
+</p></blockquote>
+
+<blockquote>
+<p><b>@ at the end of line &#160;:</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">&#8212; <em>quotation author</em>
+</div>
+<blockquote>
+<p>indent in quotation
+</p></blockquote>
+
+<blockquote>
+<p>A small quot&#8212;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&#8211;temize
+</li></ul>
+
+<ul class="no-bullet">
+<li>+ i&#8211;tem +
+</li></ul>
+
+<ul>
+<li> b&#8211;ullet
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8722; minu&#8211;s
+</li></ul>
+
+<ul class="no-bullet">
+<li><em>after emph</em> e&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8226; a&#8211;n itemize line <span 
id="index-copying-index-entry-within-itemize"></span>
+i&#8211;tem 1
+</li><li>&#8226; a&#8211;n itemize line i&#8211;tem 2
+</li></ul>
+
+<ol>
+<li> e&#8211;numerate
+</li></ol>
+
+<ol start="3">
+<li> first third
+</li><li> second third
+</li></ol>
+
+<ol type="a" start="1">
+<li> e&#8211;numerate
+</li></ol>
+
+<ol type="a" start="3">
+<li> first c
+</li><li> second c
+</li></ol>
+
+<table>
+<thead><tr><th width="40%">mu&#8211;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
+<tbody><tr><td width="40%">mu&#8211;ltitable item</td><td 
width="60%">multitable tab</td></tr>
+<tr><td width="40%">mu&#8211;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&#8211;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 &#233; 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&amp;content-type=text/plain'
+$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD&amp;content-type=text/plain'
+</pre></div>
+<p>Less recent versions are also present.
+</p>
+<div class="display">
+<pre class="display">d&#8211;isplay
+</pre></div>
+
+<div class="display">
+<pre class="display">s&#8211;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&#8211;ormat
+</pre></div>
+
+<div class="format">
+<pre class="format">s&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>def&#8211;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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</a></span></dt>
+<dt id="index-copying-id-i-ule"><span class="category">cmde2: 
</span><span><strong><b>id &#8216;<samp>i</samp>&#8221; ule</b></strong> 
<em>truc</em><a href='#index-copying-id-i-ule' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dt><span class="category"><b>id &#8216;<samp>i</samp>&#8221; ule</b>: 
</span><strong></strong></dt>
+<dt><strong></strong></dt>
+<dt><span class="category">aaa: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt id="index-copying-machin"><span class="category">: 
</span><span><strong>machin</strong><a href='#index-copying-machin' 
class='copiable-anchor'> &#182;</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'> 
&#182;</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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</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 href="file 
n---ame@.html#c_002d_002d_002dhapter_0040">t&#8212;itle@</a> in 
<cite>ma&#8212;nual@</cite>.
+<code>@ref{chapter, cross ref name, title, file name, manual}</code> <a 
href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@pxref{chapter, cross ref name, title, file name, manual}</code> see <a 
href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@inforef{chapter, cross ref name, file name}</code> See <a 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 href="a comma, in file.html#s_002d_002dect_002cion">a comma&#44; in 
title</a> in <cite>a &#44; 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 href="file name.html#chapter">(file 
name)chapter</a>
+<code>@ref{chapter,,,,manual}</code> &#8216;chapter&#8217; 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 href="file 
name.html#chapter">(file name)cross ref name</a>
+<code>@ref{chapter,cross ref name,,,manual}</code> &#8216;cross ref 
name&#8217; in <cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,file name}</code> <a href="file 
name.html#chapter">(file name)title</a>
+<code>@ref{chapter,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title, file name, manual}</code> <a 
href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,title,file name}</code> <a href="file 
name.html#chapter">(file name)title</a>
+<code>@ref{chapter,,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a href="file 
name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,,file name,manual}</code> <a href="file 
name.html#chapter">chapter</a> in <cite>manual</cite>
+</p>
+
+<p><code>@ref{(pman)anode,cross ref name}</code> <a 
href="pman.html#anode">(pman)cross ref name</a>
+<code>@ref{(pman)anode,,title}</code> <a href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,,,file name}</code> <a href="file 
name.html#anode">(file name)anode</a>
+<code>@ref{(pman)anode,,,,manual}</code> <a href="pman.html#anode">anode</a> 
in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,}</code> <a 
href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,cross ref name,,file name}</code> <a href="file 
name.html#anode">(file name)cross ref name</a>
+<code>@ref{(pman)anode,cross ref name,,,manual}</code> <a 
href="pman.html#anode">cross ref name</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,file name}</code> <a href="file 
name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,cross ref name,title,,manual}</code> <a 
href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title, file name, manual}</code> <a 
href="file name.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title,file name}</code> <a href="file 
name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,,title,,manual}</code> <a 
href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title, file name, manual}</code> <a href="file 
name.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,,file name,manual}</code> <a href="file 
name.html#anode">anode</a> in <cite>manual</cite>
+</p>
+
+<p><code>@inforef{chapter, cross ref name, file name}</code> See <a href="file 
name.html#chapter">(file name)cross ref name</a>
+<code>@inforef{chapter}</code> See &#8216;chapter&#8217;
+<code>@inforef{chapter, cross ref name}</code> See &#8216;cross ref name&#8217;
+<code>@inforef{chapter,,file name}</code> See <a href="file 
name.html#chapter">(file name)chapter</a>
+<code>@inforef{node, cross ref name, file name}</code> See <a href="file 
name.html#node">(file name)cross ref name</a>
+<code>@inforef{node}</code> See &#8216;node&#8217;
+<code>@inforef{node, cross ref name}</code> See &#8216;cross ref name&#8217;
+<code>@inforef{node,,file name}</code> See <a href="file name.html#node">(file 
name)node</a>
+<code>@inforef{chapter, cross ref name, file name, spurious arg}</code> See <a 
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 href="a comma, in file.html#s_002d_002dect_002cion">(a comma, in file)a 
&#44; in cross
+ref</a>
+</p>
+<p>&#8216;<samp><a href="#chapter">chapter</a></samp>&#8221;.
+</p>
+<p><a 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><strong>a&#8211;strong</strong></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-copying-a_002d_002dasis'><span>a&#8211;asis<a 
href='#index-copying-a_002d_002dasis' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dt id='index-copying-b-2'><span>b<a href='#index-copying-b-2' 
class='copiable-anchor'> &#182;</a></span></dt>
+<dd><p>l&#8211;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'> &#182;</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'> &#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt><code>a--code</code></dt>
+<dd><p>Value&#8211;table code
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt>&#8216;<samp>a--samp</samp>&#8221;</dt>
+<dt>&#8216;<samp>a2--samp</samp>&#8221;</dt>
+<dd><p>Value&#8211;table samp
+</p></dd>
+</dl>
+
+<table class="cartouche" border="1"><tr><td>
+<p>c&#8211;artouche
+</p></td></tr></table>
+
+<p>g&#8211;roupe
+</p>
+<p align="left">f&#8211;lushleft
+more text
+</p>
+<p align="right">f&#8211;lushright
+more text
+</p>
+<div align="center">ce&#8211;ntered line
+</div>
+<p>r&#8211;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 @  &lt;&gt;.
+
+@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 &#44; ...">&#8211;a</acronym> (an accronym &#44; <small 
class="enddots">...</small>)
+<code>@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome} }</code> <abbr 
title="&#201;tude&#8211;&#44; Autonome">&#201;&#8211;. &#44;A.</abbr> 
(&#201;tude&#8211;&#44; <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude&#8211;&#44; 
Autonome">&#201;&#8211;. &#44;A.</abbr>
+</p>
+<p><code>@math{--a@minus{} {\frac{1}{2}}}</code> <em class="math">--a&#8722; 
{\frac{1}{2}}</em>
+</p>
+<p><code>@image{f-ile,,,alt@verb{:jk _&quot; %}}</code> <img 
src="../images/f-ile.jpg" alt="altjk _&quot; %@"/>
+<code>@image{f--ile,aze,az,@verb{:jk _&quot; %@:} @b{in b 
&quot;},e--xt}</code> <img src="../images/f--ile.e--xt" alt="jk _&quot; %@ in b 
&quot;"/>
+<code>@image{file@verb{:jk _&quot; %@:},,,alt@verb{:jk _&quot; %@:}}</code> 
<img src="../images/filejk _&quot; %@.jpg" alt="altjk _&quot; %@"/>
+</p>
+
+
+
+<p>Somehow invalid use of @,:<br/>
+@, &#807;
+<br/>
+@,@&quot;u &#807;&#252;
+</p>
+<p>Invalid use of @&#8217;:<br/>
+@&#8217; &#769;
+<br/>
+@&#8217;@&quot;u &#769;&#252;
+</p>
+<p>@dotless{truc} truc
+@dotless{ij} ij
+<code>@dotless{--a}</code> &#8211;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 &lt;4 hex digits &#xabc;
+@U{FFFFFFFFFFFFFF}, value much too large &#xFFFFFFFFFFFFFF;
+@U{110000}, value just beyond Unicode &#x110000;
+</p>
+<p>@TeX, but without brace TeX<code>@#</code> #
+</p>
+<p><code>@w{--a}</code> &#8211;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&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li> after emph e&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8226; a&#8211;n itemize line i&#8211;tem 1
+</li><li>&#8226; a&#8211;n itemize line i&#8211;tem 2
+</li></ul>
+
+<dl compact="compact">
+<dt>a</dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt>a&#8211;missing style formatting</dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-copying-a-2'><span>a<a href='#index-copying-a-2' 
class='copiable-anchor'> &#182;</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'> &#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl class="def">
+<dt><span class="category">fun: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</a></span></dt>
+</dl>
+
+<p><code>@ref{node}</code> &#8216;node&#8217;
+</p>
+<p><code>@ref{,cross ref name}</code> &#8216;cross ref name&#8217;
+<code>@ref{,,title}</code> &#8216;title&#8217;
+<code>@ref{,,,file name}</code> <a href="file name.html#Top">(file name)</a>
+<code>@ref{,,,,manual}</code> <cite>manual</cite>
+<code>@ref{node,cross ref name}</code> &#8216;cross ref name&#8217;
+<code>@ref{node,,title}</code> &#8216;title&#8217;
+<code>@ref{node,,,file name}</code> <a href="file name.html#node">(file 
name)node</a>
+<code>@ref{node,,,,manual}</code> &#8216;node&#8217; in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,}</code> &#8216;title&#8217;
+<code>@ref{node,cross ref name,,file name}</code> <a href="file 
name.html#node">(file name)cross ref name</a>
+<code>@ref{node,cross ref name,,,manual}</code> &#8216;cross ref name&#8217; 
in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,file name}</code> <a href="file 
name.html#node">(file name)title</a>
+<code>@ref{node,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{node,cross ref name,title, file name, manual}</code> <a href="file 
name.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,title,file name}</code> <a href="file name.html#node">(file 
name)title</a>
+<code>@ref{node,,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a href="file 
name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{node,,title, file name, manual}</code> <a href="file 
name.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,,file name,manual}</code> <a href="file 
name.html#node">node</a> in <cite>manual</cite>
+<code>@ref{,cross ref name,title,}</code> &#8216;title&#8217;
+<code>@ref{,cross ref name,,file name}</code> <a href="file 
name.html#Top">(file name)cross ref name</a>
+<code>@ref{,cross ref name,,,manual}</code> &#8216;cross ref name&#8217; in 
<cite>manual</cite>
+<code>@ref{,cross ref name,title,file name}</code> <a href="file 
name.html#Top">(file name)title</a>
+<code>@ref{,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{,cross ref name,title, file name, manual}</code> <a href="file 
name.html#Top">title</a> in <cite>manual</cite>
+<code>@ref{,,title,file name}</code> <a href="file name.html#Top">(file 
name)title</a>
+<code>@ref{,,title,,manual}</code> &#8216;title&#8217; in <cite>manual</cite>
+<code>@ref{,,title, file name, manual}</code> <a href="file 
name.html#Top">title</a> in <cite>manual</cite>
+<code>@ref{,,,file name,manual}</code> <cite><a href="file 
name.html#Top">manual</a></cite>
+</p>
+<p><code>@inforef{,cross ref name }</code> See &#8216;cross ref name&#8217;
+<code>@inforef{,,file name}</code> See <a href="file name.html#Top">(file 
name)</a>
+<code>@inforef{,cross ref name, file name}</code> See <a href="file 
name.html#Top">(file name)cross ref name</a>
+<code>@inforef{}</code> 
+</p>
+
+
+<p>Normal text
+</p>
+<p>&lt;
+&gt;
+&quot;
+&amp;
+&#8217;
+&#8216;
+</p>
+<p>&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;<br/>
+code: <code>``simple-double--three---four----''</code> <br/>
+asis: &#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221; <br/>
+strong: 
<strong>&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;</strong> 
<br/>
+kbd: <kbd>``simple-double--three---four----''</kbd> <br/>
+</p>
+<p>&#8216;<!-- /@w -->&#8216;simple-double-<!-- /@w 
-->-three&#8212;four&#8212;-&#8217;<!-- /@w -->&#8217;<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>@&quot;u &#252; 
+@&quot;{U} &#220; 
+@~n &#241;
+@^a &#226;
+@&#8217;e &#233;
+@=o &#333;
+@&#8216;i &#236;
+@&#8217;{e} &#233;
+@&#8217;{@dotless{i}} &#237; 
+@dotless{i} i
+@dotless{j} j
+@&#8216;{@=E} &#274;&#768; 
+@l{} &#322;
+@,{@&#8217;C} &#262;&#807;
+@,c &#231;
+@,c@&quot;u &#231;&#252; <br/>
+</p>
+<p>@U{0075} &#x0075;
+</p>
+<p>@* <br/>
+@ followed by a space
+&#160;
+@ followed by a tab
+&#160;
+@ followed by a new line
+&#160;<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 &#8226;
+@copyright &#169;
+@dots &#8230;
+@enddots <small class="enddots">...</small>
+@equiv &#8801;
+@error error&#8594;
+@expansion &#8614;
+@minus &#8722;
+@point &#9733;
+@print &#8867;
+@result &#8658;
+@today a sunny day
+</p>
+<p>@aa &#229;
+@AA &#197;
+@ae &#230;
+@oe &#339;
+@AE &#198;
+@OE &#338;
+@o &#248;
+@O &#216;
+@ss &#223;
+@l &#322;
+@L &#321;
+@DH &#208;
+@TH &#222;
+@dh &#240;
+@th &#254;
+</p>
+<p>@exclamdown &#161;
+@questiondown &#191;
+@pounds &#163;
+@registeredsymbol &#174;
+@ordf &#170;
+@ordm &#186;
+@comma &#44;
+@quotedblleft &#8220;
+@quotedblright &#8221;
+@quoteleft &#8216;
+@quoteright &#8217;
+@quotedblbase &#8222;
+@quotesinglbase &#8218;
+@guillemetleft &#171;
+@guillemetright &#187;
+@guillemotleft &#171;
+@guillemotright &#187;
+@guilsinglleft &#8249;
+@guilsinglright &#8250;
+@textdegree &#176;
+@euro &#8364;
+@arrow &#8594;
+@leq &#8804;
+@geq &#8805;
+@tie a&#160;b
+</p>
+<p><code>@acronym{--a,an accronym}</code> <acronym title="an 
accronym">&#8211;a</acronym> (an accronym)
+<code>@acronym{--a}</code> <acronym title="an accronym">&#8211;a</acronym>
+<code>@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr 
title="&#201;tude Autonome">&#201;&#8211;. &#44;A.</abbr> (&#201;tude Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude 
Autonome">&#201;&#8211;. &#44;A.</abbr>
+<code>@asis{--a}</code> &#8211;a
+<code>@b{--a}</code> <b>&#8211;a</b>
+<code>@cite{--a}</code> <cite>&#8211;a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@dfn{--a}</code> <em>&#8211;a</em>
+<code>@dmn{--a}</code> &#8211;a
+<code>@email{--a,--b}</code> <a href="mailto:--a";>&#8211;b</a>
+<code>@email{,--b}</code> &#8211;b
+<code>@email{--a}</code> <a href="mailto:--a";>--a</a>
+<code>@emph{--a}</code> <em>&#8211;a</em>
+<code>@env{--a}</code> <code>--a</code>
+<code>@file{--a}</code> <samp>--a</samp>
+<code>@i{--a}</code> <i>&#8211;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}} &#8722;</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">&#8211;a</span>
+<code>@samp{--a}</code> &#8216;<samp>--a</samp>&#8221;
+<code>@sc{--a}</code> <small>&#8211;A</small>
+<code>@strong{--a}</code> <strong>&#8211;a</strong>
+<code>@t{--a}</code> <tt>--a</tt>
+<code>@sansserif{--a}</code> <span class="sansserif">&#8211;a</span>
+<code>@slanted{--a}</code> <i>&#8211;a</i>
+<code>@titlefont{--a}</code> </p><h1 class="titlefont">&#8211;a</h1>
+<p><code>@indicateurl{--a}</code> &#8216;<code>--a</code>&#8221;
+<code>@uref{--a,--b}</code> <a href="--a">&#8211;b</a>
+<code>@uref{--a}</code> <a href="--a">--a</a>
+<code>@uref{,--b}</code> &#8211;b
+<code>@uref{--a,--b,--c}</code> <a href="--a">&#8211;c</a>
+<code>@uref{,--b,--c}</code> &#8211;c
+<code>@uref{--a,,--c}</code> <a href="--a">&#8211;c</a>
+<code>@uref{,,--c}</code> &#8211;c
+<code>@url{--a,--b}</code> <a href="--a">&#8211;b</a>
+<code>@url{--a,}</code> <a href="--a">--a</a>
+<code>@url{,--b}</code> &#8211;b
+<code>@var{--a}</code> <var>&#8211;a</var>
+<code>@verb{:--a:}</code> <tt>--a</tt>
+<code>@verb{:a  &lt; &amp; @ % &quot; --    b:}</code> <tt>a  &lt; &amp; @ % 
&quot; --    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&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a<!--
 /@w -->
+<code>@H{a}</code> a&#779;
+<code>@H{--a}</code> &#8211;a&#779;
+<code>@dotaccent{a}</code> &#551;
+<code>@dotaccent{--a}</code> &#8211;a&#775;
+<code>@ringaccent{a}</code> &#229;
+<code>@ringaccent{--a}</code> &#8211;a&#778;
+<code>@tieaccent{a}</code> a&#865;
+<code>@tieaccent{--a}</code> &#8211;a&#865;
+<code>@u{a}</code> &#259;
+<code>@u{--a}</code> &#8211;a&#774;
+<code>@ubaraccent{a}</code> a&#818;
+<code>@ubaraccent{--a}</code> &#8211;a&#818;
+<code>@udotaccent{a}</code> &#7841;
+<code>@udotaccent{--a}</code> &#8211;a&#803;
+<code>@v{a}</code> &#462;
+<code>@v{--a}</code> &#8211;a&#780;
+<code>@,{c}</code> &#231;
+<code>@,{--c}</code> &#8211;c&#807;
+<code>@ogonek{a}</code> &#261;
+<code>@ogonek{--a}</code> &#8211;a&#808;
+<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="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,l--i}</code> <img src="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,,l--e}</code> <img src="../images/f--ile.png" 
alt="f--ile"/>
+<code>@image{f--ile,,,alt}</code> <img src="../images/f--ile.png" alt="alt"/>
+<code>@image{f--ile,,,,.e-d-xt}</code> <img src="../images/f--ile.e--xt" 
alt="f--ile"/>
+<code>@image{f--ile,aze,az,alt,.e--xt}</code> <img 
src="../images/f--ile.e--xt" alt="alt"/>
+<code>@image{f-ile,aze,,a--lt}</code> <img src="../images/f-ile.jpg" 
alt="a&#8211;lt"/>
+<code>@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext} e--xt@}</code> <img 
src="../images/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 &#8594; A
+After clickstyle &#8658;
+<code>@clicksequence{click @click{} A}</code> click &#8658; 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>&#252; &#220; &#241; &#226; &#233; &#333; &#236; 
&#233; i j &#274;&#768;
+&#322; &#262;&#807; &#262;&#807; &#231; a&#779; &#551; &#229; a&#865;
+&#259; a&#818; &#7841; &#462; &#261; a<sup>h</sup><sub>l</sub>
+
+ &#160;&#160; &#160;   ! ? . @ } { 
+a sunny day
+</em></div>
+<div class="displaymath"><em>&#8594;
+&#x0075;
+TeX LaTeX &#8226; &#169; &#8230; ... &#8801;
+error&#8594; &#8614; &#8722; &#9733; &#8867; &#8658;
+&#229; &#197; &#230; &#339; &#198; &#338; &#248; &#216; &#223; &#322; &#321; 
&#208;
+&#222; &#240; &#254; &#161; &#191; &#163;
+&#174; &#170; &#186; &#44; 
+</em></div>
+<div class="displaymath"><em>&#8220; &#8221; 
+&#8216; &#8217; &#8222; &#8218; &#171;
+&#187; &#171; &#187; &#8249;
+&#8250; &#176; &#8364; &#8594; &#8804; &#8805;
+</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&#8212;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 &#233; TeX:</b> The something &#233; TeX is here.
+</p></blockquote>
+
+<blockquote>
+<p><b>@ at the end of line &#160;:</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">&#8212; <em>quotation author</em>
+</div>
+<blockquote>
+<p>indent in quotation
+</p></blockquote>
+
+<blockquote>
+<p>A small quot&#8212;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&#8211;temize
+</li></ul>
+
+<ul class="no-bullet">
+<li>+ i&#8211;tem +
+</li></ul>
+
+<ul>
+<li> b&#8211;ullet
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8722; minu&#8211;s
+</li></ul>
+
+<ul class="no-bullet">
+<li><em>after emph</em> e&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8226; a&#8211;n itemize line <span 
id="index-index-entry-within-itemize"></span>
+i&#8211;tem 1
+</li><li>&#8226; a&#8211;n itemize line i&#8211;tem 2
+</li></ul>
+
+<ol>
+<li> e&#8211;numerate
+</li></ol>
+
+<ol start="3">
+<li> first third
+</li><li> second third
+</li></ol>
+
+<ol type="a" start="1">
+<li> e&#8211;numerate
+</li></ol>
+
+<ol type="a" start="3">
+<li> first c
+</li><li> second c
+</li></ol>
+
+<table>
+<thead><tr><th width="40%">mu&#8211;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
+<tbody><tr><td width="40%">mu&#8211;ltitable item</td><td 
width="60%">multitable tab</td></tr>
+<tr><td width="40%">mu&#8211;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&#8211;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 &#233; 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&amp;content-type=text/plain'
+$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD&amp;content-type=text/plain'
+</pre></div>
+<p>Less recent versions are also present.
+</p>
+<div class="display">
+<pre class="display">d&#8211;isplay
+</pre></div>
+
+<div class="display">
+<pre class="display">s&#8211;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&#8211;ormat
+</pre></div>
+
+<div class="format">
+<pre class="format">s&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>def&#8211;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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</a></span></dt>
+<dt id="index-id-i-ule"><span class="category">cmde2: 
</span><span><strong><b>id &#8216;<samp>i</samp>&#8221; ule</b></strong> 
<em>truc</em><a href='#index-id-i-ule' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dt><span class="category"><b>id &#8216;<samp>i</samp>&#8221; ule</b>: 
</span><strong></strong></dt>
+<dt><strong></strong></dt>
+<dt><span class="category">aaa: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt id="index-machin"><span class="category">: 
</span><span><strong>machin</strong><a href='#index-machin' 
class='copiable-anchor'> &#182;</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'> &#182;</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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</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 href="file 
n---ame@.html#c_002d_002d_002dhapter_0040">t&#8212;itle@</a> in 
<cite>ma&#8212;nual@</cite>.
+<code>@ref{chapter, cross ref name, title, file name, manual}</code> <a 
href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@pxref{chapter, cross ref name, title, file name, manual}</code> see <a 
href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@inforef{chapter, cross ref name, file name}</code> See <a 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 href="a comma, in file.html#s_002d_002dect_002cion">a comma&#44; in 
title</a> in <cite>a &#44; 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 href="file name.html#chapter">(file 
name)chapter</a>
+<code>@ref{chapter,,,,manual}</code> &#8216;chapter&#8217; 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 href="file 
name.html#chapter">(file name)cross ref name</a>
+<code>@ref{chapter,cross ref name,,,manual}</code> &#8216;cross ref 
name&#8217; in <cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,file name}</code> <a href="file 
name.html#chapter">(file name)title</a>
+<code>@ref{chapter,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title, file name, manual}</code> <a 
href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,title,file name}</code> <a href="file 
name.html#chapter">(file name)title</a>
+<code>@ref{chapter,,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a href="file 
name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,,file name,manual}</code> <a href="file 
name.html#chapter">chapter</a> in <cite>manual</cite>
+</p>
+
+<p><code>@ref{(pman)anode,cross ref name}</code> <a 
href="pman.html#anode">(pman)cross ref name</a>
+<code>@ref{(pman)anode,,title}</code> <a href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,,,file name}</code> <a href="file 
name.html#anode">(file name)anode</a>
+<code>@ref{(pman)anode,,,,manual}</code> <a href="pman.html#anode">anode</a> 
in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,}</code> <a 
href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,cross ref name,,file name}</code> <a href="file 
name.html#anode">(file name)cross ref name</a>
+<code>@ref{(pman)anode,cross ref name,,,manual}</code> <a 
href="pman.html#anode">cross ref name</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,file name}</code> <a href="file 
name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,cross ref name,title,,manual}</code> <a 
href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title, file name, manual}</code> <a 
href="file name.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title,file name}</code> <a href="file 
name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,,title,,manual}</code> <a 
href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title, file name, manual}</code> <a href="file 
name.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,,file name,manual}</code> <a href="file 
name.html#anode">anode</a> in <cite>manual</cite>
+</p>
+
+<p><code>@inforef{chapter, cross ref name, file name}</code> See <a href="file 
name.html#chapter">(file name)cross ref name</a>
+<code>@inforef{chapter}</code> See &#8216;chapter&#8217;
+<code>@inforef{chapter, cross ref name}</code> See &#8216;cross ref name&#8217;
+<code>@inforef{chapter,,file name}</code> See <a href="file 
name.html#chapter">(file name)chapter</a>
+<code>@inforef{node, cross ref name, file name}</code> See <a href="file 
name.html#node">(file name)cross ref name</a>
+<code>@inforef{node}</code> See &#8216;node&#8217;
+<code>@inforef{node, cross ref name}</code> See &#8216;cross ref name&#8217;
+<code>@inforef{node,,file name}</code> See <a href="file name.html#node">(file 
name)node</a>
+<code>@inforef{chapter, cross ref name, file name, spurious arg}</code> See <a 
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 href="a comma, in file.html#s_002d_002dect_002cion">(a comma, in file)a 
&#44; in cross
+ref</a>
+</p>
+<p>&#8216;<samp><a href="#chapter">chapter</a></samp>&#8221;.
+</p>
+<p><a 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><strong>a&#8211;strong</strong></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-a_002d_002dasis'><span>a&#8211;asis<a 
href='#index-a_002d_002dasis' class='copiable-anchor'> &#182;</a></span></dt>
+<dt id='index-b-4'><span>b<a href='#index-b-4' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-a-2'><span><em>a</em><a href='#index-a-2' 
class='copiable-anchor'> &#182;</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'> 
&#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt><code>a--code</code></dt>
+<dd><p>Value&#8211;table code
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt>&#8216;<samp>a--samp</samp>&#8221;</dt>
+<dt>&#8216;<samp>a2--samp</samp>&#8221;</dt>
+<dd><p>Value&#8211;table samp
+</p></dd>
+</dl>
+
+<table class="cartouche" border="1"><tr><td>
+<p>c&#8211;artouche
+</p></td></tr></table>
+
+<p>g&#8211;roupe
+</p>
+<p align="left">f&#8211;lushleft
+more text
+</p>
+<p align="right">f&#8211;lushright
+more text
+</p>
+<div align="center">ce&#8211;ntered line
+</div>
+<p>r&#8211;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 @  &lt;&gt;.
+
+@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 &#44; ...">&#8211;a</acronym> (an accronym &#44; <small 
class="enddots">...</small>)
+<code>@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome} }</code> <abbr 
title="&#201;tude&#8211;&#44; Autonome">&#201;&#8211;. &#44;A.</abbr> 
(&#201;tude&#8211;&#44; <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude&#8211;&#44; 
Autonome">&#201;&#8211;. &#44;A.</abbr>
+</p>
+<p><code>@math{--a@minus{} {\frac{1}{2}}}</code> <em class="math">--a&#8722; 
{\frac{1}{2}}</em>
+</p>
+<p><code>@image{f-ile,,,alt@verb{:jk _&quot; %}}</code> <img 
src="../images/f-ile.jpg" alt="altjk _&quot; %@"/>
+<code>@image{f--ile,aze,az,@verb{:jk _&quot; %@:} @b{in b 
&quot;},e--xt}</code> <img src="../images/f--ile.e--xt" alt="jk _&quot; %@ in b 
&quot;"/>
+<code>@image{file@verb{:jk _&quot; %@:},,,alt@verb{:jk _&quot; %@:}}</code> 
<img src="../images/filejk _&quot; %@.jpg" alt="altjk _&quot; %@"/>
+</p>
+
+
+
+<p>Somehow invalid use of @,:<br/>
+@, &#807;
+<br/>
+@,@&quot;u &#807;&#252;
+</p>
+<p>Invalid use of @&#8217;:<br/>
+@&#8217; &#769;
+<br/>
+@&#8217;@&quot;u &#769;&#252;
+</p>
+<p>@dotless{truc} truc
+@dotless{ij} ij
+<code>@dotless{--a}</code> &#8211;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 &lt;4 hex digits &#xabc;
+@U{FFFFFFFFFFFFFF}, value much too large &#xFFFFFFFFFFFFFF;
+@U{110000}, value just beyond Unicode &#x110000;
+</p>
+<p>@TeX, but without brace TeX<code>@#</code> #
+</p>
+<p><code>@w{--a}</code> &#8211;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&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li> after emph e&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8226; a&#8211;n itemize line i&#8211;tem 1
+</li><li>&#8226; a&#8211;n itemize line i&#8211;tem 2
+</li></ul>
+
+<dl compact="compact">
+<dt>a</dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt>a&#8211;missing style formatting</dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-a-3'><span>a<a href='#index-a-3' class='copiable-anchor'> 
&#182;</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'> 
&#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl class="def">
+<dt><span class="category">fun: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</a></span></dt>
+</dl>
+
+<p><code>@ref{node}</code> &#8216;node&#8217;
+</p>
+<p><code>@ref{,cross ref name}</code> &#8216;cross ref name&#8217;
+<code>@ref{,,title}</code> &#8216;title&#8217;
+<code>@ref{,,,file name}</code> <a href="file name.html#Top">(file name)</a>
+<code>@ref{,,,,manual}</code> <cite>manual</cite>
+<code>@ref{node,cross ref name}</code> &#8216;cross ref name&#8217;
+<code>@ref{node,,title}</code> &#8216;title&#8217;
+<code>@ref{node,,,file name}</code> <a href="file name.html#node">(file 
name)node</a>
+<code>@ref{node,,,,manual}</code> &#8216;node&#8217; in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,}</code> &#8216;title&#8217;
+<code>@ref{node,cross ref name,,file name}</code> <a href="file 
name.html#node">(file name)cross ref name</a>
+<code>@ref{node,cross ref name,,,manual}</code> &#8216;cross ref name&#8217; 
in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,file name}</code> <a href="file 
name.html#node">(file name)title</a>
+<code>@ref{node,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{node,cross ref name,title, file name, manual}</code> <a href="file 
name.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,title,file name}</code> <a href="file name.html#node">(file 
name)title</a>
+<code>@ref{node,,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a href="file 
name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{node,,title, file name, manual}</code> <a href="file 
name.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,,file name,manual}</code> <a href="file 
name.html#node">node</a> in <cite>manual</cite>
+<code>@ref{,cross ref name,title,}</code> &#8216;title&#8217;
+<code>@ref{,cross ref name,,file name}</code> <a href="file 
name.html#Top">(file name)cross ref name</a>
+<code>@ref{,cross ref name,,,manual}</code> &#8216;cross ref name&#8217; in 
<cite>manual</cite>
+<code>@ref{,cross ref name,title,file name}</code> <a href="file 
name.html#Top">(file name)title</a>
+<code>@ref{,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{,cross ref name,title, file name, manual}</code> <a href="file 
name.html#Top">title</a> in <cite>manual</cite>
+<code>@ref{,,title,file name}</code> <a href="file name.html#Top">(file 
name)title</a>
+<code>@ref{,,title,,manual}</code> &#8216;title&#8217; in <cite>manual</cite>
+<code>@ref{,,title, file name, manual}</code> <a href="file 
name.html#Top">title</a> in <cite>manual</cite>
+<code>@ref{,,,file name,manual}</code> <cite><a href="file 
name.html#Top">manual</a></cite>
+</p>
+<p><code>@inforef{,cross ref name }</code> See &#8216;cross ref name&#8217;
+<code>@inforef{,,file name}</code> See <a href="file name.html#Top">(file 
name)</a>
+<code>@inforef{,cross ref name, file name}</code> See <a 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">
+
+&lt;
+&gt;
+&quot;
+&amp;
+'
+`
+
+``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>
+@&quot;u &#252; 
+@&quot;{U} &#220; 
+@~n &#241;
+@^a &#226;
+@'e &#233;
+@=o &#333;
+@`i &#236;
+@'{e} &#233;
+@'{@dotless{i}} &#237; 
+@dotless{i} i
+@dotless{j} j
+@`{@=E} &#274;&#768; 
+@l{} &#322;
+@,{@'C} &#262;&#807;
+@,c &#231;
+@,c@&quot;u &#231;&#252; 
+
+
+@U{0075} &#x0075;
+
+@* 
+
+@ followed by a space
+&#160;
+@ followed by a tab
+&#160;
+@ followed by a new line
+&#160;<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 &#8226;
+@copyright &#169;
+@dots &#8230;
+@enddots ...
+@equiv &#8801;
+@error error&#8594;
+@expansion &#8614;
+@minus &#8722;
+@point &#9733;
+@print &#8867;
+@result &#8658;
+@today a sunny day
+
+@aa &#229;
+@AA &#197;
+@ae &#230;
+@oe &#339;
+@AE &#198;
+@OE &#338;
+@o &#248;
+@O &#216;
+@ss &#223;
+@l &#322;
+@L &#321;
+@DH &#208;
+@TH &#222;
+@dh &#240;
+@th &#254;
+
+@exclamdown &#161;
+@questiondown &#191;
+@pounds &#163;
+@registeredsymbol &#174;
+@ordf &#170;
+@ordm &#186;
+@comma &#44;
+@quotedblleft &#8220;
+@quotedblright &#8221;
+@quoteleft &#8216;
+@quoteright &#8217;
+@quotedblbase &#8222;
+@quotesinglbase &#8218;
+@guillemetleft &#171;
+@guillemetright &#187;
+@guillemotleft &#171;
+@guillemotright &#187;
+@guilsinglleft &#8249;
+@guilsinglright &#8250;
+@textdegree &#176;
+@euro &#8364;
+@arrow &#8594;
+@leq &#8804;
+@geq &#8805;
+@tie a&#160;b
+
+<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="&#201;tude Autonome">&#201;--. &#44;A.</abbr> (&#201;tude Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude 
Autonome">&#201;--. &#44;A.</abbr>
+<code>@asis{--a}</code> --a
+<code>@b{--a}</code> <b>&#8211;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>&#8211;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}} &#8722;</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">&#8211;a</span>
+<code>@samp{--a}</code> &#8216;<samp>--a</samp>&#8221;
+<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">&#8211;a</span>
+<code>@slanted{--a}</code> <i>&#8211;a</i>
+<code>@titlefont{--a}</code> </pre><h1 class="titlefont">--a</h1><pre 
class="example">
+
+<code>@indicateurl{--a}</code> &#8216;<code>--a</code>&#8221;
+<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  &lt; &amp; @ % &quot; --    b:}</code> <tt>a  &lt; &amp; @ % 
&quot; --    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&#779;
+<code>@H{--a}</code> --a&#779;
+<code>@dotaccent{a}</code> &#551;
+<code>@dotaccent{--a}</code> --a&#775;
+<code>@ringaccent{a}</code> &#229;
+<code>@ringaccent{--a}</code> --a&#778;
+<code>@tieaccent{a}</code> a&#865;
+<code>@tieaccent{--a}</code> --a&#865;
+<code>@u{a}</code> &#259;
+<code>@u{--a}</code> --a&#774;
+<code>@ubaraccent{a}</code> a&#818;
+<code>@ubaraccent{--a}</code> --a&#818;
+<code>@udotaccent{a}</code> &#7841;
+<code>@udotaccent{--a}</code> --a&#803;
+<code>@v{a}</code> &#462;
+<code>@v{--a}</code> --a&#780;
+<code>@,{c}</code> &#231;
+<code>@,{--c}</code> --c&#807;
+<code>@ogonek{a}</code> &#261;
+<code>@ogonek{--a}</code> --a&#808;
+<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="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,l--i}</code> <img src="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,,l--e}</code> <img src="../images/f--ile.png" 
alt="f--ile"/>
+<code>@image{f--ile,,,alt}</code> <img src="../images/f--ile.png" alt="alt"/>
+<code>@image{f--ile,,,,.e-d-xt}</code> <img src="../images/f--ile.e--xt" 
alt="f--ile"/>
+<code>@image{f--ile,aze,az,alt,.e--xt}</code> <img 
src="../images/f--ile.e--xt" alt="alt"/>
+<code>@image{f-ile,aze,,a--lt}</code> <img src="../images/f-ile.jpg" 
alt="a&#8211;lt"/>
+<code>@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext} e--xt@}</code> <img 
src="../images/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 &#8594; A
+After clickstyle &#8658;
+<code>@clicksequence{click @click{} A}</code> click &#8658; 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>&#252; &#220; &#241; &#226; &#233; &#333; 
&#236; &#233; i j &#274;&#768;
+&#322; &#262;&#807; &#262;&#807; &#231; a&#779; &#551; &#229; a&#865;
+&#259; a&#818; &#7841; &#462; &#261; a<sup>h</sup><sub>l</sub>
+
+ &#160;&#160; &#160;   ! ? . @ } { 
+a sunny day
+</em></div><pre class="example">
+
+</pre><div class="displaymath"><em>&#8594;
+&#x0075;
+TeX LaTeX &#8226; &#169; &#8230; ... &#8801;
+error&#8594; &#8614; &#8722; &#9733; &#8867; &#8658;
+&#229; &#197; &#230; &#339; &#198; &#338; &#248; &#216; &#223; &#322; &#321; 
&#208;
+&#222; &#240; &#254; &#161; &#191; &#163;
+&#174; &#170; &#186; &#44; 
+</em></div><pre class="example">
+
+</pre><div class="displaymath"><em>&#8220; &#8221; 
+&#8216; &#8217; &#8222; &#8218; &#171;
+&#187; &#171; &#187; &#8249;
+&#8250; &#176; &#8364; &#8594; &#8804; &#8805;
+</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 &#233; TeX:</b> The something &#233; TeX is 
here.
+</pre></blockquote>
+<pre class="example">
+
+</pre><blockquote>
+<pre class="example"><b>@ at the end of line &#160;:</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>&#8722; <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>&#8226; a&#8211;n itemize line <pre class="example"><span 
id="index-index-entry-within-itemize-1"></span>i--tem 1
+</pre></li><li>&#8226; a&#8211;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 &#233; 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&amp;content-type=text/plain'
+$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD&amp;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'> 
&#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</a></span></dt>
+<dt id="index-id-i-ule-1"><span class="category">cmde2: 
</span><span><strong><b>id &#8216;<samp>i</samp>&#8221; ule</b></strong> 
<em>truc</em><a href='#index-id-i-ule-1' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dt><span class="category"><b>id &#8216;<samp>i</samp>&#8221; ule</b>: 
</span><strong></strong></dt>
+<dt><strong></strong></dt>
+<dt><span class="category">aaa: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt id="index-machin-6"><span class="category">: 
</span><span><strong>machin</strong><a href='#index-machin-6' 
class='copiable-anchor'> &#182;</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'> &#182;</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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</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'> 
&#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</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'> &#182;</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'> 
&#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</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'> 
&#182;</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'> 
&#182;</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'> 
&#182;</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'> 
&#182;</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'> 
&#182;</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'> 
&#182;</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'> 
&#182;</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'> 
&#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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 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 
href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@pxref{chapter, cross ref name, title, file name, manual}</code> see <a 
href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@inforef{chapter, cross ref name, file name}</code> See <a 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 href="a comma, in file.html#s_002d_002dect_002cion">a comma&#44; in 
title</a> in <cite>a &#44; 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 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 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 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 
href="file name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,title,file name}</code> <a 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 href="file 
name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,,file name,manual}</code> <a href="file 
name.html#chapter">chapter</a> in <cite>manual</cite>
+
+
+<code>@ref{(pman)anode,cross ref name}</code> <a 
href="pman.html#anode">(pman)cross ref name</a>
+<code>@ref{(pman)anode,,title}</code> <a href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,,,file name}</code> <a href="file 
name.html#anode">(file name)anode</a>
+<code>@ref{(pman)anode,,,,manual}</code> <a href="pman.html#anode">anode</a> 
in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,}</code> <a 
href="pman.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,cross ref name,,file name}</code> <a href="file 
name.html#anode">(file name)cross ref name</a>
+<code>@ref{(pman)anode,cross ref name,,,manual}</code> <a 
href="pman.html#anode">cross ref name</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,file name}</code> <a href="file 
name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,cross ref name,title,,manual}</code> <a 
href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title, file name, manual}</code> <a 
href="file name.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title,file name}</code> <a href="file 
name.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,,title,,manual}</code> <a 
href="pman.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title, file name, manual}</code> <a href="file 
name.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,,file name,manual}</code> <a href="file 
name.html#anode">anode</a> in <cite>manual</cite>
+
+
+<code>@inforef{chapter, cross ref name, file name}</code> See <a 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 href="file 
name.html#chapter">(file name)chapter</a>
+<code>@inforef{node, cross ref name, file name}</code> See <a 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 href="file name.html#node">(file 
name)node</a>
+<code>@inforef{chapter, cross ref name, file name, spurious arg}</code> See <a 
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 href="a comma, in file.html#s_002d_002dect_002cion">(a comma, in file)a 
&#44; in cross
+ref</a>
+
+&#8216;<samp><a href="#chapter">chapter</a></samp>&#8221;.
+
+<a 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><tt><strong>a--strong</strong></tt></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'> &#182;</a></span></dt>
+<dt id='index-b-5'><span><tt>b</tt><a href='#index-b-5' 
class='copiable-anchor'> &#182;</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'> &#182;</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'> &#182;</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><tt><code>a--code</code></tt></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><tt>&#8216;<samp>a--samp</samp>&#8221;</tt></dt>
+<dt><tt>&#8216;<samp>a2--samp</samp>&#8221;</tt></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 @  &lt;&gt;.
+
+@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 &#44; ...">--a</acronym> (an accronym &#44; ...)
+<code>@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome} }</code> <abbr 
title="&#201;tude&#8211;&#44; Autonome">&#201;--. &#44;A.</abbr> 
(&#201;tude--&#44; <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude&#8211;&#44; 
Autonome">&#201;--. &#44;A.</abbr>
+
+<code>@math{--a@minus{} {\frac{1}{2}}}</code> <em class="math">--a&#8722; 
{\frac{1}{2}}</em>
+
+<code>@image{f-ile,,,alt@verb{:jk _&quot; %}}</code> <img 
src="../images/f-ile.jpg" alt="altjk _&quot; %@"/>
+<code>@image{f--ile,aze,az,@verb{:jk _&quot; %@:} @b{in b 
&quot;},e--xt}</code> <img src="../images/f--ile.e--xt" alt="jk _&quot; %@ in b 
&quot;"/>
+<code>@image{file@verb{:jk _&quot; %@:},,,alt@verb{:jk _&quot; %@:}}</code> 
<img src="../images/filejk _&quot; %@.jpg" alt="altjk _&quot; %@"/>
+
+
+
+
+Somehow invalid use of @,:
+
+@, &#807;
+
+
+@,@&quot;u &#807;&#252;
+
+Invalid use of @':
+
+@' &#769;
+
+
+@'@&quot;u &#769;&#252;
+
+@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 &lt;4 hex digits &#xabc;
+@U{FFFFFFFFFFFFFF}, value much too large &#xFFFFFFFFFFFFFF;
+@U{110000}, value just beyond Unicode &#x110000;
+
+@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>&#8226; a&#8211;n itemize line <pre class="example">i--tem 1
+</pre></li><li>&#8226; a&#8211;n itemize line <pre class="example">i--tem 2
+</pre></li></ul>
+<pre class="example">
+
+</pre><dl compact="compact">
+<dt><tt>a</tt></dt>
+<dd><pre class="example">l--ine
+</pre></dd>
+</dl>
+<pre class="example">
+
+</pre><dl compact="compact">
+<dt><tt>a--missing style formatting</tt></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'> &#182;</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'> &#182;</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><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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 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 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 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 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 href="file 
name.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,title,file name}</code> <a 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 href="file 
name.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{node,,title, file name, manual}</code> <a href="file 
name.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,,file name,manual}</code> <a 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 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 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 href="file 
name.html#Top">title</a> in <cite>manual</cite>
+<code>@ref{,,title,file name}</code> <a 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 href="file 
name.html#Top">title</a> in <cite>manual</cite>
+<code>@ref{,,,file name,manual}</code> <cite><a 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 href="file name.html#Top">(file 
name)</a>
+<code>@inforef{,cross ref name, file name}</code> See <a 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: &#160; </th><td><a class="summary-letter" 
href="#chapter-1_truc_letter-T"><b>T</b></a>
+ &#160; 
+</td></tr></table>
+<table class="index-truc" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&#160;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_truc_letter-T">T</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-truc-4">truc</a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-1_truc_letter-T"><b>T</b></a>
+ &#160; 
+</td></tr></table>
+
+<p>codeidx
+</p>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-1_codeidx_letter-A"><b>A</b></a>
+ &#160; 
+</td></tr></table>
+<table class="index-codeidx" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&#160;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_codeidx_letter-A">A</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-a-index_002d_002d_002dentry-te-_002d_002d_002d-i"><code>a 
<var>index---entry</var> t&#7869; --- &#238;</code></a></td><td>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-1_codeidx_letter-A"><b>A</b></a>
+ &#160; 
+</td></tr></table>
+
+<p>cp
+</p><table><tr><th valign="top">Jump to: &#160; </th><td><a 
class="summary-letter" href="#chapter-1_cp_symbol-1"><b>&quot;</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_symbol-2"><b>-</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_symbol-3"><b>.</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_symbol-4"><b>?</b></a>
+ &#160; 
+<br/>
+<a class="summary-letter" href="#chapter-1_cp_letter-A"><b>A</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-B"><b>B</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-C"><b>C</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-D"><b>D</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-G"><b>G</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-I"><b>I</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-T"><b>T</b></a>
+ &#160; 
+</td></tr></table>
+<table class="index-cp" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&#160;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_symbol-1">&quot;</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-_0060_0060">&#8220;</a></td><td>&#160;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-titlepage-_0060_0060">&#8220;</a></td><td>&#160;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_0060_0060">&#8220;</a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_0060_0060-1">&#8220;</a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_symbol-2">-</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-_002d_002doption">&#8211;option</a></td><td>&#160;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-titlepage-_002d_002doption">&#8211;option</a></td><td>&#160;</td><td
 valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002d_002doption">&#8211;option</a></td><td>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002d_002doption-1">&#8211;option</a></td><td>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_symbol-3">.</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002e">.</a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_symbol-4">?</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_003f">?</a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_letter-A">A</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-a">a</a></td><td>&#160;</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>&#160;</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&#8212;a</a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_letter-B">B</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-b-2"><code>b</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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&#8212;b, 
c&#8212;c</a></td><td>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_letter-C">C</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-counting-entry">counting 
entry</a></td><td>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_letter-D">D</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-d_002d_002d_002ddd">d&#8212;dd, 
e&#8212;ee, f&#8212;ff</a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_letter-G">G</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-g_002d_002d_002dgg">g&#8212;gg, 
h&#8212;hh jjj, k&#8212;kk, l&#8212;ll</a></td><td>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_letter-I">I</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-index-entry-between-item-and-itemx">index entry between 
item and itemx</a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_letter-T">T</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-t_002d_002druc">t&#8211;ruc</a></td><td>&#160;</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&#8211;ruc</a></td><td>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-1_cp_symbol-1"><b>&quot;</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_symbol-2"><b>-</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_symbol-3"><b>.</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_symbol-4"><b>?</b></a>
+ &#160; 
+<br/>
+<a class="summary-letter" href="#chapter-1_cp_letter-A"><b>A</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-B"><b>B</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-C"><b>C</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-D"><b>D</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-G"><b>G</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-I"><b>I</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-T"><b>T</b></a>
+ &#160; 
+</td></tr></table>
+
+<p>fn
+</p><table><tr><th valign="top">Jump to: &#160; </th><td><a 
class="summary-letter" href="#chapter-1_fn_symbol-1"><b>-</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_symbol-2"><b>.</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_symbol-3"><b>?</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_symbol-4"><b>`</b></a>
+ &#160; 
+<br/>
+<a class="summary-letter" href="#chapter-1_fn_letter-A"><b>A</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-B"><b>B</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-D"><b>D</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-F"><b>F</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-I"><b>I</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-L"><b>L</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-M"><b>M</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-N"><b>N</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-T"><b>T</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-X"><b>X</b></a>
+ &#160; 
+</td></tr></table>
+<table class="index-fn" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&#160;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_symbol-1">-</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-_002d_002dfoption"><code>--foption</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_symbol-2">.</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002e-1"><code>.</code></a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_symbol-3">?</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_003f-1"><code>?</code></a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_symbol-4">`</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-_0060_0060-1"><code>``</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-A">A</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-a"><code>a</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-B">B</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-b"><code>b</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-D">D</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-d_002d_002deffn_005fname"><code>d--effn_name</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-F">F</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-f_002d_002d_002daa"><code>f---aa</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-I">I</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-i"><code><var>i</var></code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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 
&#8216;<samp>i</samp>&#8221; ule</b></code></a></td><td>&#160;</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 
&#8216;<samp>i</samp>&#8221; ule</b></code></a></td><td>&#160;</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 
&#8216;<samp>i</samp>&#8221; ule</b></code></a></td><td>&#160;</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 
&#8216;<samp>i</samp>&#8221; ule</b></code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-L">L</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-copying-log-trap"><code>log 
trap</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-M">M</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-machin"><code>machin</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-N">N</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-n_002d_002dame"><code>n--ame</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-T">T</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-t_002d_002druc-1"><code>t--ruc</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-X">X</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-xxx"><code>xxx, 
zzz</code></a></td><td>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-1_fn_symbol-1"><b>-</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_symbol-2"><b>.</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_symbol-3"><b>?</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_symbol-4"><b>`</b></a>
+ &#160; 
+<br/>
+<a class="summary-letter" href="#chapter-1_fn_letter-A"><b>A</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-B"><b>B</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-D"><b>D</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-F"><b>F</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-I"><b>I</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-L"><b>L</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-M"><b>M</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-N"><b>N</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-T"><b>T</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-X"><b>X</b></a>
+ &#160; 
+</td></tr></table>
+
+<p>vr
+</p>
+<p>ky
+</p>
+<p>pg
+</p>
+<p>tp
+</p><table><tr><th valign="top">Jump to: &#160; </th><td><a 
class="summary-letter" href="#chapter-1_tp_letter-D"><b>D</b></a>
+ &#160; 
+</td></tr></table>
+<table class="index-tp" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&#160;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_tp_letter-D">D</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-d_002d_002deftp_005fname"><code>d--eftp_name</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-1_tp_letter-D"><b>D</b></a>
+ &#160; 
+</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">&#8226; <a 
href="#s_002d_002dect_002cion">s--ect&#44;ion</a>:: s&#8211;ect&#44;ion
+</pre><pre class="menu-comment">
+
+Menu comment
+&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;
+
+
+</pre></td></tr></table>
+</div>
+
+<div class="section" id="s_002d_002dect_002cion">
+<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>&#160;&#160;</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 &#8220;simple-double&#8211;</a></td><td>&#160;&#160;</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&#8212;four&#8212;-&#8221;</a></td><td>&#160;&#160;</td><td align="left" 
valign="top">
+</td></tr>
+</table>
+
+<div class="subsection" id="subsection">
+<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 &#8220;simple-double&#8211;</a></td><td>&#160;&#160;</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&#8212;four&#8212;-&#8221;</a></td><td>&#160;&#160;</td><td align="left" 
valign="top">
+</td></tr>
+</table>
+
+<span id="anchor"></span>
+<div class="subsubsection" 
id="subsubsection-_0060_0060simple_002ddouble_002d_002d">
+<span id="subsubsection-_0060_0060simple_002ddouble_002d_002d-1"></span><h4 
class="subsubsection">1.1.1.1 subsubsection &#8220;simple-double&#8211;</h4>
+
+</div>
+<div class="subsubsection" 
id="subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027">
+<span id="three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027"></span><h4 
class="subsubsection">1.1.1.2 three&#8212;four&#8212;-&#8221;</h4>
+
+</div>
+</div>
+</div>
+</div>
+<div class="centerchap" id="chapter2">
+<span id="chapter-2"></span><h1 class="centerchap" align="center">chapter 
2</h1>
+
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-2_cp_symbol-1"><b>&quot;</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-2"><b>-</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-3"><b>.</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-4"><b>?</b></a>
+ &#160; 
+<br/>
+<a class="summary-letter" href="#chapter-2_cp_letter-A"><b>A</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-B"><b>B</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-C"><b>C</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-D"><b>D</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-G"><b>G</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-I"><b>I</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-T"><b>T</b></a>
+ &#160; 
+</td></tr></table>
+<table class="index-cp" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&#160;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_symbol-1">&quot;</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-_0060_0060">&#8220;</a></td><td>&#160;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-titlepage-_0060_0060">&#8220;</a></td><td>&#160;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_0060_0060">&#8220;</a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_0060_0060-1">&#8220;</a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_symbol-2">-</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-_002d_002doption">&#8211;option</a></td><td>&#160;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-titlepage-_002d_002doption">&#8211;option</a></td><td>&#160;</td><td
 valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002d_002doption">&#8211;option</a></td><td>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002d_002doption-1">&#8211;option</a></td><td>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_symbol-3">.</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002e">.</a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_symbol-4">?</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_003f">?</a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_letter-A">A</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-a">a</a></td><td>&#160;</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>&#160;</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&#8212;a</a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_letter-B">B</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-b-2"><code>b</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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&#8212;b, 
c&#8212;c</a></td><td>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_letter-C">C</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-counting-entry">counting 
entry</a></td><td>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_letter-D">D</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-d_002d_002d_002ddd">d&#8212;dd, 
e&#8212;ee, f&#8212;ff</a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_letter-G">G</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-g_002d_002d_002dgg">g&#8212;gg, 
h&#8212;hh jjj, k&#8212;kk, l&#8212;ll</a></td><td>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_letter-I">I</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-index-entry-between-item-and-itemx">index entry between 
item and itemx</a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_letter-T">T</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-t_002d_002druc">t&#8211;ruc</a></td><td>&#160;</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&#8211;ruc</a></td><td>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-2_cp_symbol-1"><b>&quot;</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-2"><b>-</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-3"><b>.</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-4"><b>?</b></a>
+ &#160; 
+<br/>
+<a class="summary-letter" href="#chapter-2_cp_letter-A"><b>A</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-B"><b>B</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-C"><b>C</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-D"><b>D</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-G"><b>G</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-I"><b>I</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-T"><b>T</b></a>
+ &#160; 
+</td></tr></table>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-2_fn_symbol-1"><b>-</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-2"><b>.</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-3"><b>?</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-4"><b>`</b></a>
+ &#160; 
+<br/>
+<a class="summary-letter" href="#chapter-2_fn_letter-A"><b>A</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-B"><b>B</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-D"><b>D</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-F"><b>F</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-I"><b>I</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-L"><b>L</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-M"><b>M</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-N"><b>N</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-T"><b>T</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-X"><b>X</b></a>
+ &#160; 
+</td></tr></table>
+<table class="index-fn" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&#160;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_symbol-1">-</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-_002d_002dfoption"><code>--foption</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_symbol-2">.</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002e-1"><code>.</code></a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_symbol-3">?</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_003f-1"><code>?</code></a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_symbol-4">`</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-_0060_0060-1"><code>``</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-A">A</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-a"><code>a</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-B">B</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-b"><code>b</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-D">D</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-d_002d_002deffn_005fname"><code>d--effn_name</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-F">F</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-f_002d_002d_002daa"><code>f---aa</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-I">I</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-i"><code><var>i</var></code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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 
&#8216;<samp>i</samp>&#8221; ule</b></code></a></td><td>&#160;</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 
&#8216;<samp>i</samp>&#8221; ule</b></code></a></td><td>&#160;</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 
&#8216;<samp>i</samp>&#8221; ule</b></code></a></td><td>&#160;</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 
&#8216;<samp>i</samp>&#8221; ule</b></code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-L">L</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-copying-log-trap"><code>log 
trap</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-M">M</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-machin"><code>machin</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-N">N</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-n_002d_002dame"><code>n--ame</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-T">T</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-t_002d_002druc-1"><code>t--ruc</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-X">X</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-xxx"><code>xxx, 
zzz</code></a></td><td>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-2_fn_symbol-1"><b>-</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-2"><b>.</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-3"><b>?</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-4"><b>`</b></a>
+ &#160; 
+<br/>
+<a class="summary-letter" href="#chapter-2_fn_letter-A"><b>A</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-B"><b>B</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-D"><b>D</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-F"><b>F</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-I"><b>I</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-L"><b>L</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-M"><b>M</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-N"><b>N</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-T"><b>T</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-X"><b>X</b></a>
+ &#160; 
+</td></tr></table>
+
+</div>
+</div>
+<div class="Footnotes_element" id="SEC_Foot">
+<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><div class="Contents_element" id="SEC_Contents">
+<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 &#8220;simple-double&#8211;</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&#8212;four&#8212;-&#8221;</a></li>
+      </ul></li>
+    </ul></li>
+  </ul></li>
+  <li><a id="toc-chapter-2" href="#chapter2" rel="index">chapter 2</a></li>
+</ul>
+</div>
+</div><div class="Overview_element" id="SEC_Overview">
+<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><p>
+  <span class="smaller">This document was generated on <em>a sunny day</em> 
using <a 
href="http://www.gnu.org/software/texinfo/";><em>texi2any</em></a>.</span>
+</p>
+
+
+</body>
+</html>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/nav_toc.xhtml
 
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/nav_toc.xhtml
new file mode 100644
index 0000000..5280054
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/nav_toc.xhtml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<html xmlns="http://www.w3.org/1999/xhtml"; 
xmlns:epub="http://www.idpf.org/2007/ops";>
+<head>
+<meta charset="utf-8" />
+<title>title -a - Table of contents</title>
+</head>
+<body>
+<nav epub:type="toc">
+<h1>Table of contents</h1>
+<ol>
+<li><a href="formatting.xhtml#Top">Top section</a></li>
+<li><a href="formatting.xhtml#chapter">1 chapter</a></li>
+<ol>
+<li><a href="formatting.xhtml#s_002d_002dect_002cion">1.1 A section</a></li>
+<ol>
+<li><a href="formatting.xhtml#subsection">1.1.1 subsection</a></li>
+<ol>
+<li><a 
href="formatting.xhtml#subsubsection-_0060_0060simple_002ddouble_002d_002d">1.1.1.1
 subsubsection &quot;simple-double-</a></li>
+<li><a 
href="formatting.xhtml#subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027">1.1.1.2
 three--four---&quot;</a></li>
+</ol>
+</ol>
+</ol>
+<li><a href="formatting.xhtml#chapter2">chapter 2</a></li>
+</ol>
+</nav>
+</body>
+</html>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/META-INF/container.xml
 
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/META-INF/container.xml
new file mode 100644
index 0000000..2612c67
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/META-INF/container.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0"?>
+<container version="1.0" 
xmlns="urn:oasis:names:tc:opendocument:xmlns:container">
+    <rootfiles>
+        <rootfile full-path="EPUB/formatting.opf"
+            media-type="application/oebps-package+xml" />      
+    </rootfiles>
+</container>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/mimetype 
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/mimetype
new file mode 100644
index 0000000..403c4f0
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/mimetype
@@ -0,0 +1 @@
+application/epub+zip
diff --git a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting.1 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting.1
new file mode 100644
index 0000000..e69de29
diff --git a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting.2 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting.2
new file mode 100644
index 0000000..b3b87ea
--- /dev/null
+++ b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting.2
@@ -0,0 +1,314 @@
+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)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:28: warning: @image file `f--ile@.' (for HTML) not found, 
using `f--ile@..file ext e--xt}' (possibly involving @mymacro)
+texi2any: @image file `f--ile@.' can not be copied
+formatting.texi:28: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:28: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" %@.jpg' (possibly involving @mymacro)
+texi2any: @image file `filejk _" %@' can not be copied
+formatting.texi:18: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:18: warning: @image file `f--ile@.' (for HTML) not found, 
using `f--ile@..file ext e--xt}' (possibly involving @mymacro)
+texi2any: @image file `f--ile@.' can not be copied
+formatting.texi:18: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:18: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" %@.jpg' (possibly involving @mymacro)
+texi2any: @image file `filejk _" %@' can not be copied
+formatting.texi:18: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:18: warning: @image file `f--ile@.' (for HTML) not found, 
using `f--ile@..file ext e--xt}' (possibly involving @mymacro)
+texi2any: @image file `f--ile@.' can not be copied
+formatting.texi:18: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:18: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" %@.jpg' (possibly involving @mymacro)
+texi2any: @image file `filejk _" %@' can not be copied
+formatting.texi:64: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:64: warning: @image file `f--ile@.' (for HTML) not found, 
using `f--ile@..file ext e--xt}' (possibly involving @mymacro)
+texi2any: @image file `f--ile@.' can not be copied
+formatting.texi:64: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:64: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" %@.jpg' (possibly involving @mymacro)
+texi2any: @image file `filejk _" %@' can not be copied
+formatting.texi:68: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:68: warning: @image file `f--ile@.' (for HTML) not found, 
using `f--ile@..file ext e--xt}' (possibly involving @mymacro)
+texi2any: @image file `f--ile@.' can not be copied
+formatting.texi:68: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+texi2any: @image file `f-ile' can not be copied
+formatting.texi:68: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" %@.jpg' (possibly involving @mymacro)
+texi2any: @image file `filejk _" %@' can not be copied
diff --git 
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/formatting.opf
 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/formatting.opf
new file mode 100644
index 0000000..f8bab13
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/formatting.opf
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<package xmlns="http://www.idpf.org/2007/opf"; version="3.2" 
unique-identifier="texi-uid">
+   <metadata xmlns:dc="http://purl.org/dc/elements/1.1/";>
+      <dc:identifier id="texi-uid">texinfo:formatting</dc:identifier>
+      <dc:title>title -a</dc:title>
+<dc:creator>author1 -a with accents in name Te'c,a</dc:creator>
+<dc:creator>author2 -a</dc:creator>
+<dc:creator>author</dc:creator>
+   </metadata>
+   <manifest>
+      <item id="nav" properties="nav" media-type="application/xhtml+xml" 
href="xhtml/nav_toc.xhtml"/>
+      <item id="unit1" media-type="application/xhtml+xml" 
href="xhtml/formatting.xhtml"/>
+      <item id="unit2" media-type="application/xhtml+xml" 
href="xhtml/chapter.xhtml"/>
+      <item id="unit3" media-type="application/xhtml+xml" 
href="xhtml/s_002d_002dect_002cion.xhtml"/>
+      <item id="unit4" media-type="application/xhtml+xml" 
href="xhtml/subsection.xhtml"/>
+      <item id="unit5" media-type="application/xhtml+xml" 
href="xhtml/subsubsection-_0060_0060simple_002ddouble_002d_002d.xhtml"/>
+      <item id="unit6" media-type="application/xhtml+xml" 
href="xhtml/subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.xhtml"/>
+      <item id="unit7" media-type="application/xhtml+xml" 
href="xhtml/chapter2.xhtml"/>
+      <item id="image1" media-type="e--xt/image" href="images/f--ile.e--xt"/>  
    <item id="image2" media-type=" image/png" href="images/f--ile.png"/>   
</manifest>
+   <spine>
+      <itemref idref="unit1"/>
+      <itemref idref="unit2"/>
+      <itemref idref="unit3"/>
+      <itemref idref="unit4"/>
+      <itemref idref="unit5"/>
+      <itemref idref="unit6"/>
+      <itemref idref="unit7"/>
+   </spine>
+</package>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/f--ile.e--xt
 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/f--ile.e--xt
new file mode 100644
index 0000000..e69de29
diff --git 
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/f--ile.png
 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/f--ile.png
new file mode 100644
index 0000000..e69de29
diff --git 
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter.xhtml
 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter.xhtml
new file mode 100644
index 0000000..506331a
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter.xhtml
@@ -0,0 +1,4496 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml";>
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<!-- 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 >=
+@tie a b
+
+@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>1 chapter (title &#8211;a)</title>
+
+<meta name="description" content="1 chapter (title &#8211;a)"/>
+<meta name="keywords" content="1 chapter (title &#8211;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.smaller {font-size: smaller}
+span:hover a.copiable-anchor {visibility: visible}
+ul.no-bullet {list-style: none}
+-->
+</style>
+
+
+</head>
+
+<body lang="en">
+<div class="chapter" id="chapter">
+<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>&lt;
+&gt;
+&quot;
+&amp;
+&#8217;
+&#8216;
+</p>
+<p>&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;<br/>
+code: <code>``simple-double--three---four----''</code> <br/>
+asis: &#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221; <br/>
+strong: 
<strong>&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;</strong> 
<br/>
+kbd: <kbd>``simple-double--three---four----''</kbd> <br/>
+</p>
+<p>&#8216;<!-- /@w -->&#8216;simple-double-<!-- /@w 
-->-three&#8212;four&#8212;-&#8217;<!-- /@w -->&#8217;<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>@&quot;u &#252; 
+@&quot;{U} &#220; 
+@~n &#241;
+@^a &#226;
+@&#8217;e &#233;
+@=o &#333;
+@&#8216;i &#236;
+@&#8217;{e} &#233;
+@&#8217;{@dotless{i}} &#237; 
+@dotless{i} i
+@dotless{j} j
+@&#8216;{@=E} &#274;&#768; 
+@l{} &#322;
+@,{@&#8217;C} &#262;&#807;
+@,c &#231;
+@,c@&quot;u &#231;&#252; <br/>
+</p>
+<p>@U{0075} &#x0075;
+</p>
+<p>@* <br/>
+@ followed by a space
+&#160;
+@ followed by a tab
+&#160;
+@ followed by a new line
+&#160;<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 &#8226;
+@copyright &#169;
+@dots &#8230;
+@enddots <small class="enddots">...</small>
+@equiv &#8801;
+@error error&#8594;
+@expansion &#8614;
+@minus &#8722;
+@point &#9733;
+@print &#8867;
+@result &#8658;
+@today a sunny day
+</p>
+<p>@aa &#229;
+@AA &#197;
+@ae &#230;
+@oe &#339;
+@AE &#198;
+@OE &#338;
+@o &#248;
+@O &#216;
+@ss &#223;
+@l &#322;
+@L &#321;
+@DH &#208;
+@TH &#222;
+@dh &#240;
+@th &#254;
+</p>
+<p>@exclamdown &#161;
+@questiondown &#191;
+@pounds &#163;
+@registeredsymbol &#174;
+@ordf &#170;
+@ordm &#186;
+@comma &#44;
+@quotedblleft &#8220;
+@quotedblright &#8221;
+@quoteleft &#8216;
+@quoteright &#8217;
+@quotedblbase &#8222;
+@quotesinglbase &#8218;
+@guillemetleft &#171;
+@guillemetright &#187;
+@guillemotleft &#171;
+@guillemotright &#187;
+@guilsinglleft &#8249;
+@guilsinglright &#8250;
+@textdegree &#176;
+@euro &#8364;
+@arrow &#8594;
+@leq &#8804;
+@geq &#8805;
+@tie a&#160;b
+</p>
+<p><code>@acronym{--a,an accronym}</code> <acronym title="an 
accronym">&#8211;a</acronym> (an accronym)
+<code>@acronym{--a}</code> <acronym title="an accronym">&#8211;a</acronym>
+<code>@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr 
title="&#201;tude Autonome">&#201;&#8211;. &#44;A.</abbr> (&#201;tude Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude 
Autonome">&#201;&#8211;. &#44;A.</abbr>
+<code>@asis{--a}</code> &#8211;a
+<code>@b{--a}</code> <b>&#8211;a</b>
+<code>@cite{--a}</code> <cite>&#8211;a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@dfn{--a}</code> <em>&#8211;a</em>
+<code>@dmn{--a}</code> &#8211;a
+<code>@email{--a,--b}</code> <a href="mailto:--a";>&#8211;b</a>
+<code>@email{,--b}</code> &#8211;b
+<code>@email{--a}</code> <a href="mailto:--a";>--a</a>
+<code>@emph{--a}</code> <em>&#8211;a</em>
+<code>@env{--a}</code> <code>--a</code>
+<code>@file{--a}</code> <samp>--a</samp>
+<code>@i{--a}</code> <i>&#8211;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}} &#8722;</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">&#8211;a</span>
+<code>@samp{--a}</code> &#8216;<samp>--a</samp>&#8221;
+<code>@sc{--a}</code> <small>&#8211;A</small>
+<code>@strong{--a}</code> <strong>&#8211;a</strong>
+<code>@t{--a}</code> <tt>--a</tt>
+<code>@sansserif{--a}</code> <span class="sansserif">&#8211;a</span>
+<code>@slanted{--a}</code> <i>&#8211;a</i>
+<code>@titlefont{--a}</code> </p><h1 class="titlefont">&#8211;a</h1>
+<p><code>@indicateurl{--a}</code> &#8216;<code>--a</code>&#8221;
+<code>@uref{--a,--b}</code> <a href="--a">&#8211;b</a>
+<code>@uref{--a}</code> <a href="--a">--a</a>
+<code>@uref{,--b}</code> &#8211;b
+<code>@uref{--a,--b,--c}</code> <a href="--a">&#8211;c</a>
+<code>@uref{,--b,--c}</code> &#8211;c
+<code>@uref{--a,,--c}</code> <a href="--a">&#8211;c</a>
+<code>@uref{,,--c}</code> &#8211;c
+<code>@url{--a,--b}</code> <a href="--a">&#8211;b</a>
+<code>@url{--a,}</code> <a href="--a">--a</a>
+<code>@url{,--b}</code> &#8211;b
+<code>@var{--a}</code> <var>&#8211;a</var>
+<code>@verb{:--a:}</code> <tt>--a</tt>
+<code>@verb{:a  &lt; &amp; @ % &quot; --    b:}</code> <tt>a  &lt; &amp; @ % 
&quot; --    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&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a<!--
 /@w -->
+<code>@H{a}</code> a&#779;
+<code>@H{--a}</code> &#8211;a&#779;
+<code>@dotaccent{a}</code> &#551;
+<code>@dotaccent{--a}</code> &#8211;a&#775;
+<code>@ringaccent{a}</code> &#229;
+<code>@ringaccent{--a}</code> &#8211;a&#778;
+<code>@tieaccent{a}</code> a&#865;
+<code>@tieaccent{--a}</code> &#8211;a&#865;
+<code>@u{a}</code> &#259;
+<code>@u{--a}</code> &#8211;a&#774;
+<code>@ubaraccent{a}</code> a&#818;
+<code>@ubaraccent{--a}</code> &#8211;a&#818;
+<code>@udotaccent{a}</code> &#7841;
+<code>@udotaccent{--a}</code> &#8211;a&#803;
+<code>@v{a}</code> &#462;
+<code>@v{--a}</code> &#8211;a&#780;
+<code>@,{c}</code> &#231;
+<code>@,{--c}</code> &#8211;c&#807;
+<code>@ogonek{a}</code> &#261;
+<code>@ogonek{--a}</code> &#8211;a&#808;
+<code>a@sup{h}@sub{l}</code> a<sup>h</sup><sub>l</sub>
+<code>@footnote{in footnote}</code> <a id="DOCF1_5" 
href="formatting_fot.xhtml#FOOT1_5"><sup>5</sup></a>
+<code>@footnote{in footnote2}</code> <a id="DOCF2_6" 
href="formatting_fot.xhtml#FOOT2_6"><sup>6</sup></a>
+</p>
+<p><code>@image{f--ile}</code> <img src="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,l--i}</code> <img src="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,,l--e}</code> <img src="../images/f--ile.png" 
alt="f--ile"/>
+<code>@image{f--ile,,,alt}</code> <img src="../images/f--ile.png" alt="alt"/>
+<code>@image{f--ile,,,,.e-d-xt}</code> <img src="../images/f--ile.e--xt" 
alt="f--ile"/>
+<code>@image{f--ile,aze,az,alt,.e--xt}</code> <img 
src="../images/f--ile.e--xt" alt="alt"/>
+<code>@image{f-ile,aze,,a--lt}</code> <img src="../images/f-ile.jpg" 
alt="a&#8211;lt"/>
+<code>@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext} e--xt@}</code> <img 
src="../images/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 &#8594; A
+After clickstyle &#8658;
+<code>@clicksequence{click @click{} A}</code> click &#8658; 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>&#252; &#220; &#241; &#226; &#233; &#333; &#236; 
&#233; i j &#274;&#768;
+&#322; &#262;&#807; &#262;&#807; &#231; a&#779; &#551; &#229; a&#865;
+&#259; a&#818; &#7841; &#462; &#261; a<sup>h</sup><sub>l</sub>
+
+ &#160;&#160; &#160;   ! ? . @ } { 
+a sunny day
+</em></div>
+<div class="displaymath"><em>&#8594;
+&#x0075;
+TeX LaTeX &#8226; &#169; &#8230; ... &#8801;
+error&#8594; &#8614; &#8722; &#9733; &#8867; &#8658;
+&#229; &#197; &#230; &#339; &#198; &#338; &#248; &#216; &#223; &#322; &#321; 
&#208;
+&#222; &#240; &#254; &#161; &#191; &#163;
+&#174; &#170; &#186; &#44; 
+</em></div>
+<div class="displaymath"><em>&#8220; &#8221; 
+&#8216; &#8217; &#8222; &#8218; &#171;
+&#187; &#171; &#187; &#8249;
+&#8250; &#176; &#8364; &#8594; &#8804; &#8805;
+</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&#8212;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 &#233; TeX:</b> The something &#233; TeX is here.
+</p></blockquote>
+
+<blockquote>
+<p><b>@ at the end of line &#160;:</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">&#8212; <em>quotation author</em>
+</div>
+<blockquote>
+<p>indent in quotation
+</p></blockquote>
+
+<blockquote>
+<p>A small quot&#8212;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&#8211;temize
+</li></ul>
+
+<ul class="no-bullet">
+<li>+ i&#8211;tem +
+</li></ul>
+
+<ul>
+<li> b&#8211;ullet
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8722; minu&#8211;s
+</li></ul>
+
+<ul class="no-bullet">
+<li><em>after emph</em> e&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8226; a&#8211;n itemize line <span 
id="index-copying-index-entry-within-itemize"></span>
+i&#8211;tem 1
+</li><li>&#8226; a&#8211;n itemize line i&#8211;tem 2
+</li></ul>
+
+<ol>
+<li> e&#8211;numerate
+</li></ol>
+
+<ol start="3">
+<li> first third
+</li><li> second third
+</li></ol>
+
+<ol type="a" start="1">
+<li> e&#8211;numerate
+</li></ol>
+
+<ol type="a" start="3">
+<li> first c
+</li><li> second c
+</li></ol>
+
+<table>
+<thead><tr><th width="40%">mu&#8211;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
+<tbody><tr><td width="40%">mu&#8211;ltitable item</td><td 
width="60%">multitable tab</td></tr>
+<tr><td width="40%">mu&#8211;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&#8211;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 &#233; 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&amp;content-type=text/plain'
+$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD&amp;content-type=text/plain'
+</pre></div>
+<p>Less recent versions are also present.
+</p>
+<div class="display">
+<pre class="display">d&#8211;isplay
+</pre></div>
+
+<div class="display">
+<pre class="display">s&#8211;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&#8211;ormat
+</pre></div>
+
+<div class="format">
+<pre class="format">s&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>def&#8211;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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</a></span></dt>
+<dt id="index-copying-id-i-ule"><span class="category">cmde2: 
</span><span><strong><b>id &#8216;<samp>i</samp>&#8221; ule</b></strong> 
<em>truc</em><a href='#index-copying-id-i-ule' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dt><span class="category"><b>id &#8216;<samp>i</samp>&#8221; ule</b>: 
</span><strong></strong></dt>
+<dt><strong></strong></dt>
+<dt><span class="category">aaa: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt id="index-copying-machin"><span class="category">: 
</span><span><strong>machin</strong><a href='#index-copying-machin' 
class='copiable-anchor'> &#182;</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'> 
&#182;</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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</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 href="../file 
n---ame@/c_002d_002d_002dhapter_0040.html#c_002d_002d_002dhapter_0040">t&#8212;itle@</a>
 in <cite>ma&#8212;nual@</cite>.
+<code>@ref{chapter, cross ref name, title, file name, manual}</code> <a 
href="../file name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@pxref{chapter, cross ref name, title, file name, manual}</code> see <a 
href="../file name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@inforef{chapter, cross ref name, file name}</code> See <a href="../file 
name/chapter.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.xhtml">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 href="../a comma, in 
file/s_002d_002dect_002cion.html#s_002d_002dect_002cion">a comma&#44; in 
title</a> in <cite>a &#44; 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 href="../file 
name/chapter.html#chapter">(file name)chapter</a>
+<code>@ref{chapter,,,,manual}</code> &#8216;chapter&#8217; 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 href="../file 
name/chapter.html#chapter">(file name)cross ref name</a>
+<code>@ref{chapter,cross ref name,,,manual}</code> &#8216;cross ref 
name&#8217; in <cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,file name}</code> <a href="../file 
name/chapter.html#chapter">(file name)title</a>
+<code>@ref{chapter,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title, file name, manual}</code> <a 
href="../file name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,title,file name}</code> <a href="../file 
name/chapter.html#chapter">(file name)title</a>
+<code>@ref{chapter,,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a href="../file 
name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,,file name,manual}</code> <a href="../file 
name/chapter.html#chapter">chapter</a> in <cite>manual</cite>
+</p>
+
+<p><code>@ref{(pman)anode,cross ref name}</code> <a 
href="../pman/anode.html#anode">(pman)cross ref name</a>
+<code>@ref{(pman)anode,,title}</code> <a 
href="../pman/anode.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,,,file name}</code> <a href="../file 
name/anode.html#anode">(file name)anode</a>
+<code>@ref{(pman)anode,,,,manual}</code> <a 
href="../pman/anode.html#anode">anode</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,}</code> <a 
href="../pman/anode.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,cross ref name,,file name}</code> <a href="../file 
name/anode.html#anode">(file name)cross ref name</a>
+<code>@ref{(pman)anode,cross ref name,,,manual}</code> <a 
href="../pman/anode.html#anode">cross ref name</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,file name}</code> <a href="../file 
name/anode.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,cross ref name,title,,manual}</code> <a 
href="../pman/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title, file name, manual}</code> <a 
href="../file name/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title,file name}</code> <a href="../file 
name/anode.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,,title,,manual}</code> <a 
href="../pman/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title, file name, manual}</code> <a href="../file 
name/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,,file name,manual}</code> <a href="../file 
name/anode.html#anode">anode</a> in <cite>manual</cite>
+</p>
+
+<p><code>@inforef{chapter, cross ref name, file name}</code> See <a 
href="../file name/chapter.html#chapter">(file name)cross ref name</a>
+<code>@inforef{chapter}</code> See &#8216;chapter&#8217;
+<code>@inforef{chapter, cross ref name}</code> See &#8216;cross ref name&#8217;
+<code>@inforef{chapter,,file name}</code> See <a href="../file 
name/chapter.html#chapter">(file name)chapter</a>
+<code>@inforef{node, cross ref name, file name}</code> See <a href="../file 
name/node.html#node">(file name)cross ref name</a>
+<code>@inforef{node}</code> See &#8216;node&#8217;
+<code>@inforef{node, cross ref name}</code> See &#8216;cross ref name&#8217;
+<code>@inforef{node,,file name}</code> See <a href="../file 
name/node.html#node">(file name)node</a>
+<code>@inforef{chapter, cross ref name, file name, spurious arg}</code> See <a 
href="../file name, spurious arg/chapter.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 href="../a comma, in 
file/s_002d_002dect_002cion.html#s_002d_002dect_002cion">(a comma, in file)a 
&#44; in cross
+ref</a>
+</p>
+<p>&#8216;<samp><a href="#chapter">chapter</a></samp>&#8221;.
+</p>
+<p><a href="../index3.html (uref3)/ext.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><strong>a&#8211;strong</strong></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-copying-a_002d_002dasis'><span>a&#8211;asis<a 
href='#index-copying-a_002d_002dasis' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dt id='index-copying-b-2'><span>b<a href='#index-copying-b-2' 
class='copiable-anchor'> &#182;</a></span></dt>
+<dd><p>l&#8211;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'> &#182;</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'> &#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt><code>a--code</code></dt>
+<dd><p>Value&#8211;table code
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt>&#8216;<samp>a--samp</samp>&#8221;</dt>
+<dt>&#8216;<samp>a2--samp</samp>&#8221;</dt>
+<dd><p>Value&#8211;table samp
+</p></dd>
+</dl>
+
+<table class="cartouche" border="1"><tr><td>
+<p>c&#8211;artouche
+</p></td></tr></table>
+
+<p>g&#8211;roupe
+</p>
+<p align="left">f&#8211;lushleft
+more text
+</p>
+<p align="right">f&#8211;lushright
+more text
+</p>
+<div align="center">ce&#8211;ntered line
+</div>
+<p>r&#8211;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 @  &lt;&gt;.
+
+@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 &#44; ...">&#8211;a</acronym> (an accronym &#44; <small 
class="enddots">...</small>)
+<code>@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome} }</code> <abbr 
title="&#201;tude&#8211;&#44; Autonome">&#201;&#8211;. &#44;A.</abbr> 
(&#201;tude&#8211;&#44; <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude&#8211;&#44; 
Autonome">&#201;&#8211;. &#44;A.</abbr>
+</p>
+<p><code>@math{--a@minus{} {\frac{1}{2}}}</code> <em class="math">--a&#8722; 
{\frac{1}{2}}</em>
+</p>
+<p><code>@image{f-ile,,,alt@verb{:jk _&quot; %}}</code> <img 
src="../images/f-ile.jpg" alt="altjk _&quot; %@"/>
+<code>@image{f--ile,aze,az,@verb{:jk _&quot; %@:} @b{in b 
&quot;},e--xt}</code> <img src="../images/f--ile.e--xt" alt="jk _&quot; %@ in b 
&quot;"/>
+<code>@image{file@verb{:jk _&quot; %@:},,,alt@verb{:jk _&quot; %@:}}</code> 
<img src="../images/filejk _&quot; %@.jpg" alt="altjk _&quot; %@"/>
+</p>
+
+
+
+<p>Somehow invalid use of @,:<br/>
+@, &#807;
+<br/>
+@,@&quot;u &#807;&#252;
+</p>
+<p>Invalid use of @&#8217;:<br/>
+@&#8217; &#769;
+<br/>
+@&#8217;@&quot;u &#769;&#252;
+</p>
+<p>@dotless{truc} truc
+@dotless{ij} ij
+<code>@dotless{--a}</code> &#8211;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 &lt;4 hex digits &#xabc;
+@U{FFFFFFFFFFFFFF}, value much too large &#xFFFFFFFFFFFFFF;
+@U{110000}, value just beyond Unicode &#x110000;
+</p>
+<p>@TeX, but without brace TeX<code>@#</code> #
+</p>
+<p><code>@w{--a}</code> &#8211;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&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li> after emph e&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8226; a&#8211;n itemize line i&#8211;tem 1
+</li><li>&#8226; a&#8211;n itemize line i&#8211;tem 2
+</li></ul>
+
+<dl compact="compact">
+<dt>a</dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt>a&#8211;missing style formatting</dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-copying-a-2'><span>a<a href='#index-copying-a-2' 
class='copiable-anchor'> &#182;</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'> &#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl class="def">
+<dt><span class="category">fun: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</a></span></dt>
+</dl>
+
+<p><code>@ref{node}</code> &#8216;node&#8217;
+</p>
+<p><code>@ref{,cross ref name}</code> &#8216;cross ref name&#8217;
+<code>@ref{,,title}</code> &#8216;title&#8217;
+<code>@ref{,,,file name}</code> <a href="../file name/index.html">(file 
name)</a>
+<code>@ref{,,,,manual}</code> <cite>manual</cite>
+<code>@ref{node,cross ref name}</code> &#8216;cross ref name&#8217;
+<code>@ref{node,,title}</code> &#8216;title&#8217;
+<code>@ref{node,,,file name}</code> <a href="../file 
name/node.html#node">(file name)node</a>
+<code>@ref{node,,,,manual}</code> &#8216;node&#8217; in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,}</code> &#8216;title&#8217;
+<code>@ref{node,cross ref name,,file name}</code> <a href="../file 
name/node.html#node">(file name)cross ref name</a>
+<code>@ref{node,cross ref name,,,manual}</code> &#8216;cross ref name&#8217; 
in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,file name}</code> <a href="../file 
name/node.html#node">(file name)title</a>
+<code>@ref{node,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{node,cross ref name,title, file name, manual}</code> <a 
href="../file name/node.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,title,file name}</code> <a href="../file 
name/node.html#node">(file name)title</a>
+<code>@ref{node,,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a href="../file 
name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{node,,title, file name, manual}</code> <a href="../file 
name/node.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,,file name,manual}</code> <a href="../file 
name/node.html#node">node</a> in <cite>manual</cite>
+<code>@ref{,cross ref name,title,}</code> &#8216;title&#8217;
+<code>@ref{,cross ref name,,file name}</code> <a href="../file 
name/index.html">(file name)cross ref name</a>
+<code>@ref{,cross ref name,,,manual}</code> &#8216;cross ref name&#8217; in 
<cite>manual</cite>
+<code>@ref{,cross ref name,title,file name}</code> <a href="../file 
name/index.html">(file name)title</a>
+<code>@ref{,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{,cross ref name,title, file name, manual}</code> <a href="../file 
name/index.html">title</a> in <cite>manual</cite>
+<code>@ref{,,title,file name}</code> <a href="../file name/index.html">(file 
name)title</a>
+<code>@ref{,,title,,manual}</code> &#8216;title&#8217; in <cite>manual</cite>
+<code>@ref{,,title, file name, manual}</code> <a href="../file 
name/index.html">title</a> in <cite>manual</cite>
+<code>@ref{,,,file name,manual}</code> <cite><a href="../file 
name/index.html">manual</a></cite>
+</p>
+<p><code>@inforef{,cross ref name }</code> See &#8216;cross ref name&#8217;
+<code>@inforef{,,file name}</code> See <a href="../file name/index.html">(file 
name)</a>
+<code>@inforef{,cross ref name, file name}</code> See <a href="../file 
name/index.html">(file name)cross ref name</a>
+<code>@inforef{}</code> 
+</p>
+
+
+<p>Normal text
+</p>
+<p>&lt;
+&gt;
+&quot;
+&amp;
+&#8217;
+&#8216;
+</p>
+<p>&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;<br/>
+code: <code>``simple-double--three---four----''</code> <br/>
+asis: &#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221; <br/>
+strong: 
<strong>&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;</strong> 
<br/>
+kbd: <kbd>``simple-double--three---four----''</kbd> <br/>
+</p>
+<p>&#8216;<!-- /@w -->&#8216;simple-double-<!-- /@w 
-->-three&#8212;four&#8212;-&#8217;<!-- /@w -->&#8217;<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>@&quot;u &#252; 
+@&quot;{U} &#220; 
+@~n &#241;
+@^a &#226;
+@&#8217;e &#233;
+@=o &#333;
+@&#8216;i &#236;
+@&#8217;{e} &#233;
+@&#8217;{@dotless{i}} &#237; 
+@dotless{i} i
+@dotless{j} j
+@&#8216;{@=E} &#274;&#768; 
+@l{} &#322;
+@,{@&#8217;C} &#262;&#807;
+@,c &#231;
+@,c@&quot;u &#231;&#252; <br/>
+</p>
+<p>@U{0075} &#x0075;
+</p>
+<p>@* <br/>
+@ followed by a space
+&#160;
+@ followed by a tab
+&#160;
+@ followed by a new line
+&#160;<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 &#8226;
+@copyright &#169;
+@dots &#8230;
+@enddots <small class="enddots">...</small>
+@equiv &#8801;
+@error error&#8594;
+@expansion &#8614;
+@minus &#8722;
+@point &#9733;
+@print &#8867;
+@result &#8658;
+@today a sunny day
+</p>
+<p>@aa &#229;
+@AA &#197;
+@ae &#230;
+@oe &#339;
+@AE &#198;
+@OE &#338;
+@o &#248;
+@O &#216;
+@ss &#223;
+@l &#322;
+@L &#321;
+@DH &#208;
+@TH &#222;
+@dh &#240;
+@th &#254;
+</p>
+<p>@exclamdown &#161;
+@questiondown &#191;
+@pounds &#163;
+@registeredsymbol &#174;
+@ordf &#170;
+@ordm &#186;
+@comma &#44;
+@quotedblleft &#8220;
+@quotedblright &#8221;
+@quoteleft &#8216;
+@quoteright &#8217;
+@quotedblbase &#8222;
+@quotesinglbase &#8218;
+@guillemetleft &#171;
+@guillemetright &#187;
+@guillemotleft &#171;
+@guillemotright &#187;
+@guilsinglleft &#8249;
+@guilsinglright &#8250;
+@textdegree &#176;
+@euro &#8364;
+@arrow &#8594;
+@leq &#8804;
+@geq &#8805;
+@tie a&#160;b
+</p>
+<p><code>@acronym{--a,an accronym}</code> <acronym title="an 
accronym">&#8211;a</acronym> (an accronym)
+<code>@acronym{--a}</code> <acronym title="an accronym">&#8211;a</acronym>
+<code>@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr 
title="&#201;tude Autonome">&#201;&#8211;. &#44;A.</abbr> (&#201;tude Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude 
Autonome">&#201;&#8211;. &#44;A.</abbr>
+<code>@asis{--a}</code> &#8211;a
+<code>@b{--a}</code> <b>&#8211;a</b>
+<code>@cite{--a}</code> <cite>&#8211;a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@dfn{--a}</code> <em>&#8211;a</em>
+<code>@dmn{--a}</code> &#8211;a
+<code>@email{--a,--b}</code> <a href="mailto:--a";>&#8211;b</a>
+<code>@email{,--b}</code> &#8211;b
+<code>@email{--a}</code> <a href="mailto:--a";>--a</a>
+<code>@emph{--a}</code> <em>&#8211;a</em>
+<code>@env{--a}</code> <code>--a</code>
+<code>@file{--a}</code> <samp>--a</samp>
+<code>@i{--a}</code> <i>&#8211;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}} &#8722;</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">&#8211;a</span>
+<code>@samp{--a}</code> &#8216;<samp>--a</samp>&#8221;
+<code>@sc{--a}</code> <small>&#8211;A</small>
+<code>@strong{--a}</code> <strong>&#8211;a</strong>
+<code>@t{--a}</code> <tt>--a</tt>
+<code>@sansserif{--a}</code> <span class="sansserif">&#8211;a</span>
+<code>@slanted{--a}</code> <i>&#8211;a</i>
+<code>@titlefont{--a}</code> </p><h1 class="titlefont">&#8211;a</h1>
+<p><code>@indicateurl{--a}</code> &#8216;<code>--a</code>&#8221;
+<code>@uref{--a,--b}</code> <a href="--a">&#8211;b</a>
+<code>@uref{--a}</code> <a href="--a">--a</a>
+<code>@uref{,--b}</code> &#8211;b
+<code>@uref{--a,--b,--c}</code> <a href="--a">&#8211;c</a>
+<code>@uref{,--b,--c}</code> &#8211;c
+<code>@uref{--a,,--c}</code> <a href="--a">&#8211;c</a>
+<code>@uref{,,--c}</code> &#8211;c
+<code>@url{--a,--b}</code> <a href="--a">&#8211;b</a>
+<code>@url{--a,}</code> <a href="--a">--a</a>
+<code>@url{,--b}</code> &#8211;b
+<code>@var{--a}</code> <var>&#8211;a</var>
+<code>@verb{:--a:}</code> <tt>--a</tt>
+<code>@verb{:a  &lt; &amp; @ % &quot; --    b:}</code> <tt>a  &lt; &amp; @ % 
&quot; --    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&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a<!--
 /@w -->
+<code>@H{a}</code> a&#779;
+<code>@H{--a}</code> &#8211;a&#779;
+<code>@dotaccent{a}</code> &#551;
+<code>@dotaccent{--a}</code> &#8211;a&#775;
+<code>@ringaccent{a}</code> &#229;
+<code>@ringaccent{--a}</code> &#8211;a&#778;
+<code>@tieaccent{a}</code> a&#865;
+<code>@tieaccent{--a}</code> &#8211;a&#865;
+<code>@u{a}</code> &#259;
+<code>@u{--a}</code> &#8211;a&#774;
+<code>@ubaraccent{a}</code> a&#818;
+<code>@ubaraccent{--a}</code> &#8211;a&#818;
+<code>@udotaccent{a}</code> &#7841;
+<code>@udotaccent{--a}</code> &#8211;a&#803;
+<code>@v{a}</code> &#462;
+<code>@v{--a}</code> &#8211;a&#780;
+<code>@,{c}</code> &#231;
+<code>@,{--c}</code> &#8211;c&#807;
+<code>@ogonek{a}</code> &#261;
+<code>@ogonek{--a}</code> &#8211;a&#808;
+<code>a@sup{h}@sub{l}</code> a<sup>h</sup><sub>l</sub>
+<code>@footnote{in footnote}</code> <a id="DOCF5" 
href="formatting_fot.xhtml#FOOT5"><sup>7</sup></a>
+<code>@footnote{in footnote2}</code> <a id="DOCF6" 
href="formatting_fot.xhtml#FOOT6"><sup>8</sup></a>
+</p>
+<p><code>@image{f--ile}</code> <img src="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,l--i}</code> <img src="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,,l--e}</code> <img src="../images/f--ile.png" 
alt="f--ile"/>
+<code>@image{f--ile,,,alt}</code> <img src="../images/f--ile.png" alt="alt"/>
+<code>@image{f--ile,,,,.e-d-xt}</code> <img src="../images/f--ile.e--xt" 
alt="f--ile"/>
+<code>@image{f--ile,aze,az,alt,.e--xt}</code> <img 
src="../images/f--ile.e--xt" alt="alt"/>
+<code>@image{f-ile,aze,,a--lt}</code> <img src="../images/f-ile.jpg" 
alt="a&#8211;lt"/>
+<code>@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext} e--xt@}</code> <img 
src="../images/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 &#8594; A
+After clickstyle &#8658;
+<code>@clicksequence{click @click{} A}</code> click &#8658; 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>&#252; &#220; &#241; &#226; &#233; &#333; &#236; 
&#233; i j &#274;&#768;
+&#322; &#262;&#807; &#262;&#807; &#231; a&#779; &#551; &#229; a&#865;
+&#259; a&#818; &#7841; &#462; &#261; a<sup>h</sup><sub>l</sub>
+
+ &#160;&#160; &#160;   ! ? . @ } { 
+a sunny day
+</em></div>
+<div class="displaymath"><em>&#8594;
+&#x0075;
+TeX LaTeX &#8226; &#169; &#8230; ... &#8801;
+error&#8594; &#8614; &#8722; &#9733; &#8867; &#8658;
+&#229; &#197; &#230; &#339; &#198; &#338; &#248; &#216; &#223; &#322; &#321; 
&#208;
+&#222; &#240; &#254; &#161; &#191; &#163;
+&#174; &#170; &#186; &#44; 
+</em></div>
+<div class="displaymath"><em>&#8220; &#8221; 
+&#8216; &#8217; &#8222; &#8218; &#171;
+&#187; &#171; &#187; &#8249;
+&#8250; &#176; &#8364; &#8594; &#8804; &#8805;
+</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&#8212;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 &#233; TeX:</b> The something &#233; TeX is here.
+</p></blockquote>
+
+<blockquote>
+<p><b>@ at the end of line &#160;:</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">&#8212; <em>quotation author</em>
+</div>
+<blockquote>
+<p>indent in quotation
+</p></blockquote>
+
+<blockquote>
+<p>A small quot&#8212;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&#8211;temize
+</li></ul>
+
+<ul class="no-bullet">
+<li>+ i&#8211;tem +
+</li></ul>
+
+<ul>
+<li> b&#8211;ullet
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8722; minu&#8211;s
+</li></ul>
+
+<ul class="no-bullet">
+<li><em>after emph</em> e&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8226; a&#8211;n itemize line <span 
id="index-index-entry-within-itemize"></span>
+i&#8211;tem 1
+</li><li>&#8226; a&#8211;n itemize line i&#8211;tem 2
+</li></ul>
+
+<ol>
+<li> e&#8211;numerate
+</li></ol>
+
+<ol start="3">
+<li> first third
+</li><li> second third
+</li></ol>
+
+<ol type="a" start="1">
+<li> e&#8211;numerate
+</li></ol>
+
+<ol type="a" start="3">
+<li> first c
+</li><li> second c
+</li></ol>
+
+<table>
+<thead><tr><th width="40%">mu&#8211;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
+<tbody><tr><td width="40%">mu&#8211;ltitable item</td><td 
width="60%">multitable tab</td></tr>
+<tr><td width="40%">mu&#8211;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&#8211;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 &#233; 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&amp;content-type=text/plain'
+$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD&amp;content-type=text/plain'
+</pre></div>
+<p>Less recent versions are also present.
+</p>
+<div class="display">
+<pre class="display">d&#8211;isplay
+</pre></div>
+
+<div class="display">
+<pre class="display">s&#8211;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&#8211;ormat
+</pre></div>
+
+<div class="format">
+<pre class="format">s&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>def&#8211;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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</a></span></dt>
+<dt id="index-id-i-ule"><span class="category">cmde2: 
</span><span><strong><b>id &#8216;<samp>i</samp>&#8221; ule</b></strong> 
<em>truc</em><a href='#index-id-i-ule' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dt><span class="category"><b>id &#8216;<samp>i</samp>&#8221; ule</b>: 
</span><strong></strong></dt>
+<dt><strong></strong></dt>
+<dt><span class="category">aaa: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt id="index-machin"><span class="category">: 
</span><span><strong>machin</strong><a href='#index-machin' 
class='copiable-anchor'> &#182;</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'> &#182;</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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</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 href="../file 
n---ame@/c_002d_002d_002dhapter_0040.html#c_002d_002d_002dhapter_0040">t&#8212;itle@</a>
 in <cite>ma&#8212;nual@</cite>.
+<code>@ref{chapter, cross ref name, title, file name, manual}</code> <a 
href="../file name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@pxref{chapter, cross ref name, title, file name, manual}</code> see <a 
href="../file name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@inforef{chapter, cross ref name, file name}</code> See <a href="../file 
name/chapter.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.xhtml">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 href="../a comma, in 
file/s_002d_002dect_002cion.html#s_002d_002dect_002cion">a comma&#44; in 
title</a> in <cite>a &#44; 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 href="../file 
name/chapter.html#chapter">(file name)chapter</a>
+<code>@ref{chapter,,,,manual}</code> &#8216;chapter&#8217; 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 href="../file 
name/chapter.html#chapter">(file name)cross ref name</a>
+<code>@ref{chapter,cross ref name,,,manual}</code> &#8216;cross ref 
name&#8217; in <cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,file name}</code> <a href="../file 
name/chapter.html#chapter">(file name)title</a>
+<code>@ref{chapter,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title, file name, manual}</code> <a 
href="../file name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,title,file name}</code> <a href="../file 
name/chapter.html#chapter">(file name)title</a>
+<code>@ref{chapter,,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a href="../file 
name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,,file name,manual}</code> <a href="../file 
name/chapter.html#chapter">chapter</a> in <cite>manual</cite>
+</p>
+
+<p><code>@ref{(pman)anode,cross ref name}</code> <a 
href="../pman/anode.html#anode">(pman)cross ref name</a>
+<code>@ref{(pman)anode,,title}</code> <a 
href="../pman/anode.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,,,file name}</code> <a href="../file 
name/anode.html#anode">(file name)anode</a>
+<code>@ref{(pman)anode,,,,manual}</code> <a 
href="../pman/anode.html#anode">anode</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,}</code> <a 
href="../pman/anode.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,cross ref name,,file name}</code> <a href="../file 
name/anode.html#anode">(file name)cross ref name</a>
+<code>@ref{(pman)anode,cross ref name,,,manual}</code> <a 
href="../pman/anode.html#anode">cross ref name</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,file name}</code> <a href="../file 
name/anode.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,cross ref name,title,,manual}</code> <a 
href="../pman/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title, file name, manual}</code> <a 
href="../file name/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title,file name}</code> <a href="../file 
name/anode.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,,title,,manual}</code> <a 
href="../pman/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title, file name, manual}</code> <a href="../file 
name/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,,file name,manual}</code> <a href="../file 
name/anode.html#anode">anode</a> in <cite>manual</cite>
+</p>
+
+<p><code>@inforef{chapter, cross ref name, file name}</code> See <a 
href="../file name/chapter.html#chapter">(file name)cross ref name</a>
+<code>@inforef{chapter}</code> See &#8216;chapter&#8217;
+<code>@inforef{chapter, cross ref name}</code> See &#8216;cross ref name&#8217;
+<code>@inforef{chapter,,file name}</code> See <a href="../file 
name/chapter.html#chapter">(file name)chapter</a>
+<code>@inforef{node, cross ref name, file name}</code> See <a href="../file 
name/node.html#node">(file name)cross ref name</a>
+<code>@inforef{node}</code> See &#8216;node&#8217;
+<code>@inforef{node, cross ref name}</code> See &#8216;cross ref name&#8217;
+<code>@inforef{node,,file name}</code> See <a href="../file 
name/node.html#node">(file name)node</a>
+<code>@inforef{chapter, cross ref name, file name, spurious arg}</code> See <a 
href="../file name, spurious arg/chapter.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 href="../a comma, in 
file/s_002d_002dect_002cion.html#s_002d_002dect_002cion">(a comma, in file)a 
&#44; in cross
+ref</a>
+</p>
+<p>&#8216;<samp><a href="#chapter">chapter</a></samp>&#8221;.
+</p>
+<p><a href="../index3.html (uref3)/ext.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><strong>a&#8211;strong</strong></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-a_002d_002dasis'><span>a&#8211;asis<a 
href='#index-a_002d_002dasis' class='copiable-anchor'> &#182;</a></span></dt>
+<dt id='index-b-4'><span>b<a href='#index-b-4' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-a-2'><span><em>a</em><a href='#index-a-2' 
class='copiable-anchor'> &#182;</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'> 
&#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt><code>a--code</code></dt>
+<dd><p>Value&#8211;table code
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt>&#8216;<samp>a--samp</samp>&#8221;</dt>
+<dt>&#8216;<samp>a2--samp</samp>&#8221;</dt>
+<dd><p>Value&#8211;table samp
+</p></dd>
+</dl>
+
+<table class="cartouche" border="1"><tr><td>
+<p>c&#8211;artouche
+</p></td></tr></table>
+
+<p>g&#8211;roupe
+</p>
+<p align="left">f&#8211;lushleft
+more text
+</p>
+<p align="right">f&#8211;lushright
+more text
+</p>
+<div align="center">ce&#8211;ntered line
+</div>
+<p>r&#8211;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 @  &lt;&gt;.
+
+@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 &#44; ...">&#8211;a</acronym> (an accronym &#44; <small 
class="enddots">...</small>)
+<code>@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome} }</code> <abbr 
title="&#201;tude&#8211;&#44; Autonome">&#201;&#8211;. &#44;A.</abbr> 
(&#201;tude&#8211;&#44; <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude&#8211;&#44; 
Autonome">&#201;&#8211;. &#44;A.</abbr>
+</p>
+<p><code>@math{--a@minus{} {\frac{1}{2}}}</code> <em class="math">--a&#8722; 
{\frac{1}{2}}</em>
+</p>
+<p><code>@image{f-ile,,,alt@verb{:jk _&quot; %}}</code> <img 
src="../images/f-ile.jpg" alt="altjk _&quot; %@"/>
+<code>@image{f--ile,aze,az,@verb{:jk _&quot; %@:} @b{in b 
&quot;},e--xt}</code> <img src="../images/f--ile.e--xt" alt="jk _&quot; %@ in b 
&quot;"/>
+<code>@image{file@verb{:jk _&quot; %@:},,,alt@verb{:jk _&quot; %@:}}</code> 
<img src="../images/filejk _&quot; %@.jpg" alt="altjk _&quot; %@"/>
+</p>
+
+
+
+<p>Somehow invalid use of @,:<br/>
+@, &#807;
+<br/>
+@,@&quot;u &#807;&#252;
+</p>
+<p>Invalid use of @&#8217;:<br/>
+@&#8217; &#769;
+<br/>
+@&#8217;@&quot;u &#769;&#252;
+</p>
+<p>@dotless{truc} truc
+@dotless{ij} ij
+<code>@dotless{--a}</code> &#8211;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 &lt;4 hex digits &#xabc;
+@U{FFFFFFFFFFFFFF}, value much too large &#xFFFFFFFFFFFFFF;
+@U{110000}, value just beyond Unicode &#x110000;
+</p>
+<p>@TeX, but without brace TeX<code>@#</code> #
+</p>
+<p><code>@w{--a}</code> &#8211;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&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li> after emph e&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8226; a&#8211;n itemize line i&#8211;tem 1
+</li><li>&#8226; a&#8211;n itemize line i&#8211;tem 2
+</li></ul>
+
+<dl compact="compact">
+<dt>a</dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt>a&#8211;missing style formatting</dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-a-3'><span>a<a href='#index-a-3' class='copiable-anchor'> 
&#182;</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'> 
&#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl class="def">
+<dt><span class="category">fun: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</a></span></dt>
+</dl>
+
+<p><code>@ref{node}</code> &#8216;node&#8217;
+</p>
+<p><code>@ref{,cross ref name}</code> &#8216;cross ref name&#8217;
+<code>@ref{,,title}</code> &#8216;title&#8217;
+<code>@ref{,,,file name}</code> <a href="../file name/index.html">(file 
name)</a>
+<code>@ref{,,,,manual}</code> <cite>manual</cite>
+<code>@ref{node,cross ref name}</code> &#8216;cross ref name&#8217;
+<code>@ref{node,,title}</code> &#8216;title&#8217;
+<code>@ref{node,,,file name}</code> <a href="../file 
name/node.html#node">(file name)node</a>
+<code>@ref{node,,,,manual}</code> &#8216;node&#8217; in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,}</code> &#8216;title&#8217;
+<code>@ref{node,cross ref name,,file name}</code> <a href="../file 
name/node.html#node">(file name)cross ref name</a>
+<code>@ref{node,cross ref name,,,manual}</code> &#8216;cross ref name&#8217; 
in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,file name}</code> <a href="../file 
name/node.html#node">(file name)title</a>
+<code>@ref{node,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{node,cross ref name,title, file name, manual}</code> <a 
href="../file name/node.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,title,file name}</code> <a href="../file 
name/node.html#node">(file name)title</a>
+<code>@ref{node,,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a href="../file 
name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{node,,title, file name, manual}</code> <a href="../file 
name/node.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,,file name,manual}</code> <a href="../file 
name/node.html#node">node</a> in <cite>manual</cite>
+<code>@ref{,cross ref name,title,}</code> &#8216;title&#8217;
+<code>@ref{,cross ref name,,file name}</code> <a href="../file 
name/index.html">(file name)cross ref name</a>
+<code>@ref{,cross ref name,,,manual}</code> &#8216;cross ref name&#8217; in 
<cite>manual</cite>
+<code>@ref{,cross ref name,title,file name}</code> <a href="../file 
name/index.html">(file name)title</a>
+<code>@ref{,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{,cross ref name,title, file name, manual}</code> <a href="../file 
name/index.html">title</a> in <cite>manual</cite>
+<code>@ref{,,title,file name}</code> <a href="../file name/index.html">(file 
name)title</a>
+<code>@ref{,,title,,manual}</code> &#8216;title&#8217; in <cite>manual</cite>
+<code>@ref{,,title, file name, manual}</code> <a href="../file 
name/index.html">title</a> in <cite>manual</cite>
+<code>@ref{,,,file name,manual}</code> <cite><a href="../file 
name/index.html">manual</a></cite>
+</p>
+<p><code>@inforef{,cross ref name }</code> See &#8216;cross ref name&#8217;
+<code>@inforef{,,file name}</code> See <a href="../file name/index.html">(file 
name)</a>
+<code>@inforef{,cross ref name, file name}</code> See <a href="../file 
name/index.html">(file name)cross ref name</a>
+<code>@inforef{}</code> 
+</p>
+
+
+<p>In example.
+</p><div class="example">
+<pre class="example">
+
+&lt;
+&gt;
+&quot;
+&amp;
+'
+`
+
+``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>
+@&quot;u &#252; 
+@&quot;{U} &#220; 
+@~n &#241;
+@^a &#226;
+@'e &#233;
+@=o &#333;
+@`i &#236;
+@'{e} &#233;
+@'{@dotless{i}} &#237; 
+@dotless{i} i
+@dotless{j} j
+@`{@=E} &#274;&#768; 
+@l{} &#322;
+@,{@'C} &#262;&#807;
+@,c &#231;
+@,c@&quot;u &#231;&#252; 
+
+
+@U{0075} &#x0075;
+
+@* 
+
+@ followed by a space
+&#160;
+@ followed by a tab
+&#160;
+@ followed by a new line
+&#160;<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 &#8226;
+@copyright &#169;
+@dots &#8230;
+@enddots ...
+@equiv &#8801;
+@error error&#8594;
+@expansion &#8614;
+@minus &#8722;
+@point &#9733;
+@print &#8867;
+@result &#8658;
+@today a sunny day
+
+@aa &#229;
+@AA &#197;
+@ae &#230;
+@oe &#339;
+@AE &#198;
+@OE &#338;
+@o &#248;
+@O &#216;
+@ss &#223;
+@l &#322;
+@L &#321;
+@DH &#208;
+@TH &#222;
+@dh &#240;
+@th &#254;
+
+@exclamdown &#161;
+@questiondown &#191;
+@pounds &#163;
+@registeredsymbol &#174;
+@ordf &#170;
+@ordm &#186;
+@comma &#44;
+@quotedblleft &#8220;
+@quotedblright &#8221;
+@quoteleft &#8216;
+@quoteright &#8217;
+@quotedblbase &#8222;
+@quotesinglbase &#8218;
+@guillemetleft &#171;
+@guillemetright &#187;
+@guillemotleft &#171;
+@guillemotright &#187;
+@guilsinglleft &#8249;
+@guilsinglright &#8250;
+@textdegree &#176;
+@euro &#8364;
+@arrow &#8594;
+@leq &#8804;
+@geq &#8805;
+@tie a&#160;b
+
+<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="&#201;tude Autonome">&#201;--. &#44;A.</abbr> (&#201;tude Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude 
Autonome">&#201;--. &#44;A.</abbr>
+<code>@asis{--a}</code> --a
+<code>@b{--a}</code> <b>&#8211;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>&#8211;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}} &#8722;</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">&#8211;a</span>
+<code>@samp{--a}</code> &#8216;<samp>--a</samp>&#8221;
+<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">&#8211;a</span>
+<code>@slanted{--a}</code> <i>&#8211;a</i>
+<code>@titlefont{--a}</code> </pre><h1 class="titlefont">--a</h1><pre 
class="example">
+
+<code>@indicateurl{--a}</code> &#8216;<code>--a</code>&#8221;
+<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  &lt; &amp; @ % &quot; --    b:}</code> <tt>a  &lt; &amp; @ % 
&quot; --    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&#779;
+<code>@H{--a}</code> --a&#779;
+<code>@dotaccent{a}</code> &#551;
+<code>@dotaccent{--a}</code> --a&#775;
+<code>@ringaccent{a}</code> &#229;
+<code>@ringaccent{--a}</code> --a&#778;
+<code>@tieaccent{a}</code> a&#865;
+<code>@tieaccent{--a}</code> --a&#865;
+<code>@u{a}</code> &#259;
+<code>@u{--a}</code> --a&#774;
+<code>@ubaraccent{a}</code> a&#818;
+<code>@ubaraccent{--a}</code> --a&#818;
+<code>@udotaccent{a}</code> &#7841;
+<code>@udotaccent{--a}</code> --a&#803;
+<code>@v{a}</code> &#462;
+<code>@v{--a}</code> --a&#780;
+<code>@,{c}</code> &#231;
+<code>@,{--c}</code> --c&#807;
+<code>@ogonek{a}</code> &#261;
+<code>@ogonek{--a}</code> --a&#808;
+<code>a@sup{h}@sub{l}</code> a<sup>h</sup><sub>l</sub>
+<code>@footnote{in footnote}</code> <a id="DOCF7" 
href="formatting_fot.xhtml#FOOT7">(9)</a>
+<code>@footnote{in footnote2}</code> <a id="DOCF8" 
href="formatting_fot.xhtml#FOOT8">(10)</a>
+
+<code>@image{f--ile}</code> <img src="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,l--i}</code> <img src="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,,l--e}</code> <img src="../images/f--ile.png" 
alt="f--ile"/>
+<code>@image{f--ile,,,alt}</code> <img src="../images/f--ile.png" alt="alt"/>
+<code>@image{f--ile,,,,.e-d-xt}</code> <img src="../images/f--ile.e--xt" 
alt="f--ile"/>
+<code>@image{f--ile,aze,az,alt,.e--xt}</code> <img 
src="../images/f--ile.e--xt" alt="alt"/>
+<code>@image{f-ile,aze,,a--lt}</code> <img src="../images/f-ile.jpg" 
alt="a&#8211;lt"/>
+<code>@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext} e--xt@}</code> <img 
src="../images/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 &#8594; A
+After clickstyle &#8658;
+<code>@clicksequence{click @click{} A}</code> click &#8658; 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>&#252; &#220; &#241; &#226; &#233; &#333; 
&#236; &#233; i j &#274;&#768;
+&#322; &#262;&#807; &#262;&#807; &#231; a&#779; &#551; &#229; a&#865;
+&#259; a&#818; &#7841; &#462; &#261; a<sup>h</sup><sub>l</sub>
+
+ &#160;&#160; &#160;   ! ? . @ } { 
+a sunny day
+</em></div><pre class="example">
+
+</pre><div class="displaymath"><em>&#8594;
+&#x0075;
+TeX LaTeX &#8226; &#169; &#8230; ... &#8801;
+error&#8594; &#8614; &#8722; &#9733; &#8867; &#8658;
+&#229; &#197; &#230; &#339; &#198; &#338; &#248; &#216; &#223; &#322; &#321; 
&#208;
+&#222; &#240; &#254; &#161; &#191; &#163;
+&#174; &#170; &#186; &#44; 
+</em></div><pre class="example">
+
+</pre><div class="displaymath"><em>&#8220; &#8221; 
+&#8216; &#8217; &#8222; &#8218; &#171;
+&#187; &#171; &#187; &#8249;
+&#8250; &#176; &#8364; &#8594; &#8804; &#8805;
+</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 &#233; TeX:</b> The something &#233; TeX is 
here.
+</pre></blockquote>
+<pre class="example">
+
+</pre><blockquote>
+<pre class="example"><b>@ at the end of line &#160;:</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>&#8722; <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>&#8226; a&#8211;n itemize line <pre class="example"><span 
id="index-index-entry-within-itemize-1"></span>i--tem 1
+</pre></li><li>&#8226; a&#8211;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 &#233; 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&amp;content-type=text/plain'
+$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD&amp;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'> 
&#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</a></span></dt>
+<dt id="index-id-i-ule-1"><span class="category">cmde2: 
</span><span><strong><b>id &#8216;<samp>i</samp>&#8221; ule</b></strong> 
<em>truc</em><a href='#index-id-i-ule-1' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dt><span class="category"><b>id &#8216;<samp>i</samp>&#8221; ule</b>: 
</span><strong></strong></dt>
+<dt><strong></strong></dt>
+<dt><span class="category">aaa: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt id="index-machin-6"><span class="category">: 
</span><span><strong>machin</strong><a href='#index-machin-6' 
class='copiable-anchor'> &#182;</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'> &#182;</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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</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'> 
&#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</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'> &#182;</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'> 
&#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</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'> 
&#182;</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'> 
&#182;</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'> 
&#182;</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'> 
&#182;</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'> 
&#182;</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'> 
&#182;</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'> 
&#182;</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'> 
&#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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 href="../file 
n---ame@/c_002d_002d_002dhapter_0040.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 
href="../file name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@pxref{chapter, cross ref name, title, file name, manual}</code> see <a 
href="../file name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@inforef{chapter, cross ref name, file name}</code> See <a href="../file 
name/chapter.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.xhtml">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 href="../a comma, in 
file/s_002d_002dect_002cion.html#s_002d_002dect_002cion">a comma&#44; in 
title</a> in <cite>a &#44; 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 href="../file 
name/chapter.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 href="../file 
name/chapter.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 href="../file 
name/chapter.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 
href="../file name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,title,file name}</code> <a href="../file 
name/chapter.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 href="../file 
name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,,file name,manual}</code> <a href="../file 
name/chapter.html#chapter">chapter</a> in <cite>manual</cite>
+
+
+<code>@ref{(pman)anode,cross ref name}</code> <a 
href="../pman/anode.html#anode">(pman)cross ref name</a>
+<code>@ref{(pman)anode,,title}</code> <a 
href="../pman/anode.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,,,file name}</code> <a href="../file 
name/anode.html#anode">(file name)anode</a>
+<code>@ref{(pman)anode,,,,manual}</code> <a 
href="../pman/anode.html#anode">anode</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,}</code> <a 
href="../pman/anode.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,cross ref name,,file name}</code> <a href="../file 
name/anode.html#anode">(file name)cross ref name</a>
+<code>@ref{(pman)anode,cross ref name,,,manual}</code> <a 
href="../pman/anode.html#anode">cross ref name</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,file name}</code> <a href="../file 
name/anode.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,cross ref name,title,,manual}</code> <a 
href="../pman/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title, file name, manual}</code> <a 
href="../file name/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title,file name}</code> <a href="../file 
name/anode.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,,title,,manual}</code> <a 
href="../pman/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title, file name, manual}</code> <a href="../file 
name/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,,file name,manual}</code> <a href="../file 
name/anode.html#anode">anode</a> in <cite>manual</cite>
+
+
+<code>@inforef{chapter, cross ref name, file name}</code> See <a href="../file 
name/chapter.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 href="../file 
name/chapter.html#chapter">(file name)chapter</a>
+<code>@inforef{node, cross ref name, file name}</code> See <a href="../file 
name/node.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 href="../file 
name/node.html#node">(file name)node</a>
+<code>@inforef{chapter, cross ref name, file name, spurious arg}</code> See <a 
href="../file name, spurious arg/chapter.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 href="../a comma, in 
file/s_002d_002dect_002cion.html#s_002d_002dect_002cion">(a comma, in file)a 
&#44; in cross
+ref</a>
+
+&#8216;<samp><a href="#chapter">chapter</a></samp>&#8221;.
+
+<a href="../index3.html (uref3)/ext.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><tt><strong>a--strong</strong></tt></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'> &#182;</a></span></dt>
+<dt id='index-b-5'><span><tt>b</tt><a href='#index-b-5' 
class='copiable-anchor'> &#182;</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'> &#182;</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'> &#182;</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><tt><code>a--code</code></tt></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><tt>&#8216;<samp>a--samp</samp>&#8221;</tt></dt>
+<dt><tt>&#8216;<samp>a2--samp</samp>&#8221;</tt></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 @  &lt;&gt;.
+
+@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 &#44; ...">--a</acronym> (an accronym &#44; ...)
+<code>@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome} }</code> <abbr 
title="&#201;tude&#8211;&#44; Autonome">&#201;--. &#44;A.</abbr> 
(&#201;tude--&#44; <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude&#8211;&#44; 
Autonome">&#201;--. &#44;A.</abbr>
+
+<code>@math{--a@minus{} {\frac{1}{2}}}</code> <em class="math">--a&#8722; 
{\frac{1}{2}}</em>
+
+<code>@image{f-ile,,,alt@verb{:jk _&quot; %}}</code> <img 
src="../images/f-ile.jpg" alt="altjk _&quot; %@"/>
+<code>@image{f--ile,aze,az,@verb{:jk _&quot; %@:} @b{in b 
&quot;},e--xt}</code> <img src="../images/f--ile.e--xt" alt="jk _&quot; %@ in b 
&quot;"/>
+<code>@image{file@verb{:jk _&quot; %@:},,,alt@verb{:jk _&quot; %@:}}</code> 
<img src="../images/filejk _&quot; %@.jpg" alt="altjk _&quot; %@"/>
+
+
+
+
+Somehow invalid use of @,:
+
+@, &#807;
+
+
+@,@&quot;u &#807;&#252;
+
+Invalid use of @':
+
+@' &#769;
+
+
+@'@&quot;u &#769;&#252;
+
+@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 &lt;4 hex digits &#xabc;
+@U{FFFFFFFFFFFFFF}, value much too large &#xFFFFFFFFFFFFFF;
+@U{110000}, value just beyond Unicode &#x110000;
+
+@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>&#8226; a&#8211;n itemize line <pre class="example">i--tem 1
+</pre></li><li>&#8226; a&#8211;n itemize line <pre class="example">i--tem 2
+</pre></li></ul>
+<pre class="example">
+
+</pre><dl compact="compact">
+<dt><tt>a</tt></dt>
+<dd><pre class="example">l--ine
+</pre></dd>
+</dl>
+<pre class="example">
+
+</pre><dl compact="compact">
+<dt><tt>a--missing style formatting</tt></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'> &#182;</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'> &#182;</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><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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 href="../file name/index.html">(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 href="../file 
name/node.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 href="../file 
name/node.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 href="../file 
name/node.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 
href="../file name/node.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,title,file name}</code> <a href="../file 
name/node.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 href="../file 
name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{node,,title, file name, manual}</code> <a href="../file 
name/node.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,,file name,manual}</code> <a href="../file 
name/node.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 href="../file 
name/index.html">(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 href="../file 
name/index.html">(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 href="../file 
name/index.html">title</a> in <cite>manual</cite>
+<code>@ref{,,title,file name}</code> <a href="../file name/index.html">(file 
name)title</a>
+<code>@ref{,,title,,manual}</code> `title' in <cite>manual</cite>
+<code>@ref{,,title, file name, manual}</code> <a href="../file 
name/index.html">title</a> in <cite>manual</cite>
+<code>@ref{,,,file name,manual}</code> <cite><a href="../file 
name/index.html">manual</a></cite>
+
+<code>@inforef{,cross ref name }</code> See `cross ref name'
+<code>@inforef{,,file name}</code> See <a href="../file name/index.html">(file 
name)</a>
+<code>@inforef{,cross ref name, file name}</code> See <a href="../file 
name/index.html">(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="formatting_fot.xhtml#FOOT9"><sup>11</sup></a>
+</p>
+<p>truc
+</p>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-1_truc_letter-T"><b>T</b></a>
+ &#160; 
+</td></tr></table>
+<table class="index-truc" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&#160;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_truc_letter-T">T</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-truc-4">truc</a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-1_truc_letter-T"><b>T</b></a>
+ &#160; 
+</td></tr></table>
+
+<p>codeidx
+</p>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-1_codeidx_letter-A"><b>A</b></a>
+ &#160; 
+</td></tr></table>
+<table class="index-codeidx" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&#160;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_codeidx_letter-A">A</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-a-index_002d_002d_002dentry-te-_002d_002d_002d-i"><code>a 
<var>index---entry</var> t&#7869; --- &#238;</code></a></td><td>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-1_codeidx_letter-A"><b>A</b></a>
+ &#160; 
+</td></tr></table>
+
+<p>cp
+</p><table><tr><th valign="top">Jump to: &#160; </th><td><a 
class="summary-letter" href="#chapter-1_cp_symbol-1"><b>&quot;</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_symbol-2"><b>-</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_symbol-3"><b>.</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_symbol-4"><b>?</b></a>
+ &#160; 
+<br/>
+<a class="summary-letter" href="#chapter-1_cp_letter-A"><b>A</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-B"><b>B</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-C"><b>C</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-D"><b>D</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-G"><b>G</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-I"><b>I</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-T"><b>T</b></a>
+ &#160; 
+</td></tr></table>
+<table class="index-cp" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&#160;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_symbol-1">&quot;</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-_0060_0060">&#8220;</a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-_0060_0060">&#8220;</a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_0060_0060">&#8220;</a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_0060_0060-1">&#8220;</a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_symbol-2">-</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-_002d_002doption">&#8211;option</a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-_002d_002doption">&#8211;option</a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002d_002doption">&#8211;option</a></td><td>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002d_002doption-1">&#8211;option</a></td><td>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_symbol-3">.</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002e">.</a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_symbol-4">?</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_003f">?</a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_letter-A">A</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-a">a</a></td><td>&#160;</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>&#160;</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&#8212;a</a></td><td>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-a_002d_002dasis"><code>a--asis</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-a_002d_002dasis"><code>a--asis</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-a_002d_002dasis"><code>a--asis</code></a></td><td>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_letter-B">B</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-b-2"><code>b</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-b-2"><code>b</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-b-4"><code>b</code></a></td><td>&#160;</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>&#160;</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&#8212;b, 
c&#8212;c</a></td><td>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_letter-C">C</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting_fot.xhtml#index-counting-entry">counting 
entry</a></td><td>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_letter-D">D</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-d_002d_002d_002ddd">d&#8212;dd, 
e&#8212;ee, f&#8212;ff</a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defcv_005fname"><code>d--efcv_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defcv_005fname-1"><code>d--efcv_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defcv_005fname"><code>d--efcv_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defcv_005fname-1"><code>d--efcv_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defivar_005fname-of-c_002d_002dlass"><code>d--efivar_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defivar_005fname-of-c_002d_002dlass"><code>d--efivar_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defopt_005fname"><code>d--efopt_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defopt_005fname"><code>d--efopt_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><code>d--eftypecv_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><code>d--eftypecv_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><code>d--eftypecv_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><code>d--eftypecv_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><code>d--eftypecv_name2
 of c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><code>d--eftypecv_name2
 of c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><code>d--eftypecv_name2
 of c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><code>d--eftypecv_name2
 of c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><code>d--eftypeivar_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><code>d--eftypeivar_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypevar_005fname"><code>d--eftypevar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypevar_005fname"><code>d--eftypevar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypevr_005fname"><code>d--eftypevr_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypevr_005fname"><code>d--eftypevr_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defvar_005fname"><code>d--efvar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defvar_005fname-1"><code>d--efvar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defvar_005fname"><code>d--efvar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defvar_005fname-1"><code>d--efvar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defvr_005fname"><code>d--efvr_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defvr_005fname"><code>d--efvr_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_letter-G">G</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-g_002d_002d_002dgg">g&#8212;gg, 
h&#8212;hh jjj, k&#8212;kk, l&#8212;ll</a></td><td>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_letter-I">I</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-index-entry-between-item-and-itemx">index 
entry between item and itemx</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-index-entry-between-item-and-itemx-1">index
 entry between item and itemx</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-index-entry-between-item-and-itemx">index
 entry between item and itemx</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-index-entry-between-item-and-itemx-1">index
 entry between item and itemx</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting_fot.xhtml#index-index-entry-in-footnote">index entry in 
footnote</a></td><td>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-index-entry-within-deffn">index entry 
within deffn</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-index-entry-within-deffn">index entry 
within deffn</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-index-entry-within-itemize">index entry 
within itemize</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-index-entry-within-itemize">index entry 
within itemize</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-index-entry-within-multitable">index entry 
within multitable</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-index-entry-within-multitable">index 
entry within multitable</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_cp_letter-T">T</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-t_002d_002druc">t&#8211;ruc</a></td><td>&#160;</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&#8211;ruc</a></td><td>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-1_cp_symbol-1"><b>&quot;</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_symbol-2"><b>-</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_symbol-3"><b>.</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_symbol-4"><b>?</b></a>
+ &#160; 
+<br/>
+<a class="summary-letter" href="#chapter-1_cp_letter-A"><b>A</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-B"><b>B</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-C"><b>C</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-D"><b>D</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-G"><b>G</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-I"><b>I</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_cp_letter-T"><b>T</b></a>
+ &#160; 
+</td></tr></table>
+
+<p>fn
+</p><table><tr><th valign="top">Jump to: &#160; </th><td><a 
class="summary-letter" href="#chapter-1_fn_symbol-1"><b>-</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_symbol-2"><b>.</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_symbol-3"><b>?</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_symbol-4"><b>`</b></a>
+ &#160; 
+<br/>
+<a class="summary-letter" href="#chapter-1_fn_letter-A"><b>A</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-B"><b>B</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-D"><b>D</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-F"><b>F</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-I"><b>I</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-L"><b>L</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-M"><b>M</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-N"><b>N</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-T"><b>T</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-X"><b>X</b></a>
+ &#160; 
+</td></tr></table>
+<table class="index-fn" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&#160;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_symbol-1">-</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-_002d_002dfoption"><code>--foption</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-_002d_002dfoption"><code>--foption</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002d_002dfoption"><code>--foption</code></a></td><td>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_symbol-2">.</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002e-1"><code>.</code></a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_symbol-3">?</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_003f-1"><code>?</code></a></td><td>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_symbol-4">`</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-_0060_0060-1"><code>``</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-_0060_0060-1"><code>``</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_0060_0060-2"><code>``</code></a></td><td>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-A">A</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-a"><code>a</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-a-1"><code>a</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-a-2"><code>a</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-a"><code>a</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-a-1"><code>a</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-a-2"><code>a</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-a-1"><code>a</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-after"><code>after</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-after"><code>after</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-after"><code>after</code></a></td><td>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-arg2"><code>arg2</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-arg2"><code>arg2</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-arg2"><code>arg2</code></a></td><td>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-B">B</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-b"><code>b</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-b-1"><code>b</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-b"><code>b</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-b-1"><code>b</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-b"><code>b</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-bidule-machin"><code>bidule 
machin</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-bidule-machin"><code>bidule 
machin</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-bidule-machin"><code>bidule 
machin</code></a></td><td>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-D">D</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deffn_005fname"><code>d--effn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deffn_005fname"><code>d--effn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defmac_005fname"><code>d--efmac_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defmac_005fname"><code>d--efmac_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defmethod_005fname-on-c_002d_002dlass"><code>d--efmethod_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defmethod_005fname-on-c_002d_002dlass"><code>d--efmethod_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defop_005fname-on-c_002d_002dlass"><code>d--efop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defop_005fname-on-c_002d_002dlass-1"><code>d--efop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defop_005fname-on-c_002d_002dlass"><code>d--efop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defop_005fname-on-c_002d_002dlass-1"><code>d--efop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defspec_005fname"><code>d--efspec_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defspec_005fname"><code>d--efspec_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypefn_005fname"><code>d--eftypefn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypefn_005fname-1"><code>d--eftypefn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypefn_005fname"><code>d--eftypefn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypefn_005fname-1"><code>d--eftypefn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypefn_005fname2"><code>d--eftypefn_name2</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypefn_005fname2"><code>d--eftypefn_name2</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypefun_005fname"><code>d--eftypefun_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypefun_005fname"><code>d--eftypefun_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><code>d--eftypemethod_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><code>d--eftypemethod_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><code>d--eftypeop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><code>d--eftypeop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><code>d--eftypeop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><code>d--eftypeop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><code>d--eftypeop_name2
 on c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><code>d--eftypeop_name2
 on c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><code>d--eftypeop_name2
 on c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><code>d--eftypeop_name2
 on c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td valign="top"><a 
href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defun_005fname"><code>d--efun_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defun_005fname"><code>d--efun_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-de_002d_002dffn_005fname"><code>de--ffn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-de_002d_002dffn_005fname"><code>de--ffn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-deffn"><code>deffn</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-deffn-1"><code>deffn</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-deffn"><code>deffn</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-deffn-1"><code>deffn</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-deffn"><code>deffn</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-deffnx"><code>deffnx</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-deffnx-1"><code>deffnx</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-deffnx"><code>deffnx</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-deffnx-1"><code>deffnx</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-deffnx"><code>deffnx</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-F">F</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-f_002d_002d_002daa"><code>f---aa</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-followed"><code>followed</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-followed-1"><code>followed</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-followed"><code>followed</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-followed-1"><code>followed</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-followed"><code>followed</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-I">I</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-i"><code><var>i</var></code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-i-1"><code><var>i</var></code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-i"><code><var>i</var></code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-i-1"><code><var>i</var></code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-i"><code><var>i</var></code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-id-i-ule"><code><b>id 
&#8216;<samp>i</samp>&#8221; ule</b></code></a></td><td>&#160;</td><td 
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-id-i-ule"><code><b>id 
&#8216;<samp>i</samp>&#8221; ule</b></code></a></td><td>&#160;</td><td 
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-id-i-ule"><code><b>id 
&#8216;<samp>i</samp>&#8221; ule</b></code></a></td><td>&#160;</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 
&#8216;<samp>i</samp>&#8221; ule</b></code></a></td><td>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-id-ule"><code><b>id 
ule</b></code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-id-ule"><code><b>id 
ule</b></code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">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>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-L">L</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-log-trap"><code>log 
trap</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-log-trap"><code>log 
trap</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-log-trap"><code>log 
trap</code></a></td><td>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-log-trap1"><code>log 
trap1</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-log-trap1"><code>log 
trap1</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-log-trap1"><code>log 
trap1</code></a></td><td>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-log-trap2"><code>log 
trap2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-log-trap2"><code>log 
trap2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-log-trap2"><code>log 
trap2</code></a></td><td>&#160;</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>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-M">M</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-machin"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-machin-1"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-machin-2"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-machin-3"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-machin-4"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-machin-5"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-machin"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-machin-1"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-machin-2"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-machin-3"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-machin-4"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-machin-5"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin"><code>machin</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-N">N</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-n_002d_002dame"><code>n--ame</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-n_002d_002dame-1"><code>n--ame</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-n_002d_002dame"><code>n--ame</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-n_002d_002dame-1"><code>n--ame</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-n_002d_002dame"><code>n--ame</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-name2"><code>name2</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-name2"><code>name2</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-name2"><code>name2</code></a></td><td>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-T">T</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-t_002d_002druc-1"><code>t--ruc</code></a></td><td>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-truc"><code>truc</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-truc-1"><code>truc</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-truc"><code>truc</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-truc-1"><code>truc</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-truc"><code>truc</code></a></td><td>&#160;</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>&#160;</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>&#160;</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>&#160;</td><td 
valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_fn_letter-X">X</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-xxx"><code>xxx, 
zzz</code></a></td><td>&#160;</td><td valign="top"><a href="#chapter">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-1_fn_symbol-1"><b>-</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_symbol-2"><b>.</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_symbol-3"><b>?</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_symbol-4"><b>`</b></a>
+ &#160; 
+<br/>
+<a class="summary-letter" href="#chapter-1_fn_letter-A"><b>A</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-B"><b>B</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-D"><b>D</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-F"><b>F</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-I"><b>I</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-L"><b>L</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-M"><b>M</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-N"><b>N</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-T"><b>T</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-1_fn_letter-X"><b>X</b></a>
+ &#160; 
+</td></tr></table>
+
+<p>vr
+</p>
+<p>ky
+</p>
+<p>pg
+</p>
+<p>tp
+</p><table><tr><th valign="top">Jump to: &#160; </th><td><a 
class="summary-letter" href="#chapter-1_tp_letter-D"><b>D</b></a>
+ &#160; 
+</td></tr></table>
+<table class="index-tp" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&#160;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-1_tp_letter-D">D</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftp_005fname"><code>d--eftp_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftp_005fname"><code>d--eftp_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">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>&#160;</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>&#160;</td><td
 valign="top"><a href="#chapter">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-1_tp_letter-D"><b>D</b></a>
+ &#160; 
+</td></tr></table>
+
+
+
+<p><a id="DOCF10" href="formatting_fot.xhtml#FOOT10"><sup>12</sup></a>
+</p>
+<div class="format">
+<table class="menu" border="0" cellspacing="0"><tr><td>
+<pre class="menu-preformatted">&#8226; <a 
href="s_002d_002dect_002cion.xhtml">s--ect&#44;ion</a>:: s&#8211;ect&#44;ion
+</pre><pre class="menu-comment">
+
+Menu comment
+&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;
+
+
+</pre></td></tr></table>
+</div>
+
+</div>
+<p>
+  <span class="smaller">This document was generated on <em>a sunny day</em> 
using <a 
href="http://www.gnu.org/software/texinfo/";><em>texi2any</em></a>.</span>
+</p>
+
+
+</body>
+</html>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter2.xhtml
 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter2.xhtml
new file mode 100644
index 0000000..4c54c57
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter2.xhtml
@@ -0,0 +1,1303 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml";>
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<!-- 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 >=
+@tie a b
+
+@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>chapter 2 (title &#8211;a)</title>
+
+<meta name="description" content="chapter 2 (title &#8211;a)"/>
+<meta name="keywords" content="chapter 2 (title &#8211;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.smaller {font-size: smaller}
+span:hover a.copiable-anchor {visibility: visible}
+ul.no-bullet {list-style: none}
+-->
+</style>
+
+
+</head>
+
+<body lang="en">
+<div class="centerchap" id="chapter2">
+<span id="chapter-2"></span><h1 class="centerchap" align="center">chapter 
2</h1>
+
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-2_cp_symbol-1"><b>&quot;</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-2"><b>-</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-3"><b>.</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-4"><b>?</b></a>
+ &#160; 
+<br/>
+<a class="summary-letter" href="#chapter-2_cp_letter-A"><b>A</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-B"><b>B</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-C"><b>C</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-D"><b>D</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-G"><b>G</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-I"><b>I</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-T"><b>T</b></a>
+ &#160; 
+</td></tr></table>
+<table class="index-cp" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&#160;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_symbol-1">&quot;</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-_0060_0060">&#8220;</a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-_0060_0060">&#8220;</a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-_0060_0060">&#8220;</a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-_0060_0060-1">&#8220;</a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_symbol-2">-</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-_002d_002doption">&#8211;option</a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-_002d_002doption">&#8211;option</a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-_002d_002doption">&#8211;option</a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-_002d_002doption-1">&#8211;option</a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_symbol-3">.</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-_002e">.</a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_symbol-4">?</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-_003f">?</a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_letter-A">A</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-a">a</a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a href="chapter.xhtml#index-aaa">aaa, 
bbb</a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-a_002d_002d_002da">a&#8212;a</a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-a_002d_002dasis"><code>a--asis</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-a_002d_002dasis"><code>a--asis</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-a_002d_002dasis"><code>a--asis</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-a_002d_002dasis-1"><code>a--asis</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_letter-B">B</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-b-2"><code>b</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-b-2"><code>b</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-b-4"><code>b</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-b-5"><code>b</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-b_002d_002d_002db">b&#8212;b, 
c&#8212;c</a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_letter-C">C</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting_fot.xhtml#index-counting-entry">counting 
entry</a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_letter-D">D</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002d_002ddd">d&#8212;dd, e&#8212;ee, 
f&#8212;ff</a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defcv_005fname"><code>d--efcv_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defcv_005fname-1"><code>d--efcv_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defcv_005fname"><code>d--efcv_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defcv_005fname-1"><code>d--efcv_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defcv_005fname"><code>d--efcv_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defcv_005fname-1"><code>d--efcv_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defcv_005fname-2"><code>d--efcv_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defcv_005fname-3"><code>d--efcv_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defivar_005fname-of-c_002d_002dlass"><code>d--efivar_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defivar_005fname-of-c_002d_002dlass"><code>d--efivar_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defivar_005fname-of-c_002d_002dlass"><code>d--efivar_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defivar_005fname-of-c_002d_002dlass-1"><code>d--efivar_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defopt_005fname"><code>d--efopt_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defopt_005fname"><code>d--efopt_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defopt_005fname"><code>d--efopt_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defopt_005fname-1"><code>d--efopt_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><code>d--eftypecv_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><code>d--eftypecv_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><code>d--eftypecv_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><code>d--eftypecv_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><code>d--eftypecv_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><code>d--eftypecv_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-2"><code>d--eftypecv_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-3"><code>d--eftypecv_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><code>d--eftypecv_name2
 of c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><code>d--eftypecv_name2
 of c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><code>d--eftypecv_name2
 of c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><code>d--eftypecv_name2
 of c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><code>d--eftypecv_name2
 of c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><code>d--eftypecv_name2
 of c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-2"><code>d--eftypecv_name2
 of c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-3"><code>d--eftypecv_name2
 of c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><code>d--eftypeivar_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><code>d--eftypeivar_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><code>d--eftypeivar_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass-1"><code>d--eftypeivar_name
 of c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypevar_005fname"><code>d--eftypevar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypevar_005fname"><code>d--eftypevar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypevar_005fname"><code>d--eftypevar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypevar_005fname-1"><code>d--eftypevar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypevr_005fname"><code>d--eftypevr_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypevr_005fname"><code>d--eftypevr_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypevr_005fname"><code>d--eftypevr_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypevr_005fname-1"><code>d--eftypevr_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defvar_005fname"><code>d--efvar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defvar_005fname-1"><code>d--efvar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defvar_005fname"><code>d--efvar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defvar_005fname-1"><code>d--efvar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defvar_005fname"><code>d--efvar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defvar_005fname-1"><code>d--efvar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defvar_005fname-2"><code>d--efvar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defvar_005fname-3"><code>d--efvar_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defvr_005fname"><code>d--efvr_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defvr_005fname"><code>d--efvr_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defvr_005fname"><code>d--efvr_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defvr_005fname-1"><code>d--efvr_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_letter-G">G</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-g_002d_002d_002dgg">g&#8212;gg, h&#8212;hh jjj, 
k&#8212;kk, l&#8212;ll</a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_letter-I">I</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-index-entry-between-item-and-itemx">index 
entry between item and itemx</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-index-entry-between-item-and-itemx-1">index
 entry between item and itemx</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-index-entry-between-item-and-itemx">index
 entry between item and itemx</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-index-entry-between-item-and-itemx-1">index
 entry between item and itemx</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-index-entry-between-item-and-itemx">index entry 
between item and itemx</a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-index-entry-between-item-and-itemx-1">index entry 
between item and itemx</a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-index-entry-between-item-and-itemx-2">index entry 
between item and itemx</a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-index-entry-between-item-and-itemx-3">index entry 
between item and itemx</a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting_fot.xhtml#index-index-entry-in-footnote">index entry in 
footnote</a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-index-entry-within-deffn">index entry 
within deffn</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-index-entry-within-deffn">index entry 
within deffn</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-index-entry-within-deffn">index entry within 
deffn</a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-index-entry-within-deffn-1">index entry within 
deffn</a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-index-entry-within-itemize">index entry 
within itemize</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-index-entry-within-itemize">index entry 
within itemize</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-index-entry-within-itemize">index entry within 
itemize</a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-index-entry-within-itemize-1">index entry within 
itemize</a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-index-entry-within-multitable">index entry 
within multitable</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-index-entry-within-multitable">index 
entry within multitable</a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-index-entry-within-multitable">index entry within 
multitable</a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-index-entry-within-multitable-1">index entry within 
multitable</a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_cp_letter-T">T</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-t_002d_002druc">t&#8211;ruc</a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-T_002d_002druc">T&#8211;ruc</a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-2_cp_symbol-1"><b>&quot;</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-2"><b>-</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-3"><b>.</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-4"><b>?</b></a>
+ &#160; 
+<br/>
+<a class="summary-letter" href="#chapter-2_cp_letter-A"><b>A</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-B"><b>B</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-C"><b>C</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-D"><b>D</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-G"><b>G</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-I"><b>I</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_cp_letter-T"><b>T</b></a>
+ &#160; 
+</td></tr></table>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-2_fn_symbol-1"><b>-</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-2"><b>.</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-3"><b>?</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-4"><b>`</b></a>
+ &#160; 
+<br/>
+<a class="summary-letter" href="#chapter-2_fn_letter-A"><b>A</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-B"><b>B</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-D"><b>D</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-F"><b>F</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-I"><b>I</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-L"><b>L</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-M"><b>M</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-N"><b>N</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-T"><b>T</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-X"><b>X</b></a>
+ &#160; 
+</td></tr></table>
+<table class="index-fn" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&#160;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_symbol-1">-</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-_002d_002dfoption"><code>--foption</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-_002d_002dfoption"><code>--foption</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-_002d_002dfoption"><code>--foption</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-_002d_002dfoption-1"><code>--foption</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_symbol-2">.</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-_002e-1"><code>.</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_symbol-3">?</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-_003f-1"><code>?</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_symbol-4">`</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-_0060_0060-1"><code>``</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-_0060_0060-1"><code>``</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-_0060_0060-2"><code>``</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-_0060_0060-3"><code>``</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-A">A</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-a"><code>a</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-a-1"><code>a</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-a-2"><code>a</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-a"><code>a</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-a-1"><code>a</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-a-2"><code>a</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-a-1"><code>a</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-a-2"><code>a</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-a-3"><code>a</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-a-4"><code>a</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-a-5"><code>a</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-a-6"><code>a</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-a-7"><code>a</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-after"><code>after</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-after"><code>after</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-after"><code>after</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-after-1"><code>after</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-arg2"><code>arg2</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-arg2"><code>arg2</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-arg2"><code>arg2</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-arg2-1"><code>arg2</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-B">B</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-b"><code>b</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-b-1"><code>b</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-b"><code>b</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-b-1"><code>b</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-b"><code>b</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-b-1"><code>b</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-b-2"><code>b</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-b-3"><code>b</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-bidule-machin"><code>bidule 
machin</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-bidule-machin"><code>bidule 
machin</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-bidule-machin"><code>bidule 
machin</code></a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-bidule-machin-1"><code>bidule 
machin</code></a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-D">D</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deffn_005fname"><code>d--effn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deffn_005fname"><code>d--effn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deffn_005fname"><code>d--effn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deffn_005fname-1"><code>d--effn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defmac_005fname"><code>d--efmac_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defmac_005fname"><code>d--efmac_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defmac_005fname"><code>d--efmac_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defmac_005fname-1"><code>d--efmac_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defmethod_005fname-on-c_002d_002dlass"><code>d--efmethod_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defmethod_005fname-on-c_002d_002dlass"><code>d--efmethod_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defmethod_005fname-on-c_002d_002dlass"><code>d--efmethod_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defmethod_005fname-on-c_002d_002dlass-1"><code>d--efmethod_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defop_005fname-on-c_002d_002dlass"><code>d--efop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defop_005fname-on-c_002d_002dlass-1"><code>d--efop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defop_005fname-on-c_002d_002dlass"><code>d--efop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defop_005fname-on-c_002d_002dlass-1"><code>d--efop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defop_005fname-on-c_002d_002dlass"><code>d--efop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defop_005fname-on-c_002d_002dlass-1"><code>d--efop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defop_005fname-on-c_002d_002dlass-2"><code>d--efop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defop_005fname-on-c_002d_002dlass-3"><code>d--efop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defspec_005fname"><code>d--efspec_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defspec_005fname"><code>d--efspec_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defspec_005fname"><code>d--efspec_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defspec_005fname-1"><code>d--efspec_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypefn_005fname"><code>d--eftypefn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypefn_005fname-1"><code>d--eftypefn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypefn_005fname"><code>d--eftypefn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypefn_005fname-1"><code>d--eftypefn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypefn_005fname"><code>d--eftypefn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypefn_005fname-1"><code>d--eftypefn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypefn_005fname-2"><code>d--eftypefn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypefn_005fname-3"><code>d--eftypefn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypefn_005fname2"><code>d--eftypefn_name2</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypefn_005fname2"><code>d--eftypefn_name2</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypefn_005fname2"><code>d--eftypefn_name2</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypefn_005fname2-1"><code>d--eftypefn_name2</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypefun_005fname"><code>d--eftypefun_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypefun_005fname"><code>d--eftypefun_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypefun_005fname"><code>d--eftypefun_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypefun_005fname-1"><code>d--eftypefun_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><code>d--eftypemethod_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><code>d--eftypemethod_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><code>d--eftypemethod_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass-1"><code>d--eftypemethod_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><code>d--eftypeop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><code>d--eftypeop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><code>d--eftypeop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><code>d--eftypeop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><code>d--eftypeop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><code>d--eftypeop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-2"><code>d--eftypeop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-3"><code>d--eftypeop_name
 on c--lass</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><code>d--eftypeop_name2
 on c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><code>d--eftypeop_name2
 on c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><code>d--eftypeop_name2
 on c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><code>d--eftypeop_name2
 on c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><code>d--eftypeop_name2
 on c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><code>d--eftypeop_name2
 on c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-2"><code>d--eftypeop_name2
 on c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-3"><code>d--eftypeop_name2
 on c--lass2</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-d_002d_002defun_005fname"><code>d--efun_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-d_002d_002defun_005fname"><code>d--efun_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defun_005fname"><code>d--efun_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-d_002d_002defun_005fname-1"><code>d--efun_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-de_002d_002dffn_005fname"><code>de--ffn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-de_002d_002dffn_005fname"><code>de--ffn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-de_002d_002dffn_005fname"><code>de--ffn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-de_002d_002dffn_005fname-1"><code>de--ffn_name</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-deffn"><code>deffn</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-deffn-1"><code>deffn</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-deffn"><code>deffn</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-deffn-1"><code>deffn</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-deffn"><code>deffn</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-deffn-1"><code>deffn</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-deffn-2"><code>deffn</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-deffn-3"><code>deffn</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-deffnx"><code>deffnx</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-deffnx-1"><code>deffnx</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-deffnx"><code>deffnx</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-deffnx-1"><code>deffnx</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-deffnx"><code>deffnx</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-deffnx-1"><code>deffnx</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-deffnx-2"><code>deffnx</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-deffnx-3"><code>deffnx</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-F">F</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-f_002d_002d_002daa"><code>f---aa</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-f_002d_002d_002dbb"><code>f---bb, 
f---cc</code></a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-f_002d_002d_002dddd"><code>f---ddd, f---eee, 
ffff</code></a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-f_002d_002d_002dggg"><code>f---ggg, f---hhh fjjj, 
f---kkk, f---lll</code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-followed"><code>followed</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-followed-1"><code>followed</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-followed"><code>followed</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-followed-1"><code>followed</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-followed"><code>followed</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-followed-1"><code>followed</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-followed-2"><code>followed</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-followed-3"><code>followed</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-I">I</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-i"><code><var>i</var></code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-i-1"><code><var>i</var></code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-i"><code><var>i</var></code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-i-1"><code><var>i</var></code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-i"><code><var>i</var></code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-i-1"><code><var>i</var></code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-i-2"><code><var>i</var></code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-i-3"><code><var>i</var></code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-id-i-ule"><code><b>id 
&#8216;<samp>i</samp>&#8221; ule</b></code></a></td><td>&#160;</td><td 
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-id-i-ule"><code><b>id 
&#8216;<samp>i</samp>&#8221; ule</b></code></a></td><td>&#160;</td><td 
valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-id-i-ule"><code><b>id &#8216;<samp>i</samp>&#8221; 
ule</b></code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-id-i-ule-1"><code><b>id &#8216;<samp>i</samp>&#8221; 
ule</b></code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-id-ule"><code><b>id 
ule</b></code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-id-ule"><code><b>id 
ule</b></code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a href="chapter.xhtml#index-id-ule"><code><b>id 
ule</b></code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-id-ule-1"><code><b>id 
ule</b></code></a></td><td>&#160;</td><td valign="top"><a 
href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-L">L</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-log-trap"><code>log 
trap</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-log-trap"><code>log 
trap</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a href="chapter.xhtml#index-log-trap"><code>log 
trap</code></a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-log-trap-1"><code>log 
trap</code></a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-log-trap1"><code>log 
trap1</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-log-trap1"><code>log 
trap1</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-log-trap1"><code>log 
trap1</code></a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-log-trap1-1"><code>log 
trap1</code></a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-log-trap2"><code>log 
trap2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-log-trap2"><code>log 
trap2</code></a></td><td>&#160;</td><td valign="top"><a 
href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-log-trap2"><code>log 
trap2</code></a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-log-trap2-1"><code>log 
trap2</code></a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-M">M</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-machin"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-machin-1"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-machin-2"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-machin-3"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-machin-4"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-machin-5"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-machin"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-machin-1"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-machin-2"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-machin-3"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-machin-4"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-machin-5"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-machin"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-machin-1"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-machin-2"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-machin-3"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-machin-4"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-machin-5"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-machin-6"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-machin-7"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-machin-8"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-machin-9"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-machin-10"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-machin-11"><code>machin</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-N">N</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-n_002d_002dame"><code>n--ame</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-n_002d_002dame-1"><code>n--ame</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-n_002d_002dame"><code>n--ame</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-n_002d_002dame-1"><code>n--ame</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-n_002d_002dame"><code>n--ame</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-n_002d_002dame-1"><code>n--ame</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-n_002d_002dame-2"><code>n--ame</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-n_002d_002dame-3"><code>n--ame</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-name2"><code>name2</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-name2"><code>name2</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-name2"><code>name2</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-name2-1"><code>name2</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-T">T</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-t_002d_002druc-1"><code>t--ruc</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-T_002d_002druc-1"><code>T--ruc</code></a></td><td>&#160;</td><td
 valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-truc"><code>truc</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-copying-truc-1"><code>truc</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-truc"><code>truc</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="formatting.xhtml#index-titlepage-truc-1"><code>truc</code></a></td><td>&#160;</td><td
 valign="top"><a href="formatting.xhtml">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-truc"><code>truc</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-truc-1"><code>truc</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-truc-2"><code>truc</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="chapter.xhtml#index-truc-3"><code>truc</code></a></td><td>&#160;</td><td 
valign="top"><a href="chapter.xhtml">1 chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+<tr><th id="chapter-2_fn_letter-X">X</th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="chapter.xhtml#index-xxx"><code>xxx, 
zzz</code></a></td><td>&#160;</td><td valign="top"><a href="chapter.xhtml">1 
chapter</a></td></tr>
+<tr><td colspan="4"> </td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &#160; </th><td><a class="summary-letter" 
href="#chapter-2_fn_symbol-1"><b>-</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-2"><b>.</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-3"><b>?</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-4"><b>`</b></a>
+ &#160; 
+<br/>
+<a class="summary-letter" href="#chapter-2_fn_letter-A"><b>A</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-B"><b>B</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-D"><b>D</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-F"><b>F</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-I"><b>I</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-L"><b>L</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-M"><b>M</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-N"><b>N</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-T"><b>T</b></a>
+ &#160; 
+<a class="summary-letter" href="#chapter-2_fn_letter-X"><b>X</b></a>
+ &#160; 
+</td></tr></table>
+
+</div>
+<p>
+  <span class="smaller">This document was generated on <em>a sunny day</em> 
using <a 
href="http://www.gnu.org/software/texinfo/";><em>texi2any</em></a>.</span>
+</p>
+
+
+</body>
+</html>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting.xhtml
 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting.xhtml
new file mode 100644
index 0000000..ef18fda
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting.xhtml
@@ -0,0 +1,2792 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml";>
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<!-- 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 >=
+@tie a b
+
+@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>Top section (title &#8211;a)</title>
+
+<meta name="description" content="Top section (title &#8211;a)"/>
+<meta name="keywords" content="Top section (title &#8211;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.smaller {font-size: smaller}
+span:hover a.copiable-anchor {visibility: visible}
+ul.no-bullet {list-style: none}
+-->
+</style>
+
+
+</head>
+
+<body lang="en">
+<h1>title &#8211;a</h1>
+<h3 align="right">formatting subtitle &#8211;a</h3>
+<h3 align="right">subtitle 2 &#8211;a</h3>
+<strong>author1 &#8211;a with accents in name T&#233;&#231;a</strong><br/>
+<strong>author2 &#8211;a</strong><br/>
+<p>In titlepage
+</p>
+<p>&lt;
+&gt;
+&quot;
+&amp;
+&#8217;
+&#8216;
+</p>
+<p>&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;<br/>
+code: <code>``simple-double--three---four----''</code> <br/>
+asis: &#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221; <br/>
+strong: 
<strong>&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;</strong> 
<br/>
+kbd: <kbd>``simple-double--three---four----''</kbd> <br/>
+</p>
+<p>&#8216;<!-- /@w -->&#8216;simple-double-<!-- /@w 
-->-three&#8212;four&#8212;-&#8217;<!-- /@w -->&#8217;<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>@&quot;u &#252; 
+@&quot;{U} &#220; 
+@~n &#241;
+@^a &#226;
+@&#8217;e &#233;
+@=o &#333;
+@&#8216;i &#236;
+@&#8217;{e} &#233;
+@&#8217;{@dotless{i}} &#237; 
+@dotless{i} i
+@dotless{j} j
+@&#8216;{@=E} &#274;&#768; 
+@l{} &#322;
+@,{@&#8217;C} &#262;&#807;
+@,c &#231;
+@,c@&quot;u &#231;&#252; <br/>
+</p>
+<p>@U{0075} &#x0075;
+</p>
+<p>@* <br/>
+@ followed by a space
+&#160;
+@ followed by a tab
+&#160;
+@ followed by a new line
+&#160;<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 &#8226;
+@copyright &#169;
+@dots &#8230;
+@enddots <small class="enddots">...</small>
+@equiv &#8801;
+@error error&#8594;
+@expansion &#8614;
+@minus &#8722;
+@point &#9733;
+@print &#8867;
+@result &#8658;
+@today a sunny day
+</p>
+<p>@aa &#229;
+@AA &#197;
+@ae &#230;
+@oe &#339;
+@AE &#198;
+@OE &#338;
+@o &#248;
+@O &#216;
+@ss &#223;
+@l &#322;
+@L &#321;
+@DH &#208;
+@TH &#222;
+@dh &#240;
+@th &#254;
+</p>
+<p>@exclamdown &#161;
+@questiondown &#191;
+@pounds &#163;
+@registeredsymbol &#174;
+@ordf &#170;
+@ordm &#186;
+@comma &#44;
+@quotedblleft &#8220;
+@quotedblright &#8221;
+@quoteleft &#8216;
+@quoteright &#8217;
+@quotedblbase &#8222;
+@quotesinglbase &#8218;
+@guillemetleft &#171;
+@guillemetright &#187;
+@guillemotleft &#171;
+@guillemotright &#187;
+@guilsinglleft &#8249;
+@guilsinglright &#8250;
+@textdegree &#176;
+@euro &#8364;
+@arrow &#8594;
+@leq &#8804;
+@geq &#8805;
+@tie a&#160;b
+</p>
+<p><code>@acronym{--a,an accronym}</code> <acronym title="an 
accronym">&#8211;a</acronym> (an accronym)
+<code>@acronym{--a}</code> <acronym title="an accronym">&#8211;a</acronym>
+<code>@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr 
title="&#201;tude Autonome">&#201;&#8211;. &#44;A.</abbr> (&#201;tude Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude 
Autonome">&#201;&#8211;. &#44;A.</abbr>
+<code>@asis{--a}</code> &#8211;a
+<code>@b{--a}</code> <b>&#8211;a</b>
+<code>@cite{--a}</code> <cite>&#8211;a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@dfn{--a}</code> <em>&#8211;a</em>
+<code>@dmn{--a}</code> &#8211;a
+<code>@email{--a,--b}</code> <a href="mailto:--a";>&#8211;b</a>
+<code>@email{,--b}</code> &#8211;b
+<code>@email{--a}</code> <a href="mailto:--a";>--a</a>
+<code>@emph{--a}</code> <em>&#8211;a</em>
+<code>@env{--a}</code> <code>--a</code>
+<code>@file{--a}</code> <samp>--a</samp>
+<code>@i{--a}</code> <i>&#8211;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}} &#8722;</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">&#8211;a</span>
+<code>@samp{--a}</code> &#8216;<samp>--a</samp>&#8221;
+<code>@sc{--a}</code> <small>&#8211;A</small>
+<code>@strong{--a}</code> <strong>&#8211;a</strong>
+<code>@t{--a}</code> <tt>--a</tt>
+<code>@sansserif{--a}</code> <span class="sansserif">&#8211;a</span>
+<code>@slanted{--a}</code> <i>&#8211;a</i>
+<code>@titlefont{--a}</code> </p><h1 class="titlefont">&#8211;a</h1>
+<p><code>@indicateurl{--a}</code> &#8216;<code>--a</code>&#8221;
+<code>@uref{--a,--b}</code> <a href="--a">&#8211;b</a>
+<code>@uref{--a}</code> <a href="--a">--a</a>
+<code>@uref{,--b}</code> &#8211;b
+<code>@uref{--a,--b,--c}</code> <a href="--a">&#8211;c</a>
+<code>@uref{,--b,--c}</code> &#8211;c
+<code>@uref{--a,,--c}</code> <a href="--a">&#8211;c</a>
+<code>@uref{,,--c}</code> &#8211;c
+<code>@url{--a,--b}</code> <a href="--a">&#8211;b</a>
+<code>@url{--a,}</code> <a href="--a">--a</a>
+<code>@url{,--b}</code> &#8211;b
+<code>@var{--a}</code> <var>&#8211;a</var>
+<code>@verb{:--a:}</code> <tt>--a</tt>
+<code>@verb{:a  &lt; &amp; @ % &quot; --    b:}</code> <tt>a  &lt; &amp; @ % 
&quot; --    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&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a<!--
 /@w -->
+<code>@H{a}</code> a&#779;
+<code>@H{--a}</code> &#8211;a&#779;
+<code>@dotaccent{a}</code> &#551;
+<code>@dotaccent{--a}</code> &#8211;a&#775;
+<code>@ringaccent{a}</code> &#229;
+<code>@ringaccent{--a}</code> &#8211;a&#778;
+<code>@tieaccent{a}</code> a&#865;
+<code>@tieaccent{--a}</code> &#8211;a&#865;
+<code>@u{a}</code> &#259;
+<code>@u{--a}</code> &#8211;a&#774;
+<code>@ubaraccent{a}</code> a&#818;
+<code>@ubaraccent{--a}</code> &#8211;a&#818;
+<code>@udotaccent{a}</code> &#7841;
+<code>@udotaccent{--a}</code> &#8211;a&#803;
+<code>@v{a}</code> &#462;
+<code>@v{--a}</code> &#8211;a&#780;
+<code>@,{c}</code> &#231;
+<code>@,{--c}</code> &#8211;c&#807;
+<code>@ogonek{a}</code> &#261;
+<code>@ogonek{--a}</code> &#8211;a&#808;
+<code>a@sup{h}@sub{l}</code> a<sup>h</sup><sub>l</sub>
+<code>@footnote{in footnote}</code> <a id="DOCF3" 
href="formatting_fot.xhtml#FOOT3"><sup>1</sup></a>
+<code>@footnote{in footnote2}</code> <a id="DOCF4" 
href="formatting_fot.xhtml#FOOT4"><sup>2</sup></a>
+</p>
+<p><code>@image{f--ile}</code> <img src="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,l--i}</code> <img src="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,,l--e}</code> <img src="../images/f--ile.png" 
alt="f--ile"/>
+<code>@image{f--ile,,,alt}</code> <img src="../images/f--ile.png" alt="alt"/>
+<code>@image{f--ile,,,,.e-d-xt}</code> <img src="../images/f--ile.e--xt" 
alt="f--ile"/>
+<code>@image{f--ile,aze,az,alt,.e--xt}</code> <img 
src="../images/f--ile.e--xt" alt="alt"/>
+<code>@image{f-ile,aze,,a--lt}</code> <img src="../images/f-ile.jpg" 
alt="a&#8211;lt"/>
+<code>@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext} e--xt@}</code> <img 
src="../images/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 &#8594; A
+After clickstyle &#8658;
+<code>@clicksequence{click @click{} A}</code> click &#8658; 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>&#252; &#220; &#241; &#226; &#233; &#333; &#236; 
&#233; i j &#274;&#768;
+&#322; &#262;&#807; &#262;&#807; &#231; a&#779; &#551; &#229; a&#865;
+&#259; a&#818; &#7841; &#462; &#261; a<sup>h</sup><sub>l</sub>
+
+ &#160;&#160; &#160;   ! ? . @ } { 
+a sunny day
+</em></div>
+<div class="displaymath"><em>&#8594;
+&#x0075;
+TeX LaTeX &#8226; &#169; &#8230; ... &#8801;
+error&#8594; &#8614; &#8722; &#9733; &#8867; &#8658;
+&#229; &#197; &#230; &#339; &#198; &#338; &#248; &#216; &#223; &#322; &#321; 
&#208;
+&#222; &#240; &#254; &#161; &#191; &#163;
+&#174; &#170; &#186; &#44; 
+</em></div>
+<div class="displaymath"><em>&#8220; &#8221; 
+&#8216; &#8217; &#8222; &#8218; &#171;
+&#187; &#171; &#187; &#8249;
+&#8250; &#176; &#8364; &#8594; &#8804; &#8805;
+</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&#8212;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 &#233; TeX:</b> The something &#233; TeX is here.
+</p></blockquote>
+
+<blockquote>
+<p><b>@ at the end of line &#160;:</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">&#8212; <em>quotation author</em>
+</div>
+<blockquote>
+<p>indent in quotation
+</p></blockquote>
+
+<blockquote>
+<p>A small quot&#8212;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&#8211;temize
+</li></ul>
+
+<ul class="no-bullet">
+<li>+ i&#8211;tem +
+</li></ul>
+
+<ul>
+<li> b&#8211;ullet
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8722; minu&#8211;s
+</li></ul>
+
+<ul class="no-bullet">
+<li><em>after emph</em> e&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8226; a&#8211;n itemize line <span 
id="index-titlepage-index-entry-within-itemize"></span>
+i&#8211;tem 1
+</li><li>&#8226; a&#8211;n itemize line i&#8211;tem 2
+</li></ul>
+
+<ol>
+<li> e&#8211;numerate
+</li></ol>
+
+<ol start="3">
+<li> first third
+</li><li> second third
+</li></ol>
+
+<ol type="a" start="1">
+<li> e&#8211;numerate
+</li></ol>
+
+<ol type="a" start="3">
+<li> first c
+</li><li> second c
+</li></ol>
+
+<table>
+<thead><tr><th width="40%">mu&#8211;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
+<tbody><tr><td width="40%">mu&#8211;ltitable item</td><td 
width="60%">multitable tab</td></tr>
+<tr><td width="40%">mu&#8211;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&#8211;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 &#233; 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&amp;content-type=text/plain'
+$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD&amp;content-type=text/plain'
+</pre></div>
+<p>Less recent versions are also present.
+</p>
+<div class="display">
+<pre class="display">d&#8211;isplay
+</pre></div>
+
+<div class="display">
+<pre class="display">s&#8211;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&#8211;ormat
+</pre></div>
+
+<div class="format">
+<pre class="format">s&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>def&#8211;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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</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'> 
&#182;</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'> &#182;</a></span></dt>
+<dt id="index-titlepage-id-i-ule"><span class="category">cmde2: 
</span><span><strong><b>id &#8216;<samp>i</samp>&#8221; ule</b></strong> 
<em>truc</em><a href='#index-titlepage-id-i-ule' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dt><span class="category"><b>id &#8216;<samp>i</samp>&#8221; ule</b>: 
</span><strong></strong></dt>
+<dt><strong></strong></dt>
+<dt><span class="category">aaa: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt id="index-titlepage-machin"><span class="category">: 
</span><span><strong>machin</strong><a href='#index-titlepage-machin' 
class='copiable-anchor'> &#182;</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'> 
&#182;</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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</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 href="../file 
n---ame@/c_002d_002d_002dhapter_0040.html#c_002d_002d_002dhapter_0040">t&#8212;itle@</a>
 in <cite>ma&#8212;nual@</cite>.
+<code>@ref{chapter, cross ref name, title, file name, manual}</code> <a 
href="../file name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@pxref{chapter, cross ref name, title, file name, manual}</code> see <a 
href="../file name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@inforef{chapter, cross ref name, file name}</code> See <a href="../file 
name/chapter.html#chapter">(file name)cross ref name</a>
+</p>
+<p><code>@ref{chapter}</code> <a href="chapter.xhtml">chapter</a>
+<code>@xref{chapter}</code> See <a href="chapter.xhtml">chapter</a>.
+<code>@pxref{chapter}</code> see <a href="chapter.xhtml">chapter</a>
+<code>@ref{s--ect@comma{}ion}</code> <a href="s_002d_002dect_002cion.xhtml">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 href="../a comma, in 
file/s_002d_002dect_002cion.html#s_002d_002dect_002cion">a comma&#44; in 
title</a> in <cite>a &#44; in manual name</cite>
+</p>
+<p><code>@ref{chapter,cross ref name}</code> <a href="chapter.xhtml">cross ref 
name</a>
+<code>@ref{chapter,,title}</code> <a href="chapter.xhtml">title</a>
+<code>@ref{chapter,,,file name}</code> <a href="../file 
name/chapter.html#chapter">(file name)chapter</a>
+<code>@ref{chapter,,,,manual}</code> &#8216;chapter&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,}</code> <a 
href="chapter.xhtml">title</a>
+<code>@ref{chapter,cross ref name,,file name}</code> <a href="../file 
name/chapter.html#chapter">(file name)cross ref name</a>
+<code>@ref{chapter,cross ref name,,,manual}</code> &#8216;cross ref 
name&#8217; in <cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,file name}</code> <a href="../file 
name/chapter.html#chapter">(file name)title</a>
+<code>@ref{chapter,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title, file name, manual}</code> <a 
href="../file name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,title,file name}</code> <a href="../file 
name/chapter.html#chapter">(file name)title</a>
+<code>@ref{chapter,,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a href="../file 
name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,,file name,manual}</code> <a href="../file 
name/chapter.html#chapter">chapter</a> in <cite>manual</cite>
+</p>
+
+<p><code>@ref{(pman)anode,cross ref name}</code> <a 
href="../pman/anode.html#anode">(pman)cross ref name</a>
+<code>@ref{(pman)anode,,title}</code> <a 
href="../pman/anode.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,,,file name}</code> <a href="../file 
name/anode.html#anode">(file name)anode</a>
+<code>@ref{(pman)anode,,,,manual}</code> <a 
href="../pman/anode.html#anode">anode</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,}</code> <a 
href="../pman/anode.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,cross ref name,,file name}</code> <a href="../file 
name/anode.html#anode">(file name)cross ref name</a>
+<code>@ref{(pman)anode,cross ref name,,,manual}</code> <a 
href="../pman/anode.html#anode">cross ref name</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,file name}</code> <a href="../file 
name/anode.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,cross ref name,title,,manual}</code> <a 
href="../pman/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title, file name, manual}</code> <a 
href="../file name/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title,file name}</code> <a href="../file 
name/anode.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,,title,,manual}</code> <a 
href="../pman/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title, file name, manual}</code> <a href="../file 
name/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,,file name,manual}</code> <a href="../file 
name/anode.html#anode">anode</a> in <cite>manual</cite>
+</p>
+
+<p><code>@inforef{chapter, cross ref name, file name}</code> See <a 
href="../file name/chapter.html#chapter">(file name)cross ref name</a>
+<code>@inforef{chapter}</code> See &#8216;chapter&#8217;
+<code>@inforef{chapter, cross ref name}</code> See &#8216;cross ref name&#8217;
+<code>@inforef{chapter,,file name}</code> See <a href="../file 
name/chapter.html#chapter">(file name)chapter</a>
+<code>@inforef{node, cross ref name, file name}</code> See <a href="../file 
name/node.html#node">(file name)cross ref name</a>
+<code>@inforef{node}</code> See &#8216;node&#8217;
+<code>@inforef{node, cross ref name}</code> See &#8216;cross ref name&#8217;
+<code>@inforef{node,,file name}</code> See <a href="../file 
name/node.html#node">(file name)node</a>
+<code>@inforef{chapter, cross ref name, file name, spurious arg}</code> See <a 
href="../file name, spurious arg/chapter.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 href="../a comma, in 
file/s_002d_002dect_002cion.html#s_002d_002dect_002cion">(a comma, in file)a 
&#44; in cross
+ref</a>
+</p>
+<p>&#8216;<samp><a href="chapter.xhtml">chapter</a></samp>&#8221;.
+</p>
+<p><a href="../index3.html (uref3)/ext.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.xhtml">title with uref2 <a 
href="href://http/myhost.com/index2.html">uref2</a></a>
+</p>
+<dl compact="compact">
+<dt><strong>a&#8211;strong</strong></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-titlepage-a_002d_002dasis'><span>a&#8211;asis<a 
href='#index-titlepage-a_002d_002dasis' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dt id='index-titlepage-b-2'><span>b<a href='#index-titlepage-b-2' 
class='copiable-anchor'> &#182;</a></span></dt>
+<dd><p>l&#8211;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'> &#182;</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'> &#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt><code>a--code</code></dt>
+<dd><p>Value&#8211;table code
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt>&#8216;<samp>a--samp</samp>&#8221;</dt>
+<dt>&#8216;<samp>a2--samp</samp>&#8221;</dt>
+<dd><p>Value&#8211;table samp
+</p></dd>
+</dl>
+
+<table class="cartouche" border="1"><tr><td>
+<p>c&#8211;artouche
+</p></td></tr></table>
+
+<p>g&#8211;roupe
+</p>
+<p align="left">f&#8211;lushleft
+more text
+</p>
+<p align="right">f&#8211;lushright
+more text
+</p>
+<div align="center">ce&#8211;ntered line
+</div>
+<p>r&#8211;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 @  &lt;&gt;.
+
+@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 &#44; ...">&#8211;a</acronym> (an accronym &#44; <small 
class="enddots">...</small>)
+<code>@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome} }</code> <abbr 
title="&#201;tude&#8211;&#44; Autonome">&#201;&#8211;. &#44;A.</abbr> 
(&#201;tude&#8211;&#44; <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude&#8211;&#44; 
Autonome">&#201;&#8211;. &#44;A.</abbr>
+</p>
+<p><code>@math{--a@minus{} {\frac{1}{2}}}</code> <em class="math">--a&#8722; 
{\frac{1}{2}}</em>
+</p>
+<p><code>@image{f-ile,,,alt@verb{:jk _&quot; %}}</code> <img 
src="../images/f-ile.jpg" alt="altjk _&quot; %@"/>
+<code>@image{f--ile,aze,az,@verb{:jk _&quot; %@:} @b{in b 
&quot;},e--xt}</code> <img src="../images/f--ile.e--xt" alt="jk _&quot; %@ in b 
&quot;"/>
+<code>@image{file@verb{:jk _&quot; %@:},,,alt@verb{:jk _&quot; %@:}}</code> 
<img src="../images/filejk _&quot; %@.jpg" alt="altjk _&quot; %@"/>
+</p>
+
+
+
+<p>Somehow invalid use of @,:<br/>
+@, &#807;
+<br/>
+@,@&quot;u &#807;&#252;
+</p>
+<p>Invalid use of @&#8217;:<br/>
+@&#8217; &#769;
+<br/>
+@&#8217;@&quot;u &#769;&#252;
+</p>
+<p>@dotless{truc} truc
+@dotless{ij} ij
+<code>@dotless{--a}</code> &#8211;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 &lt;4 hex digits &#xabc;
+@U{FFFFFFFFFFFFFF}, value much too large &#xFFFFFFFFFFFFFF;
+@U{110000}, value just beyond Unicode &#x110000;
+</p>
+<p>@TeX, but without brace TeX<code>@#</code> #
+</p>
+<p><code>@w{--a}</code> &#8211;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&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li> after emph e&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8226; a&#8211;n itemize line i&#8211;tem 1
+</li><li>&#8226; a&#8211;n itemize line i&#8211;tem 2
+</li></ul>
+
+<dl compact="compact">
+<dt>a</dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt>a&#8211;missing style formatting</dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-titlepage-a-2'><span>a<a href='#index-titlepage-a-2' 
class='copiable-anchor'> &#182;</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'> &#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl class="def">
+<dt><span class="category">fun: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</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'> &#182;</a></span></dt>
+</dl>
+
+<p><code>@ref{node}</code> &#8216;node&#8217;
+</p>
+<p><code>@ref{,cross ref name}</code> &#8216;cross ref name&#8217;
+<code>@ref{,,title}</code> &#8216;title&#8217;
+<code>@ref{,,,file name}</code> <a href="../file name/index.html">(file 
name)</a>
+<code>@ref{,,,,manual}</code> <cite>manual</cite>
+<code>@ref{node,cross ref name}</code> &#8216;cross ref name&#8217;
+<code>@ref{node,,title}</code> &#8216;title&#8217;
+<code>@ref{node,,,file name}</code> <a href="../file 
name/node.html#node">(file name)node</a>
+<code>@ref{node,,,,manual}</code> &#8216;node&#8217; in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,}</code> &#8216;title&#8217;
+<code>@ref{node,cross ref name,,file name}</code> <a href="../file 
name/node.html#node">(file name)cross ref name</a>
+<code>@ref{node,cross ref name,,,manual}</code> &#8216;cross ref name&#8217; 
in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,file name}</code> <a href="../file 
name/node.html#node">(file name)title</a>
+<code>@ref{node,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{node,cross ref name,title, file name, manual}</code> <a 
href="../file name/node.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,title,file name}</code> <a href="../file 
name/node.html#node">(file name)title</a>
+<code>@ref{node,,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a href="../file 
name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{node,,title, file name, manual}</code> <a href="../file 
name/node.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,,file name,manual}</code> <a href="../file 
name/node.html#node">node</a> in <cite>manual</cite>
+<code>@ref{,cross ref name,title,}</code> &#8216;title&#8217;
+<code>@ref{,cross ref name,,file name}</code> <a href="../file 
name/index.html">(file name)cross ref name</a>
+<code>@ref{,cross ref name,,,manual}</code> &#8216;cross ref name&#8217; in 
<cite>manual</cite>
+<code>@ref{,cross ref name,title,file name}</code> <a href="../file 
name/index.html">(file name)title</a>
+<code>@ref{,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{,cross ref name,title, file name, manual}</code> <a href="../file 
name/index.html">title</a> in <cite>manual</cite>
+<code>@ref{,,title,file name}</code> <a href="../file name/index.html">(file 
name)title</a>
+<code>@ref{,,title,,manual}</code> &#8216;title&#8217; in <cite>manual</cite>
+<code>@ref{,,title, file name, manual}</code> <a href="../file 
name/index.html">title</a> in <cite>manual</cite>
+<code>@ref{,,,file name,manual}</code> <cite><a href="../file 
name/index.html">manual</a></cite>
+</p>
+<p><code>@inforef{,cross ref name }</code> See &#8216;cross ref name&#8217;
+<code>@inforef{,,file name}</code> See <a href="../file name/index.html">(file 
name)</a>
+<code>@inforef{,cross ref name, file name}</code> See <a href="../file 
name/index.html">(file name)cross ref name</a>
+<code>@inforef{}</code> 
+</p>
+
+
+<p>Insercopying in titlepage
+</p><p>In copying
+</p>
+<p>&lt;
+&gt;
+&quot;
+&amp;
+&#8217;
+&#8216;
+</p>
+<p>&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;<br/>
+code: <code>``simple-double--three---four----''</code> <br/>
+asis: &#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221; <br/>
+strong: 
<strong>&#8220;simple-double&#8211;three&#8212;four&#8212;-&#8221;</strong> 
<br/>
+kbd: <kbd>``simple-double--three---four----''</kbd> <br/>
+</p>
+<p>&#8216;<!-- /@w -->&#8216;simple-double-<!-- /@w 
-->-three&#8212;four&#8212;-&#8217;<!-- /@w -->&#8217;<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>@&quot;u &#252; 
+@&quot;{U} &#220; 
+@~n &#241;
+@^a &#226;
+@&#8217;e &#233;
+@=o &#333;
+@&#8216;i &#236;
+@&#8217;{e} &#233;
+@&#8217;{@dotless{i}} &#237; 
+@dotless{i} i
+@dotless{j} j
+@&#8216;{@=E} &#274;&#768; 
+@l{} &#322;
+@,{@&#8217;C} &#262;&#807;
+@,c &#231;
+@,c@&quot;u &#231;&#252; <br/>
+</p>
+<p>@U{0075} &#x0075;
+</p>
+<p>@* <br/>
+@ followed by a space
+&#160;
+@ followed by a tab
+&#160;
+@ followed by a new line
+&#160;<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 &#8226;
+@copyright &#169;
+@dots &#8230;
+@enddots <small class="enddots">...</small>
+@equiv &#8801;
+@error error&#8594;
+@expansion &#8614;
+@minus &#8722;
+@point &#9733;
+@print &#8867;
+@result &#8658;
+@today a sunny day
+</p>
+<p>@aa &#229;
+@AA &#197;
+@ae &#230;
+@oe &#339;
+@AE &#198;
+@OE &#338;
+@o &#248;
+@O &#216;
+@ss &#223;
+@l &#322;
+@L &#321;
+@DH &#208;
+@TH &#222;
+@dh &#240;
+@th &#254;
+</p>
+<p>@exclamdown &#161;
+@questiondown &#191;
+@pounds &#163;
+@registeredsymbol &#174;
+@ordf &#170;
+@ordm &#186;
+@comma &#44;
+@quotedblleft &#8220;
+@quotedblright &#8221;
+@quoteleft &#8216;
+@quoteright &#8217;
+@quotedblbase &#8222;
+@quotesinglbase &#8218;
+@guillemetleft &#171;
+@guillemetright &#187;
+@guillemotleft &#171;
+@guillemotright &#187;
+@guilsinglleft &#8249;
+@guilsinglright &#8250;
+@textdegree &#176;
+@euro &#8364;
+@arrow &#8594;
+@leq &#8804;
+@geq &#8805;
+@tie a&#160;b
+</p>
+<p><code>@acronym{--a,an accronym}</code> <acronym title="an 
accronym">&#8211;a</acronym> (an accronym)
+<code>@acronym{--a}</code> <acronym title="an accronym">&#8211;a</acronym>
+<code>@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr 
title="&#201;tude Autonome">&#201;&#8211;. &#44;A.</abbr> (&#201;tude Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude 
Autonome">&#201;&#8211;. &#44;A.</abbr>
+<code>@asis{--a}</code> &#8211;a
+<code>@b{--a}</code> <b>&#8211;a</b>
+<code>@cite{--a}</code> <cite>&#8211;a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@dfn{--a}</code> <em>&#8211;a</em>
+<code>@dmn{--a}</code> &#8211;a
+<code>@email{--a,--b}</code> <a href="mailto:--a";>&#8211;b</a>
+<code>@email{,--b}</code> &#8211;b
+<code>@email{--a}</code> <a href="mailto:--a";>--a</a>
+<code>@emph{--a}</code> <em>&#8211;a</em>
+<code>@env{--a}</code> <code>--a</code>
+<code>@file{--a}</code> <samp>--a</samp>
+<code>@i{--a}</code> <i>&#8211;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}} &#8722;</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">&#8211;a</span>
+<code>@samp{--a}</code> &#8216;<samp>--a</samp>&#8221;
+<code>@sc{--a}</code> <small>&#8211;A</small>
+<code>@strong{--a}</code> <strong>&#8211;a</strong>
+<code>@t{--a}</code> <tt>--a</tt>
+<code>@sansserif{--a}</code> <span class="sansserif">&#8211;a</span>
+<code>@slanted{--a}</code> <i>&#8211;a</i>
+<code>@titlefont{--a}</code> </p><h1 class="titlefont">&#8211;a</h1>
+<p><code>@indicateurl{--a}</code> &#8216;<code>--a</code>&#8221;
+<code>@uref{--a,--b}</code> <a href="--a">&#8211;b</a>
+<code>@uref{--a}</code> <a href="--a">--a</a>
+<code>@uref{,--b}</code> &#8211;b
+<code>@uref{--a,--b,--c}</code> <a href="--a">&#8211;c</a>
+<code>@uref{,--b,--c}</code> &#8211;c
+<code>@uref{--a,,--c}</code> <a href="--a">&#8211;c</a>
+<code>@uref{,,--c}</code> &#8211;c
+<code>@url{--a,--b}</code> <a href="--a">&#8211;b</a>
+<code>@url{--a,}</code> <a href="--a">--a</a>
+<code>@url{,--b}</code> &#8211;b
+<code>@var{--a}</code> <var>&#8211;a</var>
+<code>@verb{:--a:}</code> <tt>--a</tt>
+<code>@verb{:a  &lt; &amp; @ % &quot; --    b:}</code> <tt>a  &lt; &amp; @ % 
&quot; --    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&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a&#160;a<!--
 /@w -->
+<code>@H{a}</code> a&#779;
+<code>@H{--a}</code> &#8211;a&#779;
+<code>@dotaccent{a}</code> &#551;
+<code>@dotaccent{--a}</code> &#8211;a&#775;
+<code>@ringaccent{a}</code> &#229;
+<code>@ringaccent{--a}</code> &#8211;a&#778;
+<code>@tieaccent{a}</code> a&#865;
+<code>@tieaccent{--a}</code> &#8211;a&#865;
+<code>@u{a}</code> &#259;
+<code>@u{--a}</code> &#8211;a&#774;
+<code>@ubaraccent{a}</code> a&#818;
+<code>@ubaraccent{--a}</code> &#8211;a&#818;
+<code>@udotaccent{a}</code> &#7841;
+<code>@udotaccent{--a}</code> &#8211;a&#803;
+<code>@v{a}</code> &#462;
+<code>@v{--a}</code> &#8211;a&#780;
+<code>@,{c}</code> &#231;
+<code>@,{--c}</code> &#8211;c&#807;
+<code>@ogonek{a}</code> &#261;
+<code>@ogonek{--a}</code> &#8211;a&#808;
+<code>a@sup{h}@sub{l}</code> a<sup>h</sup><sub>l</sub>
+<code>@footnote{in footnote}</code> <a id="DOCF1" 
href="formatting_fot.xhtml#FOOT1"><sup>3</sup></a>
+<code>@footnote{in footnote2}</code> <a id="DOCF2" 
href="formatting_fot.xhtml#FOOT2"><sup>4</sup></a>
+</p>
+<p><code>@image{f--ile}</code> <img src="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,l--i}</code> <img src="../images/f--ile.png" alt="f--ile"/>
+<code>@image{f--ile,,l--e}</code> <img src="../images/f--ile.png" 
alt="f--ile"/>
+<code>@image{f--ile,,,alt}</code> <img src="../images/f--ile.png" alt="alt"/>
+<code>@image{f--ile,,,,.e-d-xt}</code> <img src="../images/f--ile.e--xt" 
alt="f--ile"/>
+<code>@image{f--ile,aze,az,alt,.e--xt}</code> <img 
src="../images/f--ile.e--xt" alt="alt"/>
+<code>@image{f-ile,aze,,a--lt}</code> <img src="../images/f-ile.jpg" 
alt="a&#8211;lt"/>
+<code>@image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext} e--xt@}</code> <img 
src="../images/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 &#8594; A
+After clickstyle &#8658;
+<code>@clicksequence{click @click{} A}</code> click &#8658; 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>&#252; &#220; &#241; &#226; &#233; &#333; &#236; 
&#233; i j &#274;&#768;
+&#322; &#262;&#807; &#262;&#807; &#231; a&#779; &#551; &#229; a&#865;
+&#259; a&#818; &#7841; &#462; &#261; a<sup>h</sup><sub>l</sub>
+
+ &#160;&#160; &#160;   ! ? . @ } { 
+a sunny day
+</em></div>
+<div class="displaymath"><em>&#8594;
+&#x0075;
+TeX LaTeX &#8226; &#169; &#8230; ... &#8801;
+error&#8594; &#8614; &#8722; &#9733; &#8867; &#8658;
+&#229; &#197; &#230; &#339; &#198; &#338; &#248; &#216; &#223; &#322; &#321; 
&#208;
+&#222; &#240; &#254; &#161; &#191; &#163;
+&#174; &#170; &#186; &#44; 
+</em></div>
+<div class="displaymath"><em>&#8220; &#8221; 
+&#8216; &#8217; &#8222; &#8218; &#171;
+&#187; &#171; &#187; &#8249;
+&#8250; &#176; &#8364; &#8594; &#8804; &#8805;
+</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&#8212;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 &#233; TeX:</b> The something &#233; TeX is here.
+</p></blockquote>
+
+<blockquote>
+<p><b>@ at the end of line &#160;:</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">&#8212; <em>quotation author</em>
+</div>
+<blockquote>
+<p>indent in quotation
+</p></blockquote>
+
+<blockquote>
+<p>A small quot&#8212;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&#8211;temize
+</li></ul>
+
+<ul class="no-bullet">
+<li>+ i&#8211;tem +
+</li></ul>
+
+<ul>
+<li> b&#8211;ullet
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8722; minu&#8211;s
+</li></ul>
+
+<ul class="no-bullet">
+<li><em>after emph</em> e&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8226; a&#8211;n itemize line <span 
id="index-copying-index-entry-within-itemize"></span>
+i&#8211;tem 1
+</li><li>&#8226; a&#8211;n itemize line i&#8211;tem 2
+</li></ul>
+
+<ol>
+<li> e&#8211;numerate
+</li></ol>
+
+<ol start="3">
+<li> first third
+</li><li> second third
+</li></ol>
+
+<ol type="a" start="1">
+<li> e&#8211;numerate
+</li></ol>
+
+<ol type="a" start="3">
+<li> first c
+</li><li> second c
+</li></ol>
+
+<table>
+<thead><tr><th width="40%">mu&#8211;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
+<tbody><tr><td width="40%">mu&#8211;ltitable item</td><td 
width="60%">multitable tab</td></tr>
+<tr><td width="40%">mu&#8211;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&#8211;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 &#233; 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&amp;content-type=text/plain'
+$ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD&amp;content-type=text/plain'
+</pre></div>
+<p>Less recent versions are also present.
+</p>
+<div class="display">
+<pre class="display">d&#8211;isplay
+</pre></div>
+
+<div class="display">
+<pre class="display">s&#8211;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&#8211;ormat
+</pre></div>
+
+<div class="format">
+<pre class="format">s&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>def&#8211;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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</a></span></dt>
+<dt id="index-copying-id-i-ule"><span class="category">cmde2: 
</span><span><strong><b>id &#8216;<samp>i</samp>&#8221; ule</b></strong> 
<em>truc</em><a href='#index-copying-id-i-ule' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dt><span class="category"><b>id &#8216;<samp>i</samp>&#8221; ule</b>: 
</span><strong></strong></dt>
+<dt><strong></strong></dt>
+<dt><span class="category">aaa: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></dt>
+<dt id="index-copying-machin"><span class="category">: 
</span><span><strong>machin</strong><a href='#index-copying-machin' 
class='copiable-anchor'> &#182;</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'> 
&#182;</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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></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'> &#182;</a></span></dt>
+<dt><span class="category">truc: </span><strong></strong></dt>
+<dt><span class="category">: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> 
&#182;</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'> 
&#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</a></span></dt>
+<dd><p>d&#8211;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'> &#182;</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 href="../file 
n---ame@/c_002d_002d_002dhapter_0040.html#c_002d_002d_002dhapter_0040">t&#8212;itle@</a>
 in <cite>ma&#8212;nual@</cite>.
+<code>@ref{chapter, cross ref name, title, file name, manual}</code> <a 
href="../file name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@pxref{chapter, cross ref name, title, file name, manual}</code> see <a 
href="../file name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@inforef{chapter, cross ref name, file name}</code> See <a href="../file 
name/chapter.html#chapter">(file name)cross ref name</a>
+</p>
+<p><code>@ref{chapter}</code> <a href="chapter.xhtml">chapter</a>
+<code>@xref{chapter}</code> See <a href="chapter.xhtml">chapter</a>.
+<code>@pxref{chapter}</code> see <a href="chapter.xhtml">chapter</a>
+<code>@ref{s--ect@comma{}ion}</code> <a href="s_002d_002dect_002cion.xhtml">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 href="../a comma, in 
file/s_002d_002dect_002cion.html#s_002d_002dect_002cion">a comma&#44; in 
title</a> in <cite>a &#44; in manual name</cite>
+</p>
+<p><code>@ref{chapter,cross ref name}</code> <a href="chapter.xhtml">cross ref 
name</a>
+<code>@ref{chapter,,title}</code> <a href="chapter.xhtml">title</a>
+<code>@ref{chapter,,,file name}</code> <a href="../file 
name/chapter.html#chapter">(file name)chapter</a>
+<code>@ref{chapter,,,,manual}</code> &#8216;chapter&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,}</code> <a 
href="chapter.xhtml">title</a>
+<code>@ref{chapter,cross ref name,,file name}</code> <a href="../file 
name/chapter.html#chapter">(file name)cross ref name</a>
+<code>@ref{chapter,cross ref name,,,manual}</code> &#8216;cross ref 
name&#8217; in <cite>manual</cite>
+<code>@ref{chapter,cross ref name,title,file name}</code> <a href="../file 
name/chapter.html#chapter">(file name)title</a>
+<code>@ref{chapter,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,cross ref name,title, file name, manual}</code> <a 
href="../file name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,title,file name}</code> <a href="../file 
name/chapter.html#chapter">(file name)title</a>
+<code>@ref{chapter,,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a href="../file 
name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{chapter,,,file name,manual}</code> <a href="../file 
name/chapter.html#chapter">chapter</a> in <cite>manual</cite>
+</p>
+
+<p><code>@ref{(pman)anode,cross ref name}</code> <a 
href="../pman/anode.html#anode">(pman)cross ref name</a>
+<code>@ref{(pman)anode,,title}</code> <a 
href="../pman/anode.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,,,file name}</code> <a href="../file 
name/anode.html#anode">(file name)anode</a>
+<code>@ref{(pman)anode,,,,manual}</code> <a 
href="../pman/anode.html#anode">anode</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,}</code> <a 
href="../pman/anode.html#anode">(pman)title</a>
+<code>@ref{(pman)anode,cross ref name,,file name}</code> <a href="../file 
name/anode.html#anode">(file name)cross ref name</a>
+<code>@ref{(pman)anode,cross ref name,,,manual}</code> <a 
href="../pman/anode.html#anode">cross ref name</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title,file name}</code> <a href="../file 
name/anode.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,cross ref name,title,,manual}</code> <a 
href="../pman/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,cross ref name,title, file name, manual}</code> <a 
href="../file name/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title,file name}</code> <a href="../file 
name/anode.html#anode">(file name)title</a>
+<code>@ref{(pman)anode,,title,,manual}</code> <a 
href="../pman/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,title, file name, manual}</code> <a href="../file 
name/anode.html#anode">title</a> in <cite>manual</cite>
+<code>@ref{(pman)anode,,,file name,manual}</code> <a href="../file 
name/anode.html#anode">anode</a> in <cite>manual</cite>
+</p>
+
+<p><code>@inforef{chapter, cross ref name, file name}</code> See <a 
href="../file name/chapter.html#chapter">(file name)cross ref name</a>
+<code>@inforef{chapter}</code> See &#8216;chapter&#8217;
+<code>@inforef{chapter, cross ref name}</code> See &#8216;cross ref name&#8217;
+<code>@inforef{chapter,,file name}</code> See <a href="../file 
name/chapter.html#chapter">(file name)chapter</a>
+<code>@inforef{node, cross ref name, file name}</code> See <a href="../file 
name/node.html#node">(file name)cross ref name</a>
+<code>@inforef{node}</code> See &#8216;node&#8217;
+<code>@inforef{node, cross ref name}</code> See &#8216;cross ref name&#8217;
+<code>@inforef{node,,file name}</code> See <a href="../file 
name/node.html#node">(file name)node</a>
+<code>@inforef{chapter, cross ref name, file name, spurious arg}</code> See <a 
href="../file name, spurious arg/chapter.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 href="../a comma, in 
file/s_002d_002dect_002cion.html#s_002d_002dect_002cion">(a comma, in file)a 
&#44; in cross
+ref</a>
+</p>
+<p>&#8216;<samp><a href="chapter.xhtml">chapter</a></samp>&#8221;.
+</p>
+<p><a href="../index3.html (uref3)/ext.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.xhtml">title with uref2 <a 
href="href://http/myhost.com/index2.html">uref2</a></a>
+</p>
+<dl compact="compact">
+<dt><strong>a&#8211;strong</strong></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-copying-a_002d_002dasis'><span>a&#8211;asis<a 
href='#index-copying-a_002d_002dasis' class='copiable-anchor'> 
&#182;</a></span></dt>
+<dt id='index-copying-b-2'><span>b<a href='#index-copying-b-2' 
class='copiable-anchor'> &#182;</a></span></dt>
+<dd><p>l&#8211;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'> &#182;</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'> &#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt><code>a--code</code></dt>
+<dd><p>Value&#8211;table code
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dd><p>Title
+</p></dd>
+<dt>&#8216;<samp>a--samp</samp>&#8221;</dt>
+<dt>&#8216;<samp>a2--samp</samp>&#8221;</dt>
+<dd><p>Value&#8211;table samp
+</p></dd>
+</dl>
+
+<table class="cartouche" border="1"><tr><td>
+<p>c&#8211;artouche
+</p></td></tr></table>
+
+<p>g&#8211;roupe
+</p>
+<p align="left">f&#8211;lushleft
+more text
+</p>
+<p align="right">f&#8211;lushright
+more text
+</p>
+<div align="center">ce&#8211;ntered line
+</div>
+<p>r&#8211;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 @  &lt;&gt;.
+
+@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 &#44; ...">&#8211;a</acronym> (an accronym &#44; <small 
class="enddots">...</small>)
+<code>@abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome} }</code> <abbr 
title="&#201;tude&#8211;&#44; Autonome">&#201;&#8211;. &#44;A.</abbr> 
(&#201;tude&#8211;&#44; <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&#201;tude&#8211;&#44; 
Autonome">&#201;&#8211;. &#44;A.</abbr>
+</p>
+<p><code>@math{--a@minus{} {\frac{1}{2}}}</code> <em class="math">--a&#8722; 
{\frac{1}{2}}</em>
+</p>
+<p><code>@image{f-ile,,,alt@verb{:jk _&quot; %}}</code> <img 
src="../images/f-ile.jpg" alt="altjk _&quot; %@"/>
+<code>@image{f--ile,aze,az,@verb{:jk _&quot; %@:} @b{in b 
&quot;},e--xt}</code> <img src="../images/f--ile.e--xt" alt="jk _&quot; %@ in b 
&quot;"/>
+<code>@image{file@verb{:jk _&quot; %@:},,,alt@verb{:jk _&quot; %@:}}</code> 
<img src="../images/filejk _&quot; %@.jpg" alt="altjk _&quot; %@"/>
+</p>
+
+
+
+<p>Somehow invalid use of @,:<br/>
+@, &#807;
+<br/>
+@,@&quot;u &#807;&#252;
+</p>
+<p>Invalid use of @&#8217;:<br/>
+@&#8217; &#769;
+<br/>
+@&#8217;@&quot;u &#769;&#252;
+</p>
+<p>@dotless{truc} truc
+@dotless{ij} ij
+<code>@dotless{--a}</code> &#8211;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 &lt;4 hex digits &#xabc;
+@U{FFFFFFFFFFFFFF}, value much too large &#xFFFFFFFFFFFFFF;
+@U{110000}, value just beyond Unicode &#x110000;
+</p>
+<p>@TeX, but without brace TeX<code>@#</code> #
+</p>
+<p><code>@w{--a}</code> &#8211;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&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li> after emph e&#8211;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&#8226; a&#8211;n itemize line i&#8211;tem 1
+</li><li>&#8226; a&#8211;n itemize line i&#8211;tem 2
+</li></ul>
+
+<dl compact="compact">
+<dt>a</dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt>a&#8211;missing style formatting</dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt id='index-copying-a-2'><span>a<a href='#index-copying-a-2' 
class='copiable-anchor'> &#182;</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'> &#182;</a></span></dt>
+<dd><p>l&#8211;ine
+</p></dd>
+</dl>
+
+<dl class="def">
+<dt><span class="category">fun: </span><strong></strong></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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</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'> &#182;</a></span></dt>
+</dl>
+
+<p><code>@ref{node}</code> &#8216;node&#8217;
+</p>
+<p><code>@ref{,cross ref name}</code> &#8216;cross ref name&#8217;
+<code>@ref{,,title}</code> &#8216;title&#8217;
+<code>@ref{,,,file name}</code> <a href="../file name/index.html">(file 
name)</a>
+<code>@ref{,,,,manual}</code> <cite>manual</cite>
+<code>@ref{node,cross ref name}</code> &#8216;cross ref name&#8217;
+<code>@ref{node,,title}</code> &#8216;title&#8217;
+<code>@ref{node,,,file name}</code> <a href="../file 
name/node.html#node">(file name)node</a>
+<code>@ref{node,,,,manual}</code> &#8216;node&#8217; in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,}</code> &#8216;title&#8217;
+<code>@ref{node,cross ref name,,file name}</code> <a href="../file 
name/node.html#node">(file name)cross ref name</a>
+<code>@ref{node,cross ref name,,,manual}</code> &#8216;cross ref name&#8217; 
in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,file name}</code> <a href="../file 
name/node.html#node">(file name)title</a>
+<code>@ref{node,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{node,cross ref name,title, file name, manual}</code> <a 
href="../file name/node.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,title,file name}</code> <a href="../file 
name/node.html#node">(file name)title</a>
+<code>@ref{node,,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{chapter,,title, file name, manual}</code> <a href="../file 
name/chapter.html#chapter">title</a> in <cite>manual</cite>
+<code>@ref{node,,title, file name, manual}</code> <a href="../file 
name/node.html#node">title</a> in <cite>manual</cite>
+<code>@ref{node,,,file name,manual}</code> <a href="../file 
name/node.html#node">node</a> in <cite>manual</cite>
+<code>@ref{,cross ref name,title,}</code> &#8216;title&#8217;
+<code>@ref{,cross ref name,,file name}</code> <a href="../file 
name/index.html">(file name)cross ref name</a>
+<code>@ref{,cross ref name,,,manual}</code> &#8216;cross ref name&#8217; in 
<cite>manual</cite>
+<code>@ref{,cross ref name,title,file name}</code> <a href="../file 
name/index.html">(file name)title</a>
+<code>@ref{,cross ref name,title,,manual}</code> &#8216;title&#8217; in 
<cite>manual</cite>
+<code>@ref{,cross ref name,title, file name, manual}</code> <a href="../file 
name/index.html">title</a> in <cite>manual</cite>
+<code>@ref{,,title,file name}</code> <a href="../file name/index.html">(file 
name)title</a>
+<code>@ref{,,title,,manual}</code> &#8216;title&#8217; in <cite>manual</cite>
+<code>@ref{,,title, file name, manual}</code> <a href="../file 
name/index.html">title</a> in <cite>manual</cite>
+<code>@ref{,,,file name,manual}</code> <cite><a href="../file 
name/index.html">manual</a></cite>
+</p>
+<p><code>@inforef{,cross ref name }</code> See &#8216;cross ref name&#8217;
+<code>@inforef{,,file name}</code> See <a href="../file name/index.html">(file 
name)</a>
+<code>@inforef{,cross ref name, file name}</code> See <a href="../file 
name/index.html">(file name)cross ref name</a>
+<code>@inforef{}</code> 
+</p>
+
+
+
+
+
+
+
+
+<div class="top" id="Top">
+<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.xhtml" rel="index">1 
chapter</a></td><td>&#160;&#160;</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.xhtml" 
rel="index">chapter 2</a></td><td>&#160;&#160;</td><td align="left" 
valign="top">Chapter 2
+</td></tr>
+</table>
+
+
+</div>
+<p>
+  <span class="smaller">This document was generated on <em>a sunny day</em> 
using <a 
href="http://www.gnu.org/software/texinfo/";><em>texi2any</em></a>.</span>
+</p>
+
+
+</body>
+</html>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_abt.xhtml
 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_abt.xhtml
new file mode 100644
index 0000000..94253fa
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_abt.xhtml
@@ -0,0 +1,917 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml";>
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<!-- 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 >=
+@tie a b
+
+@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>About This Document (title &#8211;a)</title>
+
+<meta name="description" content="About This Document (title &#8211;a)"/>
+<meta name="keywords" content="About This Document (title &#8211;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.smaller {font-size: smaller}
+span:hover a.copiable-anchor {visibility: visible}
+ul.no-bullet {list-style: none}
+-->
+</style>
+
+
+</head>
+
+<body lang="en">
+<div class="About_element" id="SEC_About">
+<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"> [ &lt;&lt; ] </td>
+    <td align="center">FastBack</td>
+    <td>Beginning of this chapter or previous chapter</td>
+    <td>1</td>
+  </tr>
+  <tr>
+    <td align="center"> [ &lt; ] </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"> [ &gt; ] </td>
+    <td align="center">Forward</td>
+    <td>Next section in reading order</td>
+    <td>1.2.4</td>
+  </tr>
+  <tr>
+    <td align="center"> [ &gt;&gt; ] </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> &#160; </td>
+  </tr>
+  <tr>
+    <td align="center"> [Contents] </td>
+    <td align="center">Contents</td>
+    <td>Table of contents</td>
+    <td> &#160; </td>
+  </tr>
+  <tr>
+    <td align="center"> [Index] </td>
+    <td align="center">Index</td>
+    <td>Index</td>
+    <td> &#160; </td>
+  </tr>
+  <tr>
+    <td align="center"> [ ? ] </td>
+    <td align="center">About</td>
+    <td>About (help)</td>
+    <td> &#160; </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 &#160; &#160;
+            <strong>&lt;== 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><p>
+  <span class="smaller">This document was generated on <em>a sunny day</em> 
using <a 
href="http://www.gnu.org/software/texinfo/";><em>texi2any</em></a>.</span>
+</p>
+
+
+</body>
+</html>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_fot.xhtml
 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_fot.xhtml
new file mode 100644
index 0000000..f097bcd
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_fot.xhtml
@@ -0,0 +1,848 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml";>
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<!-- 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 >=
+@tie a b
+
+@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>Footnotes (title &#8211;a)</title>
+
+<meta name="description" content="Footnotes (title &#8211;a)"/>
+<meta name="keywords" content="Footnotes (title &#8211;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.smaller {font-size: smaller}
+span:hover a.copiable-anchor {visibility: visible}
+ul.no-bullet {list-style: none}
+-->
+</style>
+
+
+</head>
+
+<body lang="en">
+<div class="Footnotes_element" id="SEC_Foot">
+<h1 class="footnotes-heading">Footnotes</h1>
+
+<h5><a id="FOOT3" href="formatting.xhtml#DOCF3">(1)</a></h5>
+<p>in footnote</p>
+<h5><a id="FOOT4" href="formatting.xhtml#DOCF4">(2)</a></h5>
+<p>in footnote2</p>
+<h5><a id="FOOT1" href="formatting.xhtml#DOCF1">(3)</a></h5>
+<p>in footnote</p>
+<h5><a id="FOOT2" href="formatting.xhtml#DOCF2">(4)</a></h5>
+<p>in footnote2</p>
+<h5><a id="FOOT1_5" href="chapter.xhtml#DOCF1_5">(5)</a></h5>
+<p>in footnote</p>
+<h5><a id="FOOT2_6" href="chapter.xhtml#DOCF2_6">(6)</a></h5>
+<p>in footnote2</p>
+<h5><a id="FOOT5" href="chapter.xhtml#DOCF5">(7)</a></h5>
+<p>in footnote</p>
+<h5><a id="FOOT6" href="chapter.xhtml#DOCF6">(8)</a></h5>
+<p>in footnote2</p>
+<h5><a id="FOOT7" href="chapter.xhtml#DOCF7">(9)</a></h5>
+<p>in footnote</p>
+<h5><a id="FOOT8" href="chapter.xhtml#DOCF8">(10)</a></h5>
+<p>in footnote2</p>
+<h5><a id="FOOT9" href="chapter.xhtml#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="chapter.xhtml#DOCF10">(12)</a></h5>
+<p>in footnote</p>
+</div><p>
+  <span class="smaller">This document was generated on <em>a sunny day</em> 
using <a 
href="http://www.gnu.org/software/texinfo/";><em>texi2any</em></a>.</span>
+</p>
+
+
+</body>
+</html>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_ovr.xhtml
 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_ovr.xhtml
new file mode 100644
index 0000000..76d4226
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_ovr.xhtml
@@ -0,0 +1,823 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml";>
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<!-- 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 >=
+@tie a b
+
+@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>Short Table of Contents (title &#8211;a)</title>
+
+<meta name="description" content="Short Table of Contents (title &#8211;a)"/>
+<meta name="keywords" content="Short Table of Contents (title &#8211;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.smaller {font-size: smaller}
+span:hover a.copiable-anchor {visibility: visible}
+ul.no-bullet {list-style: none}
+-->
+</style>
+
+
+</head>
+
+<body lang="en">
+<div class="Overview_element" id="SEC_Overview">
+<h1 class="shortcontents-heading">Short Table of Contents</h1>
+
+<div class="shortcontents">
+<ul class="no-bullet">
+<li><a id="stoc-chapter-1" href="chapter.xhtml" rel="index">1 chapter</a></li>
+<li><a id="stoc-chapter-2" href="chapter2.xhtml" rel="index">chapter 2</a></li>
+</ul>
+</div>
+</div><p>
+  <span class="smaller">This document was generated on <em>a sunny day</em> 
using <a 
href="http://www.gnu.org/software/texinfo/";><em>texi2any</em></a>.</span>
+</p>
+
+
+</body>
+</html>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_toc.xhtml
 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_toc.xhtml
new file mode 100644
index 0000000..f0aac57
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_toc.xhtml
@@ -0,0 +1,834 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml";>
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<!-- 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 >=
+@tie a b
+
+@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>Table of Contents (title &#8211;a)</title>
+
+<meta name="description" content="Table of Contents (title &#8211;a)"/>
+<meta name="keywords" content="Table of Contents (title &#8211;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.smaller {font-size: smaller}
+span:hover a.copiable-anchor {visibility: visible}
+ul.no-bullet {list-style: none}
+-->
+</style>
+
+
+</head>
+
+<body lang="en">
+<div class="Contents_element" id="SEC_Contents">
+<h1 class="contents-heading">Table of Contents</h1>
+
+<div class="contents">
+
+<ul class="no-bullet">
+  <li><a id="toc-chapter-1" href="chapter.xhtml" rel="index">1 chapter</a>
+  <ul class="no-bullet">
+    <li><a id="toc-A-section" href="s_002d_002dect_002cion.xhtml">1.1 A 
section</a>
+    <ul class="no-bullet">
+      <li><a id="toc-subsection-1" href="subsection.xhtml">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.xhtml">1.1.1.1 
subsubsection &#8220;simple-double&#8211;</a></li>
+        <li><a id="toc-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027" 
href="subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.xhtml">1.1.1.2
 three&#8212;four&#8212;-&#8221;</a></li>
+      </ul></li>
+    </ul></li>
+  </ul></li>
+  <li><a id="toc-chapter-2" href="chapter2.xhtml" rel="index">chapter 
2</a></li>
+</ul>
+</div>
+</div><p>
+  <span class="smaller">This document was generated on <em>a sunny day</em> 
using <a 
href="http://www.gnu.org/software/texinfo/";><em>texi2any</em></a>.</span>
+</p>
+
+
+</body>
+</html>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/nav_toc.xhtml
 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/nav_toc.xhtml
new file mode 100644
index 0000000..322bc9a
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/nav_toc.xhtml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<html xmlns="http://www.w3.org/1999/xhtml"; 
xmlns:epub="http://www.idpf.org/2007/ops";>
+<head>
+<meta charset="utf-8" />
+<title>title -a - Table of contents</title>
+</head>
+<body>
+<nav epub:type="toc">
+<h1>Table of contents</h1>
+<ol>
+<li><a href="formatting.xhtml#Top">Top section</a></li>
+<li><a href="chapter.xhtml#chapter">1 chapter</a></li>
+<ol>
+<li><a href="s_002d_002dect_002cion.xhtml#s_002d_002dect_002cion">1.1 A 
section</a></li>
+<ol>
+<li><a href="subsection.xhtml#subsection">1.1.1 subsection</a></li>
+<ol>
+<li><a 
href="subsubsection-_0060_0060simple_002ddouble_002d_002d.xhtml#subsubsection-_0060_0060simple_002ddouble_002d_002d">1.1.1.1
 subsubsection &quot;simple-double-</a></li>
+<li><a 
href="subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.xhtml#subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027">1.1.1.2
 three--four---&quot;</a></li>
+</ol>
+</ol>
+</ol>
+<li><a href="chapter2.xhtml#chapter2">chapter 2</a></li>
+</ol>
+</nav>
+</body>
+</html>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/s_002d_002dect_002cion.xhtml
 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/s_002d_002dect_002cion.xhtml
new file mode 100644
index 0000000..3bf37d7
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/s_002d_002dect_002cion.xhtml
@@ -0,0 +1,831 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml";>
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<!-- 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 >=
+@tie a b
+
+@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>1.1 A section (title &#8211;a)</title>
+
+<meta name="description" content="1.1 A section (title &#8211;a)"/>
+<meta name="keywords" content="1.1 A section (title &#8211;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.smaller {font-size: smaller}
+span:hover a.copiable-anchor {visibility: visible}
+ul.no-bullet {list-style: none}
+-->
+</style>
+
+
+</head>
+
+<body lang="en">
+<div class="section" id="s_002d_002dect_002cion">
+<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.xhtml">1.1.1 
subsection</a></td><td>&#160;&#160;</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.xhtml">1.1.1.1 
subsubsection &#8220;simple-double&#8211;</a></td><td>&#160;&#160;</td><td 
align="left" valign="top">
+</td></tr>
+<tr><td align="left" valign="top"><a 
href="subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.xhtml">1.1.1.2
 three&#8212;four&#8212;-&#8221;</a></td><td>&#160;&#160;</td><td align="left" 
valign="top">
+</td></tr>
+</table>
+
+</div>
+<p>
+  <span class="smaller">This document was generated on <em>a sunny day</em> 
using <a 
href="http://www.gnu.org/software/texinfo/";><em>texi2any</em></a>.</span>
+</p>
+
+
+</body>
+</html>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsection.xhtml
 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsection.xhtml
new file mode 100644
index 0000000..6d3b8bd
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsection.xhtml
@@ -0,0 +1,826 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml";>
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<!-- 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 >=
+@tie a b
+
+@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>1.1.1 subsection (title &#8211;a)</title>
+
+<meta name="description" content="1.1.1 subsection (title &#8211;a)"/>
+<meta name="keywords" content="1.1.1 subsection (title &#8211;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.smaller {font-size: smaller}
+span:hover a.copiable-anchor {visibility: visible}
+ul.no-bullet {list-style: none}
+-->
+</style>
+
+
+</head>
+
+<body lang="en">
+<div class="subsection" id="subsection">
+<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.xhtml">1.1.1.1 
subsubsection &#8220;simple-double&#8211;</a></td><td>&#160;&#160;</td><td 
align="left" valign="top">
+</td></tr>
+<tr><td align="left" valign="top"><a 
href="subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.xhtml">1.1.1.2
 three&#8212;four&#8212;-&#8221;</a></td><td>&#160;&#160;</td><td align="left" 
valign="top">
+</td></tr>
+</table>
+
+<span id="anchor"></span>
+</div>
+<p>
+  <span class="smaller">This document was generated on <em>a sunny day</em> 
using <a 
href="http://www.gnu.org/software/texinfo/";><em>texi2any</em></a>.</span>
+</p>
+
+
+</body>
+</html>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsubsection-_0060_0060simple_002ddouble_002d_002d.xhtml
 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsubsection-_0060_0060simple_002ddouble_002d_002d.xhtml
new file mode 100644
index 0000000..0753ebe
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsubsection-_0060_0060simple_002ddouble_002d_002d.xhtml
@@ -0,0 +1,818 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml";>
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<!-- 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 >=
+@tie a b
+
+@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>1.1.1.1 subsubsection &#8220;simple-double&#8211; (title 
&#8211;a)</title>
+
+<meta name="description" content="1.1.1.1 subsubsection 
&#8220;simple-double&#8211; (title &#8211;a)"/>
+<meta name="keywords" content="1.1.1.1 subsubsection 
&#8220;simple-double&#8211; (title &#8211;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.smaller {font-size: smaller}
+span:hover a.copiable-anchor {visibility: visible}
+ul.no-bullet {list-style: none}
+-->
+</style>
+
+
+</head>
+
+<body lang="en">
+<div class="subsubsection" 
id="subsubsection-_0060_0060simple_002ddouble_002d_002d">
+<span id="subsubsection-_0060_0060simple_002ddouble_002d_002d-1"></span><h4 
class="subsubsection">1.1.1.1 subsubsection &#8220;simple-double&#8211;</h4>
+
+</div>
+<p>
+  <span class="smaller">This document was generated on <em>a sunny day</em> 
using <a 
href="http://www.gnu.org/software/texinfo/";><em>texi2any</em></a>.</span>
+</p>
+
+
+</body>
+</html>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.xhtml
 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.xhtml
new file mode 100644
index 0000000..5a14a7a
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.xhtml
@@ -0,0 +1,818 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml";>
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<!-- 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 >=
+@tie a b
+
+@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>1.1.1.2 three&#8212;four&#8212;-&#8221; (title &#8211;a)</title>
+
+<meta name="description" content="1.1.1.2 three&#8212;four&#8212;-&#8221; 
(title &#8211;a)"/>
+<meta name="keywords" content="1.1.1.2 three&#8212;four&#8212;-&#8221; (title 
&#8211;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.smaller {font-size: smaller}
+span:hover a.copiable-anchor {visibility: visible}
+ul.no-bullet {list-style: none}
+-->
+</style>
+
+
+</head>
+
+<body lang="en">
+<div class="subsubsection" 
id="subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027">
+<span id="three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027"></span><h4 
class="subsubsection">1.1.1.2 three&#8212;four&#8212;-&#8221;</h4>
+
+</div>
+<p>
+  <span class="smaller">This document was generated on <em>a sunny day</em> 
using <a 
href="http://www.gnu.org/software/texinfo/";><em>texi2any</em></a>.</span>
+</p>
+
+
+</body>
+</html>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/META-INF/container.xml
 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/META-INF/container.xml
new file mode 100644
index 0000000..2612c67
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/META-INF/container.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0"?>
+<container version="1.0" 
xmlns="urn:oasis:names:tc:opendocument:xmlns:container">
+    <rootfiles>
+        <rootfile full-path="EPUB/formatting.opf"
+            media-type="application/oebps-package+xml" />      
+    </rootfiles>
+</container>
diff --git 
a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/mimetype
 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/mimetype
new file mode 100644
index 0000000..403c4f0
--- /dev/null
+++ 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/mimetype
@@ -0,0 +1 @@
+application/epub+zip
diff --git a/tp/tests/test_scripts/layout_formatting_epub.sh 
b/tp/tests/test_scripts/layout_formatting_epub.sh
new file mode 100755
index 0000000..b420196
--- /dev/null
+++ b/tp/tests/test_scripts/layout_formatting_epub.sh
@@ -0,0 +1,19 @@
+#! /bin/sh
+# This file generated by maintain/regenerate_cmd_tests.sh
+
+if test z"$srcdir" = "z"; then
+  srcdir=.
+fi
+
+one_test_logs_dir=test_log
+
+
+dir=layout
+name='formatting_epub'
+mkdir -p $dir
+
+"$srcdir"/run_parser_all.sh -dir $dir $name
+exit_status=$?
+cat $dir/$one_test_logs_dir/$name.log
+exit $exit_status
+
diff --git a/tp/tests/test_scripts/layout_formatting_epub_nodes.sh 
b/tp/tests/test_scripts/layout_formatting_epub_nodes.sh
new file mode 100755
index 0000000..da4fa4e
--- /dev/null
+++ b/tp/tests/test_scripts/layout_formatting_epub_nodes.sh
@@ -0,0 +1,19 @@
+#! /bin/sh
+# This file generated by maintain/regenerate_cmd_tests.sh
+
+if test z"$srcdir" = "z"; then
+  srcdir=.
+fi
+
+one_test_logs_dir=test_log
+
+
+dir=layout
+name='formatting_epub_nodes'
+mkdir -p $dir
+
+"$srcdir"/run_parser_all.sh -dir $dir $name
+exit_status=$?
+cat $dir/$one_test_logs_dir/$name.log
+exit $exit_status
+



reply via email to

[Prev in Thread] Current Thread [Next in Thread]