texinfo-commits
[Top][All Lists]
Advanced

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

[5345] * tp/Texinfo/Parser.pm: add \r to regexps to exclude it w


From: Patrice Dumas
Subject: [5345] * tp/Texinfo/Parser.pm: add \r to regexps to exclude it when
Date: Tue, 27 Aug 2013 20:09:32 +0000

Revision: 5345
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=5345
Author:   pertusus
Date:     2013-08-27 20:09:31 +0000 (Tue, 27 Aug 2013)
Log Message:
-----------
        * tp/Texinfo/Parser.pm: add \r to regexps to exclude it when 
        excluding newlines.  Report from Karl.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/tp/DebugTexinfo/DebugTree.pm
    trunk/tp/TODO
    trunk/tp/Texinfo/Parser.pm
    trunk/tp/tests/Makefile.am
    trunk/tp/tests/coverage/Makefile.am
    trunk/tp/tests/coverage/tests-parser.txt

Added Paths:
-----------
    trunk/tp/tests/coverage/formatting-cr.texi
    trunk/tp/tests/coverage/res_parser/formatting_cr/
    trunk/tp/tests/coverage/res_parser/formatting_cr/formatting-cr.1
    trunk/tp/tests/coverage/res_parser/formatting_cr/formatting-cr.2
    trunk/tp/tests/coverage/res_parser/formatting_cr/formatting-cr.html
    trunk/tp/tests/coverage/res_parser_info/formatting_cr/
    trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting-cr.1
    trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting-cr.2
    trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting.info
    trunk/tp/tests/test_scripts/coverage_formatting_cr.sh

Property Changed:
----------------
    trunk/tp/tests/

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2013-08-26 21:21:15 UTC (rev 5344)
+++ trunk/ChangeLog     2013-08-27 20:09:31 UTC (rev 5345)
@@ -1,3 +1,8 @@
+2013-08-27  Patrice Dumas  <address@hidden>
+
+       * tp/Texinfo/Parser.pm: add \r to regexps to exclude it when 
+       excluding newlines.  Report from Karl.
+
 2013-08-26  Karl Berry  <address@hidden>
 
        * util/texi2dvi (run_bibtex): only run biber if

Modified: trunk/tp/DebugTexinfo/DebugTree.pm
===================================================================
--- trunk/tp/DebugTexinfo/DebugTree.pm  2013-08-26 21:21:15 UTC (rev 5344)
+++ trunk/tp/DebugTexinfo/DebugTree.pm  2013-08-27 20:09:31 UTC (rev 5345)
@@ -130,6 +130,7 @@
     my $text = $root->{'text'};
     $text =~ s/\n/\\n/g;
     $text =~ s/\f/\\f/g;
+    $text =~ s/\r/\\r/g;
     $result .= "|$text|";
   }
   $result .= "\n";

Modified: trunk/tp/TODO
===================================================================
--- trunk/tp/TODO       2013-08-26 21:21:15 UTC (rev 5344)
+++ trunk/tp/TODO       2013-08-27 20:09:31 UTC (rev 5345)
@@ -13,11 +13,23 @@
 Before next release
 ===================
 
+Warn node names incorrect.
 
+New conditionals.
+
+
 Bugs
 ====
 
+# a . not followed by a space.  Not a separator.
+verify macro expansion right after the . leads to a separator.
+like 
address@hidden spaces{}
+   
address@hidden macro
+* node: address@hidden
 
+
 Profiling
 =========
 

Modified: trunk/tp/Texinfo/Parser.pm
===================================================================
--- trunk/tp/Texinfo/Parser.pm  2013-08-26 21:21:15 UTC (rev 5344)
+++ trunk/tp/Texinfo/Parser.pm  2013-08-27 20:09:31 UTC (rev 5345)
@@ -3490,7 +3490,7 @@
   my $line = shift;
   my $current = shift;
   my $command = shift;
-  $line =~ s/^([^\S\n]*)//;
+  $line =~ s/^([^\S\r\n]*)//;
   push @{$current->{'contents'}}, { 'type' => 'empty_line_after_command',
                                     'text' => $1,
                                     'parent' => $current, 
@@ -3622,7 +3622,7 @@
            or (scalar(@{$current->{'contents'}}) == 2
             and defined($current->{'contents'}->[0]->{'text'})
             and $current->{'contents'}->[0]->{'text'}
-                               =~ /^[^\S\n]*/)))
+                               =~ /^[^\S\r\n]*/)))
 }
 
 # $marked_as_invalid_command may be undef, if there is no
@@ -3714,7 +3714,7 @@
         # not def line
         and $self->{'context_stack'}->[-1] ne 'def') {
       print STDERR "BEGIN LINE\n" if ($self->{'DEBUG'});
-      $line =~ s/^([^\S\n]*)//;
+      $line =~ s/^([^\S\r\n]*)//;
       push @{$current->{'contents'}}, { 'type' => 'empty_line', 
                                         'text' => $1,
                                         'parent' => $current };
@@ -3992,9 +3992,9 @@
           $current = $current->{'parent'};
         # now accent commands
         } elsif ($accent_commands{$current->{'cmdname'}}) {
-          if ($line =~ /^[^\S\n]/) {
+          if ($line =~ /^[^\S\r\n]/) {
             if ($current->{'cmdname'} =~ /^[a-zA-Z]/) {
-              $line =~ s/^([^\S\n]+)//;
+              $line =~ s/^([^\S\r\n]+)//;
               $current->{'extra'}->{'spaces'} = '' 
                 if (!defined($current->{'extra'}->{'spaces'}));
               $current->{'extra'}->{'spaces'} .= $1;
@@ -4131,7 +4131,7 @@
           $current = $current->{'args'}->[-1];
           $current = _merge_text($self, $current, $separator);
         # here we collect spaces following separators.
-        } elsif ($line =~ s/^([^\S\n]+)//) {
+        } elsif ($line =~ s/^([^\S\r\n]+)//) {
           # FIXME a trailing end of line could be considered to be part
           # of the separator. Right now it is part of the description,
           # since it is catched (in the next while) as one of the case below


Property changes on: trunk/tp/tests
___________________________________________________________________
Modified: svn:ignore
   - *.log
*.trs
Makefile
Makefile.in
Makefile.onetst

   + *.log
*.trs
Makefile
Makefile.in
Makefile.onetst
coverage_macro-cr.texi


Modified: trunk/tp/tests/Makefile.am
===================================================================
--- trunk/tp/tests/Makefile.am  2013-08-26 21:21:15 UTC (rev 5344)
+++ trunk/tp/tests/Makefile.am  2013-08-27 20:09:31 UTC (rev 5345)
@@ -62,7 +62,7 @@
 all-local: htmlxref/htmlxref.cnf htmlxref-only_mono/htmlxref.cnf \
  htmlxref-only_split/htmlxref.cnf htmlxref-only_split/.texinfo/htmlxref.cnf \
  sectioning/equivalent_nodes-noderename.cnf \
- formatting/unknown_nodes_renamed-noderename.cnf
+ formatting/unknown_nodes_renamed-noderename.cnf coverage_macro-cr.texi
 
 htmlxref/htmlxref.cnf: htmlxref/htmlxref.cnf-ref
        ${INSTALL_DATA} $(srcdir)/htmlxref/htmlxref.cnf-ref $@
@@ -86,5 +86,9 @@
 formatting/unknown_nodes_renamed-noderename.cnf: 
formatting/unknown_nodes_renamed-noderename.cnf-ref
        ${INSTALL_DATA} 
$(srcdir)/formatting/unknown_nodes_renamed-noderename.cnf-ref $@
 
+coverage_macro-cr.texi: coverage_macro.texi
+       sed 's/$/\r/' $(srcdir)/coverage_macro.texi > $@
+
 EXTRA_DIST = run_parser_all.sh parser_tests.sh \
- $(old_test_scripts) $(one_test_files_generated_list) coverage_macro.texi
+ $(old_test_scripts) $(one_test_files_generated_list) coverage_macro.texi \
+ coverage_macro-cr.texi

Modified: trunk/tp/tests/coverage/Makefile.am
===================================================================
--- trunk/tp/tests/coverage/Makefile.am 2013-08-26 21:21:15 UTC (rev 5344)
+++ trunk/tp/tests/coverage/Makefile.am 2013-08-27 20:09:31 UTC (rev 5345)
@@ -1,4 +1,5 @@
 EXTRA_DIST = formatting.texi formatting_utf8.texi version.texi \
+ formatting-cr.texi \
  f--ile.e--xt f--ile.jpg simplest.texi tests-parser.txt res_parser \
  res_parser_info
 

Added: trunk/tp/tests/coverage/formatting-cr.texi
===================================================================
--- trunk/tp/tests/coverage/formatting-cr.texi                          (rev 0)
+++ trunk/tp/tests/coverage/formatting-cr.texi  2013-08-27 20:09:31 UTC (rev 
5345)
@@ -0,0 +1,130 @@
+\input texinfo @c -*-texinfo-*-
address@hidden formatting.info
address@hidden Top
address@hidden Top section
+
address@hidden
+* chapter::               chapter
+
+Menu comment
+
+* description:chapter2.   Chapter 2
address@hidden menu
+
address@hidden coverage_macro-cr.texi
+
address@hidden
+In copying
address@hidden
address@hidden copying
+
address@hidden
address@hidden title --a
address@hidden formatting subtitle --a
address@hidden subtitle 2 --a
address@hidden author1 --a with accents in name T@'e@,ca
address@hidden author2 --a
+In titlepage
address@hidden
+
+Insercopying in titlepage
address@hidden
address@hidden titlepage
+
+Insertcopying in normal text
address@hidden
+
+Normal text
address@hidden
+
+In example.
address@hidden
address@hidden
address@hidden example
+
address@hidden t--ruc
address@hidden T--ruc
address@hidden .
address@hidden ?
address@hidden a
address@hidden t--ruc
address@hidden T--ruc
address@hidden .
address@hidden ?
address@hidden a
+
+
+cp
address@hidden cp
+
+fn
address@hidden fn
+
+vr
address@hidden vr
+
+ky
address@hidden ky
+
+pg
address@hidden pg
+
+tp
address@hidden tp
+
+
+
address@hidden chapter
address@hidden chapter
+
address@hidden footnote}
+
address@hidden
address@hidden 
+* address@hidden:: address@hidden
+
+Menu comment
+``simple-double--three---four----''@*
+
address@hidden menu
address@hidden format
+
address@hidden address@hidden
address@hidden A section
+
address@hidden
+* subsection:: 
+
address@hidden
+In detailmenu
+
+* subsubsection ``simple-double--::
+* subsubsection three---four----''::
address@hidden detailmenu
address@hidden menu
+
address@hidden subsection
address@hidden subsection
+
address@hidden
+* subsubsection ``simple-double--::
+* subsubsection three---four----''::
address@hidden menu
+
address@hidden
+
address@hidden subsubsection ``simple-double--
address@hidden subsubsection ``simple-double--
+
address@hidden subsubsection three---four----''
address@hidden three---four----''
+
address@hidden chapter2
address@hidden chapter 2
+
address@hidden cp
address@hidden fn
+
address@hidden
address@hidden
address@hidden

Added: trunk/tp/tests/coverage/res_parser/formatting_cr/formatting-cr.1
===================================================================
Added: trunk/tp/tests/coverage/res_parser/formatting_cr/formatting-cr.2
===================================================================
--- trunk/tp/tests/coverage/res_parser/formatting_cr/formatting-cr.2            
                (rev 0)
+++ trunk/tp/tests/coverage/res_parser/formatting_cr/formatting-cr.2    
2013-08-27 20:09:31 UTC (rev 5345)
@@ -0,0 +1,212 @@
+formatting-cr.texi:18: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:18: warning: @ctrl is obsolete. (possibly involving 
@mymacro)
+formatting-cr.texi:18: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:18: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:18: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:18: warning: missing category for @deffnx (possibly 
involving @mymacro)
+formatting-cr.texi:18: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:18: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:18: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:18: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:18: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:18: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:18: command @bullet not accepting argument in brace should 
not be on @table line (possibly involving @mymacro)
+formatting-cr.texi:18: command @minus not accepting argument in brace should 
not be on @ftable line (possibly involving @mymacro)
+formatting-cr.texi:18: warning: @verb should not appear in @image (possibly 
involving @mymacro)
+formatting-cr.texi:18: warning: @verb should not appear in @image (possibly 
involving @mymacro)
+formatting-cr.texi:18: warning: @verb should not appear in @image (possibly 
involving @mymacro)
+formatting-cr.texi:18: warning: @verb should not appear in @image (possibly 
involving @mymacro)
+formatting-cr.texi:18: use braces to give a command as an argument to @, 
(possibly involving @mymacro)
+formatting-cr.texi:18: use braces to give a command as an argument to @' 
(possibly involving @mymacro)
+formatting-cr.texi:18: @dotless expects `i' or `j' as argument, not `truc' 
(possibly involving @mymacro)
+formatting-cr.texi:18: @dotless expects `i' or `j' as argument, not `ij' 
(possibly involving @mymacro)
+formatting-cr.texi:18: @dotless expects `i' or `j' as argument, not `--a' 
(possibly involving @mymacro)
+formatting-cr.texi:18: @dotless expects `i' or `j' as argument, not `a' 
(possibly involving @mymacro)
+formatting-cr.texi:18: @TeX expected braces (possibly involving @mymacro)
+formatting-cr.texi:18: unexpected @ (possibly involving @mymacro)
+formatting-cr.texi:18: @image missing filename argument (possibly involving 
@mymacro)
+formatting-cr.texi:18: @image missing filename argument (possibly involving 
@mymacro)
+formatting-cr.texi:18: @image missing filename argument (possibly involving 
@mymacro)
+formatting-cr.texi:18: @sp missing argument (possibly involving @mymacro)
+formatting-cr.texi:18: warning: missing name for @deffn (possibly involving 
@mymacro)
+formatting-cr.texi:18: misplaced } (possibly involving @mymacro)
+formatting-cr.texi:18: misplaced } (possibly involving @mymacro)
+formatting-cr.texi:18: misplaced { (possibly involving @mymacro)
+formatting-cr.texi:18: misplaced { (possibly involving @mymacro)
+formatting-cr.texi:18: must be after address@hidden' to use address@hidden' 
(possibly involving @mymacro)
+formatting-cr.texi:18: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
+formatting-cr.texi:18: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
+formatting-cr.texi:18: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
+formatting-cr.texi:18: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting-cr.texi:18: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting-cr.texi:28: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:28: warning: @ctrl is obsolete. (possibly involving 
@mymacro)
+formatting-cr.texi:28: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:28: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:28: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:28: warning: missing category for @deffnx (possibly 
involving @mymacro)
+formatting-cr.texi:28: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:28: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:28: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:28: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:28: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:28: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:28: command @bullet not accepting argument in brace should 
not be on @table line (possibly involving @mymacro)
+formatting-cr.texi:28: command @minus not accepting argument in brace should 
not be on @ftable line (possibly involving @mymacro)
+formatting-cr.texi:28: warning: @verb should not appear in @image (possibly 
involving @mymacro)
+formatting-cr.texi:28: warning: @verb should not appear in @image (possibly 
involving @mymacro)
+formatting-cr.texi:28: warning: @verb should not appear in @image (possibly 
involving @mymacro)
+formatting-cr.texi:28: warning: @verb should not appear in @image (possibly 
involving @mymacro)
+formatting-cr.texi:28: use braces to give a command as an argument to @, 
(possibly involving @mymacro)
+formatting-cr.texi:28: use braces to give a command as an argument to @' 
(possibly involving @mymacro)
+formatting-cr.texi:28: @dotless expects `i' or `j' as argument, not `truc' 
(possibly involving @mymacro)
+formatting-cr.texi:28: @dotless expects `i' or `j' as argument, not `ij' 
(possibly involving @mymacro)
+formatting-cr.texi:28: @dotless expects `i' or `j' as argument, not `--a' 
(possibly involving @mymacro)
+formatting-cr.texi:28: @dotless expects `i' or `j' as argument, not `a' 
(possibly involving @mymacro)
+formatting-cr.texi:28: @TeX expected braces (possibly involving @mymacro)
+formatting-cr.texi:28: unexpected @ (possibly involving @mymacro)
+formatting-cr.texi:28: @image missing filename argument (possibly involving 
@mymacro)
+formatting-cr.texi:28: @image missing filename argument (possibly involving 
@mymacro)
+formatting-cr.texi:28: @image missing filename argument (possibly involving 
@mymacro)
+formatting-cr.texi:28: @sp missing argument (possibly involving @mymacro)
+formatting-cr.texi:28: warning: missing name for @deffn (possibly involving 
@mymacro)
+formatting-cr.texi:28: misplaced } (possibly involving @mymacro)
+formatting-cr.texi:28: misplaced } (possibly involving @mymacro)
+formatting-cr.texi:28: misplaced { (possibly involving @mymacro)
+formatting-cr.texi:28: misplaced { (possibly involving @mymacro)
+formatting-cr.texi:28: must be after address@hidden' to use address@hidden' 
(possibly involving @mymacro)
+formatting-cr.texi:28: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
+formatting-cr.texi:28: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
+formatting-cr.texi:28: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
+formatting-cr.texi:28: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting-cr.texi:28: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting-cr.texi:38: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:38: warning: @ctrl is obsolete. (possibly involving 
@mymacro)
+formatting-cr.texi:38: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:38: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:38: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:38: warning: missing category for @deffnx (possibly 
involving @mymacro)
+formatting-cr.texi:38: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:38: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:38: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:38: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:38: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:38: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:38: command @bullet not accepting argument in brace should 
not be on @table line (possibly involving @mymacro)
+formatting-cr.texi:38: command @minus not accepting argument in brace should 
not be on @ftable line (possibly involving @mymacro)
+formatting-cr.texi:38: warning: @verb should not appear in @image (possibly 
involving @mymacro)
+formatting-cr.texi:38: warning: @verb should not appear in @image (possibly 
involving @mymacro)
+formatting-cr.texi:38: warning: @verb should not appear in @image (possibly 
involving @mymacro)
+formatting-cr.texi:38: warning: @verb should not appear in @image (possibly 
involving @mymacro)
+formatting-cr.texi:38: use braces to give a command as an argument to @, 
(possibly involving @mymacro)
+formatting-cr.texi:38: use braces to give a command as an argument to @' 
(possibly involving @mymacro)
+formatting-cr.texi:38: @dotless expects `i' or `j' as argument, not `truc' 
(possibly involving @mymacro)
+formatting-cr.texi:38: @dotless expects `i' or `j' as argument, not `ij' 
(possibly involving @mymacro)
+formatting-cr.texi:38: @dotless expects `i' or `j' as argument, not `--a' 
(possibly involving @mymacro)
+formatting-cr.texi:38: @dotless expects `i' or `j' as argument, not `a' 
(possibly involving @mymacro)
+formatting-cr.texi:38: @TeX expected braces (possibly involving @mymacro)
+formatting-cr.texi:38: unexpected @ (possibly involving @mymacro)
+formatting-cr.texi:38: @image missing filename argument (possibly involving 
@mymacro)
+formatting-cr.texi:38: @image missing filename argument (possibly involving 
@mymacro)
+formatting-cr.texi:38: @image missing filename argument (possibly involving 
@mymacro)
+formatting-cr.texi:38: @sp missing argument (possibly involving @mymacro)
+formatting-cr.texi:38: warning: missing name for @deffn (possibly involving 
@mymacro)
+formatting-cr.texi:38: misplaced } (possibly involving @mymacro)
+formatting-cr.texi:38: misplaced } (possibly involving @mymacro)
+formatting-cr.texi:38: misplaced { (possibly involving @mymacro)
+formatting-cr.texi:38: misplaced { (possibly involving @mymacro)
+formatting-cr.texi:38: must be after address@hidden' to use address@hidden' 
(possibly involving @mymacro)
+formatting-cr.texi:38: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
+formatting-cr.texi:38: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
+formatting-cr.texi:38: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
+formatting-cr.texi:38: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting-cr.texi:38: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting-cr.texi:42: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:42: warning: @ctrl is obsolete. (possibly involving 
@mymacro)
+formatting-cr.texi:42: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:42: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:42: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:42: warning: missing category for @deffnx (possibly 
involving @mymacro)
+formatting-cr.texi:42: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:42: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:42: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:42: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:42: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:42: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:42: command @bullet not accepting argument in brace should 
not be on @table line (possibly involving @mymacro)
+formatting-cr.texi:42: command @minus not accepting argument in brace should 
not be on @ftable line (possibly involving @mymacro)
+formatting-cr.texi:42: warning: @verb should not appear in @image (possibly 
involving @mymacro)
+formatting-cr.texi:42: warning: @verb should not appear in @image (possibly 
involving @mymacro)
+formatting-cr.texi:42: warning: @verb should not appear in @image (possibly 
involving @mymacro)
+formatting-cr.texi:42: warning: @verb should not appear in @image (possibly 
involving @mymacro)
+formatting-cr.texi:42: use braces to give a command as an argument to @, 
(possibly involving @mymacro)
+formatting-cr.texi:42: use braces to give a command as an argument to @' 
(possibly involving @mymacro)
+formatting-cr.texi:42: @dotless expects `i' or `j' as argument, not `truc' 
(possibly involving @mymacro)
+formatting-cr.texi:42: @dotless expects `i' or `j' as argument, not `ij' 
(possibly involving @mymacro)
+formatting-cr.texi:42: @dotless expects `i' or `j' as argument, not `--a' 
(possibly involving @mymacro)
+formatting-cr.texi:42: @dotless expects `i' or `j' as argument, not `a' 
(possibly involving @mymacro)
+formatting-cr.texi:42: @TeX expected braces (possibly involving @mymacro)
+formatting-cr.texi:42: unexpected @ (possibly involving @mymacro)
+formatting-cr.texi:42: @image missing filename argument (possibly involving 
@mymacro)
+formatting-cr.texi:42: @image missing filename argument (possibly involving 
@mymacro)
+formatting-cr.texi:42: @image missing filename argument (possibly involving 
@mymacro)
+formatting-cr.texi:42: @sp missing argument (possibly involving @mymacro)
+formatting-cr.texi:42: warning: missing name for @deffn (possibly involving 
@mymacro)
+formatting-cr.texi:42: misplaced } (possibly involving @mymacro)
+formatting-cr.texi:42: misplaced } (possibly involving @mymacro)
+formatting-cr.texi:42: misplaced { (possibly involving @mymacro)
+formatting-cr.texi:42: misplaced { (possibly involving @mymacro)
+formatting-cr.texi:42: must be after address@hidden' to use address@hidden' 
(possibly involving @mymacro)
+formatting-cr.texi:42: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
+formatting-cr.texi:42: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
+formatting-cr.texi:42: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
+formatting-cr.texi:42: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting-cr.texi:42: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting-cr.texi:18: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:18: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:18: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:18: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:28: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:28: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:28: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:28: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:38: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:38: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:38: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:38: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:42: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:42: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:42: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:42: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:18: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting-cr.texi:18: warning: @image file address@hidden' (for HTML) not 
found, using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting-cr.texi:18: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting-cr.texi:18: warning: @image file `filejk _" %@' (for HTML) not 
found, using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting-cr.texi:38: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting-cr.texi:38: warning: @image file address@hidden' (for HTML) not 
found, using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting-cr.texi:38: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting-cr.texi:38: warning: @image file `filejk _" %@' (for HTML) not 
found, using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting-cr.texi:42: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting-cr.texi:42: warning: @image file address@hidden' (for HTML) not 
found, using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting-cr.texi:42: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting-cr.texi:42: warning: @image file `filejk _" %@' (for HTML) not 
found, using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting-cr.texi:28: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting-cr.texi:28: warning: @image file address@hidden' (for HTML) not 
found, using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting-cr.texi:28: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting-cr.texi:28: warning: @image file `filejk _" %@' (for HTML) not 
found, using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting-cr.texi:18: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting-cr.texi:18: warning: @image file address@hidden' (for HTML) not 
found, using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting-cr.texi:18: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting-cr.texi:18: warning: @image file `filejk _" %@' (for HTML) not 
found, using `filejk _" address@hidden' (possibly involving @mymacro)

Added: trunk/tp/tests/coverage/res_parser/formatting_cr/formatting-cr.html
===================================================================
--- trunk/tp/tests/coverage/res_parser/formatting_cr/formatting-cr.html         
                (rev 0)
+++ trunk/tp/tests/coverage/res_parser/formatting_cr/formatting-cr.html 
2013-08-27 20:09:31 UTC (rev 5345)
@@ -0,0 +1,5556 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd";>
+<html>
+<!-- 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" 
address@hidden n~
address@hidden a^
+@'e e'
address@hidden o=
address@hidden i`
+@'{e} e'
+@'address@hidden i' 
address@hidden i
address@hidden j
address@hidden@=E} E=` 
address@hidden /l
+@,{@'C} C',
+@,c c,
+@,c@"u c,u" 
+
+
address@hidden 
+
+@ followed by a space
+ 
+@ followed by a tab
+ 
+@ followed by a new line
+
address@hidden 
+@| 
+@: 
address@hidden !
address@hidden ?
address@hidden .
+@@ @
address@hidden }
address@hidden {
+@/ 
+
+foo vs. bar. 
+colon :And something else.
+semi colon ;.
+And ? ?.
+Now ! !@
+but , ,
+
address@hidden TeX
address@hidden LaTeX
address@hidden *
address@hidden (C)
address@hidden ...
address@hidden ...
address@hidden ==
address@hidden error->
address@hidden ==>
address@hidden -
address@hidden -!-
address@hidden -|
address@hidden =>
address@hidden a sunny day
address@hidden aa
address@hidden AA
address@hidden ae
address@hidden oe
address@hidden AE
address@hidden OE
address@hidden /o
address@hidden /O
address@hidden ss
address@hidden /l
address@hidden /L
address@hidden D
address@hidden TH
address@hidden d
address@hidden th
address@hidden !
address@hidden ?
address@hidden #
address@hidden (R)
address@hidden a
address@hidden o
address@hidden ,
address@hidden ``
address@hidden ''
address@hidden `
address@hidden '
address@hidden ,,
address@hidden ,
address@hidden <<
address@hidden >>
address@hidden <<
address@hidden >>
address@hidden <
address@hidden >
address@hidden o
address@hidden Euro
address@hidden ->
address@hidden <=
address@hidden >=
+
address@hidden,an accronym} -a (an accronym)
address@hidden -a
address@hidden@'E-. @comma{}A., @'Etude Autonome } E'-. ,A. (E'tude Autonome)
address@hidden@'E-. @comma{}A.} E'-. ,A.
address@hidden -a
address@hidden -a
address@hidden -a
address@hidden -a
address@hidden -a
address@hidden -a
address@hidden -a
address@hidden -a
address@hidden,-b} -b
address@hidden,-b} -b
address@hidden -a
address@hidden -a
address@hidden -a
address@hidden -a
address@hidden -a
address@hidden -a
address@hidden -a
address@hidden {\frac{1}{2}} @minus{}} -a {\frac{1}{2}} -
address@hidden -a
address@hidden -a
address@hidden -a
address@hidden -A
address@hidden -a
address@hidden -a
address@hidden -a
address@hidden -a
address@hidden -a
address@hidden -a
address@hidden,-b} -a (-b)
address@hidden -a
address@hidden,-b}  (-b)
address@hidden,-b,-c} -c
address@hidden,-b,-c} -c
address@hidden,,-c} -c
address@hidden,,-c} -c
address@hidden,-b} -a (-b)
address@hidden,} -a
address@hidden,-b}  (-b)
address@hidden -a
address@hidden:-a:} -a
address@hidden:a  < & @ % " -    b:} a  < & @ % " -    b
address@hidden a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a 
a a} a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a
address@hidden a''
address@hidden -a''
address@hidden a.
address@hidden -a.
address@hidden a*
address@hidden -a*
address@hidden a[
address@hidden -a[
address@hidden a(
address@hidden -a(
address@hidden a_
address@hidden -a_
address@hidden .a
address@hidden .-a
address@hidden a<
address@hidden -a<
+@,{c} c,
+@,{-c} -c,
address@hidden a;
address@hidden -a;
address@hidden footnote} 
address@hidden footnote2} 
+
address@hidden f-ile
address@hidden,l-i} f-ile
address@hidden,,l-e} f-ile
address@hidden,,,alt} f-ile
address@hidden,,,,e-d-xt} f-ile
address@hidden,aze,az,alt,e-xt} f-ile
address@hidden,aze,,a-lt} f-ile
address@hidden@file{f-ile}@@@.,aze,az,alt,@file{file ext} address@hidden 
address@hidden
+
+
+
+
address@hidden @click{} A} click -> A
+After clickstyle =>
address@hidden @click{} A} click => A
+
+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
+
+
+
+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
+
+e-mph item
+
+i-tem 1
+i-tem 2
+
+1. e-numerate
+
+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
+
+s-mallexample
+
+d-isplay
+
+s-malldisplay
+
+l-isp
+
+s-malllisp
+
+f-ormat
+
+s-mallformat
+
+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: t-ype d-eftypefn_name a-rguments...
+d-eftypefn
+
+c-ategory on c-lass: t-ype d-eftypeop_name a-rguments...
+d-eftypeop
+
+c-ategory: t-ype d-eftypevr_name
+d-eftypevr
+
+c-ategory of c-lass: d-efcv_name
+d-efcv
+
+c-ategory on c-lass: d-efop_name a-rguments...
+d-efop
+
+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 argvar argvar1
+d-efvar
+
+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
+
address@hidden@@, cross r-ef name@@, t-itle@@, file n-ame@@, ma-nual@@} 
address@hidden
address@hidden, cross ref name, title, file name, manual} chapter
address@hidden, cross ref name, title, file name, manual} chapter
address@hidden, cross ref name, file name} chapter
+
address@hidden chapter
address@hidden chapter.
address@hidden chapter
address@hidden@comma{}ion} s-ect,ion
+
address@hidden@comma{}ion, a @comma{} in cross
+ref, a address@hidden in title, a address@hidden in file, a @comma{} in manual 
name }
+s-ect,ion
+
address@hidden,cross ref name} chapter
address@hidden,,title} chapter
address@hidden,,,file name} chapter
address@hidden,,,,manual} chapter
address@hidden,cross ref name,title,} chapter
address@hidden,cross ref name,,file name} chapter
address@hidden,cross ref name,,,manual} chapter
address@hidden,cross ref name,title,file name} chapter
address@hidden,cross ref name,title,,manual} chapter
address@hidden,cross ref name,title, file name, manual} chapter
address@hidden,,title,file name} chapter
address@hidden,,title,,manual} chapter
address@hidden,,title, file name, manual} chapter
address@hidden,,,file name,manual} chapter
+
+
address@hidden(pman)anode,cross ref name} (pman)anode
address@hidden(pman)anode,,title} (pman)anode
address@hidden(pman)anode,,,file name} (pman)anode
address@hidden(pman)anode,,,,manual} (pman)anode
address@hidden(pman)anode,cross ref name,title,} (pman)anode
address@hidden(pman)anode,cross ref name,,file name} (pman)anode
address@hidden(pman)anode,cross ref name,,,manual} (pman)anode
address@hidden(pman)anode,cross ref name,title,file name} (pman)anode
address@hidden(pman)anode,cross ref name,title,,manual} (pman)anode
address@hidden(pman)anode,cross ref name,title, file name, manual} (pman)anode
address@hidden(pman)anode,,title,file name} (pman)anode
address@hidden(pman)anode,,title,,manual} (pman)anode
address@hidden(pman)anode,,title, file name, manual} (pman)anode
address@hidden(pman)anode,,,file name,manual} (pman)anode
+
+
address@hidden, cross ref name, file name} chapter
address@hidden chapter
address@hidden, cross ref name} chapter
address@hidden,,file name} chapter
address@hidden, cross ref name, file name} node
address@hidden node
address@hidden, cross ref name} node
address@hidden,,file name} node
address@hidden, cross ref name, file name, spurious arg} chapter
+
address@hidden@comma{}ion, a @comma{} in cross
+ref, a address@hidden in file}
+s-ect,ion
+
+
+a
+l-ine
+
+a
+b
+l-ine
+
+a
+b
+l-ine
+
+c-artouche
+
+g-roupe
+
+f-lushleft
+
+f-lushright
+
+ce-ntered line
+
+\input texinfo @c -*-texinfo-*-
+
address@hidden simplest.info
+
address@hidden Top
+
+This is a very simple texi manual @  <>.
+
address@hidden
+
+in verbatim ''
+
+
+html ''
+
+
+
+majorheading
+************
+
+chapheading
+***********
+
+heading
+=======
+
+subheading
+-
+
+subsubheading
+.............
+
+
address@hidden,an accronym @comma{} @enddots{}} -a (an accronym , ...)
address@hidden@'E-. @comma{}A., @'address@hidden @b{Autonome} } E'-. ,A. 
(E'tude-, Autonome)
address@hidden@'E-. @comma{}A.} E'-. ,A.
+
address@hidden@minus{} {\frac{1}{2}}} -a- {\frac{1}{2}}
+
address@hidden,,,address@hidden:jk _" %}} f-ile
address@hidden,aze,az,@verb{:jk _" %@:} @b{in b "},e-xt} f-ile
address@hidden@verb{:jk _" %@:},,,address@hidden:jk _" %@:}} filejk _" %@
+
+
+
+
+Somehow invalid use of @,:
+
+@, 
+,
+
+
+@,@"u ,u"
+
+Invalid use of @':
+
+@' 
+'
+
+
+@'@"u 'u"
+
address@hidden truc
address@hidden ij
address@hidden -a
address@hidden a
+
address@hidden, but without brace address@hidden #
+
address@hidden -a
+
address@hidden,1-xt} 
address@hidden,,2-xt} 
address@hidden,,,3-xt} 
+
+
+e-mph item
+
+i-tem 1
+i-tem 2
+
+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
+
address@hidden node
+
address@hidden,cross ref name} 
address@hidden,,title} 
address@hidden,,,file name} 
address@hidden,,,,manual} 
address@hidden,cross ref name} node
address@hidden,,title} node
address@hidden,,,file name} node
address@hidden,,,,manual} node
address@hidden,cross ref name,title,} node
address@hidden,cross ref name,,file name} node
address@hidden,cross ref name,,,manual} node
address@hidden,cross ref name,title,file name} node
address@hidden,cross ref name,title,,manual} node
address@hidden,cross ref name,title, file name, manual} node
address@hidden,,title,file name} node
address@hidden,,title,,manual} node
address@hidden,,title, file name, manual} chapter
address@hidden,,title, file name, manual} node
address@hidden,,,file name,manual} node
address@hidden,cross ref name,title,} 
address@hidden,cross ref name,,file name} 
address@hidden,cross ref name,,,manual} 
address@hidden,cross ref name,title,file name} 
address@hidden,cross ref name,title,,manual} 
address@hidden,cross ref name,title, file name, manual} 
address@hidden,,title,file name} 
address@hidden,,title,,manual} 
address@hidden,,title, file name, manual} 
address@hidden,,,file name,manual} 
+
address@hidden,cross ref name } 
address@hidden,,file name} 
address@hidden,cross ref name, file name} 
address@hidden 
+
+
+
+ -->
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<title>title &ndash;a</title>
+
+<meta name="description" content="title &ndash;a">
+<meta name="keywords" content="title &ndash;a">
+<meta name="resource-type" content="document">
+<meta name="distribution" content="global">
+<meta name="Generator" content="texi2any">
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<style type="text/css">
+<!--
+a.summary-letter {text-decoration: none}
+blockquote.smallquotation {font-size: smaller}
+div.display {margin-left: 3.2em}
+div.example {margin-left: 3.2em}
+div.indentedblock {margin-left: 3.2em}
+div.lisp {margin-left: 3.2em}
+div.smalldisplay {margin-left: 3.2em}
+div.smallexample {margin-left: 3.2em}
+div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
+div.smalllisp {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}
+pre.smalldisplay {font-family: inherit; font-size: smaller}
+pre.smallexample {font-size: smaller}
+pre.smallformat {font-family: inherit; font-size: smaller}
+pre.smalllisp {font-size: smaller}
+span.nocodebreak {white-space:nowrap}
+span.nolinebreak {white-space:nowrap}
+span.roman {font-family:serif; font-weight:normal}
+span.sansserif {font-family:sans-serif; font-weight:normal}
+ul.no-bullet {list-style: none}
+-->
+</style>
+
+
+</head>
+
+<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" 
vlink="#800080" alink="#FF0000">
+<h1>title &ndash;a</h1>
+<h3 align="right">formatting subtitle &ndash;a</h3>
+<h3 align="right">subtitle 2 &ndash;a</h3>
+<strong>author1 &ndash;a with accents in name T&eacute;&ccedil;a</strong><br>
+<strong>author2 &ndash;a</strong><br>
+<p>In titlepage
+</p>
+<p>&lt;
+&gt;
+&quot;
+&amp;
+&rsquo;
+&lsquo;
+</p>
+<p>&ldquo;simple-double&ndash;three&mdash;four&mdash;-&rdquo;<br>
+code: <code>``simple-double--three---four----''</code> <br>
+asis: &ldquo;simple-double&ndash;three&mdash;four&mdash;-&rdquo; <br>
+strong: 
<strong>&ldquo;simple-double&ndash;three&mdash;four&mdash;-&rdquo;</strong> <br>
+kbd: <kbd>``simple-double--three---four----''</kbd> <br>
+</p>
+<p>&lsquo;<!-- /@w -->&lsquo;simple-double-<!-- /@w 
-->-three&mdash;four&mdash;-&rsquo;<!-- /@w -->&rsquo;<br>
+</p>
+<a name="index-titlepage-_002d_002doption"></a>
+<a name="index-titlepage-_0060_0060"></a>
+<a name="index-titlepage-_0060_0060-1"></a>
+<a name="index-titlepage-_002d_002dfoption"></a>
+
+<p>@&quot;u &uuml; 
+@&quot;{U} &Uuml; 
address@hidden &ntilde;
address@hidden &acirc;
+@&rsquo;e &eacute;
address@hidden &#333;
+@&lsquo;i &igrave;
+@&rsquo;{e} &eacute;
+@&rsquo;address@hidden &iacute; 
address@hidden i
address@hidden j
+@&lsquo;address@hidden &#274;` 
address@hidden &#322;
+@,{@&rsquo;C} &#262;,
+@,c &ccedil;
+@,c@&quot;u &ccedil;&uuml; <br>
+</p>
+<p>@* <br>
+@ followed by a space
+&nbsp;
+@ followed by a tab
+&nbsp;
+@ followed by a new line
+
+<code>@-</code> 
+<code>@|</code> 
+<code>@:</code> 
+<code>@!</code> !
+<code>@?</code> ?
+<code>@.</code> .
+<code>@@</code> @
+<code>@}</code> }
+<code>@{</code> {
+<code>@/</code> 
+</p>
+<p>foo vs. bar. 
+colon :And something else.
+semi colon ;.
+And ? ?.
+Now ! !@
+but , ,
+</p>
+<p>@TeX TeX
address@hidden LaTeX
address@hidden &bull;
address@hidden &copy;
address@hidden &hellip;
address@hidden <small class="enddots">...</small>
address@hidden &equiv;
address@hidden error&rarr;
address@hidden &rarr;
address@hidden -
address@hidden &lowast;
address@hidden -|
address@hidden &rArr;
address@hidden a sunny day
address@hidden &aring;
address@hidden &Aring;
address@hidden &aelig;
address@hidden &oelig;
address@hidden &AElig;
address@hidden &OElig;
address@hidden &oslash;
address@hidden &Oslash;
address@hidden &szlig;
address@hidden &#322;
address@hidden &#321;
address@hidden &ETH;
address@hidden &THORN;
address@hidden &eth;
address@hidden &thorn;
address@hidden &iexcl;
address@hidden &iquest;
address@hidden &pound;
address@hidden &reg;
address@hidden &ordf;
address@hidden &ordm;
address@hidden ,
address@hidden &ldquo;
address@hidden &rdquo;
address@hidden &lsquo;
address@hidden &rsquo;
address@hidden &bdquo;
address@hidden &sbquo;
address@hidden &laquo;
address@hidden &raquo;
address@hidden &laquo;
address@hidden &raquo;
address@hidden &lsaquo;
address@hidden &rsaquo;
address@hidden &deg;
address@hidden &euro;
address@hidden &rarr;
address@hidden &le;
address@hidden &ge;
+</p>
+<p><code>@acronym{--a,an accronym}</code> <acronym title="an 
accronym">&ndash;a</acronym> (an accronym)
+<code>@acronym{--a}</code> <acronym title="an accronym">&ndash;a</acronym>
+<code>@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr 
title="&Eacute;tude Autonome">&Eacute;&ndash;. ,A.</abbr> (&Eacute;tude 
Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&Eacute;tude 
Autonome">&Eacute;&ndash;. ,A.</abbr>
+<code>@asis{--a}</code> &ndash;a
+<code>@b{--a}</code> <b>&ndash;a</b>
+<code>@cite{--a}</code> <cite>&ndash;a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@ctrl{--a}</code> ^&ndash;a
+<code>@dfn{--a}</code> <em>&ndash;a</em>
+<code>@dmn{--a}</code> &ndash;a
+<code>@email{--a,--b}</code> <a href="mailto:--a";>&ndash;b</a>
+<code>@email{,--b}</code> &ndash;b
+<code>@email{--a}</code> <a href="mailto:--a";>--a</a>
+<code>@emph{--a}</code> <em>&ndash;a</em>
+<code>@env{--a}</code> <code>--a</code>
+<code>@file{--a}</code> <samp>--a</samp>
+<code>@i{--a}</code> <i>&ndash;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>--a {\frac{1}{2}} -</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">&ndash;a</span>
+<code>@samp{--a}</code> &lsquo;<samp>--a</samp>&rsquo;
+<code>@sc{--a}</code> <small>&ndash;A</small>
+<code>@strong{--a}</code> <strong>&ndash;a</strong>
+<code>@t{--a}</code> <tt>--a</tt>
+<code>@sansserif{--a}</code> <span class="sansserif">&ndash;a</span>
+<code>@slanted{--a}</code> <i>&ndash;a</i>
+<code>@titlefont{--a}</code> </p><h1 class="titlefont">&ndash;a</h1>
+<p><code>@indicateurl{--a}</code> &lsquo;<code>--a</code>&rsquo;
+<code>@uref{--a,--b}</code> <a href="--a">&ndash;b</a>
+<code>@uref{--a}</code> <a href="--a">--a</a>
+<code>@uref{,--b}</code> &ndash;b
+<code>@uref{--a,--b,--c}</code> <a href="--a">&ndash;c</a>
+<code>@uref{,--b,--c}</code> &ndash;c
+<code>@uref{--a,,--c}</code> <a href="--a">&ndash;c</a>
+<code>@uref{,,--c}</code> &ndash;c
+<code>@url{--a,--b}</code> <a href="--a">&ndash;b</a>
+<code>@url{--a,}</code> <a href="--a">--a</a>
+<code>@url{,--b}</code> &ndash;b
+<code>@var{--a}</code> <var>&ndash;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&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a<!--
 /@w -->
+<code>@H{a}</code> a''
+<code>@H{--a}</code> &ndash;a''
+<code>@dotaccent{a}</code> &#551;
+<code>@dotaccent{--a}</code> &ndash;a.
+<code>@ringaccent{a}</code> &aring;
+<code>@ringaccent{--a}</code> &ndash;a*
+<code>@tieaccent{a}</code> a[
+<code>@tieaccent{--a}</code> &ndash;a[
+<code>@u{a}</code> &#259;
+<code>@u{--a}</code> &ndash;a(
+<code>@ubaraccent{a}</code> a_
+<code>@ubaraccent{--a}</code> &ndash;a_
+<code>@udotaccent{a}</code> &#7841;
+<code>@udotaccent{--a}</code> .&ndash;a
+<code>@v{a}</code> &#462;
+<code>@v{--a}</code> &ndash;a&lt;
+<code>@,{c}</code> &ccedil;
+<code>@,{--c}</code> &ndash;c,
+<code>@ogonek{a}</code> &#261;
+<code>@ogonek{--a}</code> &ndash;a;
+<code>@footnote{in footnote}</code> <a name="DOCF3" 
href="#FOOT3"><sup>7</sup></a>
+<code>@footnote{in footnote2}</code> <a name="DOCF4" 
href="#FOOT4"><sup>8</sup></a>
+</p>
+<p><code>@image{f--ile}</code> <img src="f--ile.jpg" alt="f--ile">
+<code>@image{f--ile,l--i}</code> <img src="f--ile.jpg" alt="f--ile">
+<code>@image{f--ile,,l--e}</code> <img src="f--ile.jpg" alt="f--ile">
+<code>@image{f--ile,,,alt}</code> <img src="f--ile.jpg" alt="alt">
+<code>@image{f--ile,,,,e-d-xt}</code> <img src="f--ile.e--xt" alt="f--ile">
+<code>@image{f--ile,aze,az,alt,e--xt}</code> <img src="f--ile.e--xt" alt="alt">
+<code>@image{f-ile,aze,,a--lt}</code> <img src="f-ile.jpg" alt="a&ndash;lt">
+<code>@address@hidden@@@.,aze,az,alt,@file{file ext} address@hidden</code> 
<img src="address@hidden ext e--xt}" alt="alt">
+</p>
+<br>
+<br>
+
+<p><code>@clicksequence{click @click{} A}</code> click &rarr; A
+After clickstyle &rArr;
+<code>@clicksequence{click @click{} A}</code> click &rArr; A
+</p>
+<blockquote>
+<p>A quot&mdash;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 &eacute; TeX:</b> The something &eacute; TeX is here.
+</p></blockquote>
+
+<blockquote>
+<p><b>@ at the end of line:</b> A @ at the end of the @quotation line.
+</p></blockquote>
+
+<blockquote>
+<p><b>something, other thing:</b> something, other thing
+</p></blockquote>
+
+<blockquote>
+<p><b>Note, the note:</b> Note, the note
+</p></blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote class="smallquotation">
+<p>A small quot&mdash;ation
+</p></blockquote>
+
+<blockquote class="smallquotation">
+<p><b>Note:</b> A small Note
+</p></blockquote>
+
+<blockquote class="smallquotation">
+<p><b>something, other thing:</b> something, other thing
+</p></blockquote>
+
+<ul>
+<li> i&ndash;temize
+</li></ul>
+
+<ul class="no-bullet">
+<li>+ i&ndash;tem +
+</li></ul>
+
+<ul>
+<li> b&ndash;ullet
+</li></ul>
+
+<ul class="no-bullet">
+<li>- minu&ndash;s
+</li></ul>
+
+<ul class="no-bullet">
+<li> e&ndash;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li><em>after emph</em> e&ndash;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&bull; a&ndash;n itemize line <a 
name="index-titlepage-index-entry-within-itemize"></a>
+i&ndash;tem 1
+</li><li>&bull; a&ndash;n itemize line i&ndash;tem 2
+</li></ul>
+
+<ol>
+<li> e&ndash;numerate
+</li></ol>
+
+<table>
+<thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
+<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
+<a name="index-titlepage-index-entry-within-multitable"></a></td></tr>
+<tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</table>
+
+<table>
+<tr><td>truc</td><td>bidule</td></tr>
+</table>
+
+<div class="example">
+<pre class="example">e--xample  some
+   text
+</pre></div>
+
+<div class="smallexample">
+<pre class="smallexample">s--mallexample
+</pre></div>
+
+<div class="display">
+<pre class="display">d&ndash;isplay
+</pre></div>
+
+<div class="smalldisplay">
+<pre class="smalldisplay">s&ndash;malldisplay
+</pre></div>
+
+<div class="lisp">
+<pre class="lisp">l--isp
+</pre></div>
+
+<div class="smalllisp">
+<pre class="smalllisp">s--malllisp
+</pre></div>
+
+<div class="format">
+<pre class="format">f&ndash;ormat
+</pre></div>
+
+<div class="smallformat">
+<pre class="smallformat">s&ndash;mallformat
+</pre></div>
+
+<dl>
+<dt><a name="index-titlepage-d_002d_002deffn_005fname"></a>c--ategory: 
<strong>d--effn_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;effn
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-titlepage-de_002d_002dffn_005fname"></a>cate--gory: 
<strong>de--ffn_name</strong> <em>ar--guments </em></dt>
+<dd><p>more args <br> even more so
+def&ndash;fn
+</p></dd></dl>
+ 
+<dl>
+<dt><a name="index-titlepage-i"></a>fset: <strong><var>i</var></strong> <em>a g
+</em></dt>
+<dd><a name="index-titlepage-index-entry-within-deffn"></a>
+</dd><dt><a name="index-titlepage-truc"></a>cmde: <strong>truc</strong> <em>
+</em></dt>
+<dt><a name="index-titlepage-log-trap"></a>Command: <strong>log trap</strong> 
<em>
+</em></dt>
+<dt><a name="index-titlepage-log-trap1"></a>Command: <strong>log 
trap1</strong> <em>  
+</em></dt>
+<dt><a name="index-titlepage-log-trap2"></a>Command: <strong>log 
trap2</strong> <em>
+</em></dt>
+<dt><a name="index-titlepage-id-ule"></a>cmde: <strong><b>id ule</b></strong> 
<em>truc
+</em></dt>
+<dt><a name="index-titlepage-id-i-ule"></a>cmde2: <strong><b>id 
&lsquo;<samp>i</samp>&rsquo; ule</b></strong> <em>truc
+</em></dt>
+<dt><b>id &lsquo;<samp>i</samp>&rsquo; ule</b>: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt>aaa: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt><a name="index-titlepage-machin"></a>: <strong>machin</strong></dt>
+<dt><a name="index-titlepage-bidule-machin"></a>: <strong>bidule 
machin</strong></dt>
+<dt><a name="index-titlepage-machin-1"></a>truc: <strong>machin</strong></dt>
+<dt>truc: <strong></strong></dt>
+<dt><a name="index-titlepage-followed"></a>truc: <strong>followed</strong> 
<em>by a comment
+</em></dt>
+<dt>truc: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt><a name="index-titlepage-a"></a>truc: <strong>a</strong> <em>b c d e <b>f 
g</b> h i
+</em></dt>
+<dt><a name="index-titlepage-deffnx"></a>truc: <strong>deffnx</strong> 
<em>before end deffn
+</em></dt>
+</dl>
+
+<dl>
+<dt><a name="index-titlepage-deffn"></a>empty: <strong>deffn</strong></dt>
+</dl>
+
+<dl>
+<dt><a name="index-titlepage-deffn-1"></a>empty: <strong>deffn</strong> 
<em>with deffnx
+</em></dt>
+<dt><a name="index-titlepage-deffnx-1"></a>empty: <strong>deffnx</strong></dt>
+</dl>
+
+<dl>
+<dt><a name="index-titlepage-i-1"></a>fset: <strong><var>i</var></strong> 
<em>a g
+</em></dt>
+<dt><a name="index-titlepage-truc-1"></a>cmde: <strong>truc</strong> <em>
+</em></dt>
+<dd><p>text in def item for second def item
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-titlepage-d_002d_002defvr_005fname"></a>c--ategory: 
<strong>d--efvr_name</strong></dt>
+<dd><p>d&ndash;efvr
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-titlepage-d_002d_002deftypefn_005fname"></a>c--ategory: 
<em>t--ype</em> <strong>d--eftypefn_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;eftypefn
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-titlepage-d_002d_002deftypeop_005fname-on-c_002d_002dlass"></a>c--ategory
 on c--lass: <em>t--ype</em> <strong>d--eftypeop_name</strong> 
<em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;eftypeop
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-titlepage-d_002d_002deftypevr_005fname"></a>c--ategory: 
<em>t--ype</em> <strong>d--eftypevr_name</strong></dt>
+<dd><p>d&ndash;eftypevr
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-titlepage-d_002d_002defcv_005fname"></a>c--ategory of 
c--lass: <strong>d--efcv_name</strong></dt>
+<dd><p>d&ndash;efcv
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-titlepage-d_002d_002defop_005fname-on-c_002d_002dlass"></a>c--ategory
 on c--lass: <strong>d--efop_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efop
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-titlepage-d_002d_002deftp_005fname"></a>c--ategory: 
<strong>d--eftp_name</strong> <em>a--ttributes...
+</em></dt>
+<dd><p>d&ndash;eftp
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-titlepage-d_002d_002defun_005fname"></a>Function: 
<strong>d--efun_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efun
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-titlepage-d_002d_002defmac_005fname"></a>Macro: 
<strong>d--efmac_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efmac
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-titlepage-d_002d_002defspec_005fname"></a>Special Form: 
<strong>d--efspec_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efspec
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-titlepage-d_002d_002defvar_005fname"></a>Variable: 
<strong>d--efvar_name</strong> <em>argvar argvar1
+</em></dt>
+<dd><p>d&ndash;efvar
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-titlepage-d_002d_002defopt_005fname"></a>User Option: 
<strong>d--efopt_name</strong></dt>
+<dd><p>d&ndash;efopt
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-titlepage-d_002d_002deftypefun_005fname"></a>Function: 
<em>t--ype</em> <strong>d--eftypefun_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;eftypefun
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-titlepage-d_002d_002deftypevar_005fname"></a>Variable: 
<em>t--ype</em> <strong>d--eftypevar_name</strong></dt>
+<dd><p>d&ndash;eftypevar
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-titlepage-d_002d_002defivar_005fname-of-c_002d_002dlass"></a>Instance
 Variable of c--lass: <strong>d--efivar_name</strong></dt>
+<dd><p>d&ndash;efivar
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-titlepage-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"></a>Instance
 Variable of c--lass: <em>t--ype</em> <strong>d--eftypeivar_name</strong></dt>
+<dd><p>d&ndash;eftypeivar
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-titlepage-d_002d_002defmethod_005fname-on-c_002d_002dlass"></a>Method
 on c--lass: <strong>d--efmethod_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efmethod
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-titlepage-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"></a>Method
 on c--lass: <em>t--ype</em> <strong>d--eftypemethod_name</strong> 
<em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;eftypemethod
+</p></dd></dl>
+
+<p><code>@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@, 
ma---nual@@}</code> See <a href="file address@hidden">t&mdash;itle@</a> in 
<cite>ma&mdash;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 section <a href="#chapter">chapter</a>.
+<code>@pxref{chapter}</code> see section <a href="#chapter">chapter</a>
+<code>@address@hidden</code> <a href="#s_002d_002dect_002cion">A section</a>
+</p>
+<p><code>@address@hidden, a @comma{} in cross
+ref, a address@hidden in title, a address@hidden in file, a @comma{} in manual 
name }</code>
+<a href="a comma, in file.html#s_002d_002dect_002cion">a comma, in title</a> 
in <cite>a , in manual name</cite>
+</p>
+<p><code>@ref{chapter,cross ref name}</code> <a href="#chapter">cross ref 
name</a>
+<code>@ref{chapter,,title}</code> <a href="#chapter">title</a>
+<code>@ref{chapter,,,file name}</code> <a href="file name.html#chapter">(file 
name)chapter</a>
+<code>@ref{chapter,,,,manual}</code> &lsquo;chapter&rsquo; 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> &lsquo;cross ref 
name&rsquo; 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> &lsquo;title&rsquo; 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> &lsquo;title&rsquo; 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 &lsquo;chapter&rsquo;
+<code>@inforef{chapter, cross ref name}</code> See &lsquo;cross ref name&rsquo;
+<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 &lsquo;node&rsquo;
+<code>@inforef{node, cross ref name}</code> See &lsquo;cross ref name&rsquo;
+<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>@address@hidden, a @comma{} in cross
+ref, a address@hidden in file}</code>
+See <a href="a comma, in file.html#s_002d_002dect_002cion">(a comma, in file)a 
, in cross
+ref</a>
+</p>
+
+<dl compact="compact">
+<dt>a</dt>
+<dd><p>l&ndash;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt>a
+<a name="index-titlepage-a-2"></a>
+</dt>
+<dt>b
+<a name="index-titlepage-b-1"></a>
+</dt>
+<dd><p>l&ndash;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt>a
+<a name="index-titlepage-a-1"></a>
+</dt>
+<dd><a name="index-titlepage-index-entry-between-item-and-itemx"></a>
+</dd>
+<dt>b
+<a name="index-titlepage-b"></a>
+</dt>
+<dd><p>l&ndash;ine
+</p></dd>
+</dl>
+
+<table class="cartouche" border="1"><tr><td>
+<p>c&ndash;artouche
+</p></td></tr></table>
+
+<p>g&ndash;roupe
+</p>
+<p align="left">f&ndash;lushleft
+</p>
+<p align="right">f&ndash;lushright
+</p>
+<div align="center">ce&ndash;ntered line
+</div>
+<pre class="verbatim">\input texinfo @c -*-texinfo-*-
+
address@hidden simplest.info
+
address@hidden Top
+
+This is a very simple texi manual @  &lt;&gt;.
+
address@hidden
+</pre>
+<pre class="verbatim">in verbatim ''
+</pre>
+
+html ''
+
+
+
+<a name="majorheading-3"></a>
+<h1 class="majorheading">majorheading</h1>
+
+<a name="chapheading-3"></a>
+<h1 class="chapheading">chapheading</h1>
+
+<a name="heading-3"></a>
+<h2 class="heading">heading</h2>
+
+<a name="subheading-3"></a>
+<h3 class="subheading">subheading</h3>
+
+<a name="subsubheading-3"></a>
+<h4 class="subsubheading">subsubheading</h4>
+
+
+<p><code>@acronym{--a,an accronym @comma{} @enddots{}}</code> <acronym 
title="an accronym , ...">&ndash;a</acronym> (an accronym , <small 
class="enddots">...</small>)
+<code>@abbr{@'E--. @comma{}A., @'address@hidden @b{Autonome} }</code> <abbr 
title="&Eacute;tude&ndash;, Autonome">&Eacute;&ndash;. ,A.</abbr> 
(&Eacute;tude&ndash;, <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&Eacute;tude&ndash;, 
Autonome">&Eacute;&ndash;. ,A.</abbr>
+</p>
+<p><code>@address@hidden {\frac{1}{2}}}</code> <em>--a- {\frac{1}{2}}</em>
+</p>
+<p><code>@image{f-ile,,,address@hidden:jk _&quot; %}}</code> <img 
src="f-ile.jpg" alt="altjk _&quot; %@">
+<code>@image{f--ile,aze,az,@verb{:jk _&quot; %@:} @b{in b 
&quot;},e--xt}</code> <img src="f--ile.e--xt" alt="jk _&quot; %@ in b &quot;">
+<code>@address@hidden:jk _&quot; %@:},,,address@hidden:jk _&quot; %@:}}</code> 
<img src="filejk _&quot; address@hidden" alt="altjk _&quot; %@">
+</p>
+
+
+
+<p>Somehow invalid use of @,:<br>
+@, 
+,
+<br>
+@,@&quot;u ,&uuml;
+</p>
+<p>Invalid use of @&rsquo;:<br>
+@&rsquo; 
+'
+<br>
+@&rsquo;@&quot;u '&uuml;
+</p>
+<p>@dotless{truc} truc
address@hidden ij
+<code>@dotless{--a}</code> &ndash;a
+<code>@dotless{a}</code> a
+</p>
+<p>@TeX, but without brace TeX<code>@#</code> #
+</p>
+<p><code>@w{--a}</code> &ndash;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> after emph e&ndash;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&bull; a&ndash;n itemize line i&ndash;tem 1
+</li><li>&bull; a&ndash;n itemize line i&ndash;tem 2
+</li></ul>
+
+<dl>
+<dt>fun: <strong></strong></dt>
+<dt><a name="index-titlepage-machin-2"></a>truc: <strong>machin</strong> 
<em>bidule chose and 
+</em></dt>
+<dt><a name="index-titlepage-machin-3"></a>truc: <strong>machin</strong> 
<em>bidule chose and  after
+</em></dt>
+<dt><a name="index-titlepage-machin-4"></a>truc: <strong>machin</strong> 
<em>bidule chose and </em></dt>
+<dt><a name="index-titlepage-machin-5"></a>truc: <strong>machin</strong> 
<em>bidule chose and and after</em></dt>
+<dt><a name="index-titlepage-followed-1"></a>truc: <strong>followed</strong> 
<em>by a comment
+</em></dt>
+<dd><p>Various deff lines
+</p></dd><dt><a name="index-titlepage-after"></a>truc: <strong>after</strong> 
<em>a deff item
+</em></dt>
+</dl>
+
+<p><code>@ref{node}</code> &lsquo;node&rsquo;
+</p>
+<p><code>@ref{,cross ref name}</code> &lsquo;cross ref name&rsquo;
+<code>@ref{,,title}</code> &lsquo;title&rsquo;
+<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> &lsquo;cross ref name&rsquo;
+<code>@ref{node,,title}</code> &lsquo;title&rsquo;
+<code>@ref{node,,,file name}</code> <a href="file name.html#node">(file 
name)node</a>
+<code>@ref{node,,,,manual}</code> &lsquo;node&rsquo; in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,}</code> &lsquo;title&rsquo;
+<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> &lsquo;cross ref name&rsquo; 
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> &lsquo;title&rsquo; 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> &lsquo;title&rsquo; 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> &lsquo;title&rsquo;
+<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> &lsquo;cross ref name&rsquo; 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> &lsquo;title&rsquo; 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> &lsquo;title&rsquo; 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 &lsquo;cross ref name&rsquo;
+<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;
+&rsquo;
+&lsquo;
+</p>
+<p>&ldquo;simple-double&ndash;three&mdash;four&mdash;-&rdquo;<br>
+code: <code>``simple-double--three---four----''</code> <br>
+asis: &ldquo;simple-double&ndash;three&mdash;four&mdash;-&rdquo; <br>
+strong: 
<strong>&ldquo;simple-double&ndash;three&mdash;four&mdash;-&rdquo;</strong> <br>
+kbd: <kbd>``simple-double--three---four----''</kbd> <br>
+</p>
+<p>&lsquo;<!-- /@w -->&lsquo;simple-double-<!-- /@w 
-->-three&mdash;four&mdash;-&rsquo;<!-- /@w -->&rsquo;<br>
+</p>
+<a name="index-copying-_002d_002doption"></a>
+<a name="index-copying-_0060_0060"></a>
+<a name="index-copying-_0060_0060-1"></a>
+<a name="index-copying-_002d_002dfoption"></a>
+
+<p>@&quot;u &uuml; 
+@&quot;{U} &Uuml; 
address@hidden &ntilde;
address@hidden &acirc;
+@&rsquo;e &eacute;
address@hidden &#333;
+@&lsquo;i &igrave;
+@&rsquo;{e} &eacute;
+@&rsquo;address@hidden &iacute; 
address@hidden i
address@hidden j
+@&lsquo;address@hidden &#274;` 
address@hidden &#322;
+@,{@&rsquo;C} &#262;,
+@,c &ccedil;
+@,c@&quot;u &ccedil;&uuml; <br>
+</p>
+<p>@* <br>
+@ followed by a space
+&nbsp;
+@ followed by a tab
+&nbsp;
+@ followed by a new line
+
+<code>@-</code> 
+<code>@|</code> 
+<code>@:</code> 
+<code>@!</code> !
+<code>@?</code> ?
+<code>@.</code> .
+<code>@@</code> @
+<code>@}</code> }
+<code>@{</code> {
+<code>@/</code> 
+</p>
+<p>foo vs. bar. 
+colon :And something else.
+semi colon ;.
+And ? ?.
+Now ! !@
+but , ,
+</p>
+<p>@TeX TeX
address@hidden LaTeX
address@hidden &bull;
address@hidden &copy;
address@hidden &hellip;
address@hidden <small class="enddots">...</small>
address@hidden &equiv;
address@hidden error&rarr;
address@hidden &rarr;
address@hidden -
address@hidden &lowast;
address@hidden -|
address@hidden &rArr;
address@hidden a sunny day
address@hidden &aring;
address@hidden &Aring;
address@hidden &aelig;
address@hidden &oelig;
address@hidden &AElig;
address@hidden &OElig;
address@hidden &oslash;
address@hidden &Oslash;
address@hidden &szlig;
address@hidden &#322;
address@hidden &#321;
address@hidden &ETH;
address@hidden &THORN;
address@hidden &eth;
address@hidden &thorn;
address@hidden &iexcl;
address@hidden &iquest;
address@hidden &pound;
address@hidden &reg;
address@hidden &ordf;
address@hidden &ordm;
address@hidden ,
address@hidden &ldquo;
address@hidden &rdquo;
address@hidden &lsquo;
address@hidden &rsquo;
address@hidden &bdquo;
address@hidden &sbquo;
address@hidden &laquo;
address@hidden &raquo;
address@hidden &laquo;
address@hidden &raquo;
address@hidden &lsaquo;
address@hidden &rsaquo;
address@hidden &deg;
address@hidden &euro;
address@hidden &rarr;
address@hidden &le;
address@hidden &ge;
+</p>
+<p><code>@acronym{--a,an accronym}</code> <acronym title="an 
accronym">&ndash;a</acronym> (an accronym)
+<code>@acronym{--a}</code> <acronym title="an accronym">&ndash;a</acronym>
+<code>@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr 
title="&Eacute;tude Autonome">&Eacute;&ndash;. ,A.</abbr> (&Eacute;tude 
Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&Eacute;tude 
Autonome">&Eacute;&ndash;. ,A.</abbr>
+<code>@asis{--a}</code> &ndash;a
+<code>@b{--a}</code> <b>&ndash;a</b>
+<code>@cite{--a}</code> <cite>&ndash;a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@ctrl{--a}</code> ^&ndash;a
+<code>@dfn{--a}</code> <em>&ndash;a</em>
+<code>@dmn{--a}</code> &ndash;a
+<code>@email{--a,--b}</code> <a href="mailto:--a";>&ndash;b</a>
+<code>@email{,--b}</code> &ndash;b
+<code>@email{--a}</code> <a href="mailto:--a";>--a</a>
+<code>@emph{--a}</code> <em>&ndash;a</em>
+<code>@env{--a}</code> <code>--a</code>
+<code>@file{--a}</code> <samp>--a</samp>
+<code>@i{--a}</code> <i>&ndash;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>--a {\frac{1}{2}} -</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">&ndash;a</span>
+<code>@samp{--a}</code> &lsquo;<samp>--a</samp>&rsquo;
+<code>@sc{--a}</code> <small>&ndash;A</small>
+<code>@strong{--a}</code> <strong>&ndash;a</strong>
+<code>@t{--a}</code> <tt>--a</tt>
+<code>@sansserif{--a}</code> <span class="sansserif">&ndash;a</span>
+<code>@slanted{--a}</code> <i>&ndash;a</i>
+<code>@titlefont{--a}</code> </p><h1 class="titlefont">&ndash;a</h1>
+<p><code>@indicateurl{--a}</code> &lsquo;<code>--a</code>&rsquo;
+<code>@uref{--a,--b}</code> <a href="--a">&ndash;b</a>
+<code>@uref{--a}</code> <a href="--a">--a</a>
+<code>@uref{,--b}</code> &ndash;b
+<code>@uref{--a,--b,--c}</code> <a href="--a">&ndash;c</a>
+<code>@uref{,--b,--c}</code> &ndash;c
+<code>@uref{--a,,--c}</code> <a href="--a">&ndash;c</a>
+<code>@uref{,,--c}</code> &ndash;c
+<code>@url{--a,--b}</code> <a href="--a">&ndash;b</a>
+<code>@url{--a,}</code> <a href="--a">--a</a>
+<code>@url{,--b}</code> &ndash;b
+<code>@var{--a}</code> <var>&ndash;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&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a<!--
 /@w -->
+<code>@H{a}</code> a''
+<code>@H{--a}</code> &ndash;a''
+<code>@dotaccent{a}</code> &#551;
+<code>@dotaccent{--a}</code> &ndash;a.
+<code>@ringaccent{a}</code> &aring;
+<code>@ringaccent{--a}</code> &ndash;a*
+<code>@tieaccent{a}</code> a[
+<code>@tieaccent{--a}</code> &ndash;a[
+<code>@u{a}</code> &#259;
+<code>@u{--a}</code> &ndash;a(
+<code>@ubaraccent{a}</code> a_
+<code>@ubaraccent{--a}</code> &ndash;a_
+<code>@udotaccent{a}</code> &#7841;
+<code>@udotaccent{--a}</code> .&ndash;a
+<code>@v{a}</code> &#462;
+<code>@v{--a}</code> &ndash;a&lt;
+<code>@,{c}</code> &ccedil;
+<code>@,{--c}</code> &ndash;c,
+<code>@ogonek{a}</code> &#261;
+<code>@ogonek{--a}</code> &ndash;a;
+<code>@footnote{in footnote}</code> <a name="DOCF1_9" 
href="#FOOT1_9"><sup>9</sup></a>
+<code>@footnote{in footnote2}</code> <a name="DOCF2_10" 
href="#FOOT2_10"><sup>10</sup></a>
+</p>
+<p><code>@image{f--ile}</code> <img src="f--ile.jpg" alt="f--ile">
+<code>@image{f--ile,l--i}</code> <img src="f--ile.jpg" alt="f--ile">
+<code>@image{f--ile,,l--e}</code> <img src="f--ile.jpg" alt="f--ile">
+<code>@image{f--ile,,,alt}</code> <img src="f--ile.jpg" alt="alt">
+<code>@image{f--ile,,,,e-d-xt}</code> <img src="f--ile.e--xt" alt="f--ile">
+<code>@image{f--ile,aze,az,alt,e--xt}</code> <img src="f--ile.e--xt" alt="alt">
+<code>@image{f-ile,aze,,a--lt}</code> <img src="f-ile.jpg" alt="a&ndash;lt">
+<code>@address@hidden@@@.,aze,az,alt,@file{file ext} address@hidden</code> 
<img src="address@hidden ext e--xt}" alt="alt">
+</p>
+<br>
+<br>
+
+<p><code>@clicksequence{click @click{} A}</code> click &rarr; A
+After clickstyle &rArr;
+<code>@clicksequence{click @click{} A}</code> click &rArr; A
+</p>
+<blockquote>
+<p>A quot&mdash;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 &eacute; TeX:</b> The something &eacute; TeX is here.
+</p></blockquote>
+
+<blockquote>
+<p><b>@ at the end of line:</b> A @ at the end of the @quotation line.
+</p></blockquote>
+
+<blockquote>
+<p><b>something, other thing:</b> something, other thing
+</p></blockquote>
+
+<blockquote>
+<p><b>Note, the note:</b> Note, the note
+</p></blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote class="smallquotation">
+<p>A small quot&mdash;ation
+</p></blockquote>
+
+<blockquote class="smallquotation">
+<p><b>Note:</b> A small Note
+</p></blockquote>
+
+<blockquote class="smallquotation">
+<p><b>something, other thing:</b> something, other thing
+</p></blockquote>
+
+<ul>
+<li> i&ndash;temize
+</li></ul>
+
+<ul class="no-bullet">
+<li>+ i&ndash;tem +
+</li></ul>
+
+<ul>
+<li> b&ndash;ullet
+</li></ul>
+
+<ul class="no-bullet">
+<li>- minu&ndash;s
+</li></ul>
+
+<ul class="no-bullet">
+<li> e&ndash;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li><em>after emph</em> e&ndash;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&bull; a&ndash;n itemize line <a 
name="index-copying-index-entry-within-itemize"></a>
+i&ndash;tem 1
+</li><li>&bull; a&ndash;n itemize line i&ndash;tem 2
+</li></ul>
+
+<ol>
+<li> e&ndash;numerate
+</li></ol>
+
+<table>
+<thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
+<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
+<a name="index-copying-index-entry-within-multitable"></a></td></tr>
+<tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</table>
+
+<table>
+<tr><td>truc</td><td>bidule</td></tr>
+</table>
+
+<div class="example">
+<pre class="example">e--xample  some
+   text
+</pre></div>
+
+<div class="smallexample">
+<pre class="smallexample">s--mallexample
+</pre></div>
+
+<div class="display">
+<pre class="display">d&ndash;isplay
+</pre></div>
+
+<div class="smalldisplay">
+<pre class="smalldisplay">s&ndash;malldisplay
+</pre></div>
+
+<div class="lisp">
+<pre class="lisp">l--isp
+</pre></div>
+
+<div class="smalllisp">
+<pre class="smalllisp">s--malllisp
+</pre></div>
+
+<div class="format">
+<pre class="format">f&ndash;ormat
+</pre></div>
+
+<div class="smallformat">
+<pre class="smallformat">s&ndash;mallformat
+</pre></div>
+
+<dl>
+<dt><a name="index-copying-d_002d_002deffn_005fname"></a>c--ategory: 
<strong>d--effn_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;effn
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-de_002d_002dffn_005fname"></a>cate--gory: 
<strong>de--ffn_name</strong> <em>ar--guments </em></dt>
+<dd><p>more args <br> even more so
+def&ndash;fn
+</p></dd></dl>
+ 
+<dl>
+<dt><a name="index-copying-i"></a>fset: <strong><var>i</var></strong> <em>a g
+</em></dt>
+<dd><a name="index-copying-index-entry-within-deffn"></a>
+</dd><dt><a name="index-copying-truc"></a>cmde: <strong>truc</strong> <em>
+</em></dt>
+<dt><a name="index-copying-log-trap"></a>Command: <strong>log trap</strong> 
<em>
+</em></dt>
+<dt><a name="index-copying-log-trap1"></a>Command: <strong>log trap1</strong> 
<em>  
+</em></dt>
+<dt><a name="index-copying-log-trap2"></a>Command: <strong>log trap2</strong> 
<em>
+</em></dt>
+<dt><a name="index-copying-id-ule"></a>cmde: <strong><b>id ule</b></strong> 
<em>truc
+</em></dt>
+<dt><a name="index-copying-id-i-ule"></a>cmde2: <strong><b>id 
&lsquo;<samp>i</samp>&rsquo; ule</b></strong> <em>truc
+</em></dt>
+<dt><b>id &lsquo;<samp>i</samp>&rsquo; ule</b>: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt>aaa: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt><a name="index-copying-machin"></a>: <strong>machin</strong></dt>
+<dt><a name="index-copying-bidule-machin"></a>: <strong>bidule 
machin</strong></dt>
+<dt><a name="index-copying-machin-1"></a>truc: <strong>machin</strong></dt>
+<dt>truc: <strong></strong></dt>
+<dt><a name="index-copying-followed"></a>truc: <strong>followed</strong> 
<em>by a comment
+</em></dt>
+<dt>truc: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt><a name="index-copying-a"></a>truc: <strong>a</strong> <em>b c d e <b>f 
g</b> h i
+</em></dt>
+<dt><a name="index-copying-deffnx"></a>truc: <strong>deffnx</strong> 
<em>before end deffn
+</em></dt>
+</dl>
+
+<dl>
+<dt><a name="index-copying-deffn"></a>empty: <strong>deffn</strong></dt>
+</dl>
+
+<dl>
+<dt><a name="index-copying-deffn-1"></a>empty: <strong>deffn</strong> <em>with 
deffnx
+</em></dt>
+<dt><a name="index-copying-deffnx-1"></a>empty: <strong>deffnx</strong></dt>
+</dl>
+
+<dl>
+<dt><a name="index-copying-i-1"></a>fset: <strong><var>i</var></strong> <em>a g
+</em></dt>
+<dt><a name="index-copying-truc-1"></a>cmde: <strong>truc</strong> <em>
+</em></dt>
+<dd><p>text in def item for second def item
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002defvr_005fname"></a>c--ategory: 
<strong>d--efvr_name</strong></dt>
+<dd><p>d&ndash;efvr
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002deftypefn_005fname"></a>c--ategory: 
<em>t--ype</em> <strong>d--eftypefn_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;eftypefn
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass"></a>c--ategory
 on c--lass: <em>t--ype</em> <strong>d--eftypeop_name</strong> 
<em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;eftypeop
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002deftypevr_005fname"></a>c--ategory: 
<em>t--ype</em> <strong>d--eftypevr_name</strong></dt>
+<dd><p>d&ndash;eftypevr
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002defcv_005fname"></a>c--ategory of 
c--lass: <strong>d--efcv_name</strong></dt>
+<dd><p>d&ndash;efcv
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-copying-d_002d_002defop_005fname-on-c_002d_002dlass"></a>c--ategory 
on c--lass: <strong>d--efop_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efop
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002deftp_005fname"></a>c--ategory: 
<strong>d--eftp_name</strong> <em>a--ttributes...
+</em></dt>
+<dd><p>d&ndash;eftp
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002defun_005fname"></a>Function: 
<strong>d--efun_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efun
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002defmac_005fname"></a>Macro: 
<strong>d--efmac_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efmac
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002defspec_005fname"></a>Special Form: 
<strong>d--efspec_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efspec
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002defvar_005fname"></a>Variable: 
<strong>d--efvar_name</strong> <em>argvar argvar1
+</em></dt>
+<dd><p>d&ndash;efvar
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002defopt_005fname"></a>User Option: 
<strong>d--efopt_name</strong></dt>
+<dd><p>d&ndash;efopt
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002deftypefun_005fname"></a>Function: 
<em>t--ype</em> <strong>d--eftypefun_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;eftypefun
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002deftypevar_005fname"></a>Variable: 
<em>t--ype</em> <strong>d--eftypevar_name</strong></dt>
+<dd><p>d&ndash;eftypevar
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-copying-d_002d_002defivar_005fname-of-c_002d_002dlass"></a>Instance 
Variable of c--lass: <strong>d--efivar_name</strong></dt>
+<dd><p>d&ndash;efivar
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-copying-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"></a>Instance
 Variable of c--lass: <em>t--ype</em> <strong>d--eftypeivar_name</strong></dt>
+<dd><p>d&ndash;eftypeivar
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-copying-d_002d_002defmethod_005fname-on-c_002d_002dlass"></a>Method 
on c--lass: <strong>d--efmethod_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efmethod
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-copying-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"></a>Method
 on c--lass: <em>t--ype</em> <strong>d--eftypemethod_name</strong> 
<em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;eftypemethod
+</p></dd></dl>
+
+<p><code>@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@, 
ma---nual@@}</code> See <a href="file address@hidden">t&mdash;itle@</a> in 
<cite>ma&mdash;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 section <a href="#chapter">chapter</a>.
+<code>@pxref{chapter}</code> see section <a href="#chapter">chapter</a>
+<code>@address@hidden</code> <a href="#s_002d_002dect_002cion">A section</a>
+</p>
+<p><code>@address@hidden, a @comma{} in cross
+ref, a address@hidden in title, a address@hidden in file, a @comma{} in manual 
name }</code>
+<a href="a comma, in file.html#s_002d_002dect_002cion">a comma, in title</a> 
in <cite>a , in manual name</cite>
+</p>
+<p><code>@ref{chapter,cross ref name}</code> <a href="#chapter">cross ref 
name</a>
+<code>@ref{chapter,,title}</code> <a href="#chapter">title</a>
+<code>@ref{chapter,,,file name}</code> <a href="file name.html#chapter">(file 
name)chapter</a>
+<code>@ref{chapter,,,,manual}</code> &lsquo;chapter&rsquo; 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> &lsquo;cross ref 
name&rsquo; 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> &lsquo;title&rsquo; 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> &lsquo;title&rsquo; 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 &lsquo;chapter&rsquo;
+<code>@inforef{chapter, cross ref name}</code> See &lsquo;cross ref name&rsquo;
+<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 &lsquo;node&rsquo;
+<code>@inforef{node, cross ref name}</code> See &lsquo;cross ref name&rsquo;
+<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>@address@hidden, a @comma{} in cross
+ref, a address@hidden in file}</code>
+See <a href="a comma, in file.html#s_002d_002dect_002cion">(a comma, in file)a 
, in cross
+ref</a>
+</p>
+
+<dl compact="compact">
+<dt>a</dt>
+<dd><p>l&ndash;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt>a
+<a name="index-copying-a-2"></a>
+</dt>
+<dt>b
+<a name="index-copying-b-1"></a>
+</dt>
+<dd><p>l&ndash;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt>a
+<a name="index-copying-a-1"></a>
+</dt>
+<dd><a name="index-copying-index-entry-between-item-and-itemx"></a>
+</dd>
+<dt>b
+<a name="index-copying-b"></a>
+</dt>
+<dd><p>l&ndash;ine
+</p></dd>
+</dl>
+
+<table class="cartouche" border="1"><tr><td>
+<p>c&ndash;artouche
+</p></td></tr></table>
+
+<p>g&ndash;roupe
+</p>
+<p align="left">f&ndash;lushleft
+</p>
+<p align="right">f&ndash;lushright
+</p>
+<div align="center">ce&ndash;ntered line
+</div>
+<pre class="verbatim">\input texinfo @c -*-texinfo-*-
+
address@hidden simplest.info
+
address@hidden Top
+
+This is a very simple texi manual @  &lt;&gt;.
+
address@hidden
+</pre>
+<pre class="verbatim">in verbatim ''
+</pre>
+
+html ''
+
+
+
+<a name="majorheading"></a>
+<h1 class="majorheading">majorheading</h1>
+
+<a name="chapheading"></a>
+<h1 class="chapheading">chapheading</h1>
+
+<a name="heading"></a>
+<h2 class="heading">heading</h2>
+
+<a name="subheading"></a>
+<h3 class="subheading">subheading</h3>
+
+<a name="subsubheading"></a>
+<h4 class="subsubheading">subsubheading</h4>
+
+
+<p><code>@acronym{--a,an accronym @comma{} @enddots{}}</code> <acronym 
title="an accronym , ...">&ndash;a</acronym> (an accronym , <small 
class="enddots">...</small>)
+<code>@abbr{@'E--. @comma{}A., @'address@hidden @b{Autonome} }</code> <abbr 
title="&Eacute;tude&ndash;, Autonome">&Eacute;&ndash;. ,A.</abbr> 
(&Eacute;tude&ndash;, <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&Eacute;tude&ndash;, 
Autonome">&Eacute;&ndash;. ,A.</abbr>
+</p>
+<p><code>@address@hidden {\frac{1}{2}}}</code> <em>--a- {\frac{1}{2}}</em>
+</p>
+<p><code>@image{f-ile,,,address@hidden:jk _&quot; %}}</code> <img 
src="f-ile.jpg" alt="altjk _&quot; %@">
+<code>@image{f--ile,aze,az,@verb{:jk _&quot; %@:} @b{in b 
&quot;},e--xt}</code> <img src="f--ile.e--xt" alt="jk _&quot; %@ in b &quot;">
+<code>@address@hidden:jk _&quot; %@:},,,address@hidden:jk _&quot; %@:}}</code> 
<img src="filejk _&quot; address@hidden" alt="altjk _&quot; %@">
+</p>
+
+
+
+<p>Somehow invalid use of @,:<br>
+@, 
+,
+<br>
+@,@&quot;u ,&uuml;
+</p>
+<p>Invalid use of @&rsquo;:<br>
+@&rsquo; 
+'
+<br>
+@&rsquo;@&quot;u '&uuml;
+</p>
+<p>@dotless{truc} truc
address@hidden ij
+<code>@dotless{--a}</code> &ndash;a
+<code>@dotless{a}</code> a
+</p>
+<p>@TeX, but without brace TeX<code>@#</code> #
+</p>
+<p><code>@w{--a}</code> &ndash;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> after emph e&ndash;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&bull; a&ndash;n itemize line i&ndash;tem 1
+</li><li>&bull; a&ndash;n itemize line i&ndash;tem 2
+</li></ul>
+
+<dl>
+<dt>fun: <strong></strong></dt>
+<dt><a name="index-copying-machin-2"></a>truc: <strong>machin</strong> 
<em>bidule chose and 
+</em></dt>
+<dt><a name="index-copying-machin-3"></a>truc: <strong>machin</strong> 
<em>bidule chose and  after
+</em></dt>
+<dt><a name="index-copying-machin-4"></a>truc: <strong>machin</strong> 
<em>bidule chose and </em></dt>
+<dt><a name="index-copying-machin-5"></a>truc: <strong>machin</strong> 
<em>bidule chose and and after</em></dt>
+<dt><a name="index-copying-followed-1"></a>truc: <strong>followed</strong> 
<em>by a comment
+</em></dt>
+<dd><p>Various deff lines
+</p></dd><dt><a name="index-copying-after"></a>truc: <strong>after</strong> 
<em>a deff item
+</em></dt>
+</dl>
+
+<p><code>@ref{node}</code> &lsquo;node&rsquo;
+</p>
+<p><code>@ref{,cross ref name}</code> &lsquo;cross ref name&rsquo;
+<code>@ref{,,title}</code> &lsquo;title&rsquo;
+<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> &lsquo;cross ref name&rsquo;
+<code>@ref{node,,title}</code> &lsquo;title&rsquo;
+<code>@ref{node,,,file name}</code> <a href="file name.html#node">(file 
name)node</a>
+<code>@ref{node,,,,manual}</code> &lsquo;node&rsquo; in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,}</code> &lsquo;title&rsquo;
+<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> &lsquo;cross ref name&rsquo; 
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> &lsquo;title&rsquo; 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> &lsquo;title&rsquo; 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> &lsquo;title&rsquo;
+<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> &lsquo;cross ref name&rsquo; 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> &lsquo;title&rsquo; 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> &lsquo;title&rsquo; 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 &lsquo;cross ref name&rsquo;
+<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>
+
+
+
+<hr>
+<a name="Top"></a>
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[ &lt; ]</td>
+<td valign="middle" align="left">[<a href="#chapter" title="Next section in 
reading order"> &gt; </a>]</td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of 
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#Top" title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? 
</a>]</td>
+</tr></table>
+<a name="Top-section"></a>
+<h1 class="top">Top section</h1>
+
+<table class="menu" border="0" cellspacing="0">
+<tr><td align="left" valign="top"><a href="#chapter">1 
chapter</a></td><td>&nbsp;&nbsp;</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">chapter 
2</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">Chapter 2
+</td></tr>
+</table>
+
+
+
+
+<p>Insertcopying in normal text
+</p><p>In copying
+</p>
+<p>&lt;
+&gt;
+&quot;
+&amp;
+&rsquo;
+&lsquo;
+</p>
+<p>&ldquo;simple-double&ndash;three&mdash;four&mdash;-&rdquo;<br>
+code: <code>``simple-double--three---four----''</code> <br>
+asis: &ldquo;simple-double&ndash;three&mdash;four&mdash;-&rdquo; <br>
+strong: 
<strong>&ldquo;simple-double&ndash;three&mdash;four&mdash;-&rdquo;</strong> <br>
+kbd: <kbd>``simple-double--three---four----''</kbd> <br>
+</p>
+<p>&lsquo;<!-- /@w -->&lsquo;simple-double-<!-- /@w 
-->-three&mdash;four&mdash;-&rsquo;<!-- /@w -->&rsquo;<br>
+</p>
+<a name="index-copying-_002d_002doption"></a>
+<a name="index-copying-_0060_0060"></a>
+<a name="index-copying-_0060_0060-1"></a>
+<a name="index-copying-_002d_002dfoption"></a>
+
+<p>@&quot;u &uuml; 
+@&quot;{U} &Uuml; 
address@hidden &ntilde;
address@hidden &acirc;
+@&rsquo;e &eacute;
address@hidden &#333;
+@&lsquo;i &igrave;
+@&rsquo;{e} &eacute;
+@&rsquo;address@hidden &iacute; 
address@hidden i
address@hidden j
+@&lsquo;address@hidden &#274;` 
address@hidden &#322;
+@,{@&rsquo;C} &#262;,
+@,c &ccedil;
+@,c@&quot;u &ccedil;&uuml; <br>
+</p>
+<p>@* <br>
+@ followed by a space
+&nbsp;
+@ followed by a tab
+&nbsp;
+@ followed by a new line
+
+<code>@-</code> 
+<code>@|</code> 
+<code>@:</code> 
+<code>@!</code> !
+<code>@?</code> ?
+<code>@.</code> .
+<code>@@</code> @
+<code>@}</code> }
+<code>@{</code> {
+<code>@/</code> 
+</p>
+<p>foo vs. bar. 
+colon :And something else.
+semi colon ;.
+And ? ?.
+Now ! !@
+but , ,
+</p>
+<p>@TeX TeX
address@hidden LaTeX
address@hidden &bull;
address@hidden &copy;
address@hidden &hellip;
address@hidden <small class="enddots">...</small>
address@hidden &equiv;
address@hidden error&rarr;
address@hidden &rarr;
address@hidden -
address@hidden &lowast;
address@hidden -|
address@hidden &rArr;
address@hidden a sunny day
address@hidden &aring;
address@hidden &Aring;
address@hidden &aelig;
address@hidden &oelig;
address@hidden &AElig;
address@hidden &OElig;
address@hidden &oslash;
address@hidden &Oslash;
address@hidden &szlig;
address@hidden &#322;
address@hidden &#321;
address@hidden &ETH;
address@hidden &THORN;
address@hidden &eth;
address@hidden &thorn;
address@hidden &iexcl;
address@hidden &iquest;
address@hidden &pound;
address@hidden &reg;
address@hidden &ordf;
address@hidden &ordm;
address@hidden ,
address@hidden &ldquo;
address@hidden &rdquo;
address@hidden &lsquo;
address@hidden &rsquo;
address@hidden &bdquo;
address@hidden &sbquo;
address@hidden &laquo;
address@hidden &raquo;
address@hidden &laquo;
address@hidden &raquo;
address@hidden &lsaquo;
address@hidden &rsaquo;
address@hidden &deg;
address@hidden &euro;
address@hidden &rarr;
address@hidden &le;
address@hidden &ge;
+</p>
+<p><code>@acronym{--a,an accronym}</code> <acronym title="an 
accronym">&ndash;a</acronym> (an accronym)
+<code>@acronym{--a}</code> <acronym title="an accronym">&ndash;a</acronym>
+<code>@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr 
title="&Eacute;tude Autonome">&Eacute;&ndash;. ,A.</abbr> (&Eacute;tude 
Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&Eacute;tude 
Autonome">&Eacute;&ndash;. ,A.</abbr>
+<code>@asis{--a}</code> &ndash;a
+<code>@b{--a}</code> <b>&ndash;a</b>
+<code>@cite{--a}</code> <cite>&ndash;a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@ctrl{--a}</code> ^&ndash;a
+<code>@dfn{--a}</code> <em>&ndash;a</em>
+<code>@dmn{--a}</code> &ndash;a
+<code>@email{--a,--b}</code> <a href="mailto:--a";>&ndash;b</a>
+<code>@email{,--b}</code> &ndash;b
+<code>@email{--a}</code> <a href="mailto:--a";>--a</a>
+<code>@emph{--a}</code> <em>&ndash;a</em>
+<code>@env{--a}</code> <code>--a</code>
+<code>@file{--a}</code> <samp>--a</samp>
+<code>@i{--a}</code> <i>&ndash;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>--a {\frac{1}{2}} -</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">&ndash;a</span>
+<code>@samp{--a}</code> &lsquo;<samp>--a</samp>&rsquo;
+<code>@sc{--a}</code> <small>&ndash;A</small>
+<code>@strong{--a}</code> <strong>&ndash;a</strong>
+<code>@t{--a}</code> <tt>--a</tt>
+<code>@sansserif{--a}</code> <span class="sansserif">&ndash;a</span>
+<code>@slanted{--a}</code> <i>&ndash;a</i>
+<code>@titlefont{--a}</code> </p><h1 class="titlefont">&ndash;a</h1>
+<p><code>@indicateurl{--a}</code> &lsquo;<code>--a</code>&rsquo;
+<code>@uref{--a,--b}</code> <a href="--a">&ndash;b</a>
+<code>@uref{--a}</code> <a href="--a">--a</a>
+<code>@uref{,--b}</code> &ndash;b
+<code>@uref{--a,--b,--c}</code> <a href="--a">&ndash;c</a>
+<code>@uref{,--b,--c}</code> &ndash;c
+<code>@uref{--a,,--c}</code> <a href="--a">&ndash;c</a>
+<code>@uref{,,--c}</code> &ndash;c
+<code>@url{--a,--b}</code> <a href="--a">&ndash;b</a>
+<code>@url{--a,}</code> <a href="--a">--a</a>
+<code>@url{,--b}</code> &ndash;b
+<code>@var{--a}</code> <var>&ndash;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&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a<!--
 /@w -->
+<code>@H{a}</code> a''
+<code>@H{--a}</code> &ndash;a''
+<code>@dotaccent{a}</code> &#551;
+<code>@dotaccent{--a}</code> &ndash;a.
+<code>@ringaccent{a}</code> &aring;
+<code>@ringaccent{--a}</code> &ndash;a*
+<code>@tieaccent{a}</code> a[
+<code>@tieaccent{--a}</code> &ndash;a[
+<code>@u{a}</code> &#259;
+<code>@u{--a}</code> &ndash;a(
+<code>@ubaraccent{a}</code> a_
+<code>@ubaraccent{--a}</code> &ndash;a_
+<code>@udotaccent{a}</code> &#7841;
+<code>@udotaccent{--a}</code> .&ndash;a
+<code>@v{a}</code> &#462;
+<code>@v{--a}</code> &ndash;a&lt;
+<code>@,{c}</code> &ccedil;
+<code>@,{--c}</code> &ndash;c,
+<code>@ogonek{a}</code> &#261;
+<code>@ogonek{--a}</code> &ndash;a;
+<code>@footnote{in footnote}</code> <a name="DOCF1" 
href="#FOOT1"><sup>1</sup></a>
+<code>@footnote{in footnote2}</code> <a name="DOCF2" 
href="#FOOT2"><sup>2</sup></a>
+</p>
+<p><code>@image{f--ile}</code> <img src="f--ile.jpg" alt="f--ile">
+<code>@image{f--ile,l--i}</code> <img src="f--ile.jpg" alt="f--ile">
+<code>@image{f--ile,,l--e}</code> <img src="f--ile.jpg" alt="f--ile">
+<code>@image{f--ile,,,alt}</code> <img src="f--ile.jpg" alt="alt">
+<code>@image{f--ile,,,,e-d-xt}</code> <img src="f--ile.e--xt" alt="f--ile">
+<code>@image{f--ile,aze,az,alt,e--xt}</code> <img src="f--ile.e--xt" alt="alt">
+<code>@image{f-ile,aze,,a--lt}</code> <img src="f-ile.jpg" alt="a&ndash;lt">
+<code>@address@hidden@@@.,aze,az,alt,@file{file ext} address@hidden</code> 
<img src="address@hidden ext e--xt}" alt="alt">
+</p>
+<br>
+<br>
+
+<p><code>@clicksequence{click @click{} A}</code> click &rarr; A
+After clickstyle &rArr;
+<code>@clicksequence{click @click{} A}</code> click &rArr; A
+</p>
+<blockquote>
+<p>A quot&mdash;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 &eacute; TeX:</b> The something &eacute; TeX is here.
+</p></blockquote>
+
+<blockquote>
+<p><b>@ at the end of line:</b> A @ at the end of the @quotation line.
+</p></blockquote>
+
+<blockquote>
+<p><b>something, other thing:</b> something, other thing
+</p></blockquote>
+
+<blockquote>
+<p><b>Note, the note:</b> Note, the note
+</p></blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote class="smallquotation">
+<p>A small quot&mdash;ation
+</p></blockquote>
+
+<blockquote class="smallquotation">
+<p><b>Note:</b> A small Note
+</p></blockquote>
+
+<blockquote class="smallquotation">
+<p><b>something, other thing:</b> something, other thing
+</p></blockquote>
+
+<ul>
+<li> i&ndash;temize
+</li></ul>
+
+<ul class="no-bullet">
+<li>+ i&ndash;tem +
+</li></ul>
+
+<ul>
+<li> b&ndash;ullet
+</li></ul>
+
+<ul class="no-bullet">
+<li>- minu&ndash;s
+</li></ul>
+
+<ul class="no-bullet">
+<li> e&ndash;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li><em>after emph</em> e&ndash;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&bull; a&ndash;n itemize line <a 
name="index-copying-index-entry-within-itemize"></a>
+i&ndash;tem 1
+</li><li>&bull; a&ndash;n itemize line i&ndash;tem 2
+</li></ul>
+
+<ol>
+<li> e&ndash;numerate
+</li></ol>
+
+<table>
+<thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
+<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
+<a name="index-copying-index-entry-within-multitable"></a></td></tr>
+<tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</table>
+
+<table>
+<tr><td>truc</td><td>bidule</td></tr>
+</table>
+
+<div class="example">
+<pre class="example">e--xample  some
+   text
+</pre></div>
+
+<div class="smallexample">
+<pre class="smallexample">s--mallexample
+</pre></div>
+
+<div class="display">
+<pre class="display">d&ndash;isplay
+</pre></div>
+
+<div class="smalldisplay">
+<pre class="smalldisplay">s&ndash;malldisplay
+</pre></div>
+
+<div class="lisp">
+<pre class="lisp">l--isp
+</pre></div>
+
+<div class="smalllisp">
+<pre class="smalllisp">s--malllisp
+</pre></div>
+
+<div class="format">
+<pre class="format">f&ndash;ormat
+</pre></div>
+
+<div class="smallformat">
+<pre class="smallformat">s&ndash;mallformat
+</pre></div>
+
+<dl>
+<dt><a name="index-copying-d_002d_002deffn_005fname"></a>c--ategory: 
<strong>d--effn_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;effn
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-de_002d_002dffn_005fname"></a>cate--gory: 
<strong>de--ffn_name</strong> <em>ar--guments </em></dt>
+<dd><p>more args <br> even more so
+def&ndash;fn
+</p></dd></dl>
+ 
+<dl>
+<dt><a name="index-copying-i"></a>fset: <strong><var>i</var></strong> <em>a g
+</em></dt>
+<dd><a name="index-copying-index-entry-within-deffn"></a>
+</dd><dt><a name="index-copying-truc"></a>cmde: <strong>truc</strong> <em>
+</em></dt>
+<dt><a name="index-copying-log-trap"></a>Command: <strong>log trap</strong> 
<em>
+</em></dt>
+<dt><a name="index-copying-log-trap1"></a>Command: <strong>log trap1</strong> 
<em>  
+</em></dt>
+<dt><a name="index-copying-log-trap2"></a>Command: <strong>log trap2</strong> 
<em>
+</em></dt>
+<dt><a name="index-copying-id-ule"></a>cmde: <strong><b>id ule</b></strong> 
<em>truc
+</em></dt>
+<dt><a name="index-copying-id-i-ule"></a>cmde2: <strong><b>id 
&lsquo;<samp>i</samp>&rsquo; ule</b></strong> <em>truc
+</em></dt>
+<dt><b>id &lsquo;<samp>i</samp>&rsquo; ule</b>: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt>aaa: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt><a name="index-copying-machin"></a>: <strong>machin</strong></dt>
+<dt><a name="index-copying-bidule-machin"></a>: <strong>bidule 
machin</strong></dt>
+<dt><a name="index-copying-machin-1"></a>truc: <strong>machin</strong></dt>
+<dt>truc: <strong></strong></dt>
+<dt><a name="index-copying-followed"></a>truc: <strong>followed</strong> 
<em>by a comment
+</em></dt>
+<dt>truc: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt><a name="index-copying-a"></a>truc: <strong>a</strong> <em>b c d e <b>f 
g</b> h i
+</em></dt>
+<dt><a name="index-copying-deffnx"></a>truc: <strong>deffnx</strong> 
<em>before end deffn
+</em></dt>
+</dl>
+
+<dl>
+<dt><a name="index-copying-deffn"></a>empty: <strong>deffn</strong></dt>
+</dl>
+
+<dl>
+<dt><a name="index-copying-deffn-1"></a>empty: <strong>deffn</strong> <em>with 
deffnx
+</em></dt>
+<dt><a name="index-copying-deffnx-1"></a>empty: <strong>deffnx</strong></dt>
+</dl>
+
+<dl>
+<dt><a name="index-copying-i-1"></a>fset: <strong><var>i</var></strong> <em>a g
+</em></dt>
+<dt><a name="index-copying-truc-1"></a>cmde: <strong>truc</strong> <em>
+</em></dt>
+<dd><p>text in def item for second def item
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002defvr_005fname"></a>c--ategory: 
<strong>d--efvr_name</strong></dt>
+<dd><p>d&ndash;efvr
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002deftypefn_005fname"></a>c--ategory: 
<em>t--ype</em> <strong>d--eftypefn_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;eftypefn
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass"></a>c--ategory
 on c--lass: <em>t--ype</em> <strong>d--eftypeop_name</strong> 
<em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;eftypeop
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002deftypevr_005fname"></a>c--ategory: 
<em>t--ype</em> <strong>d--eftypevr_name</strong></dt>
+<dd><p>d&ndash;eftypevr
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002defcv_005fname"></a>c--ategory of 
c--lass: <strong>d--efcv_name</strong></dt>
+<dd><p>d&ndash;efcv
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-copying-d_002d_002defop_005fname-on-c_002d_002dlass"></a>c--ategory 
on c--lass: <strong>d--efop_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efop
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002deftp_005fname"></a>c--ategory: 
<strong>d--eftp_name</strong> <em>a--ttributes...
+</em></dt>
+<dd><p>d&ndash;eftp
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002defun_005fname"></a>Function: 
<strong>d--efun_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efun
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002defmac_005fname"></a>Macro: 
<strong>d--efmac_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efmac
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002defspec_005fname"></a>Special Form: 
<strong>d--efspec_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efspec
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002defvar_005fname"></a>Variable: 
<strong>d--efvar_name</strong> <em>argvar argvar1
+</em></dt>
+<dd><p>d&ndash;efvar
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002defopt_005fname"></a>User Option: 
<strong>d--efopt_name</strong></dt>
+<dd><p>d&ndash;efopt
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002deftypefun_005fname"></a>Function: 
<em>t--ype</em> <strong>d--eftypefun_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;eftypefun
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-copying-d_002d_002deftypevar_005fname"></a>Variable: 
<em>t--ype</em> <strong>d--eftypevar_name</strong></dt>
+<dd><p>d&ndash;eftypevar
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-copying-d_002d_002defivar_005fname-of-c_002d_002dlass"></a>Instance 
Variable of c--lass: <strong>d--efivar_name</strong></dt>
+<dd><p>d&ndash;efivar
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-copying-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"></a>Instance
 Variable of c--lass: <em>t--ype</em> <strong>d--eftypeivar_name</strong></dt>
+<dd><p>d&ndash;eftypeivar
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-copying-d_002d_002defmethod_005fname-on-c_002d_002dlass"></a>Method 
on c--lass: <strong>d--efmethod_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efmethod
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-copying-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"></a>Method
 on c--lass: <em>t--ype</em> <strong>d--eftypemethod_name</strong> 
<em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;eftypemethod
+</p></dd></dl>
+
+<p><code>@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@, 
ma---nual@@}</code> See <a href="file address@hidden">t&mdash;itle@</a> in 
<cite>ma&mdash;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 section <a href="#chapter">chapter</a>.
+<code>@pxref{chapter}</code> see section <a href="#chapter">chapter</a>
+<code>@address@hidden</code> <a href="#s_002d_002dect_002cion">A section</a>
+</p>
+<p><code>@address@hidden, a @comma{} in cross
+ref, a address@hidden in title, a address@hidden in file, a @comma{} in manual 
name }</code>
+<a href="a comma, in file.html#s_002d_002dect_002cion">a comma, in title</a> 
in <cite>a , in manual name</cite>
+</p>
+<p><code>@ref{chapter,cross ref name}</code> <a href="#chapter">cross ref 
name</a>
+<code>@ref{chapter,,title}</code> <a href="#chapter">title</a>
+<code>@ref{chapter,,,file name}</code> <a href="file name.html#chapter">(file 
name)chapter</a>
+<code>@ref{chapter,,,,manual}</code> &lsquo;chapter&rsquo; 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> &lsquo;cross ref 
name&rsquo; 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> &lsquo;title&rsquo; 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> &lsquo;title&rsquo; 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 &lsquo;chapter&rsquo;
+<code>@inforef{chapter, cross ref name}</code> See &lsquo;cross ref name&rsquo;
+<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 &lsquo;node&rsquo;
+<code>@inforef{node, cross ref name}</code> See &lsquo;cross ref name&rsquo;
+<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>@address@hidden, a @comma{} in cross
+ref, a address@hidden in file}</code>
+See <a href="a comma, in file.html#s_002d_002dect_002cion">(a comma, in file)a 
, in cross
+ref</a>
+</p>
+
+<dl compact="compact">
+<dt>a</dt>
+<dd><p>l&ndash;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt>a
+<a name="index-copying-a-2"></a>
+</dt>
+<dt>b
+<a name="index-copying-b-1"></a>
+</dt>
+<dd><p>l&ndash;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt>a
+<a name="index-copying-a-1"></a>
+</dt>
+<dd><a name="index-copying-index-entry-between-item-and-itemx"></a>
+</dd>
+<dt>b
+<a name="index-copying-b"></a>
+</dt>
+<dd><p>l&ndash;ine
+</p></dd>
+</dl>
+
+<table class="cartouche" border="1"><tr><td>
+<p>c&ndash;artouche
+</p></td></tr></table>
+
+<p>g&ndash;roupe
+</p>
+<p align="left">f&ndash;lushleft
+</p>
+<p align="right">f&ndash;lushright
+</p>
+<div align="center">ce&ndash;ntered line
+</div>
+<pre class="verbatim">\input texinfo @c -*-texinfo-*-
+
address@hidden simplest.info
+
address@hidden Top
+
+This is a very simple texi manual @  &lt;&gt;.
+
address@hidden
+</pre>
+<pre class="verbatim">in verbatim ''
+</pre>
+
+html ''
+
+
+
+<a name="majorheading"></a>
+<h1 class="majorheading">majorheading</h1>
+
+<a name="chapheading"></a>
+<h1 class="chapheading">chapheading</h1>
+
+<a name="heading"></a>
+<h2 class="heading">heading</h2>
+
+<a name="subheading"></a>
+<h3 class="subheading">subheading</h3>
+
+<a name="subsubheading"></a>
+<h4 class="subsubheading">subsubheading</h4>
+
+
+<p><code>@acronym{--a,an accronym @comma{} @enddots{}}</code> <acronym 
title="an accronym , ...">&ndash;a</acronym> (an accronym , <small 
class="enddots">...</small>)
+<code>@abbr{@'E--. @comma{}A., @'address@hidden @b{Autonome} }</code> <abbr 
title="&Eacute;tude&ndash;, Autonome">&Eacute;&ndash;. ,A.</abbr> 
(&Eacute;tude&ndash;, <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&Eacute;tude&ndash;, 
Autonome">&Eacute;&ndash;. ,A.</abbr>
+</p>
+<p><code>@address@hidden {\frac{1}{2}}}</code> <em>--a- {\frac{1}{2}}</em>
+</p>
+<p><code>@image{f-ile,,,address@hidden:jk _&quot; %}}</code> <img 
src="f-ile.jpg" alt="altjk _&quot; %@">
+<code>@image{f--ile,aze,az,@verb{:jk _&quot; %@:} @b{in b 
&quot;},e--xt}</code> <img src="f--ile.e--xt" alt="jk _&quot; %@ in b &quot;">
+<code>@address@hidden:jk _&quot; %@:},,,address@hidden:jk _&quot; %@:}}</code> 
<img src="filejk _&quot; address@hidden" alt="altjk _&quot; %@">
+</p>
+
+
+
+<p>Somehow invalid use of @,:<br>
+@, 
+,
+<br>
+@,@&quot;u ,&uuml;
+</p>
+<p>Invalid use of @&rsquo;:<br>
+@&rsquo; 
+'
+<br>
+@&rsquo;@&quot;u '&uuml;
+</p>
+<p>@dotless{truc} truc
address@hidden ij
+<code>@dotless{--a}</code> &ndash;a
+<code>@dotless{a}</code> a
+</p>
+<p>@TeX, but without brace TeX<code>@#</code> #
+</p>
+<p><code>@w{--a}</code> &ndash;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> after emph e&ndash;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&bull; a&ndash;n itemize line i&ndash;tem 1
+</li><li>&bull; a&ndash;n itemize line i&ndash;tem 2
+</li></ul>
+
+<dl>
+<dt>fun: <strong></strong></dt>
+<dt><a name="index-copying-machin-2"></a>truc: <strong>machin</strong> 
<em>bidule chose and 
+</em></dt>
+<dt><a name="index-copying-machin-3"></a>truc: <strong>machin</strong> 
<em>bidule chose and  after
+</em></dt>
+<dt><a name="index-copying-machin-4"></a>truc: <strong>machin</strong> 
<em>bidule chose and </em></dt>
+<dt><a name="index-copying-machin-5"></a>truc: <strong>machin</strong> 
<em>bidule chose and and after</em></dt>
+<dt><a name="index-copying-followed-1"></a>truc: <strong>followed</strong> 
<em>by a comment
+</em></dt>
+<dd><p>Various deff lines
+</p></dd><dt><a name="index-copying-after"></a>truc: <strong>after</strong> 
<em>a deff item
+</em></dt>
+</dl>
+
+<p><code>@ref{node}</code> &lsquo;node&rsquo;
+</p>
+<p><code>@ref{,cross ref name}</code> &lsquo;cross ref name&rsquo;
+<code>@ref{,,title}</code> &lsquo;title&rsquo;
+<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> &lsquo;cross ref name&rsquo;
+<code>@ref{node,,title}</code> &lsquo;title&rsquo;
+<code>@ref{node,,,file name}</code> <a href="file name.html#node">(file 
name)node</a>
+<code>@ref{node,,,,manual}</code> &lsquo;node&rsquo; in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,}</code> &lsquo;title&rsquo;
+<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> &lsquo;cross ref name&rsquo; 
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> &lsquo;title&rsquo; 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> &lsquo;title&rsquo; 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> &lsquo;title&rsquo;
+<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> &lsquo;cross ref name&rsquo; 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> &lsquo;title&rsquo; 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> &lsquo;title&rsquo; 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 &lsquo;cross ref name&rsquo;
+<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;
+&rsquo;
+&lsquo;
+</p>
+<p>&ldquo;simple-double&ndash;three&mdash;four&mdash;-&rdquo;<br>
+code: <code>``simple-double--three---four----''</code> <br>
+asis: &ldquo;simple-double&ndash;three&mdash;four&mdash;-&rdquo; <br>
+strong: 
<strong>&ldquo;simple-double&ndash;three&mdash;four&mdash;-&rdquo;</strong> <br>
+kbd: <kbd>``simple-double--three---four----''</kbd> <br>
+</p>
+<p>&lsquo;<!-- /@w -->&lsquo;simple-double-<!-- /@w 
-->-three&mdash;four&mdash;-&rsquo;<!-- /@w -->&rsquo;<br>
+</p>
+<a name="index-_002d_002doption"></a>
+<a name="index-_0060_0060"></a>
+<a name="index-_0060_0060-2"></a>
+<a name="index-_002d_002dfoption"></a>
+
+<p>@&quot;u &uuml; 
+@&quot;{U} &Uuml; 
address@hidden &ntilde;
address@hidden &acirc;
+@&rsquo;e &eacute;
address@hidden &#333;
+@&lsquo;i &igrave;
+@&rsquo;{e} &eacute;
+@&rsquo;address@hidden &iacute; 
address@hidden i
address@hidden j
+@&lsquo;address@hidden &#274;` 
address@hidden &#322;
+@,{@&rsquo;C} &#262;,
+@,c &ccedil;
+@,c@&quot;u &ccedil;&uuml; <br>
+</p>
+<p>@* <br>
+@ followed by a space
+&nbsp;
+@ followed by a tab
+&nbsp;
+@ followed by a new line
+
+<code>@-</code> 
+<code>@|</code> 
+<code>@:</code> 
+<code>@!</code> !
+<code>@?</code> ?
+<code>@.</code> .
+<code>@@</code> @
+<code>@}</code> }
+<code>@{</code> {
+<code>@/</code> 
+</p>
+<p>foo vs. bar. 
+colon :And something else.
+semi colon ;.
+And ? ?.
+Now ! !@
+but , ,
+</p>
+<p>@TeX TeX
address@hidden LaTeX
address@hidden &bull;
address@hidden &copy;
address@hidden &hellip;
address@hidden <small class="enddots">...</small>
address@hidden &equiv;
address@hidden error&rarr;
address@hidden &rarr;
address@hidden -
address@hidden &lowast;
address@hidden -|
address@hidden &rArr;
address@hidden a sunny day
address@hidden &aring;
address@hidden &Aring;
address@hidden &aelig;
address@hidden &oelig;
address@hidden &AElig;
address@hidden &OElig;
address@hidden &oslash;
address@hidden &Oslash;
address@hidden &szlig;
address@hidden &#322;
address@hidden &#321;
address@hidden &ETH;
address@hidden &THORN;
address@hidden &eth;
address@hidden &thorn;
address@hidden &iexcl;
address@hidden &iquest;
address@hidden &pound;
address@hidden &reg;
address@hidden &ordf;
address@hidden &ordm;
address@hidden ,
address@hidden &ldquo;
address@hidden &rdquo;
address@hidden &lsquo;
address@hidden &rsquo;
address@hidden &bdquo;
address@hidden &sbquo;
address@hidden &laquo;
address@hidden &raquo;
address@hidden &laquo;
address@hidden &raquo;
address@hidden &lsaquo;
address@hidden &rsaquo;
address@hidden &deg;
address@hidden &euro;
address@hidden &rarr;
address@hidden &le;
address@hidden &ge;
+</p>
+<p><code>@acronym{--a,an accronym}</code> <acronym title="an 
accronym">&ndash;a</acronym> (an accronym)
+<code>@acronym{--a}</code> <acronym title="an accronym">&ndash;a</acronym>
+<code>@abbr{@'E--. @comma{}A., @'Etude Autonome }</code> <abbr 
title="&Eacute;tude Autonome">&Eacute;&ndash;. ,A.</abbr> (&Eacute;tude 
Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&Eacute;tude 
Autonome">&Eacute;&ndash;. ,A.</abbr>
+<code>@asis{--a}</code> &ndash;a
+<code>@b{--a}</code> <b>&ndash;a</b>
+<code>@cite{--a}</code> <cite>&ndash;a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@ctrl{--a}</code> ^&ndash;a
+<code>@dfn{--a}</code> <em>&ndash;a</em>
+<code>@dmn{--a}</code> &ndash;a
+<code>@email{--a,--b}</code> <a href="mailto:--a";>&ndash;b</a>
+<code>@email{,--b}</code> &ndash;b
+<code>@email{--a}</code> <a href="mailto:--a";>--a</a>
+<code>@emph{--a}</code> <em>&ndash;a</em>
+<code>@env{--a}</code> <code>--a</code>
+<code>@file{--a}</code> <samp>--a</samp>
+<code>@i{--a}</code> <i>&ndash;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>--a {\frac{1}{2}} -</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">&ndash;a</span>
+<code>@samp{--a}</code> &lsquo;<samp>--a</samp>&rsquo;
+<code>@sc{--a}</code> <small>&ndash;A</small>
+<code>@strong{--a}</code> <strong>&ndash;a</strong>
+<code>@t{--a}</code> <tt>--a</tt>
+<code>@sansserif{--a}</code> <span class="sansserif">&ndash;a</span>
+<code>@slanted{--a}</code> <i>&ndash;a</i>
+<code>@titlefont{--a}</code> </p><h1 class="titlefont">&ndash;a</h1>
+<p><code>@indicateurl{--a}</code> &lsquo;<code>--a</code>&rsquo;
+<code>@uref{--a,--b}</code> <a href="--a">&ndash;b</a>
+<code>@uref{--a}</code> <a href="--a">--a</a>
+<code>@uref{,--b}</code> &ndash;b
+<code>@uref{--a,--b,--c}</code> <a href="--a">&ndash;c</a>
+<code>@uref{,--b,--c}</code> &ndash;c
+<code>@uref{--a,,--c}</code> <a href="--a">&ndash;c</a>
+<code>@uref{,,--c}</code> &ndash;c
+<code>@url{--a,--b}</code> <a href="--a">&ndash;b</a>
+<code>@url{--a,}</code> <a href="--a">--a</a>
+<code>@url{,--b}</code> &ndash;b
+<code>@var{--a}</code> <var>&ndash;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&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a&nbsp;a<!--
 /@w -->
+<code>@H{a}</code> a''
+<code>@H{--a}</code> &ndash;a''
+<code>@dotaccent{a}</code> &#551;
+<code>@dotaccent{--a}</code> &ndash;a.
+<code>@ringaccent{a}</code> &aring;
+<code>@ringaccent{--a}</code> &ndash;a*
+<code>@tieaccent{a}</code> a[
+<code>@tieaccent{--a}</code> &ndash;a[
+<code>@u{a}</code> &#259;
+<code>@u{--a}</code> &ndash;a(
+<code>@ubaraccent{a}</code> a_
+<code>@ubaraccent{--a}</code> &ndash;a_
+<code>@udotaccent{a}</code> &#7841;
+<code>@udotaccent{--a}</code> .&ndash;a
+<code>@v{a}</code> &#462;
+<code>@v{--a}</code> &ndash;a&lt;
+<code>@,{c}</code> &ccedil;
+<code>@,{--c}</code> &ndash;c,
+<code>@ogonek{a}</code> &#261;
+<code>@ogonek{--a}</code> &ndash;a;
+<code>@footnote{in footnote}</code> <a name="DOCF5" 
href="#FOOT5"><sup>3</sup></a>
+<code>@footnote{in footnote2}</code> <a name="DOCF6" 
href="#FOOT6"><sup>4</sup></a>
+</p>
+<p><code>@image{f--ile}</code> <img src="f--ile.jpg" alt="f--ile">
+<code>@image{f--ile,l--i}</code> <img src="f--ile.jpg" alt="f--ile">
+<code>@image{f--ile,,l--e}</code> <img src="f--ile.jpg" alt="f--ile">
+<code>@image{f--ile,,,alt}</code> <img src="f--ile.jpg" alt="alt">
+<code>@image{f--ile,,,,e-d-xt}</code> <img src="f--ile.e--xt" alt="f--ile">
+<code>@image{f--ile,aze,az,alt,e--xt}</code> <img src="f--ile.e--xt" alt="alt">
+<code>@image{f-ile,aze,,a--lt}</code> <img src="f-ile.jpg" alt="a&ndash;lt">
+<code>@address@hidden@@@.,aze,az,alt,@file{file ext} address@hidden</code> 
<img src="address@hidden ext e--xt}" alt="alt">
+</p>
+<br>
+<br>
+
+<p><code>@clicksequence{click @click{} A}</code> click &rarr; A
+After clickstyle &rArr;
+<code>@clicksequence{click @click{} A}</code> click &rArr; A
+</p>
+<blockquote>
+<p>A quot&mdash;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 &eacute; TeX:</b> The something &eacute; TeX is here.
+</p></blockquote>
+
+<blockquote>
+<p><b>@ at the end of line:</b> A @ at the end of the @quotation line.
+</p></blockquote>
+
+<blockquote>
+<p><b>something, other thing:</b> something, other thing
+</p></blockquote>
+
+<blockquote>
+<p><b>Note, the note:</b> Note, the note
+</p></blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote>
+</blockquote>
+
+<blockquote class="smallquotation">
+<p>A small quot&mdash;ation
+</p></blockquote>
+
+<blockquote class="smallquotation">
+<p><b>Note:</b> A small Note
+</p></blockquote>
+
+<blockquote class="smallquotation">
+<p><b>something, other thing:</b> something, other thing
+</p></blockquote>
+
+<ul>
+<li> i&ndash;temize
+</li></ul>
+
+<ul class="no-bullet">
+<li>+ i&ndash;tem +
+</li></ul>
+
+<ul>
+<li> b&ndash;ullet
+</li></ul>
+
+<ul class="no-bullet">
+<li>- minu&ndash;s
+</li></ul>
+
+<ul class="no-bullet">
+<li> e&ndash;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li><em>after emph</em> e&ndash;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&bull; a&ndash;n itemize line <a 
name="index-index-entry-within-itemize"></a>
+i&ndash;tem 1
+</li><li>&bull; a&ndash;n itemize line i&ndash;tem 2
+</li></ul>
+
+<ol>
+<li> e&ndash;numerate
+</li></ol>
+
+<table>
+<thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
+<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
+<a name="index-index-entry-within-multitable"></a></td></tr>
+<tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</table>
+
+<table>
+<tr><td>truc</td><td>bidule</td></tr>
+</table>
+
+<div class="example">
+<pre class="example">e--xample  some
+   text
+</pre></div>
+
+<div class="smallexample">
+<pre class="smallexample">s--mallexample
+</pre></div>
+
+<div class="display">
+<pre class="display">d&ndash;isplay
+</pre></div>
+
+<div class="smalldisplay">
+<pre class="smalldisplay">s&ndash;malldisplay
+</pre></div>
+
+<div class="lisp">
+<pre class="lisp">l--isp
+</pre></div>
+
+<div class="smalllisp">
+<pre class="smalllisp">s--malllisp
+</pre></div>
+
+<div class="format">
+<pre class="format">f&ndash;ormat
+</pre></div>
+
+<div class="smallformat">
+<pre class="smallformat">s&ndash;mallformat
+</pre></div>
+
+<dl>
+<dt><a name="index-d_002d_002deffn_005fname"></a>c--ategory: 
<strong>d--effn_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;effn
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-de_002d_002dffn_005fname"></a>cate--gory: 
<strong>de--ffn_name</strong> <em>ar--guments </em></dt>
+<dd><p>more args <br> even more so
+def&ndash;fn
+</p></dd></dl>
+ 
+<dl>
+<dt><a name="index-i"></a>fset: <strong><var>i</var></strong> <em>a g
+</em></dt>
+<dd><a name="index-index-entry-within-deffn"></a>
+</dd><dt><a name="index-truc"></a>cmde: <strong>truc</strong> <em>
+</em></dt>
+<dt><a name="index-log-trap"></a>Command: <strong>log trap</strong> <em>
+</em></dt>
+<dt><a name="index-log-trap1"></a>Command: <strong>log trap1</strong> <em>  
+</em></dt>
+<dt><a name="index-log-trap2"></a>Command: <strong>log trap2</strong> <em>
+</em></dt>
+<dt><a name="index-id-ule"></a>cmde: <strong><b>id ule</b></strong> <em>truc
+</em></dt>
+<dt><a name="index-id-i-ule"></a>cmde2: <strong><b>id 
&lsquo;<samp>i</samp>&rsquo; ule</b></strong> <em>truc
+</em></dt>
+<dt><b>id &lsquo;<samp>i</samp>&rsquo; ule</b>: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt>aaa: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt><a name="index-machin"></a>: <strong>machin</strong></dt>
+<dt><a name="index-bidule-machin"></a>: <strong>bidule machin</strong></dt>
+<dt><a name="index-machin-1"></a>truc: <strong>machin</strong></dt>
+<dt>truc: <strong></strong></dt>
+<dt><a name="index-followed"></a>truc: <strong>followed</strong> <em>by a 
comment
+</em></dt>
+<dt>truc: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt><a name="index-a-1"></a>truc: <strong>a</strong> <em>b c d e <b>f g</b> h i
+</em></dt>
+<dt><a name="index-deffnx"></a>truc: <strong>deffnx</strong> <em>before end 
deffn
+</em></dt>
+</dl>
+
+<dl>
+<dt><a name="index-deffn"></a>empty: <strong>deffn</strong></dt>
+</dl>
+
+<dl>
+<dt><a name="index-deffn-1"></a>empty: <strong>deffn</strong> <em>with deffnx
+</em></dt>
+<dt><a name="index-deffnx-1"></a>empty: <strong>deffnx</strong></dt>
+</dl>
+
+<dl>
+<dt><a name="index-i-1"></a>fset: <strong><var>i</var></strong> <em>a g
+</em></dt>
+<dt><a name="index-truc-1"></a>cmde: <strong>truc</strong> <em>
+</em></dt>
+<dd><p>text in def item for second def item
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-d_002d_002defvr_005fname"></a>c--ategory: 
<strong>d--efvr_name</strong></dt>
+<dd><p>d&ndash;efvr
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-d_002d_002deftypefn_005fname"></a>c--ategory: 
<em>t--ype</em> <strong>d--eftypefn_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;eftypefn
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-d_002d_002deftypeop_005fname-on-c_002d_002dlass"></a>c--ategory on 
c--lass: <em>t--ype</em> <strong>d--eftypeop_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;eftypeop
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-d_002d_002deftypevr_005fname"></a>c--ategory: 
<em>t--ype</em> <strong>d--eftypevr_name</strong></dt>
+<dd><p>d&ndash;eftypevr
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-d_002d_002defcv_005fname"></a>c--ategory of c--lass: 
<strong>d--efcv_name</strong></dt>
+<dd><p>d&ndash;efcv
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-d_002d_002defop_005fname-on-c_002d_002dlass"></a>c--ategory 
on c--lass: <strong>d--efop_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efop
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-d_002d_002deftp_005fname"></a>c--ategory: 
<strong>d--eftp_name</strong> <em>a--ttributes...
+</em></dt>
+<dd><p>d&ndash;eftp
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-d_002d_002defun_005fname"></a>Function: 
<strong>d--efun_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efun
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-d_002d_002defmac_005fname"></a>Macro: 
<strong>d--efmac_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efmac
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-d_002d_002defspec_005fname"></a>Special Form: 
<strong>d--efspec_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efspec
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-d_002d_002defvar_005fname"></a>Variable: 
<strong>d--efvar_name</strong> <em>argvar argvar1
+</em></dt>
+<dd><p>d&ndash;efvar
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-d_002d_002defopt_005fname"></a>User Option: 
<strong>d--efopt_name</strong></dt>
+<dd><p>d&ndash;efopt
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-d_002d_002deftypefun_005fname"></a>Function: 
<em>t--ype</em> <strong>d--eftypefun_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;eftypefun
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-d_002d_002deftypevar_005fname"></a>Variable: 
<em>t--ype</em> <strong>d--eftypevar_name</strong></dt>
+<dd><p>d&ndash;eftypevar
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-d_002d_002defivar_005fname-of-c_002d_002dlass"></a>Instance 
Variable of c--lass: <strong>d--efivar_name</strong></dt>
+<dd><p>d&ndash;efivar
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"></a>Instance 
Variable of c--lass: <em>t--ype</em> <strong>d--eftypeivar_name</strong></dt>
+<dd><p>d&ndash;eftypeivar
+</p></dd></dl>
+
+<dl>
+<dt><a name="index-d_002d_002defmethod_005fname-on-c_002d_002dlass"></a>Method 
on c--lass: <strong>d--efmethod_name</strong> <em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;efmethod
+</p></dd></dl>
+
+<dl>
+<dt><a 
name="index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"></a>Method on 
c--lass: <em>t--ype</em> <strong>d--eftypemethod_name</strong> 
<em>a--rguments...
+</em></dt>
+<dd><p>d&ndash;eftypemethod
+</p></dd></dl>
+
+<p><code>@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@, 
ma---nual@@}</code> See <a href="file address@hidden">t&mdash;itle@</a> in 
<cite>ma&mdash;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 section <a href="#chapter">chapter</a>.
+<code>@pxref{chapter}</code> see section <a href="#chapter">chapter</a>
+<code>@address@hidden</code> <a href="#s_002d_002dect_002cion">A section</a>
+</p>
+<p><code>@address@hidden, a @comma{} in cross
+ref, a address@hidden in title, a address@hidden in file, a @comma{} in manual 
name }</code>
+<a href="a comma, in file.html#s_002d_002dect_002cion">a comma, in title</a> 
in <cite>a , in manual name</cite>
+</p>
+<p><code>@ref{chapter,cross ref name}</code> <a href="#chapter">cross ref 
name</a>
+<code>@ref{chapter,,title}</code> <a href="#chapter">title</a>
+<code>@ref{chapter,,,file name}</code> <a href="file name.html#chapter">(file 
name)chapter</a>
+<code>@ref{chapter,,,,manual}</code> &lsquo;chapter&rsquo; 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> &lsquo;cross ref 
name&rsquo; 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> &lsquo;title&rsquo; 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> &lsquo;title&rsquo; 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 &lsquo;chapter&rsquo;
+<code>@inforef{chapter, cross ref name}</code> See &lsquo;cross ref name&rsquo;
+<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 &lsquo;node&rsquo;
+<code>@inforef{node, cross ref name}</code> See &lsquo;cross ref name&rsquo;
+<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>@address@hidden, a @comma{} in cross
+ref, a address@hidden in file}</code>
+See <a href="a comma, in file.html#s_002d_002dect_002cion">(a comma, in file)a 
, in cross
+ref</a>
+</p>
+
+<dl compact="compact">
+<dt>a</dt>
+<dd><p>l&ndash;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt>a
+<a name="index-a-6"></a>
+</dt>
+<dt>b
+<a name="index-b-2"></a>
+</dt>
+<dd><p>l&ndash;ine
+</p></dd>
+</dl>
+
+<dl compact="compact">
+<dt>a
+<a name="index-a-2"></a>
+</dt>
+<dd><a name="index-index-entry-between-item-and-itemx"></a>
+</dd>
+<dt>b
+<a name="index-b"></a>
+</dt>
+<dd><p>l&ndash;ine
+</p></dd>
+</dl>
+
+<table class="cartouche" border="1"><tr><td>
+<p>c&ndash;artouche
+</p></td></tr></table>
+
+<p>g&ndash;roupe
+</p>
+<p align="left">f&ndash;lushleft
+</p>
+<p align="right">f&ndash;lushright
+</p>
+<div align="center">ce&ndash;ntered line
+</div>
+<pre class="verbatim">\input texinfo @c -*-texinfo-*-
+
address@hidden simplest.info
+
address@hidden Top
+
+This is a very simple texi manual @  &lt;&gt;.
+
address@hidden
+</pre>
+<pre class="verbatim">in verbatim ''
+</pre>
+
+html ''
+
+
+
+<a name="majorheading-1"></a>
+<h1 class="majorheading">majorheading</h1>
+
+<a name="chapheading-1"></a>
+<h1 class="chapheading">chapheading</h1>
+
+<a name="heading-1"></a>
+<h2 class="heading">heading</h2>
+
+<a name="subheading-1"></a>
+<h3 class="subheading">subheading</h3>
+
+<a name="subsubheading-1"></a>
+<h4 class="subsubheading">subsubheading</h4>
+
+
+<p><code>@acronym{--a,an accronym @comma{} @enddots{}}</code> <acronym 
title="an accronym , ...">&ndash;a</acronym> (an accronym , <small 
class="enddots">...</small>)
+<code>@abbr{@'E--. @comma{}A., @'address@hidden @b{Autonome} }</code> <abbr 
title="&Eacute;tude&ndash;, Autonome">&Eacute;&ndash;. ,A.</abbr> 
(&Eacute;tude&ndash;, <b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&Eacute;tude&ndash;, 
Autonome">&Eacute;&ndash;. ,A.</abbr>
+</p>
+<p><code>@address@hidden {\frac{1}{2}}}</code> <em>--a- {\frac{1}{2}}</em>
+</p>
+<p><code>@image{f-ile,,,address@hidden:jk _&quot; %}}</code> <img 
src="f-ile.jpg" alt="altjk _&quot; %@">
+<code>@image{f--ile,aze,az,@verb{:jk _&quot; %@:} @b{in b 
&quot;},e--xt}</code> <img src="f--ile.e--xt" alt="jk _&quot; %@ in b &quot;">
+<code>@address@hidden:jk _&quot; %@:},,,address@hidden:jk _&quot; %@:}}</code> 
<img src="filejk _&quot; address@hidden" alt="altjk _&quot; %@">
+</p>
+
+
+
+<p>Somehow invalid use of @,:<br>
+@, 
+,
+<br>
+@,@&quot;u ,&uuml;
+</p>
+<p>Invalid use of @&rsquo;:<br>
+@&rsquo; 
+'
+<br>
+@&rsquo;@&quot;u '&uuml;
+</p>
+<p>@dotless{truc} truc
address@hidden ij
+<code>@dotless{--a}</code> &ndash;a
+<code>@dotless{a}</code> a
+</p>
+<p>@TeX, but without brace TeX<code>@#</code> #
+</p>
+<p><code>@w{--a}</code> &ndash;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> after emph e&ndash;mph item
+</li></ul>
+
+<ul class="no-bullet">
+<li>&bull; a&ndash;n itemize line i&ndash;tem 1
+</li><li>&bull; a&ndash;n itemize line i&ndash;tem 2
+</li></ul>
+
+<dl>
+<dt>fun: <strong></strong></dt>
+<dt><a name="index-machin-2"></a>truc: <strong>machin</strong> <em>bidule 
chose and 
+</em></dt>
+<dt><a name="index-machin-3"></a>truc: <strong>machin</strong> <em>bidule 
chose and  after
+</em></dt>
+<dt><a name="index-machin-4"></a>truc: <strong>machin</strong> <em>bidule 
chose and </em></dt>
+<dt><a name="index-machin-5"></a>truc: <strong>machin</strong> <em>bidule 
chose and and after</em></dt>
+<dt><a name="index-followed-1"></a>truc: <strong>followed</strong> <em>by a 
comment
+</em></dt>
+<dd><p>Various deff lines
+</p></dd><dt><a name="index-after"></a>truc: <strong>after</strong> <em>a deff 
item
+</em></dt>
+</dl>
+
+<p><code>@ref{node}</code> &lsquo;node&rsquo;
+</p>
+<p><code>@ref{,cross ref name}</code> &lsquo;cross ref name&rsquo;
+<code>@ref{,,title}</code> &lsquo;title&rsquo;
+<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> &lsquo;cross ref name&rsquo;
+<code>@ref{node,,title}</code> &lsquo;title&rsquo;
+<code>@ref{node,,,file name}</code> <a href="file name.html#node">(file 
name)node</a>
+<code>@ref{node,,,,manual}</code> &lsquo;node&rsquo; in <cite>manual</cite>
+<code>@ref{node,cross ref name,title,}</code> &lsquo;title&rsquo;
+<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> &lsquo;cross ref name&rsquo; 
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> &lsquo;title&rsquo; 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> &lsquo;title&rsquo; 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> &lsquo;title&rsquo;
+<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> &lsquo;cross ref name&rsquo; 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> &lsquo;title&rsquo; 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> &lsquo;title&rsquo; 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 &lsquo;cross ref name&rsquo;
+<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 -->'
+
+
+<a name="index-_002d_002doption-1"></a><a name="index-_0060_0060-1"></a><a 
name="index-_0060_0060-3"></a><a name="index-_002d_002dfoption-1"></a>
+@&quot;u &uuml; 
+@&quot;{U} &Uuml; 
address@hidden &ntilde;
address@hidden &acirc;
+@'e &eacute;
address@hidden &#333;
address@hidden &igrave;
+@'{e} &eacute;
+@'address@hidden &iacute; 
address@hidden i
address@hidden j
address@hidden@=E} &#274;` 
address@hidden &#322;
+@,{@'C} &#262;,
+@,c &ccedil;
+@,c@&quot;u &ccedil;&uuml; 
+
+
address@hidden 
+
+@ followed by a space
+&nbsp;
+@ followed by a tab
+&nbsp;
+@ followed by a new line
+
+<code>@-</code> 
+<code>@|</code> 
+<code>@:</code> 
+<code>@!</code> !
+<code>@?</code> ?
+<code>@.</code> .
+<code>@@</code> @
+<code>@}</code> }
+<code>@{</code> {
+<code>@/</code> 
+
+foo vs. bar. 
+colon :And something else.
+semi colon ;.
+And ? ?.
+Now ! !@
+but , ,
+
address@hidden TeX
address@hidden LaTeX
address@hidden &bull;
address@hidden &copy;
address@hidden &hellip;
address@hidden ...
address@hidden &equiv;
address@hidden error&rarr;
address@hidden &rarr;
address@hidden -
address@hidden &lowast;
address@hidden -|
address@hidden &rArr;
address@hidden a sunny day
address@hidden &aring;
address@hidden &Aring;
address@hidden &aelig;
address@hidden &oelig;
address@hidden &AElig;
address@hidden &OElig;
address@hidden &oslash;
address@hidden &Oslash;
address@hidden &szlig;
address@hidden &#322;
address@hidden &#321;
address@hidden &ETH;
address@hidden &THORN;
address@hidden &eth;
address@hidden &thorn;
address@hidden &iexcl;
address@hidden &iquest;
address@hidden &pound;
address@hidden &reg;
address@hidden &ordf;
address@hidden &ordm;
address@hidden ,
address@hidden &ldquo;
address@hidden &rdquo;
address@hidden &lsquo;
address@hidden &rsquo;
address@hidden &bdquo;
address@hidden &sbquo;
address@hidden &laquo;
address@hidden &raquo;
address@hidden &laquo;
address@hidden &raquo;
address@hidden &lsaquo;
address@hidden &rsaquo;
address@hidden &deg;
address@hidden &euro;
address@hidden &rarr;
address@hidden &le;
address@hidden &ge;
+
+<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="&Eacute;tude Autonome">&Eacute;--. ,A.</abbr> (&Eacute;tude Autonome)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&Eacute;tude 
Autonome">&Eacute;--. ,A.</abbr>
+<code>@asis{--a}</code> --a
+<code>@b{--a}</code> <b>&ndash;a</b>
+<code>@cite{--a}</code> <cite>--a</cite>
+<code>@code{--a}</code> <code>--a</code>
+<code>@command{--a}</code> <code>--a</code>
+<code>@ctrl{--a}</code> ^--a
+<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>&ndash;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>--a {\frac{1}{2}} -</em>
+<code>@option{--a}</code> <samp>--a</samp>
+<code>@r{--a}</code> <span class="roman">&ndash;a</span>
+<code>@samp{--a}</code> &lsquo;<samp>--a</samp>&rsquo;
+<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">&ndash;a</span>
+<code>@slanted{--a}</code> <i>&ndash;a</i>
+<code>@titlefont{--a}</code> </pre><h1 class="titlefont">--a</h1><pre 
class="example">
+<code>@indicateurl{--a}</code> &lsquo;<code>--a</code>&rsquo;
+<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''
+<code>@H{--a}</code> --a''
+<code>@dotaccent{a}</code> &#551;
+<code>@dotaccent{--a}</code> --a.
+<code>@ringaccent{a}</code> &aring;
+<code>@ringaccent{--a}</code> --a*
+<code>@tieaccent{a}</code> a[
+<code>@tieaccent{--a}</code> --a[
+<code>@u{a}</code> &#259;
+<code>@u{--a}</code> --a(
+<code>@ubaraccent{a}</code> a_
+<code>@ubaraccent{--a}</code> --a_
+<code>@udotaccent{a}</code> &#7841;
+<code>@udotaccent{--a}</code> .--a
+<code>@v{a}</code> &#462;
+<code>@v{--a}</code> --a&lt;
+<code>@,{c}</code> &ccedil;
+<code>@,{--c}</code> --c,
+<code>@ogonek{a}</code> &#261;
+<code>@ogonek{--a}</code> --a;
+<code>@footnote{in footnote}</code> <a name="DOCF7" href="#FOOT7">(5)</a>
+<code>@footnote{in footnote2}</code> <a name="DOCF8" href="#FOOT8">(6)</a>
+
+<code>@image{f--ile}</code> [ f--ile ]
+<code>@image{f--ile,l--i}</code> [ f--ile ]
+<code>@image{f--ile,,l--e}</code> [ f--ile ]
+<code>@image{f--ile,,,alt}</code> [ alt ]
+<code>@image{f--ile,,,,e-d-xt}</code> [ f--ile ]
+<code>@image{f--ile,aze,az,alt,e--xt}</code> [ alt ]
+<code>@image{f-ile,aze,,a--lt}</code> [ a--lt ]
+<code>@address@hidden@@@.,aze,az,alt,@file{file ext} address@hidden</code> [ 
alt ]
+
+
+
+
+<code>@clicksequence{click @click{} A}</code> click &rarr; A
+After clickstyle &rArr;
+<code>@clicksequence{click @click{} A}</code> click &rArr; A
+
+</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 &eacute; TeX:</b> The something &eacute; TeX 
is here.
+</pre></blockquote>
+<pre class="example">
+</pre><blockquote>
+<pre class="example"><b>@ at the end of line:</b> A @ at the end of the 
@quotation line.
+</pre></blockquote>
+<pre class="example">
+</pre><blockquote>
+<pre class="example"><b>something, other thing:</b> something, other thing
+</pre></blockquote>
+<pre class="example">
+</pre><blockquote>
+<pre class="example"><b>Note, the note:</b> Note, the note
+</pre></blockquote>
+<pre class="example">
+</pre><blockquote>
+</blockquote>
+<pre class="example">
+</pre><blockquote>
+</blockquote>
+<pre class="example">
+</pre><blockquote>
+</blockquote>
+<pre class="example">
+</pre><blockquote>
+</blockquote>
+<pre class="example">
+</pre><blockquote class="smallquotation">
+<pre class="example">A small quot---ation
+</pre></blockquote>
+<pre class="example">
+</pre><blockquote class="smallquotation">
+<pre class="example"><b>Note:</b> A small Note
+</pre></blockquote>
+<pre class="example">
+</pre><blockquote class="smallquotation">
+<pre class="example"><b>something, other thing:</b> something, other thing
+</pre></blockquote>
+<pre class="example">
+</pre><ul>
+<li> <pre class="example">i--temize
+</pre></li></ul>
+<pre class="example">
+</pre><ul class="no-bullet">
+<li>+ <pre class="example">i--tem +
+</pre></li></ul>
+<pre class="example">
+</pre><ul>
+<li> <pre class="example">b--ullet
+</pre></li></ul>
+<pre class="example">
+</pre><ul class="no-bullet">
+<li>- <pre class="example">minu--s
+</pre></li></ul>
+<pre class="example">
+</pre><ul class="no-bullet">
+<li> <pre class="example">e--mph item
+</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>&bull; a&ndash;n itemize line <pre class="example"><a 
name="index-index-entry-within-itemize-1"></a>i--tem 1
+</pre></li><li>&bull; a&ndash;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><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>
+<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
+<a name="index-index-entry-within-multitable-1"></a></pre></td></tr>
+<tr><td width="40%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</table>
+<pre class="example">
+</pre><table>
+<tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+</table>
+<pre class="example">
+</pre><div class="example">
+<pre class="example">e--xample  some
+   text
+</pre></div>
+<pre class="example">
+</pre><div class="smallexample">
+<pre class="smallexample">s--mallexample
+</pre></div>
+<pre class="example">
+</pre><div class="display">
+<pre class="example">d--isplay
+</pre></div>
+<pre class="example">
+</pre><div class="smalldisplay">
+<pre class="example">s--malldisplay
+</pre></div>
+<pre class="example">
+</pre><div class="lisp">
+<pre class="lisp">l--isp
+</pre></div>
+<pre class="example">
+</pre><div class="smalllisp">
+<pre class="smalllisp">s--malllisp
+</pre></div>
+<pre class="example">
+</pre><div class="format">
+<pre class="example">f--ormat
+</pre></div>
+<pre class="example">
+</pre><div class="smallformat">
+<pre class="example">s--mallformat
+</pre></div>
+<pre class="example">
+</pre><dl>
+<dt><a name="index-d_002d_002deffn_005fname-1"></a>c--ategory: 
<strong>d--effn_name</strong> <em>a--rguments...
+</em></dt>
+<dd><pre class="example">d--effn
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a name="index-de_002d_002dffn_005fname-1"></a>cate--gory: 
<strong>de--ffn_name</strong> <em>ar--guments </em></dt>
+<dd><pre class="example">   more args 
+ even more so
+def--fn
+</pre></dd></dl>
+<pre class="example"> 
+</pre><dl>
+<dt><a name="index-i-2"></a>fset: <strong><var>i</var></strong> <em>a g
+</em></dt>
+<dd><pre class="example"><a 
name="index-index-entry-within-deffn-1"></a></pre></dd><dt><a 
name="index-truc-2"></a>cmde: <strong>truc</strong> <em>
+</em></dt>
+<dt><a name="index-log-trap-1"></a>Command: <strong>log trap</strong> <em>
+</em></dt>
+<dt><a name="index-log-trap1-1"></a>Command: <strong>log trap1</strong> <em>  
+</em></dt>
+<dt><a name="index-log-trap2-1"></a>Command: <strong>log trap2</strong> <em>
+</em></dt>
+<dt><a name="index-id-ule-1"></a>cmde: <strong><b>id ule</b></strong> <em>truc
+</em></dt>
+<dt><a name="index-id-i-ule-1"></a>cmde2: <strong><b>id 
&lsquo;<samp>i</samp>&rsquo; ule</b></strong> <em>truc
+</em></dt>
+<dt><b>id &lsquo;<samp>i</samp>&rsquo; ule</b>: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt>aaa: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt><a name="index-machin-6"></a>: <strong>machin</strong></dt>
+<dt><a name="index-bidule-machin-1"></a>: <strong>bidule machin</strong></dt>
+<dt><a name="index-machin-7"></a>truc: <strong>machin</strong></dt>
+<dt>truc: <strong></strong></dt>
+<dt><a name="index-followed-2"></a>truc: <strong>followed</strong> <em>by a 
comment
+</em></dt>
+<dt>truc: <strong></strong></dt>
+<dt>: <strong></strong></dt>
+<dt><a name="index-a-3"></a>truc: <strong>a</strong> <em>b c d e <b>f g</b> h i
+</em></dt>
+<dt><a name="index-deffnx-2"></a>truc: <strong>deffnx</strong> <em>before end 
deffn
+</em></dt>
+</dl>
+<pre class="example">
+</pre><dl>
+<dt><a name="index-deffn-2"></a>empty: <strong>deffn</strong></dt>
+</dl>
+<pre class="example">
+</pre><dl>
+<dt><a name="index-deffn-3"></a>empty: <strong>deffn</strong> <em>with deffnx
+</em></dt>
+<dt><a name="index-deffnx-3"></a>empty: <strong>deffnx</strong></dt>
+</dl>
+<pre class="example">
+</pre><dl>
+<dt><a name="index-i-3"></a>fset: <strong><var>i</var></strong> <em>a g
+</em></dt>
+<dt><a name="index-truc-3"></a>cmde: <strong>truc</strong> <em>
+</em></dt>
+<dd><pre class="example">text in def item for second def item
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a name="index-d_002d_002defvr_005fname-1"></a>c--ategory: 
<strong>d--efvr_name</strong></dt>
+<dd><pre class="example">d--efvr
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a name="index-d_002d_002deftypefn_005fname-1"></a>c--ategory: 
<em>t--ype</em> <strong>d--eftypefn_name</strong> <em>a--rguments...
+</em></dt>
+<dd><pre class="example">d--eftypefn
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a 
name="index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"></a>c--ategory 
on c--lass: <em>t--ype</em> <strong>d--eftypeop_name</strong> <em>a--rguments...
+</em></dt>
+<dd><pre class="example">d--eftypeop
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a name="index-d_002d_002deftypevr_005fname-1"></a>c--ategory: 
<em>t--ype</em> <strong>d--eftypevr_name</strong></dt>
+<dd><pre class="example">d--eftypevr
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a name="index-d_002d_002defcv_005fname-1"></a>c--ategory of c--lass: 
<strong>d--efcv_name</strong></dt>
+<dd><pre class="example">d--efcv
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a 
name="index-d_002d_002defop_005fname-on-c_002d_002dlass-1"></a>c--ategory on 
c--lass: <strong>d--efop_name</strong> <em>a--rguments...
+</em></dt>
+<dd><pre class="example">d--efop
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a name="index-d_002d_002deftp_005fname-1"></a>c--ategory: 
<strong>d--eftp_name</strong> <em>a--ttributes...
+</em></dt>
+<dd><pre class="example">d--eftp
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a name="index-d_002d_002defun_005fname-1"></a>Function: 
<strong>d--efun_name</strong> <em>a--rguments...
+</em></dt>
+<dd><pre class="example">d--efun
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a name="index-d_002d_002defmac_005fname-1"></a>Macro: 
<strong>d--efmac_name</strong> <em>a--rguments...
+</em></dt>
+<dd><pre class="example">d--efmac
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a name="index-d_002d_002defspec_005fname-1"></a>Special Form: 
<strong>d--efspec_name</strong> <em>a--rguments...
+</em></dt>
+<dd><pre class="example">d--efspec
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a name="index-d_002d_002defvar_005fname-1"></a>Variable: 
<strong>d--efvar_name</strong> <em>argvar argvar1
+</em></dt>
+<dd><pre class="example">d--efvar
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a name="index-d_002d_002defopt_005fname-1"></a>User Option: 
<strong>d--efopt_name</strong></dt>
+<dd><pre class="example">d--efopt
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a name="index-d_002d_002deftypefun_005fname-1"></a>Function: 
<em>t--ype</em> <strong>d--eftypefun_name</strong> <em>a--rguments...
+</em></dt>
+<dd><pre class="example">d--eftypefun
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a name="index-d_002d_002deftypevar_005fname-1"></a>Variable: 
<em>t--ype</em> <strong>d--eftypevar_name</strong></dt>
+<dd><pre class="example">d--eftypevar
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a 
name="index-d_002d_002defivar_005fname-of-c_002d_002dlass-1"></a>Instance 
Variable of c--lass: <strong>d--efivar_name</strong></dt>
+<dd><pre class="example">d--efivar
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a 
name="index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass-1"></a>Instance 
Variable of c--lass: <em>t--ype</em> <strong>d--eftypeivar_name</strong></dt>
+<dd><pre class="example">d--eftypeivar
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a 
name="index-d_002d_002defmethod_005fname-on-c_002d_002dlass-1"></a>Method on 
c--lass: <strong>d--efmethod_name</strong> <em>a--rguments...
+</em></dt>
+<dd><pre class="example">d--efmethod
+</pre></dd></dl>
+<pre class="example">
+</pre><dl>
+<dt><a 
name="index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass-1"></a>Method 
on c--lass: <em>t--ype</em> <strong>d--eftypemethod_name</strong> 
<em>a--rguments...
+</em></dt>
+<dd><pre class="example">d--eftypemethod
+</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 address@hidden">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 section <a href="#chapter">chapter</a>.
+<code>@pxref{chapter}</code> see section <a href="#chapter">chapter</a>
+<code>@address@hidden</code> <a href="#s_002d_002dect_002cion">s--ect,ion</a>
+
+<code>@address@hidden, a @comma{} in cross
+ref, a address@hidden in title, a address@hidden in file, a @comma{} in manual 
name }</code>
+<a href="a comma, in file.html#s_002d_002dect_002cion">a comma, in title</a> 
in <cite>a , in manual name</cite>
+
+<code>@ref{chapter,cross ref name}</code> <a href="#chapter">cross ref name</a>
+<code>@ref{chapter,,title}</code> <a href="#chapter">title</a>
+<code>@ref{chapter,,,file name}</code> <a 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>@address@hidden, a @comma{} in cross
+ref, a address@hidden in file}</code>
+See <a href="a comma, in file.html#s_002d_002dect_002cion">(a comma, in file)a 
, in cross
+ref</a>
+
+
+</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</tt>
+<a name="index-a-7"></a>
+</dt>
+<dt><tt>b</tt>
+<a name="index-b-3"></a>
+</dt>
+<dd><pre class="example">l--ine
+</pre></dd>
+</dl>
+<pre class="example">
+</pre><dl compact="compact">
+<dt><tt>a</tt>
+<a name="index-a-4"></a>
+</dt>
+<dd><pre class="example"><a 
name="index-index-entry-between-item-and-itemx-1"></a></pre></dd>
+<dt><tt>b</tt>
+<a name="index-b-1"></a>
+</dt>
+<dd><pre class="example">l--ine
+</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
+</pre><pre class="example">
+</pre><pre class="example">f--lushright
+</pre><pre class="example">
+</pre><div align="center">ce--ntered line
+</div><pre class="example">
+</pre><pre class="verbatim">\input texinfo @c -*-texinfo-*-
+
address@hidden simplest.info
+
address@hidden Top
+
+This is a very simple texi manual @  &lt;&gt;.
+
address@hidden
+</pre><pre class="example">
+</pre><pre class="verbatim">in verbatim ''
+</pre><pre class="example">
+
+html ''
+
+
+
+</pre><a name="majorheading-2"></a>
+<strong>majorheading</strong>
+<pre class="example">
+</pre><a name="chapheading-2"></a>
+<strong>chapheading</strong>
+<pre class="example">
+</pre><a name="heading-2"></a>
+<strong>heading</strong>
+<pre class="example">
+</pre><a name="subheading-2"></a>
+<strong>subheading</strong>
+<pre class="example">
+</pre><a name="subsubheading-2"></a>
+<strong>subsubheading</strong>
+<pre class="example">
+
+<code>@acronym{--a,an accronym @comma{} @enddots{}}</code> <acronym title="an 
accronym , ...">--a</acronym> (an accronym , ...)
+<code>@abbr{@'E--. @comma{}A., @'address@hidden @b{Autonome} }</code> <abbr 
title="&Eacute;tude&ndash;, Autonome">&Eacute;--. ,A.</abbr> (&Eacute;tude--, 
<b>Autonome</b>)
+<code>@abbr{@'E--. @comma{}A.}</code> <abbr title="&Eacute;tude&ndash;, 
Autonome">&Eacute;--. ,A.</abbr>
+
+<code>@address@hidden {\frac{1}{2}}}</code> <em>--a- {\frac{1}{2}}</em>
+
+<code>@image{f-ile,,,address@hidden:jk _&quot; %}}</code> [ alt<tt>jk _&quot; 
%@</tt> ]
+<code>@image{f--ile,aze,az,@verb{:jk _&quot; %@:} @b{in b 
&quot;},e--xt}</code> [ <tt>jk _&quot; %@</tt> <b>in b &quot;</b> ]
+<code>@address@hidden:jk _&quot; %@:},,,address@hidden:jk _&quot; %@:}}</code> 
[ alt<tt>jk _&quot; %@</tt> ]
+
+
+
+
+Somehow invalid use of @,:
+
+@, 
+,
+
+
+@,@&quot;u ,&uuml;
+
+Invalid use of @':
+
+@' 
+'
+
+
+@'@&quot;u '&uuml;
+
address@hidden truc
address@hidden ij
+<code>@dotless{--a}</code> --a
+<code>@dotless{a}</code> a
+
address@hidden, 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> after emph <pre class="example">e--mph item
+</pre></li></ul>
+<pre class="example">
+</pre><ul class="no-bullet">
+<li>&bull; a&ndash;n itemize line <pre class="example">i--tem 1
+</pre></li><li>&bull; a&ndash;n itemize line <pre class="example">i--tem 2
+</pre></li></ul>
+<pre class="example">
+</pre><dl>
+<dt>fun: <strong></strong></dt>
+<dt><a name="index-machin-8"></a>truc: <strong>machin</strong> <em>bidule 
chose and 
+</em></dt>
+<dt><a name="index-machin-9"></a>truc: <strong>machin</strong> <em>bidule 
chose and  after
+</em></dt>
+<dt><a name="index-machin-10"></a>truc: <strong>machin</strong> <em>bidule 
chose and </em></dt>
+<dt><a name="index-machin-11"></a>truc: <strong>machin</strong> <em>bidule 
chose and and after</em></dt>
+<dt><a name="index-followed-3"></a>truc: <strong>followed</strong> <em>by a 
comment
+</em></dt>
+<dd><pre class="example">Various deff lines
+</pre></dd><dt><a name="index-after-1"></a>truc: <strong>after</strong> <em>a 
deff item
+</em></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>
+
+<a name="index-t_002d_002druc"></a>
+<a name="index-T_002d_002druc"></a>
+<a name="index-_002e"></a>
+<a name="index-_003f"></a>
+<a name="index-a"></a>
+<a name="index-t_002d_002druc-1"></a>
+<a name="index-T_002d_002druc-1"></a>
+<a name="index-_002e-1"></a>
+<a name="index-_003f-1"></a>
+<a name="index-a-5"></a>
+
+
+<p>cp
+</p><table><tr><th valign="top">Jump to: &nbsp; </th><td><a 
class="summary-letter" href="#Top-section_cp_symbol-1"><b>&quot;</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_cp_symbol-2"><b>-</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_cp_symbol-3"><b>.</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_cp_symbol-4"><b>?</b></a>
+ &nbsp; 
+<br>
+<a class="summary-letter" href="#Top-section_cp_letter-A"><b>A</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_cp_letter-I"><b>I</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_cp_letter-T"><b>T</b></a>
+ &nbsp; 
+</td></tr></table>
+<table class="index-cp" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&nbsp;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a 
name="Top-section_cp_symbol-1">&quot;</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-_0060_0060">&ldquo;</a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-titlepage-_0060_0060">&ldquo;</a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_0060_0060">&ldquo;</a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_0060_0060-1">&ldquo;</a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_cp_symbol-2">-</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-_002d_002doption">&ndash;option</a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-titlepage-_002d_002doption">&ndash;option</a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002d_002doption">&ndash;option</a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002d_002doption-1">&ndash;option</a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_cp_symbol-3">.</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002e">.</a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_cp_symbol-4">?</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_003f">?</a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_cp_letter-A">A</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-a">a</a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_cp_letter-I">I</a></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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1">index entry between item and 
itemx</a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-index-entry-within-deffn">index entry within 
deffn</a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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-1">index entry within 
deffn</a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-index-entry-within-itemize">index entry within 
itemize</a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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-1">index entry within 
itemize</a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-index-entry-within-multitable">index entry within 
multitable</a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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-1">index entry within 
multitable</a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_cp_letter-T">T</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-t_002d_002druc">t&ndash;ruc</a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-T_002d_002druc">T&ndash;ruc</a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" 
href="#Top-section_cp_symbol-1"><b>&quot;</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_cp_symbol-2"><b>-</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_cp_symbol-3"><b>.</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_cp_symbol-4"><b>?</b></a>
+ &nbsp; 
+<br>
+<a class="summary-letter" href="#Top-section_cp_letter-A"><b>A</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_cp_letter-I"><b>I</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_cp_letter-T"><b>T</b></a>
+ &nbsp; 
+</td></tr></table>
+
+<p>fn
+</p><table><tr><th valign="top">Jump to: &nbsp; </th><td><a 
class="summary-letter" href="#Top-section_fn_symbol-1"><b>-</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_symbol-2"><b>.</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_symbol-3"><b>?</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_symbol-4"><b>`</b></a>
+ &nbsp; 
+<br>
+<a class="summary-letter" href="#Top-section_fn_letter-A"><b>A</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_letter-B"><b>B</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_letter-D"><b>D</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_letter-F"><b>F</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_letter-I"><b>I</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_letter-L"><b>L</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_letter-M"><b>M</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_letter-T"><b>T</b></a>
+ &nbsp; 
+</td></tr></table>
+<table class="index-fn" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&nbsp;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_fn_symbol-1">-</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-_002d_002dfoption"><code>--foption</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002d_002dfoption-1"><code>--foption</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_fn_symbol-2">.</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002e-1"><code>.</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_fn_symbol-3">?</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_003f-1"><code>?</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_fn_symbol-4">`</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-_0060_0060-1"><code>``</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_0060_0060-3"><code>``</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_fn_letter-A">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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-a-2"><code>a</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-a-3"><code>a</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-a-4"><code>a</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-a-5"><code>a</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-after"><code>after</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-after-1"><code>after</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_fn_letter-B">B</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-b"><code>b</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-b-1"><code>b</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-bidule-machin"><code>bidule 
machin</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-bidule-machin-1"><code>bidule 
machin</code></a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_fn_letter-D">D</a></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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--effn_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--efmac_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--efmethod_name
 on c--lass</code></a></td><td>&nbsp;</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"><code>d--efop_name
 on c--lass</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--efop_name 
on c--lass</code></a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--efspec_name</code></a></td><td>&nbsp;</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"><code>d--eftypefn_name</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--eftypefn_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--eftypefun_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--eftypemethod_name
 on c--lass</code></a></td><td>&nbsp;</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"><code>d--eftypeop_name
 on c--lass</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--eftypeop_name
 on c--lass</code></a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--efun_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>de--ffn_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-deffn"><code>deffn</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-deffn-1"><code>deffn</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-deffn-2"><code>deffn</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-deffn-3"><code>deffn</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-deffnx"><code>deffnx</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-deffnx-1"><code>deffnx</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-deffnx-2"><code>deffnx</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-deffnx-3"><code>deffnx</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_fn_letter-F">F</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-followed"><code>followed</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-followed-1"><code>followed</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-followed-2"><code>followed</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-followed-3"><code>followed</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_fn_letter-I">I</a></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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-i-1"><code><var>i</var></code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-i-2"><code><var>i</var></code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-i-3"><code><var>i</var></code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-copying-id-i-ule"><code><b>id 
&lsquo;<samp>i</samp>&rsquo; ule</b></code></a></td><td>&nbsp;</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 
&lsquo;<samp>i</samp>&rsquo; ule</b></code></a></td><td>&nbsp;</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 
&lsquo;<samp>i</samp>&rsquo; ule</b></code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-id-i-ule-1"><code><b>id 
&lsquo;<samp>i</samp>&rsquo; ule</b></code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-copying-id-ule"><code><b>id 
ule</b></code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-id-ule-1"><code><b>id 
ule</b></code></a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_fn_letter-L">L</a></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>&nbsp;</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>&nbsp;</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>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-log-trap-1"><code>log 
trap</code></a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-copying-log-trap1"><code>log 
trap1</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-log-trap1-1"><code>log 
trap1</code></a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-copying-log-trap2"><code>log 
trap2</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-log-trap2-1"><code>log 
trap2</code></a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_fn_letter-M">M</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-machin"><code>machin</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-1"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-2"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-3"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-4"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-5"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-6"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-7"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-8"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-9"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-10"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-11"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_fn_letter-T">T</a></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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-T_002d_002druc-1"><code>T--ruc</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-truc"><code>truc</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-truc-1"><code>truc</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-truc-2"><code>truc</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-truc-3"><code>truc</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" 
href="#Top-section_fn_symbol-1"><b>-</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_symbol-2"><b>.</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_symbol-3"><b>?</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_symbol-4"><b>`</b></a>
+ &nbsp; 
+<br>
+<a class="summary-letter" href="#Top-section_fn_letter-A"><b>A</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_letter-B"><b>B</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_letter-D"><b>D</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_letter-F"><b>F</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_letter-I"><b>I</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_letter-L"><b>L</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_letter-M"><b>M</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_fn_letter-T"><b>T</b></a>
+ &nbsp; 
+</td></tr></table>
+
+<p>vr
+</p><table><tr><th valign="top">Jump to: &nbsp; </th><td><a 
class="summary-letter" href="#Top-section_vr_letter-A"><b>A</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_vr_letter-B"><b>B</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_vr_letter-D"><b>D</b></a>
+ &nbsp; 
+</td></tr></table>
+<table class="index-vr" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&nbsp;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_vr_letter-A">A</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-a-2"><code>a</code></a></td><td>&nbsp;</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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-a-6"><code>a</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-a-7"><code>a</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_vr_letter-B">B</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-b-1"><code>b</code></a></td><td>&nbsp;</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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-b-2"><code>b</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-b-3"><code>b</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_vr_letter-D">D</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-d_002d_002defcv_005fname"><code>d--efcv_name</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--efcv_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--efivar_name
 of c--lass</code></a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--efopt_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--eftypeivar_name
 of c--lass</code></a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--eftypevar_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--eftypevr_name</code></a></td><td>&nbsp;</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"><code>d--efvar_name</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--efvar_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--efvr_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" 
href="#Top-section_vr_letter-A"><b>A</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_vr_letter-B"><b>B</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#Top-section_vr_letter-D"><b>D</b></a>
+ &nbsp; 
+</td></tr></table>
+
+<p>ky
+</p>
+<p>pg
+</p>
+<p>tp
+</p><table><tr><th valign="top">Jump to: &nbsp; </th><td><a 
class="summary-letter" href="#Top-section_tp_letter-D"><b>D</b></a>
+ &nbsp; 
+</td></tr></table>
+<table class="index-tp" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&nbsp;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="Top-section_tp_letter-D">D</a></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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--eftp_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" 
href="#Top-section_tp_letter-D"><b>D</b></a>
+ &nbsp; 
+</td></tr></table>
+
+
+
+<hr size="6">
+<a name="chapter"></a>
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#Top" title="Beginning of this 
chapter or previous chapter"> &lt;&lt; </a>]</td>
+<td valign="middle" align="left">[<a href="#Top" title="Previous section in 
reading order"> &lt; </a>]</td>
+<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up 
</a>]</td>
+<td valign="middle" align="left">[<a href="#s_002d_002dect_002cion" 
title="Next section in reading order"> &gt; </a>]</td>
+<td valign="middle" align="left">[<a href="#chapter2" title="Next chapter"> 
&gt;&gt; </a>]</td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of 
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of 
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#Top" title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? 
</a>]</td>
+</tr></table>
+<a name="chapter-1"></a>
+<h1 class="chapter">1 chapter</h1>
+
+<p><a name="DOCF9" href="#FOOT9"><sup>11</sup></a>
+</p>
+<div class="format">
+<table class="menu" border="0" cellspacing="0"><tr><td>
+<pre class="menu-preformatted">&bull; <a 
href="#s_002d_002dect_002cion">s--ect,ion</a>:: s&ndash;ect,ion
+</pre><pre class="menu-comment">
+Menu comment
+&ldquo;simple-double&ndash;three&mdash;four&mdash;-&rdquo;
+
+
+</pre></td></tr></table>
+</div>
+
+<hr>
+<a name="s_002d_002dect_002cion"></a>
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#chapter" title="Beginning of 
this chapter or previous chapter"> &lt;&lt; </a>]</td>
+<td valign="middle" align="left">[<a href="#chapter" title="Previous section 
in reading order"> &lt; </a>]</td>
+<td valign="middle" align="left">[<a href="#chapter" title="Up section"> Up 
</a>]</td>
+<td valign="middle" align="left">[<a href="#subsection" title="Next section in 
reading order"> &gt; </a>]</td>
+<td valign="middle" align="left">[<a href="#chapter2" title="Next chapter"> 
&gt;&gt; </a>]</td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of 
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of 
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#Top" title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? 
</a>]</td>
+</tr></table>
+<a name="A-section"></a>
+<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>&nbsp;&nbsp;</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 &ldquo;simple-double&ndash;</a></td><td>&nbsp;&nbsp;</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&mdash;four&mdash;-&rdquo;</a></td><td>&nbsp;&nbsp;</td><td align="left" 
valign="top">
+</td></tr>
+</table>
+
+<hr>
+<a name="subsection"></a>
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#chapter" title="Beginning of 
this chapter or previous chapter"> &lt;&lt; </a>]</td>
+<td valign="middle" align="left">[<a href="#s_002d_002dect_002cion" 
title="Previous section in reading order"> &lt; </a>]</td>
+<td valign="middle" align="left">[<a href="#s_002d_002dect_002cion" title="Up 
section"> Up </a>]</td>
+<td valign="middle" align="left">[<a 
href="#subsubsection-_0060_0060simple_002ddouble_002d_002d" title="Next section 
in reading order"> &gt; </a>]</td>
+<td valign="middle" align="left">[<a href="#chapter2" title="Next chapter"> 
&gt;&gt; </a>]</td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of 
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of 
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#Top" title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? 
</a>]</td>
+</tr></table>
+<a name="subsection-1"></a>
+<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 &ldquo;simple-double&ndash;</a></td><td>&nbsp;&nbsp;</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&mdash;four&mdash;-&rdquo;</a></td><td>&nbsp;&nbsp;</td><td align="left" 
valign="top">
+</td></tr>
+</table>
+
+<a name="anchor"></a>
+<hr>
+<a name="subsubsection-_0060_0060simple_002ddouble_002d_002d"></a>
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#chapter" title="Beginning of 
this chapter or previous chapter"> &lt;&lt; </a>]</td>
+<td valign="middle" align="left">[<a href="#subsection" title="Previous 
section in reading order"> &lt; </a>]</td>
+<td valign="middle" align="left">[<a href="#subsection" title="Up section"> Up 
</a>]</td>
+<td valign="middle" align="left">[<a 
href="#subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027" 
title="Next section in reading order"> &gt; </a>]</td>
+<td valign="middle" align="left">[<a href="#chapter2" title="Next chapter"> 
&gt;&gt; </a>]</td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of 
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of 
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#Top" title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? 
</a>]</td>
+</tr></table>
+<a name="subsubsection-_0060_0060simple_002ddouble_002d_002d-1"></a>
+<h4 class="subsubsection">1.1.1.1 subsubsection 
&ldquo;simple-double&ndash;</h4>
+
+<hr>
+<a 
name="subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027"></a>
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#chapter" title="Beginning of 
this chapter or previous chapter"> &lt;&lt; </a>]</td>
+<td valign="middle" align="left">[<a 
href="#subsubsection-_0060_0060simple_002ddouble_002d_002d" title="Previous 
section in reading order"> &lt; </a>]</td>
+<td valign="middle" align="left">[<a href="#subsection" title="Up section"> Up 
</a>]</td>
+<td valign="middle" align="left">[<a href="#chapter2" title="Next section in 
reading order"> &gt; </a>]</td>
+<td valign="middle" align="left">[<a href="#chapter2" title="Next chapter"> 
&gt;&gt; </a>]</td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of 
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of 
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#Top" title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? 
</a>]</td>
+</tr></table>
+<a name="three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027"></a>
+<h4 class="subsubsection">1.1.1.2 three&mdash;four&mdash;-&rdquo;</h4>
+
+<hr>
+<a name="chapter2"></a>
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#chapter" title="Beginning of 
this chapter or previous chapter"> &lt;&lt; </a>]</td>
+<td valign="middle" align="left">[<a 
href="#subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027" 
title="Previous section in reading order"> &lt; </a>]</td>
+<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up 
</a>]</td>
+<td valign="middle" align="left">[ &gt; ]</td>
+<td valign="middle" align="left">[ &gt;&gt; ]</td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left"> &nbsp; </td>
+<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of 
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of 
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#Top" title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? 
</a>]</td>
+</tr></table>
+<a name="chapter-2"></a>
+<h1 class="centerchap" align="center">chapter 2</h1>
+
+<table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" 
href="#chapter-2_cp_symbol-1"><b>&quot;</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-2"><b>-</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-3"><b>.</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-4"><b>?</b></a>
+ &nbsp; 
+<br>
+<a class="summary-letter" href="#chapter-2_cp_letter-A"><b>A</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_cp_letter-I"><b>I</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_cp_letter-T"><b>T</b></a>
+ &nbsp; 
+</td></tr></table>
+<table class="index-cp" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&nbsp;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_cp_symbol-1">&quot;</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-_0060_0060">&ldquo;</a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-titlepage-_0060_0060">&ldquo;</a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_0060_0060">&ldquo;</a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_0060_0060-1">&ldquo;</a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_cp_symbol-2">-</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-_002d_002doption">&ndash;option</a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-titlepage-_002d_002doption">&ndash;option</a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002d_002doption">&ndash;option</a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002d_002doption-1">&ndash;option</a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_cp_symbol-3">.</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002e">.</a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_cp_symbol-4">?</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_003f">?</a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_cp_letter-A">A</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#index-a">a</a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_cp_letter-I">I</a></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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1">index entry between item and 
itemx</a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-index-entry-within-deffn">index entry within 
deffn</a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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-1">index entry within 
deffn</a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-index-entry-within-itemize">index entry within 
itemize</a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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-1">index entry within 
itemize</a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-index-entry-within-multitable">index entry within 
multitable</a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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-1">index entry within 
multitable</a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_cp_letter-T">T</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-t_002d_002druc">t&ndash;ruc</a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-T_002d_002druc">T&ndash;ruc</a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" 
href="#chapter-2_cp_symbol-1"><b>&quot;</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-2"><b>-</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-3"><b>.</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_cp_symbol-4"><b>?</b></a>
+ &nbsp; 
+<br>
+<a class="summary-letter" href="#chapter-2_cp_letter-A"><b>A</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_cp_letter-I"><b>I</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_cp_letter-T"><b>T</b></a>
+ &nbsp; 
+</td></tr></table>
+<table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" 
href="#chapter-2_fn_symbol-1"><b>-</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-2"><b>.</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-3"><b>?</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-4"><b>`</b></a>
+ &nbsp; 
+<br>
+<a class="summary-letter" href="#chapter-2_fn_letter-A"><b>A</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_letter-B"><b>B</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_letter-D"><b>D</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_letter-F"><b>F</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_letter-I"><b>I</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_letter-L"><b>L</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_letter-M"><b>M</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_letter-T"><b>T</b></a>
+ &nbsp; 
+</td></tr></table>
+<table class="index-fn" border="0">
+<tr><td></td><th align="left">Index Entry</th><td>&nbsp;</td><th align="left"> 
Section</th></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_fn_symbol-1">-</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-_002d_002dfoption"><code>--foption</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002d_002dfoption-1"><code>--foption</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_fn_symbol-2">.</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_002e-1"><code>.</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_fn_symbol-3">?</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_003f-1"><code>?</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_fn_symbol-4">`</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-_0060_0060-1"><code>``</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-_0060_0060-3"><code>``</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_fn_letter-A">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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-a-2"><code>a</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-a-3"><code>a</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-a-4"><code>a</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-a-5"><code>a</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-after"><code>after</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-after-1"><code>after</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_fn_letter-B">B</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-b"><code>b</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-b-1"><code>b</code></a></td><td>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-bidule-machin"><code>bidule 
machin</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-bidule-machin-1"><code>bidule 
machin</code></a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_fn_letter-D">D</a></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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--effn_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--efmac_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--efmethod_name
 on c--lass</code></a></td><td>&nbsp;</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"><code>d--efop_name
 on c--lass</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--efop_name 
on c--lass</code></a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--efspec_name</code></a></td><td>&nbsp;</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"><code>d--eftypefn_name</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--eftypefn_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--eftypefun_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--eftypemethod_name
 on c--lass</code></a></td><td>&nbsp;</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"><code>d--eftypeop_name
 on c--lass</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--eftypeop_name
 on c--lass</code></a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>d--efun_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</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>&nbsp;</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>&nbsp;</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>&nbsp;</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-1"><code>de--ffn_name</code></a></td><td>&nbsp;</td><td
 valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-deffn"><code>deffn</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-deffn-1"><code>deffn</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-deffn-2"><code>deffn</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-deffn-3"><code>deffn</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-deffnx"><code>deffnx</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-deffnx-1"><code>deffnx</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-deffnx-2"><code>deffnx</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-deffnx-3"><code>deffnx</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_fn_letter-F">F</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-followed"><code>followed</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-followed-1"><code>followed</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-followed-2"><code>followed</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-followed-3"><code>followed</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_fn_letter-I">I</a></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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-i-1"><code><var>i</var></code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-i-2"><code><var>i</var></code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-i-3"><code><var>i</var></code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-copying-id-i-ule"><code><b>id 
&lsquo;<samp>i</samp>&rsquo; ule</b></code></a></td><td>&nbsp;</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 
&lsquo;<samp>i</samp>&rsquo; ule</b></code></a></td><td>&nbsp;</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 
&lsquo;<samp>i</samp>&rsquo; ule</b></code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-id-i-ule-1"><code><b>id 
&lsquo;<samp>i</samp>&rsquo; ule</b></code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-copying-id-ule"><code><b>id 
ule</b></code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-id-ule-1"><code><b>id 
ule</b></code></a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_fn_letter-L">L</a></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>&nbsp;</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>&nbsp;</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>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-log-trap-1"><code>log 
trap</code></a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-copying-log-trap1"><code>log 
trap1</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-log-trap1-1"><code>log 
trap1</code></a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-copying-log-trap2"><code>log 
trap2</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td></td><td valign="top"><a href="#index-log-trap2-1"><code>log 
trap2</code></a></td><td>&nbsp;</td><td valign="top"><a href="#Top">Top 
section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_fn_letter-M">M</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-machin"><code>machin</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-1"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-2"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-3"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-4"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-5"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-6"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-7"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-8"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-9"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-10"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-machin-11"><code>machin</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+<tr><th><a name="chapter-2_fn_letter-T">T</a></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>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-T_002d_002druc-1"><code>T--ruc</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-copying-truc"><code>truc</code></a></td><td>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</td><td valign="top"><a 
href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-truc-1"><code>truc</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-truc-2"><code>truc</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td></td><td valign="top"><a 
href="#index-truc-3"><code>truc</code></a></td><td>&nbsp;</td><td 
valign="top"><a href="#Top">Top section</a></td></tr>
+<tr><td colspan="4"> <hr></td></tr>
+</table>
+<table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" 
href="#chapter-2_fn_symbol-1"><b>-</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-2"><b>.</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-3"><b>?</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_symbol-4"><b>`</b></a>
+ &nbsp; 
+<br>
+<a class="summary-letter" href="#chapter-2_fn_letter-A"><b>A</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_letter-B"><b>B</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_letter-D"><b>D</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_letter-F"><b>F</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_letter-I"><b>I</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_letter-L"><b>L</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_letter-M"><b>M</b></a>
+ &nbsp; 
+<a class="summary-letter" href="#chapter-2_fn_letter-T"><b>T</b></a>
+ &nbsp; 
+</td></tr></table>
+
+<hr size="6">
+<a name="SEC_Foot"></a>
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of 
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of 
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#Top" title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? 
</a>]</td>
+</tr></table>
+<h1 class="footnotes-heading">Footnotes</h1>
+
+<h3><a name="FOOT1" href="#DOCF1">(1)</a></h3>
+<p>in footnote</p>
+<h3><a name="FOOT2" href="#DOCF2">(2)</a></h3>
+<p>in footnote2</p>
+<h3><a name="FOOT5" href="#DOCF5">(3)</a></h3>
+<p>in footnote</p>
+<h3><a name="FOOT6" href="#DOCF6">(4)</a></h3>
+<p>in footnote2</p>
+<h3><a name="FOOT7" href="#DOCF7">(5)</a></h3>
+<p>in footnote</p>
+<h3><a name="FOOT8" href="#DOCF8">(6)</a></h3>
+<p>in footnote2</p>
+<h3><a name="FOOT3" href="#DOCF3">(7)</a></h3>
+<p>in footnote</p>
+<h3><a name="FOOT4" href="#DOCF4">(8)</a></h3>
+<p>in footnote2</p>
+<h3><a name="FOOT1_9" href="#DOCF1_9">(9)</a></h3>
+<p>in footnote</p>
+<h3><a name="FOOT2_10" href="#DOCF2_10">(10)</a></h3>
+<p>in footnote2</p>
+<h3><a name="FOOT9" href="#DOCF9">(11)</a></h3>
+<p>in footnote</p>
+<hr>
+<a name="SEC_Contents"></a>
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of 
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of 
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#Top" title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? 
</a>]</td>
+</tr></table>
+<h1 class="contents-heading">Table of Contents</h1>
+
+<div class="contents">
+
+<ul class="no-bullet">
+  <li><a name="toc-chapter-1" href="#chapter">1 chapter</a>
+  <ul class="no-bullet">
+    <li><a name="toc-A-section" href="#s_002d_002dect_002cion">1.1 A 
section</a>
+    <ul class="no-bullet">
+      <li><a name="toc-subsection-1" href="#subsection">1.1.1 subsection</a>
+      <ul class="no-bullet">
+        <li><a 
name="toc-subsubsection-_0060_0060simple_002ddouble_002d_002d-1" 
href="#subsubsection-_0060_0060simple_002ddouble_002d_002d">1.1.1.1 
subsubsection &ldquo;simple-double&ndash;</a></li>
+        <li><a 
name="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&mdash;four&mdash;-&rdquo;</a></li>
+      </ul></li>
+    </ul></li>
+  </ul></li>
+  <li><a name="toc-chapter-2" href="#chapter2">chapter 2</a></li>
+</ul>
+</div>
+<hr>
+<a name="SEC_Overview"></a>
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of 
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of 
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#Top" title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? 
</a>]</td>
+</tr></table>
+<h1 class="shortcontents-heading">Short Table of Contents</h1>
+
+<div class="shortcontents">
+<ul class="no-bullet">
+<li><a name="stoc-chapter-1" href="#chapter">1 chapter</a></li>
+<li><a name="stoc-chapter-2" href="#chapter2">chapter 2</a></li>
+</ul>
+</div>
+<hr>
+<a name="SEC_About"></a>
+<table class="header" cellpadding="1" cellspacing="1" border="0">
+<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of 
document">Top</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of 
contents">Contents</a>]</td>
+<td valign="middle" align="left">[<a href="#Top" title="Index">Index</a>]</td>
+<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? 
</a>]</td>
+</tr></table>
+<h1 class="about-heading">About This Document</h1>
+
+<p>
+  This document was generated on <em>a sunny day</em> using <a 
href="http://www.gnu.org/software/texinfo/";><em>texi2any</em></a>.
+</p>
+<p>
+  The buttons in the navigation panels have the following meaning:
+</p>
+<table border="1">
+  <tr>
+    <th> Button </th>
+    <th> Name </th>
+    <th> Go to </th>
+    <th> From 1.2.3 go to</th>
+  </tr>
+  <tr>
+    <td align="center"> [ &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> &nbsp; </td>
+  </tr>
+  <tr>
+    <td align="center"> [Contents] </td>
+    <td align="center">Contents</td>
+    <td>Table of contents</td>
+    <td> &nbsp; </td>
+  </tr>
+  <tr>
+    <td align="center"> [Index] </td>
+    <td align="center">Index</td>
+    <td>Index</td>
+    <td> &nbsp; </td>
+  </tr>
+  <tr>
+    <td align="center"> [ ? ] </td>
+    <td align="center">About</td>
+    <td>About (help)</td>
+    <td> &nbsp; </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 &nbsp; &nbsp;
+            <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>
+
+<hr>
+<p><font size="-1">
+  This document was generated on <em>a sunny day</em> using <a 
href="http://www.gnu.org/software/texinfo/";><em>texi2any</em></a>.
+</font></p>
+
+
+</body>
+</html>

Added: trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting-cr.1
===================================================================
Added: trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting-cr.2
===================================================================
--- trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting-cr.2       
                        (rev 0)
+++ trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting-cr.2       
2013-08-27 20:09:31 UTC (rev 5345)
@@ -0,0 +1,68 @@
+formatting-cr.texi:18: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:18: warning: @ctrl is obsolete. (possibly involving 
@mymacro)
+formatting-cr.texi:18: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:18: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:18: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:18: warning: missing category for @deffnx (possibly 
involving @mymacro)
+formatting-cr.texi:18: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:18: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:18: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:18: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:18: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:18: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:18: command @bullet not accepting argument in brace should 
not be on @table line (possibly involving @mymacro)
+formatting-cr.texi:18: command @minus not accepting argument in brace should 
not be on @ftable line (possibly involving @mymacro)
+formatting-cr.texi:28: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:28: warning: @ctrl is obsolete. (possibly involving 
@mymacro)
+formatting-cr.texi:28: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:28: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:28: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:28: warning: missing category for @deffnx (possibly 
involving @mymacro)
+formatting-cr.texi:28: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:28: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:28: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:28: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:28: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:28: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:28: command @bullet not accepting argument in brace should 
not be on @table line (possibly involving @mymacro)
+formatting-cr.texi:28: command @minus not accepting argument in brace should 
not be on @ftable line (possibly involving @mymacro)
+formatting-cr.texi:38: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:38: warning: @ctrl is obsolete. (possibly involving 
@mymacro)
+formatting-cr.texi:38: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:38: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:38: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:38: warning: missing category for @deffnx (possibly 
involving @mymacro)
+formatting-cr.texi:38: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:38: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:38: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:38: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:38: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:38: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:38: command @bullet not accepting argument in brace should 
not be on @table line (possibly involving @mymacro)
+formatting-cr.texi:38: command @minus not accepting argument in brace should 
not be on @ftable line (possibly involving @mymacro)
+formatting-cr.texi:42: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:42: warning: @ctrl is obsolete. (possibly involving 
@mymacro)
+formatting-cr.texi:42: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:42: unknown command `
+' (possibly involving @mymacro)
+formatting-cr.texi:42: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:42: warning: missing category for @deffnx (possibly 
involving @mymacro)
+formatting-cr.texi:42: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:42: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:42: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:42: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:42: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:42: warning: missing name for @deffnx (possibly involving 
@mymacro)
+formatting-cr.texi:42: command @bullet not accepting argument in brace should 
not be on @table line (possibly involving @mymacro)
+formatting-cr.texi:42: command @minus not accepting argument in brace should 
not be on @ftable line (possibly involving @mymacro)

Added: trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting.info
===================================================================
--- trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting.info       
                        (rev 0)
+++ trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting.info       
2013-08-27 20:09:31 UTC (rev 5345)
@@ -0,0 +1,1957 @@
+This is formatting.info, produced by texi2any version from
+formatting-cr.texi.
+
+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'
+@'address@hidden i' @dotless{i} i @dotless{j} j @'address@hidden E=` @l{} /l
+@,{@'C} C', @,c c, @,c@"u c,u"
+
+   @*
+@ 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 ...
address@hidden == @error error-> @expansion ==> @minus - @point -!- @print -|
address@hidden => @today a sunny day @aa aa @AA AA @ae ae @oe oe @AE AE @OE OE
address@hidden /o @O /O @ss ss @l /l @L /L @DH D @TH TH @dh d @th th 
@exclamdown !
address@hidden ?  @pounds # @registeredsymbol (R) @ordf a @ordm o @comma
+, @quotedblleft `` @quotedblright '' @quoteleft ` @quoteright '
address@hidden ,, @quotesinglbase , @guillemetleft << @guillemetright >>
address@hidden << @guillemotright >> @guilsinglleft < @guilsinglright >
address@hidden o @euro Euro @arrow -> @leq <= @geq >=
+
+   '@acronym{--a,an accronym}' -a (an accronym) '@acronym{--a}' -a
+'@abbr{@'E--. @comma{}A., @'Etude Autonome }' E'-. ,A. (E'tude Autonome)
+'@abbr{@'E--. @comma{}A.}' E'-. ,A. '@asis{--a}' -a '@b{--a}' -a
+'@cite{--a}' '-a' '@code{--a}' '--a' '@command{--a}' '--a' '@ctrl{--a}'
+-a '@dfn{--a}' "-a" '@dmn{--a}' -a '@email{--a,--b}' -b <--a>
+'@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}' -b (--a) '@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}' -b (--a)
+'@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, '@footnote{in
+footnote}' (1) '@footnote{in footnote2}' (2)
+
+   '@image{f--ile}' [image src="f--ile.jpg"] '@image{f--ile,l--i}' 
[image src="f--ile.jpg"] '@image{f--ile,,l--e}' [image src="f--ile.jpg"]
+'@image{f--ile,,,alt}' [image src="f--ile.jpg" alt="alt"] 
'@image{f--ile,,,,e-d-xt}' [image src="f--ile.e--xt"]
+'@image{f--ile,aze,az,alt,e--xt}' [image src="f--ile.e--xt" alt="alt"] 
'@image{f-ile,aze,,a--lt}' [a-lt]
+'@address@hidden@@@.,aze,az,alt,@file{file ext} address@hidden' [alt]
+
+
+
+   '@clicksequence{click @click{} A}' click -> A After clickstyle =>
+'@clicksequence{click @click{} A}' click => A
+
+     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: 
+     : 
+
+     : 
+   * i-temize
+
+   + i-tem +
+
+   * b-ullet
+
+   - minu-s
+
+   __ e-mph item
+
+   _after emph_ e-mph item
+
+   * a-n itemize line i-tem 1
+   * a-n itemize line i-tem 2
+
+  1. e-numerate
+
+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
+
+     s--mallexample
+
+     d-isplay
+
+     s-malldisplay
+
+     l--isp
+
+     s--malllisp
+
+f-ormat
+
+s-mallformat
+
+ -- 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: t--ype d--eftypefn_name a--rguments...
+     d-eftypefn
+
+ -- c--ategory on c--lass: t--ype d--eftypeop_name a--rguments...
+     d-eftypeop
+
+ -- c--ategory: t--ype d--eftypevr_name
+     d-eftypevr
+
+ -- c--ategory of c--lass: d--efcv_name
+     d-efcv
+
+ -- c--ategory on c--lass: d--efop_name a--rguments...
+     d-efop
+
+ -- 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 argvar argvar1
+     d-efvar
+
+ -- 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
+
+   '@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@,
+ma---nual@@}' *Note cross r--ef name@: (file n---ame@)address@hidden
+'@ref{chapter, cross ref name, title, file name, manual}' *note cross
+ref name: (file name)chapter. '@pxref{chapter, cross ref name, title,
+file name, manual}' *note cross ref name: (file name)chapter.
+'@inforef{chapter, cross ref name, file name}' *note cross ref name:
+(file name)chapter.
+
+   '@ref{chapter}' *note chapter:: '@xref{chapter}' *Note chapter::.
+'@pxref{chapter}' *note chapter:: '@address@hidden' *note
+s--ect,ion::
+
+   '@address@hidden, a @comma{} in cross ref, a address@hidden in
+title, a address@hidden in file, a @comma{} in manual name }' *note a ,
+in cross ref: (a comma, in file)s--ect,ion.
+
+   '@ref{chapter,cross ref name}' *note cross ref name: chapter.
+'@ref{chapter,,title}' *note title: chapter. '@ref{chapter,,,file name}'
+*note (file name)chapter:: '@ref{chapter,,,,manual}' *note ()chapter::
+'@ref{chapter,cross ref name,title,}' *note cross ref name: chapter.
+'@ref{chapter,cross ref name,,file name}' *note cross ref name: (file
+name)chapter. '@ref{chapter,cross ref name,,,manual}' *note cross ref
+name: ()chapter. '@ref{chapter,cross ref name,title,file name}' *note
+cross ref name: (file name)chapter. '@ref{chapter,cross ref
+name,title,,manual}' *note cross ref name: ()chapter.
+'@ref{chapter,cross ref name,title, file name, manual}' *note cross ref
+name: (file name)chapter. '@ref{chapter,,title,file name}' *note title:
+(file name)chapter. '@ref{chapter,,title,,manual}' *note title:
+()chapter. '@ref{chapter,,title, file name, manual}' *note title: (file
+name)chapter. '@ref{chapter,,,file name,manual}' *note (file
+name)chapter::
+
+   '@ref{(pman)anode,cross ref name}' *note cross ref name: (pman)anode.
+'@ref{(pman)anode,,title}' *note title: (pman)anode.
+'@ref{(pman)anode,,,file name}' *note (file name)(pman)anode::
+'@ref{(pman)anode,,,,manual}' *note ()(pman)anode::
+'@ref{(pman)anode,cross ref name,title,}' *note cross ref name:
+(pman)anode. '@ref{(pman)anode,cross ref name,,file name}' *note cross
+ref name: (file name)(pman)anode. '@ref{(pman)anode,cross ref
+name,,,manual}' *note cross ref name: ()(pman)anode.
+'@ref{(pman)anode,cross ref name,title,file name}' *note cross ref name:
+(file name)(pman)anode. '@ref{(pman)anode,cross ref name,title,,manual}'
+*note cross ref name: ()(pman)anode. '@ref{(pman)anode,cross ref
+name,title, file name, manual}' *note cross ref name: (file
+name)(pman)anode. '@ref{(pman)anode,,title,file name}' *note title:
+(file name)(pman)anode. '@ref{(pman)anode,,title,,manual}' *note title:
+()(pman)anode. '@ref{(pman)anode,,title, file name, manual}' *note
+title: (file name)(pman)anode. '@ref{(pman)anode,,,file name,manual}'
+*note (file name)(pman)anode::
+
+   '@inforef{chapter, cross ref name, file name}' *note cross ref name:
+(file name)chapter. '@inforef{chapter}' *note chapter::
+'@inforef{chapter, cross ref name}' *note cross ref name: chapter.
+'@inforef{chapter,,file name}' *note (file name)chapter::
+'@inforef{node, cross ref name, file name}' *note cross ref name: (file
+name)node. '@inforef{node}' *note node:: '@inforef{node, cross ref
+name}' *note cross ref name: node. '@inforef{node,,file name}' *note
+(file name)node:: '@inforef{chapter, cross ref name, file name, spurious
+arg}' *note cross ref name: (file name, spurious arg)chapter.
+
+   '@address@hidden, a @comma{} in cross ref, a address@hidden
+in file}' *note a , in cross ref: (a comma, in file)s--ect,ion.
+
+a
+     l-ine
+
+a
+b
+     l-ine
+
+a
+b
+     l-ine
+
+   c-artouche
+
+   g-roupe
+
+f-lushleft
+
+                                                            f-lushright
+
+                            ce-ntered line
+
+\input texinfo @c -*-texinfo-*-
+
address@hidden simplest.info
+
address@hidden Top
+
+This is a very simple texi manual @  <>.
+
address@hidden
+
+in verbatim ''
+
+majorheading
+************
+
+chapheading
+***********
+
+heading
+=======
+
+subheading
+----------
+
+subsubheading
+.............
+
+   ---------- Footnotes ----------
+
+   (1) in footnote
+
+   (2) in footnote2
+
+
+File: formatting.info,  Node: Top,  Next: chapter,  Up: (dir)
+
+Top section
+***********
+
+* Menu:
+
+* chapter::               chapter
+
+Menu comment
+
+* description:chapter2.   Chapter 2
+
+Insertcopying in normal text
+   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'
+@'address@hidden i' @dotless{i} i @dotless{j} j @'address@hidden E=` @l{} /l
+@,{@'C} C', @,c c, @,c@"u c,u"
+
+   @*
+@ 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 ...
address@hidden == @error error-> @expansion ==> @minus - @point -!- @print -|
address@hidden => @today a sunny day @aa aa @AA AA @ae ae @oe oe @AE AE @OE OE
address@hidden /o @O /O @ss ss @l /l @L /L @DH D @TH TH @dh d @th th 
@exclamdown !
address@hidden ?  @pounds # @registeredsymbol (R) @ordf a @ordm o @comma
+, @quotedblleft `` @quotedblright '' @quoteleft ` @quoteright '
address@hidden ,, @quotesinglbase , @guillemetleft << @guillemetright >>
address@hidden << @guillemotright >> @guilsinglleft < @guilsinglright >
address@hidden o @euro Euro @arrow -> @leq <= @geq >=
+
+   '@acronym{--a,an accronym}' -a (an accronym) '@acronym{--a}' -a
+'@abbr{@'E--. @comma{}A., @'Etude Autonome }' E'-. ,A. (E'tude Autonome)
+'@abbr{@'E--. @comma{}A.}' E'-. ,A. '@asis{--a}' -a '@b{--a}' -a
+'@cite{--a}' '-a' '@code{--a}' '--a' '@command{--a}' '--a' '@ctrl{--a}'
+-a '@dfn{--a}' "-a" '@dmn{--a}' -a '@email{--a,--b}' -b <--a>
+'@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}' -b (--a) '@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}' -b (--a)
+'@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, '@footnote{in
+footnote}' (1) '@footnote{in footnote2}' (2)
+
+   '@image{f--ile}' [image src="f--ile.jpg"] '@image{f--ile,l--i}' 
[image src="f--ile.jpg"] '@image{f--ile,,l--e}' [image src="f--ile.jpg"]
+'@image{f--ile,,,alt}' [image src="f--ile.jpg" alt="alt"] 
'@image{f--ile,,,,e-d-xt}' [image src="f--ile.e--xt"]
+'@image{f--ile,aze,az,alt,e--xt}' [image src="f--ile.e--xt" alt="alt"] 
'@image{f-ile,aze,,a--lt}' [a-lt]
+'@address@hidden@@@.,aze,az,alt,@file{file ext} address@hidden' [alt]
+
+
+
+   '@clicksequence{click @click{} A}' click -> A After clickstyle =>
+'@clicksequence{click @click{} A}' click => A
+
+     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: 
+     : 
+
+     : 
+   * i-temize
+
+   + i-tem +
+
+   * b-ullet
+
+   - minu-s
+
+   __ e-mph item
+
+   _after emph_ e-mph item
+
+   * a-n itemize line i-tem 1
+   * a-n itemize line i-tem 2
+
+  1. e-numerate
+
+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
+
+     s--mallexample
+
+     d-isplay
+
+     s-malldisplay
+
+     l--isp
+
+     s--malllisp
+
+f-ormat
+
+s-mallformat
+
+ -- 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: t--ype d--eftypefn_name a--rguments...
+     d-eftypefn
+
+ -- c--ategory on c--lass: t--ype d--eftypeop_name a--rguments...
+     d-eftypeop
+
+ -- c--ategory: t--ype d--eftypevr_name
+     d-eftypevr
+
+ -- c--ategory of c--lass: d--efcv_name
+     d-efcv
+
+ -- c--ategory on c--lass: d--efop_name a--rguments...
+     d-efop
+
+ -- 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 argvar argvar1
+     d-efvar
+
+ -- 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
+
+   '@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@,
+ma---nual@@}' *Note cross r--ef name@: (file n---ame@)address@hidden
+'@ref{chapter, cross ref name, title, file name, manual}' *note cross
+ref name: (file name)chapter. '@pxref{chapter, cross ref name, title,
+file name, manual}' *note cross ref name: (file name)chapter.
+'@inforef{chapter, cross ref name, file name}' *note cross ref name:
+(file name)chapter.
+
+   '@ref{chapter}' *note chapter:: '@xref{chapter}' *Note chapter::.
+'@pxref{chapter}' *note chapter:: '@address@hidden' *note
+s--ect,ion::
+
+   '@address@hidden, a @comma{} in cross ref, a address@hidden in
+title, a address@hidden in file, a @comma{} in manual name }' *note a ,
+in cross ref: (a comma, in file)s--ect,ion.
+
+   '@ref{chapter,cross ref name}' *note cross ref name: chapter.
+'@ref{chapter,,title}' *note title: chapter. '@ref{chapter,,,file name}'
+*note (file name)chapter:: '@ref{chapter,,,,manual}' *note ()chapter::
+'@ref{chapter,cross ref name,title,}' *note cross ref name: chapter.
+'@ref{chapter,cross ref name,,file name}' *note cross ref name: (file
+name)chapter. '@ref{chapter,cross ref name,,,manual}' *note cross ref
+name: ()chapter. '@ref{chapter,cross ref name,title,file name}' *note
+cross ref name: (file name)chapter. '@ref{chapter,cross ref
+name,title,,manual}' *note cross ref name: ()chapter.
+'@ref{chapter,cross ref name,title, file name, manual}' *note cross ref
+name: (file name)chapter. '@ref{chapter,,title,file name}' *note title:
+(file name)chapter. '@ref{chapter,,title,,manual}' *note title:
+()chapter. '@ref{chapter,,title, file name, manual}' *note title: (file
+name)chapter. '@ref{chapter,,,file name,manual}' *note (file
+name)chapter::
+
+   '@ref{(pman)anode,cross ref name}' *note cross ref name: (pman)anode.
+'@ref{(pman)anode,,title}' *note title: (pman)anode.
+'@ref{(pman)anode,,,file name}' *note (file name)(pman)anode::
+'@ref{(pman)anode,,,,manual}' *note ()(pman)anode::
+'@ref{(pman)anode,cross ref name,title,}' *note cross ref name:
+(pman)anode. '@ref{(pman)anode,cross ref name,,file name}' *note cross
+ref name: (file name)(pman)anode. '@ref{(pman)anode,cross ref
+name,,,manual}' *note cross ref name: ()(pman)anode.
+'@ref{(pman)anode,cross ref name,title,file name}' *note cross ref name:
+(file name)(pman)anode. '@ref{(pman)anode,cross ref name,title,,manual}'
+*note cross ref name: ()(pman)anode. '@ref{(pman)anode,cross ref
+name,title, file name, manual}' *note cross ref name: (file
+name)(pman)anode. '@ref{(pman)anode,,title,file name}' *note title:
+(file name)(pman)anode. '@ref{(pman)anode,,title,,manual}' *note title:
+()(pman)anode. '@ref{(pman)anode,,title, file name, manual}' *note
+title: (file name)(pman)anode. '@ref{(pman)anode,,,file name,manual}'
+*note (file name)(pman)anode::
+
+   '@inforef{chapter, cross ref name, file name}' *note cross ref name:
+(file name)chapter. '@inforef{chapter}' *note chapter::
+'@inforef{chapter, cross ref name}' *note cross ref name: chapter.
+'@inforef{chapter,,file name}' *note (file name)chapter::
+'@inforef{node, cross ref name, file name}' *note cross ref name: (file
+name)node. '@inforef{node}' *note node:: '@inforef{node, cross ref
+name}' *note cross ref name: node. '@inforef{node,,file name}' *note
+(file name)node:: '@inforef{chapter, cross ref name, file name, spurious
+arg}' *note cross ref name: (file name, spurious arg)chapter.
+
+   '@address@hidden, a @comma{} in cross ref, a address@hidden
+in file}' *note a , in cross ref: (a comma, in file)s--ect,ion.
+
+a
+     l-ine
+
+a
+b
+     l-ine
+
+a
+b
+     l-ine
+
+   c-artouche
+
+   g-roupe
+
+f-lushleft
+
+                                                            f-lushright
+
+                            ce-ntered line
+
+\input texinfo @c -*-texinfo-*-
+
address@hidden simplest.info
+
address@hidden Top
+
+This is a very simple texi manual @  <>.
+
address@hidden
+
+in verbatim ''
+
+majorheading
+************
+
+chapheading
+***********
+
+heading
+=======
+
+subheading
+----------
+
+subsubheading
+.............
+
+Normal text
+
+   < > " & ' '
+
+   "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'
+@'address@hidden i' @dotless{i} i @dotless{j} j @'address@hidden E=` @l{} /l
+@,{@'C} C', @,c c, @,c@"u c,u"
+
+   @*
+@ 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 ...
address@hidden == @error error-> @expansion ==> @minus - @point -!- @print -|
address@hidden => @today a sunny day @aa aa @AA AA @ae ae @oe oe @AE AE @OE OE
address@hidden /o @O /O @ss ss @l /l @L /L @DH D @TH TH @dh d @th th 
@exclamdown !
address@hidden ?  @pounds # @registeredsymbol (R) @ordf a @ordm o @comma
+, @quotedblleft `` @quotedblright '' @quoteleft ` @quoteright '
address@hidden ,, @quotesinglbase , @guillemetleft << @guillemetright >>
address@hidden << @guillemotright >> @guilsinglleft < @guilsinglright >
address@hidden o @euro Euro @arrow -> @leq <= @geq >=
+
+   '@acronym{--a,an accronym}' -a (an accronym) '@acronym{--a}' -a
+'@abbr{@'E--. @comma{}A., @'Etude Autonome }' E'-. ,A. (E'tude Autonome)
+'@abbr{@'E--. @comma{}A.}' E'-. ,A. '@asis{--a}' -a '@b{--a}' -a
+'@cite{--a}' '-a' '@code{--a}' '--a' '@command{--a}' '--a' '@ctrl{--a}'
+-a '@dfn{--a}' "-a" '@dmn{--a}' -a '@email{--a,--b}' -b <--a>
+'@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}' -b (--a) '@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}' -b (--a)
+'@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, '@footnote{in
+footnote}' (3) '@footnote{in footnote2}' (4)
+
+   '@image{f--ile}' [image src="f--ile.jpg"] '@image{f--ile,l--i}' 
[image src="f--ile.jpg"] '@image{f--ile,,l--e}' [image src="f--ile.jpg"]
+'@image{f--ile,,,alt}' [image src="f--ile.jpg" alt="alt"] 
'@image{f--ile,,,,e-d-xt}' [image src="f--ile.e--xt"]
+'@image{f--ile,aze,az,alt,e--xt}' [image src="f--ile.e--xt" alt="alt"] 
'@image{f-ile,aze,,a--lt}' [a-lt]
+'@address@hidden@@@.,aze,az,alt,@file{file ext} address@hidden' [alt]
+
+
+
+   '@clicksequence{click @click{} A}' click -> A After clickstyle =>
+'@clicksequence{click @click{} A}' click => A
+
+     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: 
+     : 
+
+     : 
+   * i-temize
+
+   + i-tem +
+
+   * b-ullet
+
+   - minu-s
+
+   __ e-mph item
+
+   _after emph_ e-mph item
+
+   * a-n itemize line i-tem 1
+   * a-n itemize line i-tem 2
+
+  1. e-numerate
+
+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
+
+     s--mallexample
+
+     d-isplay
+
+     s-malldisplay
+
+     l--isp
+
+     s--malllisp
+
+f-ormat
+
+s-mallformat
+
+ -- 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: t--ype d--eftypefn_name a--rguments...
+     d-eftypefn
+
+ -- c--ategory on c--lass: t--ype d--eftypeop_name a--rguments...
+     d-eftypeop
+
+ -- c--ategory: t--ype d--eftypevr_name
+     d-eftypevr
+
+ -- c--ategory of c--lass: d--efcv_name
+     d-efcv
+
+ -- c--ategory on c--lass: d--efop_name a--rguments...
+     d-efop
+
+ -- 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 argvar argvar1
+     d-efvar
+
+ -- 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
+
+   '@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@,
+ma---nual@@}' *Note cross r--ef name@: (file n---ame@)address@hidden
+'@ref{chapter, cross ref name, title, file name, manual}' *note cross
+ref name: (file name)chapter. '@pxref{chapter, cross ref name, title,
+file name, manual}' *note cross ref name: (file name)chapter.
+'@inforef{chapter, cross ref name, file name}' *note cross ref name:
+(file name)chapter.
+
+   '@ref{chapter}' *note chapter:: '@xref{chapter}' *Note chapter::.
+'@pxref{chapter}' *note chapter:: '@address@hidden' *note
+s--ect,ion::
+
+   '@address@hidden, a @comma{} in cross ref, a address@hidden in
+title, a address@hidden in file, a @comma{} in manual name }' *note a ,
+in cross ref: (a comma, in file)s--ect,ion.
+
+   '@ref{chapter,cross ref name}' *note cross ref name: chapter.
+'@ref{chapter,,title}' *note title: chapter. '@ref{chapter,,,file name}'
+*note (file name)chapter:: '@ref{chapter,,,,manual}' *note ()chapter::
+'@ref{chapter,cross ref name,title,}' *note cross ref name: chapter.
+'@ref{chapter,cross ref name,,file name}' *note cross ref name: (file
+name)chapter. '@ref{chapter,cross ref name,,,manual}' *note cross ref
+name: ()chapter. '@ref{chapter,cross ref name,title,file name}' *note
+cross ref name: (file name)chapter. '@ref{chapter,cross ref
+name,title,,manual}' *note cross ref name: ()chapter.
+'@ref{chapter,cross ref name,title, file name, manual}' *note cross ref
+name: (file name)chapter. '@ref{chapter,,title,file name}' *note title:
+(file name)chapter. '@ref{chapter,,title,,manual}' *note title:
+()chapter. '@ref{chapter,,title, file name, manual}' *note title: (file
+name)chapter. '@ref{chapter,,,file name,manual}' *note (file
+name)chapter::
+
+   '@ref{(pman)anode,cross ref name}' *note cross ref name: (pman)anode.
+'@ref{(pman)anode,,title}' *note title: (pman)anode.
+'@ref{(pman)anode,,,file name}' *note (file name)(pman)anode::
+'@ref{(pman)anode,,,,manual}' *note ()(pman)anode::
+'@ref{(pman)anode,cross ref name,title,}' *note cross ref name:
+(pman)anode. '@ref{(pman)anode,cross ref name,,file name}' *note cross
+ref name: (file name)(pman)anode. '@ref{(pman)anode,cross ref
+name,,,manual}' *note cross ref name: ()(pman)anode.
+'@ref{(pman)anode,cross ref name,title,file name}' *note cross ref name:
+(file name)(pman)anode. '@ref{(pman)anode,cross ref name,title,,manual}'
+*note cross ref name: ()(pman)anode. '@ref{(pman)anode,cross ref
+name,title, file name, manual}' *note cross ref name: (file
+name)(pman)anode. '@ref{(pman)anode,,title,file name}' *note title:
+(file name)(pman)anode. '@ref{(pman)anode,,title,,manual}' *note title:
+()(pman)anode. '@ref{(pman)anode,,title, file name, manual}' *note
+title: (file name)(pman)anode. '@ref{(pman)anode,,,file name,manual}'
+*note (file name)(pman)anode::
+
+   '@inforef{chapter, cross ref name, file name}' *note cross ref name:
+(file name)chapter. '@inforef{chapter}' *note chapter::
+'@inforef{chapter, cross ref name}' *note cross ref name: chapter.
+'@inforef{chapter,,file name}' *note (file name)chapter::
+'@inforef{node, cross ref name, file name}' *note cross ref name: (file
+name)node. '@inforef{node}' *note node:: '@inforef{node, cross ref
+name}' *note cross ref name: node. '@inforef{node,,file name}' *note
+(file name)node:: '@inforef{chapter, cross ref name, file name, spurious
+arg}' *note cross ref name: (file name, spurious arg)chapter.
+
+   '@address@hidden, a @comma{} in cross ref, a address@hidden
+in file}' *note a , in cross ref: (a comma, in file)s--ect,ion.
+
+a
+     l-ine
+
+a
+b
+     l-ine
+
+a
+b
+     l-ine
+
+   c-artouche
+
+   g-roupe
+
+f-lushleft
+
+                                                            f-lushright
+
+                            ce-ntered line
+
+\input texinfo @c -*-texinfo-*-
+
address@hidden simplest.info
+
address@hidden Top
+
+This is a very simple texi manual @  <>.
+
address@hidden
+
+in verbatim ''
+
+majorheading
+************
+
+chapheading
+***********
+
+heading
+=======
+
+subheading
+----------
+
+subsubheading
+.............
+
+In example.
+
+     <
+     >
+     "
+     &
+     '
+     `
+
+     ``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'
+     @'address@hidden i'
+     @dotless{i} i
+     @dotless{j} j
+     @address@hidden E=`
+     @l{} /l
+     @,{@'C} C',
+     @,c c,
+     @,c@"u c,u" 
+
+
+     @* 
+
+     @ followed by a space
+ 
+     @ followed by a tab
+ 
+     @ followed by a new line
+
+     @- 
+     @| 
+     @: 
+     @! !
+     @? ?
+     @. .
+     @@ @
+     @} }
+     @{ {
+     @/ 
+
+     foo vs. bar.
+     colon :And something else.
+     semi colon ;.
+     And ? ?.
+     Now ! !@
+     but , ,
+
+     @TeX TeX
+     @LaTeX LaTeX
+     @bullet *
+     @copyright (C)
+     @dots ...
+     @enddots ...
+     @equiv ==
+     @error error->
+     @expansion ==>
+     @minus -
+     @point -!-
+     @print -|
+     @result =>
+     @today a sunny day
+     @aa aa
+     @AA AA
+     @ae ae
+     @oe oe
+     @AE AE
+     @OE OE
+     @o /o
+     @O /O
+     @ss ss
+     @l /l
+     @L /L
+     @DH D
+     @TH TH
+     @dh d
+     @th th
+     @exclamdown !
+     @questiondown ?
+     @pounds #
+     @registeredsymbol (R)
+     @ordf a
+     @ordm o
+     @comma ,
+     @quotedblleft ``
+     @quotedblright ''
+     @quoteleft `
+     @quoteright '
+     @quotedblbase ,,
+     @quotesinglbase ,
+     @guillemetleft <<
+     @guillemetright >>
+     @guillemotleft <<
+     @guillemotright >>
+     @guilsinglleft <
+     @guilsinglright >
+     @textdegree o
+     @euro Euro
+     @arrow ->
+     @leq <=
+     @geq >=
+
+     @acronym{--a,an accronym} --a (an accronym)
+     @acronym{--a} --a
+     @abbr{@'E--. @comma{}A., @'Etude Autonome } E'--. ,A. (E'tude Autonome)
+     @abbr{@'E--. @comma{}A.} E'--. ,A.
+     @asis{--a} --a
+     @b{--a} -a
+     @cite{--a} '--a'
+     @code{--a} --a
+     @command{--a} --a
+     @ctrl{--a} --a
+     @dfn{--a} "--a"
+     @dmn{--a} --a
+     @email{--a,--b} --b <--a>
+     @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} --b (--a)
+     @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} --b (--a)
+     @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,
+     @footnote{in footnote} (5)
+     @footnote{in footnote2} (6)
+
+     @image{f--ile} [image src="f--ile.jpg"]
+     @image{f--ile,l--i} [image src="f--ile.jpg"]
+     @image{f--ile,,l--e} [image src="f--ile.jpg"]
+     @image{f--ile,,,alt} [image src="f--ile.jpg" alt="alt"]
+     @image{f--ile,,,,e-d-xt} [image src="f--ile.e--xt"]
+     @image{f--ile,aze,az,alt,e--xt} [image src="f--ile.e--xt" alt="alt"]
+     @image{f-ile,aze,,a--lt} [a-lt]
+     @address@hidden@@@.,aze,az,alt,@file{file ext} address@hidden [alt]
+
+
+
+
+     @clicksequence{click @click{} A} click -> A
+     After clickstyle =>
+     @clicksequence{click @click{} A} click => A
+
+          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: 
+          : 
+
+          : 
+
+        * i--temize
+
+        + i--tem +
+
+        * b--ullet
+
+        - minu--s
+
+        __ e--mph item
+
+        _after emph_ e--mph item
+
+        * a-n itemize line i--tem 1
+        * a-n itemize line i--tem 2
+
+       1. e--numerate
+
+     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
+
+          s--mallexample
+
+          d--isplay
+
+          s--malldisplay
+
+          l--isp
+
+          s--malllisp
+
+     f--ormat
+
+     s--mallformat
+
+      -- 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: t--ype d--eftypefn_name a--rguments...
+          d--eftypefn
+
+      -- c--ategory on c--lass: t--ype d--eftypeop_name a--rguments...
+          d--eftypeop
+
+      -- c--ategory: t--ype d--eftypevr_name
+          d--eftypevr
+
+      -- c--ategory of c--lass: d--efcv_name
+          d--efcv
+
+      -- c--ategory on c--lass: d--efop_name a--rguments...
+          d--efop
+
+      -- 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 argvar argvar1
+          d--efvar
+
+      -- 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
+
+     @xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@, 
ma---nual@@} *Note cross r---ef name@: (file n---ame@)address@hidden
+     @ref{chapter, cross ref name, title, file name, manual} *note cross ref 
name: (file name)chapter.
+     @pxref{chapter, cross ref name, title, file name, manual} *note cross ref 
name: (file name)chapter.
+     @inforef{chapter, cross ref name, file name} *note cross ref name: (file 
name)chapter.
+
+     @ref{chapter} *note chapter::
+     @xref{chapter} *Note chapter::.
+     @pxref{chapter} *note chapter::
+     @address@hidden *note s--ect,ion::
+
+     @address@hidden, a @comma{} in cross
+     ref, a address@hidden in title, a address@hidden in file, a @comma{} in 
manual name }
+     *note a , in cross
+     ref: (a comma, in file)s--ect,ion.
+
+     @ref{chapter,cross ref name} *note cross ref name: chapter.
+     @ref{chapter,,title} *note title: chapter.
+     @ref{chapter,,,file name} *note (file name)chapter::
+     @ref{chapter,,,,manual} *note ()chapter::
+     @ref{chapter,cross ref name,title,} *note cross ref name: chapter.
+     @ref{chapter,cross ref name,,file name} *note cross ref name: (file 
name)chapter.
+     @ref{chapter,cross ref name,,,manual} *note cross ref name: ()chapter.
+     @ref{chapter,cross ref name,title,file name} *note cross ref name: (file 
name)chapter.
+     @ref{chapter,cross ref name,title,,manual} *note cross ref name: 
()chapter.
+     @ref{chapter,cross ref name,title, file name, manual} *note cross ref 
name: (file name)chapter.
+     @ref{chapter,,title,file name} *note title: (file name)chapter.
+     @ref{chapter,,title,,manual} *note title: ()chapter.
+     @ref{chapter,,title, file name, manual} *note title: (file name)chapter.
+     @ref{chapter,,,file name,manual} *note (file name)chapter::
+
+
+     @ref{(pman)anode,cross ref name} *note cross ref name: (pman)anode.
+     @ref{(pman)anode,,title} *note title: (pman)anode.
+     @ref{(pman)anode,,,file name} *note (file name)(pman)anode::
+     @ref{(pman)anode,,,,manual} *note ()(pman)anode::
+     @ref{(pman)anode,cross ref name,title,} *note cross ref name: (pman)anode.
+     @ref{(pman)anode,cross ref name,,file name} *note cross ref name: (file 
name)(pman)anode.
+     @ref{(pman)anode,cross ref name,,,manual} *note cross ref name: 
()(pman)anode.
+     @ref{(pman)anode,cross ref name,title,file name} *note cross ref name: 
(file name)(pman)anode.
+     @ref{(pman)anode,cross ref name,title,,manual} *note cross ref name: 
()(pman)anode.
+     @ref{(pman)anode,cross ref name,title, file name, manual} *note cross ref 
name: (file name)(pman)anode.
+     @ref{(pman)anode,,title,file name} *note title: (file name)(pman)anode.
+     @ref{(pman)anode,,title,,manual} *note title: ()(pman)anode.
+     @ref{(pman)anode,,title, file name, manual} *note title: (file 
name)(pman)anode.
+     @ref{(pman)anode,,,file name,manual} *note (file name)(pman)anode::
+
+
+     @inforef{chapter, cross ref name, file name} *note cross ref name: (file 
name)chapter.
+     @inforef{chapter} *note chapter::
+     @inforef{chapter, cross ref name} *note cross ref name: chapter.
+     @inforef{chapter,,file name} *note (file name)chapter::
+     @inforef{node, cross ref name, file name} *note cross ref name: (file 
name)node.
+     @inforef{node} *note node::
+     @inforef{node, cross ref name} *note cross ref name: node.
+     @inforef{node,,file name} *note (file name)node::
+     @inforef{chapter, cross ref name, file name, spurious arg} *note cross 
ref name: (file name, spurious arg)chapter.
+
+     @address@hidden, a @comma{} in cross
+     ref, a address@hidden in file}
+     *note a , in cross
+     ref: (a comma, in file)s--ect,ion.
+
+
+     a
+          l--ine
+
+     a
+     b
+          l--ine
+
+     a
+     b
+          l--ine
+
+     c--artouche
+
+     g--roupe
+
+     f--lushleft
+
+                                                           f--lushright
+
+                            ce-ntered line
+
+     \input texinfo @c -*-texinfo-*-
+
+     @setfilename simplest.info
+
+     @node Top
+
+     This is a very simple texi manual @  <>.
+
+     @bye
+
+     in verbatim ''
+
+
+
+
+
+     majorheading
+*****************
+
+
+     chapheading
+****************
+
+
+     heading
+============
+
+
+     subheading
+---------------
+
+
+     subsubheading
+..................
+
+
+
+
+
+
+   cp
+
+[index]
+* Menu:
+
+* ":                                     Top.                (line   27)
+* " <1>:                                 Top.                (line  366)
+* " <2>:                                 Top.                (line  716)
+* -option:                               Top.                (line   27)
+* -option <1>:                           Top.                (line  366)
+* -option <2>:                           Top.                (line  716)
+* .:                                     Top.                (line 1187)
+* ?:                                     Top.                (line 1187)
+* a:                                     Top.                (line 1187)
+* index entry between item and itemx:    Top.                (line  314)
+* index entry between item and itemx <1>: Top.               (line  653)
+* index entry between item and itemx <2>: Top.               (line 1134)
+* index entry within deffn:              Top.                (line  160)
+* index entry within deffn <1>:          Top.                (line  499)
+* index entry within deffn <2>:          Top.                (line  980)
+* index entry within itemize:            Top.                (line  122)
+* index entry within itemize <1>:        Top.                (line  461)
+* index entry within itemize <2>:        Top.                (line  941)
+* index entry within multitable:         Top.                (line  130)
+* index entry within multitable <1>:     Top.                (line  469)
+* index entry within multitable <2>:     Top.                (line  950)
+* t-ruc:                                 Top.                (line 1187)
+* T-ruc:                                 Top.                (line 1187)
+
+   fn
+
+[index]
+* Menu:
+
+* --foption:                             Top.                (line   27)
+* --foption <1>:                         Top.                (line  366)
+* --foption <2>:                         Top.                (line  716)
+* .:                                     Top.                (line 1187)
+* ?:                                     Top.                (line 1187)
+* ``:                                    Top.                (line   27)
+* `` <1>:                                Top.                (line  366)
+* `` <2>:                                Top.                (line  716)
+* a:                                     Top.                (line  177)
+* a <1>:                                 Top.                (line  313)
+* a <2>:                                 Top.                (line  516)
+* a <3>:                                 Top.                (line  652)
+* a <4>:                                 Top.                (line  997)
+* a <5>:                                 Top.                (line 1133)
+* a <6>:                                 Top.                (line 1187)
+* b:                                     Top.                (line  314)
+* b <1>:                                 Top.                (line  653)
+* b <2>:                                 Top.                (line 1134)
+* bidule machin:                         Top.                (line  171)
+* bidule machin <1>:                     Top.                (line  510)
+* bidule machin <2>:                     Top.                (line  991)
+* d--effn_name:                          Top.                (line  152)
+* d--effn_name <1>:                      Top.                (line  491)
+* d--effn_name <2>:                      Top.                (line  971)
+* d--efmac_name:                         Top.                (line  213)
+* d--efmac_name <1>:                     Top.                (line  552)
+* d--efmac_name <2>:                     Top.                (line 1033)
+* d--efmethod_name on c--lass:           Top.                (line  237)
+* d--efmethod_name on c--lass <1>:       Top.                (line  576)
+* d--efmethod_name on c--lass <2>:       Top.                (line 1057)
+* d--efop_name on c--lass:               Top.                (line  204)
+* d--efop_name on c--lass <1>:           Top.                (line  543)
+* d--efop_name on c--lass <2>:           Top.                (line 1024)
+* d--efspec_name:                        Top.                (line  216)
+* d--efspec_name <1>:                    Top.                (line  555)
+* d--efspec_name <2>:                    Top.                (line 1036)
+* d--eftypefn_name:                      Top.                (line  192)
+* d--eftypefn_name <1>:                  Top.                (line  531)
+* d--eftypefn_name <2>:                  Top.                (line 1012)
+* d--eftypefun_name:                     Top.                (line  225)
+* d--eftypefun_name <1>:                 Top.                (line  564)
+* d--eftypefun_name <2>:                 Top.                (line 1045)
+* d--eftypemethod_name on c--lass:       Top.                (line  240)
+* d--eftypemethod_name on c--lass <1>:   Top.                (line  579)
+* d--eftypemethod_name on c--lass <2>:   Top.                (line 1060)
+* d--eftypeop_name on c--lass:           Top.                (line  195)
+* d--eftypeop_name on c--lass <1>:       Top.                (line  534)
+* d--eftypeop_name on c--lass <2>:       Top.                (line 1015)
+* d--efun_name:                          Top.                (line  210)
+* d--efun_name <1>:                      Top.                (line  549)
+* d--efun_name <2>:                      Top.                (line 1030)
+* de--ffn_name:                          Top.                (line  155)
+* de--ffn_name <1>:                      Top.                (line  494)
+* de--ffn_name <2>:                      Top.                (line  974)
+* deffn:                                 Top.                (line  180)
+* deffn <1>:                             Top.                (line  182)
+* deffn <2>:                             Top.                (line  519)
+* deffn <3>:                             Top.                (line  521)
+* deffn <4>:                             Top.                (line 1000)
+* deffn <5>:                             Top.                (line 1002)
+* deffnx:                                Top.                (line  178)
+* deffnx <1>:                            Top.                (line  183)
+* deffnx <2>:                            Top.                (line  517)
+* deffnx <3>:                            Top.                (line  522)
+* deffnx <4>:                            Top.                (line  998)
+* deffnx <5>:                            Top.                (line 1003)
+* followed:                              Top.                (line  174)
+* followed <1>:                          Top.                (line  513)
+* followed <2>:                          Top.                (line  994)
+* I:                                     Top.                (line  159)
+* I <1>:                                 Top.                (line  185)
+* I <2>:                                 Top.                (line  498)
+* I <3>:                                 Top.                (line  524)
+* I <4>:                                 Top.                (line  979)
+* I <5>:                                 Top.                (line 1005)
+* id 'i' ule:                            Top.                (line  165)
+* id 'i' ule <1>:                        Top.                (line  504)
+* id 'i' ule <2>:                        Top.                (line  985)
+* id ule:                                Top.                (line  164)
+* id ule <1>:                            Top.                (line  503)
+* id ule <2>:                            Top.                (line  984)
+* log trap:                              Top.                (line  161)
+* log trap <1>:                          Top.                (line  500)
+* log trap <2>:                          Top.                (line  981)
+* log trap1:                             Top.                (line  162)
+* log trap1 <1>:                         Top.                (line  501)
+* log trap1 <2>:                         Top.                (line  982)
+* log trap2:                             Top.                (line  163)
+* log trap2 <1>:                         Top.                (line  502)
+* log trap2 <2>:                         Top.                (line  983)
+* machin:                                Top.                (line  170)
+* machin <1>:                            Top.                (line  172)
+* machin <2>:                            Top.                (line  509)
+* machin <3>:                            Top.                (line  511)
+* machin <4>:                            Top.                (line  990)
+* machin <5>:                            Top.                (line  992)
+* t--ruc:                                Top.                (line 1187)
+* T--ruc:                                Top.                (line 1187)
+* truc:                                  Top.                (line  160)
+* truc <1>:                              Top.                (line  186)
+* truc <2>:                              Top.                (line  499)
+* truc <3>:                              Top.                (line  525)
+* truc <4>:                              Top.                (line  980)
+* truc <5>:                              Top.                (line 1006)
+
+   vr
+
+[index]
+* Menu:
+
+* a:                                     Top.                (line  309)
+* a <1>:                                 Top.                (line  648)
+* a <2>:                                 Top.                (line 1129)
+* b:                                     Top.                (line  310)
+* b <1>:                                 Top.                (line  649)
+* b <2>:                                 Top.                (line 1130)
+* d--efcv_name:                          Top.                (line  201)
+* d--efcv_name <1>:                      Top.                (line  540)
+* d--efcv_name <2>:                      Top.                (line 1021)
+* d--efivar_name of c--lass:             Top.                (line  231)
+* d--efivar_name of c--lass <1>:         Top.                (line  570)
+* d--efivar_name of c--lass <2>:         Top.                (line 1051)
+* d--efopt_name:                         Top.                (line  222)
+* d--efopt_name <1>:                     Top.                (line  561)
+* d--efopt_name <2>:                     Top.                (line 1042)
+* d--eftypeivar_name of c--lass:         Top.                (line  234)
+* d--eftypeivar_name of c--lass <1>:     Top.                (line  573)
+* d--eftypeivar_name of c--lass <2>:     Top.                (line 1054)
+* d--eftypevar_name:                     Top.                (line  228)
+* d--eftypevar_name <1>:                 Top.                (line  567)
+* d--eftypevar_name <2>:                 Top.                (line 1048)
+* d--eftypevr_name:                      Top.                (line  198)
+* d--eftypevr_name <1>:                  Top.                (line  537)
+* d--eftypevr_name <2>:                  Top.                (line 1018)
+* d--efvar_name:                         Top.                (line  219)
+* d--efvar_name <1>:                     Top.                (line  558)
+* d--efvar_name <2>:                     Top.                (line 1039)
+* d--efvr_name:                          Top.                (line  189)
+* d--efvr_name <1>:                      Top.                (line  528)
+* d--efvr_name <2>:                      Top.                (line 1009)
+
+   ky
+
+   pg
+
+   tp
+
+[index]
+* Menu:
+
+* d--eftp_name:                          Top.                (line  207)
+* d--eftp_name <1>:                      Top.                (line  546)
+* d--eftp_name <2>:                      Top.                (line 1027)
+
+   ---------- Footnotes ----------
+
+   (1) in footnote
+
+   (2) in footnote2
+
+   (3) in footnote
+
+   (4) in footnote2
+
+   (5) in footnote
+
+   (6) in footnote2
+
+
+File: formatting.info,  Node: chapter,  Next: chapter2,  Prev: Top,  Up: Top
+
+1 chapter
+*********
+
+(1)
+
+* Menu:
+
+* s--ect,ion:: s-ect,ion
+
+Menu comment
+"simple-double-three--four---"
+
+
+
+   ---------- Footnotes ----------
+
+   (1) in footnote
+
+
+File: formatting.info,  Node: s--ect,ion,  Up: chapter
+
+1.1 A section
+=============
+
+* Menu:
+
+* subsection:: 
+
+In detailmenu
+
+* subsubsection ``simple-double--::
+* subsubsection three---four----''::
+
+
+File: formatting.info,  Node: subsection,  Up: s--ect,ion
+
+1.1.1 subsection
+----------------
+
+* Menu:
+
+* subsubsection ``simple-double--::
+* subsubsection three---four----''::
+
+
+File: formatting.info,  Node: subsubsection ``simple-double--,  Next: 
subsubsection three---four----'',  Up: subsection
+
+1.1.1.1 subsubsection "simple-double-
+.....................................
+
+
+File: formatting.info,  Node: subsubsection three---four----'',  Prev: 
subsubsection ``simple-double--,  Up: subsection
+
+1.1.1.2 three--four---"
+.......................
+
+
+File: formatting.info,  Node: chapter2,  Prev: chapter,  Up: Top
+
+chapter 2
+*********
+
+[index]
+* Menu:
+
+* ":                                     Top.                (line   27)
+* " <1>:                                 Top.                (line  366)
+* " <2>:                                 Top.                (line  716)
+* -option:                               Top.                (line   27)
+* -option <1>:                           Top.                (line  366)
+* -option <2>:                           Top.                (line  716)
+* .:                                     Top.                (line 1187)
+* ?:                                     Top.                (line 1187)
+* a:                                     Top.                (line 1187)
+* index entry between item and itemx:    Top.                (line  314)
+* index entry between item and itemx <1>: Top.               (line  653)
+* index entry between item and itemx <2>: Top.               (line 1134)
+* index entry within deffn:              Top.                (line  160)
+* index entry within deffn <1>:          Top.                (line  499)
+* index entry within deffn <2>:          Top.                (line  980)
+* index entry within itemize:            Top.                (line  122)
+* index entry within itemize <1>:        Top.                (line  461)
+* index entry within itemize <2>:        Top.                (line  941)
+* index entry within multitable:         Top.                (line  130)
+* index entry within multitable <1>:     Top.                (line  469)
+* index entry within multitable <2>:     Top.                (line  950)
+* t-ruc:                                 Top.                (line 1187)
+* T-ruc:                                 Top.                (line 1187)
+
+[index]
+* Menu:
+
+* --foption:                             Top.                (line   27)
+* --foption <1>:                         Top.                (line  366)
+* --foption <2>:                         Top.                (line  716)
+* .:                                     Top.                (line 1187)
+* ?:                                     Top.                (line 1187)
+* ``:                                    Top.                (line   27)
+* `` <1>:                                Top.                (line  366)
+* `` <2>:                                Top.                (line  716)
+* a:                                     Top.                (line  177)
+* a <1>:                                 Top.                (line  313)
+* a <2>:                                 Top.                (line  516)
+* a <3>:                                 Top.                (line  652)
+* a <4>:                                 Top.                (line  997)
+* a <5>:                                 Top.                (line 1133)
+* a <6>:                                 Top.                (line 1187)
+* b:                                     Top.                (line  314)
+* b <1>:                                 Top.                (line  653)
+* b <2>:                                 Top.                (line 1134)
+* bidule machin:                         Top.                (line  171)
+* bidule machin <1>:                     Top.                (line  510)
+* bidule machin <2>:                     Top.                (line  991)
+* d--effn_name:                          Top.                (line  152)
+* d--effn_name <1>:                      Top.                (line  491)
+* d--effn_name <2>:                      Top.                (line  971)
+* d--efmac_name:                         Top.                (line  213)
+* d--efmac_name <1>:                     Top.                (line  552)
+* d--efmac_name <2>:                     Top.                (line 1033)
+* d--efmethod_name on c--lass:           Top.                (line  237)
+* d--efmethod_name on c--lass <1>:       Top.                (line  576)
+* d--efmethod_name on c--lass <2>:       Top.                (line 1057)
+* d--efop_name on c--lass:               Top.                (line  204)
+* d--efop_name on c--lass <1>:           Top.                (line  543)
+* d--efop_name on c--lass <2>:           Top.                (line 1024)
+* d--efspec_name:                        Top.                (line  216)
+* d--efspec_name <1>:                    Top.                (line  555)
+* d--efspec_name <2>:                    Top.                (line 1036)
+* d--eftypefn_name:                      Top.                (line  192)
+* d--eftypefn_name <1>:                  Top.                (line  531)
+* d--eftypefn_name <2>:                  Top.                (line 1012)
+* d--eftypefun_name:                     Top.                (line  225)
+* d--eftypefun_name <1>:                 Top.                (line  564)
+* d--eftypefun_name <2>:                 Top.                (line 1045)
+* d--eftypemethod_name on c--lass:       Top.                (line  240)
+* d--eftypemethod_name on c--lass <1>:   Top.                (line  579)
+* d--eftypemethod_name on c--lass <2>:   Top.                (line 1060)
+* d--eftypeop_name on c--lass:           Top.                (line  195)
+* d--eftypeop_name on c--lass <1>:       Top.                (line  534)
+* d--eftypeop_name on c--lass <2>:       Top.                (line 1015)
+* d--efun_name:                          Top.                (line  210)
+* d--efun_name <1>:                      Top.                (line  549)
+* d--efun_name <2>:                      Top.                (line 1030)
+* de--ffn_name:                          Top.                (line  155)
+* de--ffn_name <1>:                      Top.                (line  494)
+* de--ffn_name <2>:                      Top.                (line  974)
+* deffn:                                 Top.                (line  180)
+* deffn <1>:                             Top.                (line  182)
+* deffn <2>:                             Top.                (line  519)
+* deffn <3>:                             Top.                (line  521)
+* deffn <4>:                             Top.                (line 1000)
+* deffn <5>:                             Top.                (line 1002)
+* deffnx:                                Top.                (line  178)
+* deffnx <1>:                            Top.                (line  183)
+* deffnx <2>:                            Top.                (line  517)
+* deffnx <3>:                            Top.                (line  522)
+* deffnx <4>:                            Top.                (line  998)
+* deffnx <5>:                            Top.                (line 1003)
+* followed:                              Top.                (line  174)
+* followed <1>:                          Top.                (line  513)
+* followed <2>:                          Top.                (line  994)
+* I:                                     Top.                (line  159)
+* I <1>:                                 Top.                (line  185)
+* I <2>:                                 Top.                (line  498)
+* I <3>:                                 Top.                (line  524)
+* I <4>:                                 Top.                (line  979)
+* I <5>:                                 Top.                (line 1005)
+* id 'i' ule:                            Top.                (line  165)
+* id 'i' ule <1>:                        Top.                (line  504)
+* id 'i' ule <2>:                        Top.                (line  985)
+* id ule:                                Top.                (line  164)
+* id ule <1>:                            Top.                (line  503)
+* id ule <2>:                            Top.                (line  984)
+* log trap:                              Top.                (line  161)
+* log trap <1>:                          Top.                (line  500)
+* log trap <2>:                          Top.                (line  981)
+* log trap1:                             Top.                (line  162)
+* log trap1 <1>:                         Top.                (line  501)
+* log trap1 <2>:                         Top.                (line  982)
+* log trap2:                             Top.                (line  163)
+* log trap2 <1>:                         Top.                (line  502)
+* log trap2 <2>:                         Top.                (line  983)
+* machin:                                Top.                (line  170)
+* machin <1>:                            Top.                (line  172)
+* machin <2>:                            Top.                (line  509)
+* machin <3>:                            Top.                (line  511)
+* machin <4>:                            Top.                (line  990)
+* machin <5>:                            Top.                (line  992)
+* t--ruc:                                Top.                (line 1187)
+* T--ruc:                                Top.                (line 1187)
+* truc:                                  Top.                (line  160)
+* truc <1>:                              Top.                (line  186)
+* truc <2>:                              Top.                (line  499)
+* truc <3>:                              Top.                (line  525)
+* truc <4>:                              Top.                (line  980)
+* truc <5>:                              Top.                (line 1006)
+
+
+
+Tag Table:
+Node: Top10272
+Ref: Top-Footnote-154298
+Ref: Top-Footnote-254318
+Ref: Top-Footnote-354339
+Ref: Top-Footnote-454359
+Ref: Top-Footnote-554380
+Ref: Top-Footnote-654400
+Node: chapter54421
+Ref: chapter-Footnote-154645
+Node: s--ect,ion54665
+Node: subsection54867
+Ref: anchor55046
+Node: subsubsection ``simple-double--55046
+Node: subsubsection three---four----''55246
+Node: chapter255418
+
+End Tag Table

Modified: trunk/tp/tests/coverage/tests-parser.txt
===================================================================
--- trunk/tp/tests/coverage/tests-parser.txt    2013-08-26 21:21:15 UTC (rev 
5344)
+++ trunk/tp/tests/coverage/tests-parser.txt    2013-08-27 20:09:31 UTC (rev 
5345)
@@ -5,3 +5,4 @@
 #formatting_info formatting.texi --info -U texi2html
 formatting_utf8_enable_encoding formatting_utf8.texi --enable-encoding
 formatting_fr formatting.texi --document-language fr
+formatting_cr formatting-cr.texi

Added: trunk/tp/tests/test_scripts/coverage_formatting_cr.sh
===================================================================
--- trunk/tp/tests/test_scripts/coverage_formatting_cr.sh                       
        (rev 0)
+++ trunk/tp/tests/test_scripts/coverage_formatting_cr.sh       2013-08-27 
20:09:31 UTC (rev 5345)
@@ -0,0 +1,38 @@
+#! /bin/sh
+
+if test z"$srcdir" = "z"; then
+  srcdir=.
+fi
+
+command=run_parser_all.sh
+one_test_logs_dir=test_log
+diffs_dir=diffs
+
+
+
+if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
+  echo "Skipping long tests that take a lot of time to run"
+  exit 77
+fi
+
+if test "z$TEX_HTML_TESTS" = z"yes"; then
+  echo "Skipping long tests, only doing HTML TeX tests"
+  exit 77
+fi
+
+dir=coverage
+arg='formatting_cr'
+name='formatting_cr'
+[ -d "$dir" ] || mkdir $dir
+
+srcdir_test=$dir; export srcdir_test;
+cd "$dir" || exit 99
+../"$srcdir"/"$command" -dir $dir $arg
+exit_status=$?
+cat $one_test_logs_dir/$name.log
+if test -f $diffs_dir/$name.diff; then
+  echo 
+  cat $diffs_dir/$name.diff
+fi
+exit $exit_status
+


Property changes on: trunk/tp/tests/test_scripts/coverage_formatting_cr.sh
___________________________________________________________________
Added: svn:executable
   + *




reply via email to

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