texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: Use empty_line type to determine where end of lin


From: Patrice Dumas
Subject: branch master updated: Use empty_line type to determine where end of line should be output, do not add extraneous end of lines. Handle @sp. Use _convert instead of convert_unfilled and convert_line.
Date: Thu, 12 Aug 2021 20:18:34 -0400

This is an automated email from the git hooks/post-receive script.

pertusus pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new a96c554  Use empty_line type to determine where end of line should be 
output, do not add extraneous end of lines. Handle @sp. Use _convert instead of 
convert_unfilled and convert_line.
a96c554 is described below

commit a96c5548bf8933566e4874c4c9c749805b48b4d7
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Fri Aug 13 02:16:12 2021 +0200

    Use empty_line type to determine where end of line should be
    output, do not add extraneous end of lines. Handle @sp.
    Use _convert instead of convert_unfilled and convert_line.
---
 tp/Texinfo/Convert/LaTeX.pm                        |  74 +--
 tp/t/converters_tests.t                            |   1 +
 tp/t/results/converters_tests/accentenc.pl         |  42 +-
 tp/t/results/converters_tests/inline.pl            |   5 +-
 tp/t/results/converters_tests/test_sp.pl           |  19 +
 tp/t/results/latex_tests/kbdinputstyle_and_kbd.pl  |  14 +-
 .../res_parser/formatting_latex/formatting.tex     | 697 +++++++++------------
 7 files changed, 344 insertions(+), 508 deletions(-)

diff --git a/tp/Texinfo/Convert/LaTeX.pm b/tp/Texinfo/Convert/LaTeX.pm
index 5ea8692..6bd4c3c 100644
--- a/tp/Texinfo/Convert/LaTeX.pm
+++ b/tp/Texinfo/Convert/LaTeX.pm
@@ -554,7 +554,7 @@ sub _latex_header {
   if ($self->get_conf('TEST')) {
     $header .=
 '
-\renewcommand{\includegraphics}[1]{FIG #1}
+\renewcommand{\includegraphics}[1]{\fbox{FIG #1}}
 
 ';
   }
@@ -637,24 +637,6 @@ sub convert_tree($$)
   return $self->_convert($root);
 }
 
-sub convert_line($$;$)
-{
-  my ($self, $converted, $conf) = @_;
-  my $text = $self->_convert($converted);
-  $text .= "\n\n";
-  return $text;
-}
-
-sub convert_unfilled($$;$)
-{
-  my ($self, $converted, $conf) = @_;
-  my $result = $self->_convert($converted);
-  $result .= "\n\n";
-  return $result;
-}
-
-
-
 # Protect LaTeX special characters.
 sub _protect_text($$)
 {
@@ -754,8 +736,14 @@ sub _convert($$)
     return $result;
   }
 
-  if ($type and ($type eq 'empty_line' 
-                           or $type eq 'after_description_line')) {
+  #if ($type and ($type eq 'empty_line' 
+  #                         or $type eq 'after_description_line')) {
+  #  return '';
+  #}
+  if ($type and ($type eq 'empty_line')) {
+    return "\n";
+  }
+  if ($type and ($type eq 'after_description_line')) {
     return '';
   }
 
@@ -1247,7 +1235,8 @@ sub _convert($$)
       }
     } elsif ($command eq 'titlefont') {
       $result .= "{\\Huge \\bfseries ";
-      $result .= $self->convert_line({'contents' => [$root->{'args'}->[0]]});
+      $result .= $self->_convert({'contents'
+                                  => $root->{'args'}->[0]->{'contents'}});
       $result .= '}';
       return $result;
     } elsif ($command eq 'U') {
@@ -1332,7 +1321,6 @@ sub _convert($$)
         if ($format_raw_commands{$command}) {
           $result .= "\n\n";
         } elsif ($command eq 'verbatim') {
-          # FIXME add a \n?
           $result .= "\\begin{verbatim}\n";
         }
         push @{$self->{'style_context'}->[-1]->{'context'}}, 'raw';
@@ -1350,15 +1338,15 @@ sub _convert($$)
             and @{$root->{'args'}->[0]->{'contents'}}) {
           my $prepended = $self->gdt('@b{{quotation_arg}:} ', 
              {'quotation_arg' => $root->{'args'}->[0]->{'contents'}});
-          $result .= $self->convert_line($prepended);
+          $result .= $self->_convert($prepended);
         }
       } elsif ($command eq 'multitable') {
         my $columnsize;
         if ($root->{'extra'}->{'columnfractions'}) {
         } elsif ($root->{'extra'}->{'prototypes'}) {
           foreach my $prototype (@{$root->{'extra'}->{'prototypes'}}) {
-            my ($formatted_prototype) = $self->convert_line($prototype, 
-                                                        {'indent_length' => 
0});
+            my ($formatted_prototype) = $self->_convert($prototype,
+                                                       {'indent_length' => 0});
             push @$columnsize, 
                  
2+Texinfo::Convert::Unicode::string_width($formatted_prototype);
           }
@@ -1390,12 +1378,12 @@ sub _convert($$)
       }
              
       if ($contents) {
-        my $heading = $self->convert_line({'contents' => $contents});
+        my $heading = $self->_convert({'contents' => $contents});
         $heading =~ s/\s*$//;
 
         my $section_cmd = $section_map{$command};
         if ($section_cmd) {
-          $result .= "\\".$section_cmd."{$heading}\n\n";
+          $result .= "\\".$section_cmd."{$heading}\n";
         }
       }
     } elsif (($command eq 'item' or $command eq 'itemx')
@@ -1408,7 +1396,7 @@ sub _convert($$)
         my $converted_tree = $self->_table_item_content_tree($root,
                                          $root->{'args'}->[0]->{'contents'});
 
-        $result = $self->convert_line($converted_tree);
+        $result = $self->_convert($converted_tree);
         if ($result ne '') {
           $result .= "\n";
         }
@@ -1432,15 +1420,15 @@ sub _convert($$)
              or $command eq 'tab') {
       # ...
     } elsif ($command eq 'center') {
-      $result = $self->convert_line (
+      $result = $self->_convert (
                        {'contents' => $root->{'args'}->[0]->{'contents'}},
                        {'indent_length' => 0});
       return $result;
     } elsif ($command eq 'exdent') {
       if 
($preformatted_commands{$self->{'style_context'}->[-1]->{'context'}->[-1]}) {
-        $result = $self->convert_unfilled({'contents' => 
$root->{'args'}->[0]->{'contents'}});
+        $result = $self->_convert({'contents' => 
$root->{'args'}->[0]->{'contents'}});
       } else {
-        $result = $self->convert_line({'contents' => 
$root->{'args'}->[0]->{'contents'}});
+        $result = $self->_convert({'contents' => 
$root->{'args'}->[0]->{'contents'}});
       }
       if ($result ne '') {
         $result .= "\n";
@@ -1462,13 +1450,18 @@ sub _convert($$)
       return $result;
     } elsif ($command eq 'listoffloats') {
       return '';
+    # @page \newpage
     } elsif ($command eq 'sp') {
+      my $sp_nr = 1;
       if ($root->{'extra'}->{'misc_args'}->[0]) {
         # this useless copy avoids perl changing the type to integer!
-        my $sp_nr = $root->{'extra'}->{'misc_args'}->[0];
-
-        # add vertical space here
+        $sp_nr = $root->{'extra'}->{'misc_args'}->[0];
       }
+      # FIXME \vskip is a TeX primitive, so the syntax seems to be
+      # different from LaTeX, and some people warn against using
+      # TeX primitives.  However there is no obvious corresponding
+      # command in LaTeX, except for adding enough \\.
+      $result .= "\\vskip $sp_nr\\baselineskip\n";
       return $result;
     } elsif ($command eq 'contents') {
       if ($self->{'structuring'}
@@ -1488,6 +1481,7 @@ sub _convert($$)
     # @paragraphindent, @frenchspacing...
     } elsif ($informative_commands{$command}) {
       $self->_informative_command($root);
+      # \frenchspacing \nonfrenchspacing
       return '';
     } else {
       $unknown_command = 1;
@@ -1716,8 +1710,8 @@ sub _convert($$)
       $self->{'text_before_first_node'} = $result;
     }
   }
-  # close paragraphs and preformatted
-  if ($paragraph or $preformatted) {
+  # close preformatted
+  if ($preformatted) {
     $result .= "\n\n";
   }
 
@@ -1733,7 +1727,7 @@ sub _convert($$)
         my ($caption, $prepended) = Texinfo::Common::float_name_caption($self,
                                                                         $root);
         if ($prepended) {
-          my $float_number = $self->convert_line ($prepended);
+          my $float_number = $self->_convert($prepended);
           $result .= $float_number;
         }
         if ($caption) {
@@ -1762,9 +1756,9 @@ sub _convert($$)
       my $old_context = pop @{$self->{'style_context'}->[-1]->{'context'}};
       die if ($old_context ne 'raw');
       if ($command eq 'verbatim') {
-        $result .= "\\end{verbatim}\n\n";
+        $result .= "\\end{verbatim}\n";
       }
-      # FIXME add \n or \n\n if not verbatim?
+      # FIXME add \n if not verbatim?
     } elsif ($flush_commands{$command}) {
       my $old_context = pop @{$self->{'style_context'}->[-1]->{'context'}};
       die if (! $flush_commands{$old_context});
diff --git a/tp/t/converters_tests.t b/tp/t/converters_tests.t
index 0cb79c4..f62025c 100644
--- a/tp/t/converters_tests.t
+++ b/tp/t/converters_tests.t
@@ -1047,6 +1047,7 @@ my %xml_file_tests = (
 my %latex_tests = (
   'accentenc' => 1,
   'inline' => 1,
+  'test_sp' => 1,
 );
 
 foreach my $test (@test_cases) {
diff --git a/tp/t/results/converters_tests/accentenc.pl 
b/tp/t/results/converters_tests/accentenc.pl
index 38c8f27..8b416fb 100644
--- a/tp/t/results/converters_tests/accentenc.pl
+++ b/tp/t/results/converters_tests/accentenc.pl
@@ -3543,117 +3543,81 @@ $result_converted{'docbook'}->{'accentenc'} = '
 ';
 
 
-$result_converted{'latex'}->{'accentenc'} = '\\label{anchor:Top}should be e`: 
\\`{e} \\`{e}
-
+$result_converted{'latex'}->{'accentenc'} = '
+\\label{anchor:Top}
+should be e`: \\`{e} \\`{e}
 
 should be e\': \\\'{e} \\\'{e}
 
-
 should be e\\^{}: \\^{e} \\^{e}
 
-
 should be u": \\"{u} \\"{u}
 
-
 should be i`: \\`{i} \\`{i}
 
-
 should be i\': \\\'{i} \\\'{i}
 
-
 should be i\\^{}: \\^{i} \\^{i}
 
-
 should be u": \\"{u} \\"{u}
 
-
 should be c,: \\c{c} \\c{c}
 
-
 should be n\\~{}: \\~{n} \\~{n}
 
-
 should be e=: \\={e} \\={e}
 
-
 should be e\\hbox{\'}\': \\H{e} \\H{e}
 
-
 should be e.: \\.{e} \\.{e}
 
-
 should be e*: \\r{e} \\r{e}
 
-
 should be ee[: \\t{ee}
 
-
 should be e(: \\u{e} \\u{e}
 
-
 should be e\\_: \\b{e} \\b{e}
 
-
 should be .e: \\d{e} \\d{e}
 
-
 should be e<: \\v{e} \\v{e}
 
-
 should be a; : \\k{a} \\k{a}
 
-
 should be e; : \\k{e} \\k{e}
 
-
 upside down: \\textquestiondown{} \\textexclamdown{}
 
-
 A-with-circle: \\aa{},\\AA{}
 
-
 AE, OE ligatures: \\ae{} \\AE{} \\oe{} \\OE{}
 
-
 dotless i, j: \\i{} \\j{}
 
-
 Polish suppressed-L: \\l{} \\L{}
 
-
 O-with-slash: \\o{} \\O{}
 
-
 es-zet or sharp S: \\ss{}
 
-
 pounds sterling: \\textsterling{}
 
-
 should be dotless i`: \\`{\\i{}}
 
-
 should be dotless i\': \\\'{\\i{}}
 
-
 should be dotless i\\^{}: \\^{\\i{}}
 
-
 should be dotless i": \\"{\\i{}}
 
-
 should be dotless j`: \\`{\\j{}}
 
-
 should be dotless j\': \\\'{\\j{}}
 
-
 should be dotless j\\^{}: \\^{\\j{}}
 
-
 should be dotless j": \\"{\\j{}}
-
-
 ';
 
 1;
diff --git a/tp/t/results/converters_tests/inline.pl 
b/tp/t/results/converters_tests/inline.pl
index fba527f..e05909e 100644
--- a/tp/t/results/converters_tests/inline.pl
+++ b/tp/t/results/converters_tests/inline.pl
@@ -910,7 +910,8 @@ raw <emphasis>docbook</emphasis> ``,
 </para>';
 
 
-$result_converted{'latex'}->{'inline'} = ', 
+$result_converted{'latex'}->{'inline'} = '
+, 
 , 
 ,
 , 
@@ -924,8 +925,6 @@ $\\frac{a < b \\mathtt{tex \\hbox{ code }}}{b}$ ``
 , 
 
 raw $\\frac{a < b \\texttt{tex \\hbox{ code }}}{b}$ ``
-
-
 ';
 
 1;
diff --git a/tp/t/results/converters_tests/test_sp.pl 
b/tp/t/results/converters_tests/test_sp.pl
index 012bcf1..f521509 100644
--- a/tp/t/results/converters_tests/test_sp.pl
+++ b/tp/t/results/converters_tests/test_sp.pl
@@ -421,4 +421,23 @@ Now lone @sp:
 <para>sp after para
 </para>';
 
+
+$result_converted{'latex'}->{'test_sp'} = 'Para
+\\vskip 1\\baselineskip
+other para
+Now lone @sp:
+
+\\vskip 1\\baselineskip
+
+\\vskip 2\\baselineskip
+Para after sp
+
+A
+\\vskip 2\\baselineskip
+B
+
+sp after para
+\\vskip 1\\baselineskip
+';
+
 1;
diff --git a/tp/t/results/latex_tests/kbdinputstyle_and_kbd.pl 
b/tp/t/results/latex_tests/kbdinputstyle_and_kbd.pl
index e740610..17fcbb8 100644
--- a/tp/t/results/latex_tests/kbdinputstyle_and_kbd.pl
+++ b/tp/t/results/latex_tests/kbdinputstyle_and_kbd.pl
@@ -741,27 +741,23 @@ $result_floats{'kbdinputstyle_and_kbd'} = {};
 
 
 
-$result_converted{'latex'}->{'kbdinputstyle_and_kbd'} = 
'{\\ttfamily\\textsl{default kbdinputstyle}}
-
-
+$result_converted{'latex'}->{'kbdinputstyle_and_kbd'} = '
+{\\ttfamily\\textsl{default kbdinputstyle}}
 {\\ttfamily\\textsl{in example default kbdinputstyle}}
 
 
-\\texttt{code kbdinputstyle}
-
 
+\\texttt{code kbdinputstyle}
 \\texttt{in example code kbdinputstyle}
 
 
-{\\ttfamily\\textsl{example kbdinputstyle}}
-
 
+{\\ttfamily\\textsl{example kbdinputstyle}}
 \\texttt{in example example kbdinputstyle}
 
 
-{\\ttfamily\\textsl{distinct kbdinputstyle}}
-
 
+{\\ttfamily\\textsl{distinct kbdinputstyle}}
 {\\ttfamily\\textsl{in example distinct kbdinputstyle}}
 
 
diff --git a/tp/tests/layout/res_parser/formatting_latex/formatting.tex 
b/tp/tests/layout/res_parser/formatting_latex/formatting.tex
index 43c5011..abdb4b2 100644
--- a/tp/tests/layout/res_parser/formatting_latex/formatting.tex
+++ b/tp/tests/layout/res_parser/formatting_latex/formatting.tex
@@ -8,16 +8,19 @@
 \usepackage{graphicx}
 
 
-\renewcommand{\includegraphics}[1]{FIG #1}
+\renewcommand{\includegraphics}[1]{\fbox{FIG #1}}
 
 \usepackage[utf8]{inputenc}
 \begin{document}
-\label{anchor:Top}Insertcopying in normal text
+
+\label{anchor:Top}
 
 
-In copying
 
 
+Insertcopying in normal text
+In copying
+
 <
 >
 "
@@ -25,14 +28,12 @@ In copying
 '
 `
 
-
 ``simple-double--three---four----''\leavevmode{}\\
 code: \texttt{``simple-double{-}{-}three{-}{-}{-}four{-}{-}{-}-''} 
\leavevmode{}\\
 asis: ``simple-double--three---four----'' \leavevmode{}\\
 strong: \textbf{``simple-double--three---four----''} \leavevmode{}\\
 kbd: {\ttfamily\textsl{``simple-double{-}{-}three{-}{-}{-}four{-}{-}{-}-''}} 
\leavevmode{}\\
 
-
 `\hbox{}`simple-double-\hbox{}-three---four----'\hbox{}'\leavevmode{}\\
 
 
@@ -53,10 +54,8 @@ kbd: 
{\ttfamily\textsl{``simple-double{-}{-}three{-}{-}{-}four{-}{-}{-}-''}} \le
 @,c \c{c}
 @,c@"u \c{c}\"{u} \leavevmode{}\\
 
-
 @U\{0075\} u
 
-
 @* \leavevmode{}\\
 @ followed by a space
 \ {}
@@ -74,7 +73,6 @@ kbd: 
{\ttfamily\textsl{``simple-double{-}{-}three{-}{-}{-}four{-}{-}{-}-''}} \le
 \texttt{@\{} \{
 \texttt{@/} 
 
-
 foo vs.\@ bar. 
 colon :\@And something else.
 semi colon ;\@.
@@ -82,7 +80,6 @@ And ? ?\@.
 Now ! !\@@
 but , ,\@
 
-
 @TeX \TeX{}
 @LaTeX \LaTeX{}
 @bullet \textbullet{}
@@ -98,7 +95,6 @@ but , ,\@
 @result $\Rightarrow{}$
 @today a sunny day
 
-
 @aa \aa{}
 @AA \AA{}
 @ae \ae{}
@@ -115,7 +111,6 @@ but , ,\@
 @dh \dh{}
 @th \th{}
 
-
 @exclamdown \textexclamdown{}
 @questiondown \textquestiondown{}
 @pounds \textsterling{}
@@ -141,7 +136,6 @@ but , ,\@
 @leq $\leq{}$
 @geq $\geq{}$
 
-
 \texttt{@acronym\{{-}{-}a,an accronym\}} --a (an accronym)
 \texttt{@acronym\{{-}{-}a\}} --a
 \texttt{@abbr\{@'E{-}{-}. @comma\{\}A., @'Etude Autonome \}} \'{E}--.\@ ,A.\@ 
(\'{E}tude Autonome)
@@ -171,11 +165,7 @@ but , ,\@
 \texttt{@t\{{-}{-}a\}} \texttt{{-}{-}a}
 \texttt{@sansserif\{{-}{-}a\}} 
 \texttt{@slanted\{{-}{-}a\}} 
-\texttt{@titlefont\{{-}{-}a\}} 
-
-{\Huge \bfseries --a
-
-}
+\texttt{@titlefont\{{-}{-}a\}} {\Huge \bfseries --a}
 \texttt{@indicateurl\{{-}{-}a\}} `\texttt{{-}{-}a}'
 \texttt{@uref\{{-}{-}a,{-}{-}b\}} --b (--a)
 \texttt{@uref\{{-}{-}a\}} \texttt{<{-}{-}a>}
@@ -212,13 +202,8 @@ but , ,\@
 \texttt{@ogonek\{a\}} \k{a}
 \texttt{@ogonek\{{-}{-}a\}} \k{--a}
 \texttt{a@sup\{h\}@sub\{l\}} a\textsuperscript{h}\textsubscript{l}
-\texttt{@footnote\{in footnote\}} \footnote{in footnote
-
-}
-\texttt{@footnote\{in footnote2\}} \footnote{in footnote2
-
-}
-
+\texttt{@footnote\{in footnote\}} \footnote{in footnote}
+\texttt{@footnote\{in footnote2\}} \footnote{in footnote2}
 
 \texttt{@image\{f{-}{-}ile\}} \includegraphics{layout/f--ile}
 \texttt{@image\{f{-}{-}ile,l{-}{-}i\}} 
\includegraphics[width=l--i]{layout/f--ile}
@@ -229,16 +214,17 @@ but , ,\@
 \texttt{@image\{f-ile,aze,,a{-}{-}lt\}} \includegraphics[width=aze]{f-ile}
 \texttt{@image\{@file\{f{-}{-}ile\}@@@.,aze,az,alt,@file\{.file ext\} 
e{-}{-}xt@\}} \includegraphics[width=aze,height=az]{f--ile@.}
 
+\vskip 2\baselineskip
 
 \texttt{@clicksequence\{click @click\{\} A\}} click $\rightarrow{}$ A
 After clickstyle $\Rightarrow{}$
 \texttt{@clicksequence\{click @click\{\} A\}} click $\Rightarrow{}$ A
 
-
 $$
 \mathbf{``simple-double--three---four----''} \hbox{aa}
 `\hbox{}`simple-double-\hbox{}-three---four----'\hbox{}'\leavevmode{}\\
 $$
+
 $$
 \ddot{u} \ddot{U} \tilde{n} \hat{a} \acute{e} \bar{o} \grave{i} \acute{e} 
\imath{} \jmath{} \grave{\bar{E}}
 \mathord{\text{\l{}}} \textsl{\c{\'{C}}} \textsl{\c{\'{C}}} \textsl{\c{c}} 
\textsl{\H{a}} \dot{a} \mathring{a} \textsl{\t{a}}
@@ -246,6 +232,7 @@ $$
 \leavevmode{}\\ \ {}\ {} \ {}\-{}   ! ? . @ \} \{ 
 a sunny day
 $$
+
 $$
 \rightarrow{}
 u
@@ -255,249 +242,194 @@ TeX LaTeX \bullet{} \copyright{} \dots{} \dots{} 
\equiv{}
 \mathord{\text{\TH{}}} \mathord{\text{\dh{}}} \mathord{\text{\th{}}} 
\mathord{\text{\textexclamdown{}}} \mathord{\text{\textquestiondown{}}} 
\mathsterling{}
 \circledR{} \mathord{\text{\textordfeminine{}}} 
\mathord{\text{\textordmasculine{}}} , 
 $$
+
 $$
 \mathord{\text{\textquotedblleft{}}} \mathord{\text{\textquotedblright{}}} 
 \mathord{\text{\textquoteleft{}}} \mathord{\text{\textquoteright{}}} 
\mathord{\text{\quotedblbase{}}} \mathord{\text{\quotesinglbase{}}} 
\mathord{\text{\guillemotleft{}}}
 \mathord{\text{\guillemotright{}}} \mathord{\text{\guillemotleft{}}} 
\mathord{\text{\guillemotright{}}} \mathord{\text{\guilsinglleft{}}}
 \mathord{\text{\guilsinglright{}}} ^{\circ{}} \euro{} \rightarrow{} \leq{} 
\geq{}
 $$
-{\ttfamily\textsl{default kbdinputstyle}}
-
 
+{\ttfamily\textsl{default kbdinputstyle}}
 {\ttfamily\textsl{in example default kbdinputstyle}}
 
 
-\texttt{code kbdinputstyle}
-
 
+\texttt{code kbdinputstyle}
 \texttt{in example code kbdinputstyle}
 
 
-{\ttfamily\textsl{example kbdinputstyle}}
-
 
+{\ttfamily\textsl{example kbdinputstyle}}
 \texttt{in example example kbdinputstyle}
 
 
-{\ttfamily\textsl{distinct kbdinputstyle}}
-
 
+{\ttfamily\textsl{distinct kbdinputstyle}}
 {\ttfamily\textsl{in example distinct kbdinputstyle}}
 
 
-A quot---ation
-
-
-\textbf{Note:} 
-
-A Note
-
-
-\textbf{note:} 
-
-A note
-
-
-\textbf{Caution:} 
-
-Caution
-
-
-\textbf{Important:} 
-
-Important
-
-
-\textbf{Tip:} 
-
-a Tip
-
-
-\textbf{Warning:} 
-
-a Warning.
 
+A quot---ation
 
-\textbf{something \'{e} \TeX{}:} 
-
-The something \'{e} \TeX{} is here.
+\textbf{Note:} A Note
 
+\textbf{note:} A note
 
-\textbf{@ at the end of line \ {}:} 
+\textbf{Caution:} Caution
 
-A @ at the end of the @quotation line.
+\textbf{Important:} Important
 
+\textbf{Tip:} a Tip
 
-\textbf{something, other thing:} 
+\textbf{Warning:} a Warning.
 
-something, other thing
+\textbf{something \'{e} \TeX{}:} The something \'{e} \TeX{} is here.
 
+\textbf{@ at the end of line \ {}:} A @ at the end of the @quotation line.
 
-\textbf{Note, the note:} 
+\textbf{something, other thing:} something, other thing
 
-Note, the note
+\textbf{Note, the note:} Note, the note
 
 
 \textbf{Empty:} 
-
 \textbf{:} 
-
 \textbf{\leavevmode{}\\:} 
-
 aaa quotation
-
-
 --- \emph{quotation author}
-
 A small quot---ation
 
+\textbf{Note:} A small Note
 
-\textbf{Note:} 
-
-A small Note
-
-
-\textbf{something, other thing:} 
-
-something, other thing
-
+\textbf{something, other thing:} something, other thing
 
 \textbullet{} 
 
 i--temize
 
-
 + 
 
 i--tem +
 
-
 \textbullet{} 
 
 b--ullet
 
-
 - 
 
 minu--s
 
-
 \emph{} 
 
 e--mph item
 
-
 \emph{after emph} 
 
 e--mph item
 
-
 \textbullet{} a--n itemize line 
 
 i--tem 1
-
-
 \textbullet{} 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
-
-
+mu--ltitable headitem another tab
+mu--ltitable item multitable tab
+mu--ltitable item 2 multitable tab 2
 lone mu--ltitable item
 
-
-truc 
-
-bidule
-
+truc bidule
 
 e--xample  some
    text
 
 
+
 example one arg
 
 
+
 example two args
 
 
+
 example three args
 
 
+
 example four args
 
 
+
 example five args
 
 
+
 The something \'{e} \TeX{} is here.
 
 
+
 A @ at the end of the @example line.
 
 
+
 example with empty args
 
 
+
 example with empty and non empty args mix
 
 
+
 s--mallexample
 
 
+
 d--isplay
 
 
+
 s--malldisplay
 
 
+
 l--isp
 
 
+
 s--malllisp
 
 
+
 f--ormat
 
 
+
 s--mallformat
 
 
+
 $$
 disp--laymath
 f(x) = {1 \over \sigma \sqrt{2\pi}}e^{-{1 \over 2}\left({x-\mu \over 
\sigma}\right)^2}
 $$
+
 \hbox{}-- c--ategory: d--effn\_name a--rguments...
 
 
 d--effn
 
-
 \hbox{}-- cate--gory: de--ffn\_name ar--guments    more args \leavevmode{}\\ 
even more so
 
 
 def--fn
 
-
 \hbox{}-- fset: \emph{i} a g
 
 
@@ -559,15 +491,18 @@ def--fn
 \hbox{}-- truc: deffnx before end deffn
 
 
+
 \hbox{}-- empty: deffn
 
 
+
 \hbox{}-- empty: deffn with deffnx
 
 
 \hbox{}-- empty: deffnx
 
 
+
 \hbox{}-- fset: \emph{i} a g
 
 
@@ -576,133 +511,111 @@ def--fn
 
 text in def item for second def item
 
-
 \hbox{}-- c--ategory: d--efvr\_name
 
 
 d--efvr
 
-
 \hbox{}-- c--ategory: t--ype d--eftypefn\_name a--rguments...
 
 
 d--eftypefn
 
-
 \hbox{}-- c--ategory on c--lass: t--ype d--eftypeop\_name a--rguments...
 
 
 d--eftypeop
 
-
 \hbox{}-- c--ategory: t--ype d--eftypevr\_name
 
 
 d--eftypevr
 
-
 \hbox{}-- c--ategory of c--lass: d--efcv\_name
 
 
 d--efcv
 
-
 \hbox{}-- c--ategory on c--lass: d--efop\_name a--rguments...
 
 
 d--efop
 
-
 \hbox{}-- c--ategory: d--eftp\_name a--ttributes...
 
 
 d--eftp
 
-
 \hbox{}-- Function: d--efun\_name a--rguments...
 
 
 d--efun
 
-
 \hbox{}-- Macro: d--efmac\_name a--rguments...
 
 
 d--efmac
 
-
 \hbox{}-- Special Form: d--efspec\_name a--rguments...
 
 
 d--efspec
 
-
 \hbox{}-- Variable: d--efvar\_name argvar argvar1
 
 
 d--efvar
 
-
 \hbox{}-- User Option: d--efopt\_name
 
 
 d--efopt
 
-
 \hbox{}-- Function: t--ype d--eftypefun\_name a--rguments...
 
 
 d--eftypefun
 
-
 \hbox{}-- Variable: t--ype d--eftypevar\_name
 
 
 d--eftypevar
 
-
 \hbox{}-- Instance Variable of c--lass: d--efivar\_name
 
 
 d--efivar
 
-
 \hbox{}-- Instance Variable of c--lass: t--ype d--eftypeivar\_name
 
 
 d--eftypeivar
 
-
 \hbox{}-- Method on c--lass: d--efmethod\_name a--rguments...
 
 
 d--efmethod
 
-
 \hbox{}-- Method on c--lass: t--ype d--eftypemethod\_name a--rguments...
 
 
 d--eftypemethod
 
-
 \texttt{@xref\{c{-}{-}{-}hapter@@, cross r{-}{-}{-}ef name@@, 
t{-}{-}{-}itle@@, file n{-}{-}{-}ame@@, ma{-}{-}{-}nual@@\}} See cross r---ef 
name@(file n---ame@) (page \pageref{anchor:c_002d_002d_002dhapter_0040}).
 \texttt{@ref\{chapter, cross ref name, title, file name, manual\}} cross ref 
name(file name) (page \pageref{anchor:chapter})
 \texttt{@pxref\{chapter, cross ref name, title, file name, manual\}} see cross 
ref name(file name) (page \pageref{anchor:chapter})
 \texttt{@inforef\{chapter, cross ref name, file name\}} cross ref name(file 
name) (page \pageref{anchor:chapter})
 
-
 \texttt{@ref\{chapter\}} page \pageref{anchor:chapter}
 \texttt{@xref\{chapter\}} See page \pageref{anchor:chapter}.
 \texttt{@pxref\{chapter\}} see page \pageref{anchor:chapter}
 \texttt{@ref\{s{-}{-}ect@comma\{\}ion\}} page 
\pageref{anchor:s_002d_002dect_002cion}
 
-
 \texttt{@ref\{s{-}{-}ect@comma\{\}ion, a @comma\{\} in cross
 ref, a comma@comma\{\} in title, a comma@comma\{\} in file, a @comma\{\} in 
manual name \}}
 a , in cross
 ref(a comma, in file) (page \pageref{anchor:s_002d_002dect_002cion})
 
-
 \texttt{@ref\{chapter,cross ref name\}} cross ref name (page 
\pageref{anchor:chapter})
 \texttt{@ref\{chapter,,title\}} title (page \pageref{anchor:chapter})
 \texttt{@ref\{chapter,,,file name\}} (file name) manual, page 
\pageref{anchor:chapter}
@@ -745,7 +658,6 @@ ref(a comma, in file) (page 
\pageref{anchor:s_002d_002dect_002cion})
 \texttt{@inforef\{node,,file name\}} (file name) manual, page 
\pageref{anchor:node}
 \texttt{@inforef\{chapter, cross ref name, file name, spurious arg\}} cross 
ref name(file name, spurious arg) (page \pageref{anchor:chapter})
 
-
 \texttt{@inforef\{s{-}{-}ect@comma\{\}ion, a @comma\{\} in cross
 ref, a comma@comma\{\} in file\}}
 a , in cross
@@ -753,43 +665,25 @@ ref(a comma, in file) (page 
\pageref{anchor:s_002d_002dect_002cion})
 
 
 a
-
-
 l--ine
 
-
 a
-
-
 b
-
-
 l--ine
 
-
 a
-
-
 b
-
-
 l--ine
 
-
 c--artouche
 
-
 g--roupe
 
-
 f--lushleft
 
-
 f--lushright
 
-
 ce--ntered line
-
 \begin{verbatim}
 \input texinfo @c -*-texinfo-*-
 
@@ -806,6 +700,11 @@ This is a very simple texi manual @  <>.
 in verbatim ''
 \end{verbatim}
 
+
+
+
+
+
 \chapter*{chapheading}
 
 \section*{heading}
@@ -814,49 +713,44 @@ in verbatim ''
 
 \subsubsection*{subsubheading}
 
+
 \texttt{@acronym\{{-}{-}a,an accronym @comma\{\} @enddots\{\}\}} --a (an 
accronym , \dots{})
 \texttt{@abbr\{@'E{-}{-}. @comma\{\}A., @'Etude{-}{-}@comma\{\} @b\{Autonome\} 
\}} \'{E}--.\@ ,A.\@ (\'{E}tude--, \textbf{Autonome})
 \texttt{@abbr\{@'E{-}{-}. @comma\{\}A.\}} \'{E}--.\@ ,A.\@
 
-
 \texttt{@math\{{-}{-}a@minus\{\} \{\textbackslash{}frac\{1\}\{2\}\}\}} $--a- 
{\frac{1}{2}}$
 
-
 \texttt{@image\{f-ile,,,alt@verb\{:jk \_" \%\@\}\}} \includegraphics{f-ile}
 \texttt{@image\{f{-}{-}ile,aze,az,@verb\{:jk \_" \%@:\} @b\{in b 
"\},e{-}{-}xt\}} \includegraphics[width=aze,height=az]{layout/f--ile}
 \texttt{@image\{file@verb\{:jk \_" \%@:\},,,alt@verb\{:jk \_" \%@:\}\}} 
\includegraphics{filejk \_" \%@}
 
 
+
+
 Somehow invalid use of @,:\leavevmode{}\\
 @, \c{}
 \leavevmode{}\\
 @,@"u \c{}\"{u}
 
-
 Invalid use of @':\leavevmode{}\\
 @' \'{}
 \leavevmode{}\\
 @'@"u \'{}\"{u}
 
-
 @dotless\{truc\} truc
 @dotless\{ij\} ij
 \texttt{@dotless\{{-}{-}a\}} --a
 \texttt{@dotless\{a\}} a
 
-
 @U, without braces @U\{\}, with empty arg 
 @U\{z\}, with non-hex arg U+z
 @U\{FFFFFFFFFFFFFF\}, value much too large U+FFFFFFFFFFFFFF
 @U\{110000\}, value just beyond Unicode U+110000
 
-
 @TeX, but without brace \TeX{}\texttt{@\#} \#
 
-
 \texttt{@w\{{-}{-}a\}} \hbox{--a}
 
-
 \texttt{@image\{,1{-}{-}xt\}} 
 \texttt{@image\{,,2{-}{-}xt\}} 
 \texttt{@image\{,,,3{-}{-}xt\}} 
@@ -866,17 +760,13 @@ Invalid use of @':\leavevmode{}\\
 
 e--mph item
 
-
 \textbullet{} a--n itemize line 
 
 i--tem 1
-
-
 \textbullet{} a--n itemize line 
 
 i--tem 2
 
-
 \hbox{}-- fun: 
 
 
@@ -896,13 +786,11 @@ i--tem 2
 
 
 Various deff lines
-
-
 \hbox{}-- truc: after a deff item
 
 
-\texttt{@ref\{node\}} page \pageref{anchor:node}
 
+\texttt{@ref\{node\}} page \pageref{anchor:node}
 
 \texttt{@ref\{,cross ref name\}} cross ref name (page \pageref{anchor:})
 \texttt{@ref\{,,title\}} title (page \pageref{anchor:})
@@ -934,15 +822,14 @@ Various deff lines
 \texttt{@ref\{,,title, file name, manual\}} title(file name) (page 
\pageref{anchor:})
 \texttt{@ref\{,,,file name,manual\}} (file name) manual, page \pageref{anchor:}
 
-
 \texttt{@inforef\{,cross ref name \}} cross ref name (page \pageref{anchor:})
 \texttt{@inforef\{,,file name\}} (file name) manual, page \pageref{anchor:}
 \texttt{@inforef\{,cross ref name, file name\}} cross ref name(file name) 
(page \pageref{anchor:})
 \texttt{@inforef\{\}} page \pageref{anchor:}
 
 
-Normal text
 
+Normal text
 
 <
 >
@@ -951,14 +838,12 @@ Normal text
 '
 `
 
-
 ``simple-double--three---four----''\leavevmode{}\\
 code: \texttt{``simple-double{-}{-}three{-}{-}{-}four{-}{-}{-}-''} 
\leavevmode{}\\
 asis: ``simple-double--three---four----'' \leavevmode{}\\
 strong: \textbf{``simple-double--three---four----''} \leavevmode{}\\
 kbd: {\ttfamily\textsl{``simple-double{-}{-}three{-}{-}{-}four{-}{-}{-}-''}} 
\leavevmode{}\\
 
-
 `\hbox{}`simple-double-\hbox{}-three---four----'\hbox{}'\leavevmode{}\\
 
 
@@ -979,10 +864,8 @@ kbd: 
{\ttfamily\textsl{``simple-double{-}{-}three{-}{-}{-}four{-}{-}{-}-''}} \le
 @,c \c{c}
 @,c@"u \c{c}\"{u} \leavevmode{}\\
 
-
 @U\{0075\} u
 
-
 @* \leavevmode{}\\
 @ followed by a space
 \ {}
@@ -1000,7 +883,6 @@ kbd: 
{\ttfamily\textsl{``simple-double{-}{-}three{-}{-}{-}four{-}{-}{-}-''}} \le
 \texttt{@\{} \{
 \texttt{@/} 
 
-
 foo vs.\@ bar. 
 colon :\@And something else.
 semi colon ;\@.
@@ -1008,7 +890,6 @@ And ? ?\@.
 Now ! !\@@
 but , ,\@
 
-
 @TeX \TeX{}
 @LaTeX \LaTeX{}
 @bullet \textbullet{}
@@ -1024,7 +905,6 @@ but , ,\@
 @result $\Rightarrow{}$
 @today a sunny day
 
-
 @aa \aa{}
 @AA \AA{}
 @ae \ae{}
@@ -1041,7 +921,6 @@ but , ,\@
 @dh \dh{}
 @th \th{}
 
-
 @exclamdown \textexclamdown{}
 @questiondown \textquestiondown{}
 @pounds \textsterling{}
@@ -1067,7 +946,6 @@ but , ,\@
 @leq $\leq{}$
 @geq $\geq{}$
 
-
 \texttt{@acronym\{{-}{-}a,an accronym\}} --a (an accronym)
 \texttt{@acronym\{{-}{-}a\}} --a
 \texttt{@abbr\{@'E{-}{-}. @comma\{\}A., @'Etude Autonome \}} \'{E}--.\@ ,A.\@ 
(\'{E}tude Autonome)
@@ -1097,11 +975,7 @@ but , ,\@
 \texttt{@t\{{-}{-}a\}} \texttt{{-}{-}a}
 \texttt{@sansserif\{{-}{-}a\}} 
 \texttt{@slanted\{{-}{-}a\}} 
-\texttt{@titlefont\{{-}{-}a\}} 
-
-{\Huge \bfseries --a
-
-}
+\texttt{@titlefont\{{-}{-}a\}} {\Huge \bfseries --a}
 \texttt{@indicateurl\{{-}{-}a\}} `\texttt{{-}{-}a}'
 \texttt{@uref\{{-}{-}a,{-}{-}b\}} --b (--a)
 \texttt{@uref\{{-}{-}a\}} \texttt{<{-}{-}a>}
@@ -1138,13 +1012,8 @@ but , ,\@
 \texttt{@ogonek\{a\}} \k{a}
 \texttt{@ogonek\{{-}{-}a\}} \k{--a}
 \texttt{a@sup\{h\}@sub\{l\}} a\textsuperscript{h}\textsubscript{l}
-\texttt{@footnote\{in footnote\}} \footnote{in footnote
-
-}
-\texttt{@footnote\{in footnote2\}} \footnote{in footnote2
-
-}
-
+\texttt{@footnote\{in footnote\}} \footnote{in footnote}
+\texttt{@footnote\{in footnote2\}} \footnote{in footnote2}
 
 \texttt{@image\{f{-}{-}ile\}} \includegraphics{layout/f--ile}
 \texttt{@image\{f{-}{-}ile,l{-}{-}i\}} 
\includegraphics[width=l--i]{layout/f--ile}
@@ -1155,16 +1024,17 @@ but , ,\@
 \texttt{@image\{f-ile,aze,,a{-}{-}lt\}} \includegraphics[width=aze]{f-ile}
 \texttt{@image\{@file\{f{-}{-}ile\}@@@.,aze,az,alt,@file\{.file ext\} 
e{-}{-}xt@\}} \includegraphics[width=aze,height=az]{f--ile@.}
 
+\vskip 2\baselineskip
 
 \texttt{@clicksequence\{click @click\{\} A\}} click $\rightarrow{}$ A
 After clickstyle $\Rightarrow{}$
 \texttt{@clicksequence\{click @click\{\} A\}} click $\Rightarrow{}$ A
 
-
 $$
 \mathbf{``simple-double--three---four----''} \hbox{aa}
 `\hbox{}`simple-double-\hbox{}-three---four----'\hbox{}'\leavevmode{}\\
 $$
+
 $$
 \ddot{u} \ddot{U} \tilde{n} \hat{a} \acute{e} \bar{o} \grave{i} \acute{e} 
\imath{} \jmath{} \grave{\bar{E}}
 \mathord{\text{\l{}}} \textsl{\c{\'{C}}} \textsl{\c{\'{C}}} \textsl{\c{c}} 
\textsl{\H{a}} \dot{a} \mathring{a} \textsl{\t{a}}
@@ -1172,6 +1042,7 @@ $$
 \leavevmode{}\\ \ {}\ {} \ {}\-{}   ! ? . @ \} \{ 
 a sunny day
 $$
+
 $$
 \rightarrow{}
 u
@@ -1181,249 +1052,194 @@ TeX LaTeX \bullet{} \copyright{} \dots{} \dots{} 
\equiv{}
 \mathord{\text{\TH{}}} \mathord{\text{\dh{}}} \mathord{\text{\th{}}} 
\mathord{\text{\textexclamdown{}}} \mathord{\text{\textquestiondown{}}} 
\mathsterling{}
 \circledR{} \mathord{\text{\textordfeminine{}}} 
\mathord{\text{\textordmasculine{}}} , 
 $$
+
 $$
 \mathord{\text{\textquotedblleft{}}} \mathord{\text{\textquotedblright{}}} 
 \mathord{\text{\textquoteleft{}}} \mathord{\text{\textquoteright{}}} 
\mathord{\text{\quotedblbase{}}} \mathord{\text{\quotesinglbase{}}} 
\mathord{\text{\guillemotleft{}}}
 \mathord{\text{\guillemotright{}}} \mathord{\text{\guillemotleft{}}} 
\mathord{\text{\guillemotright{}}} \mathord{\text{\guilsinglleft{}}}
 \mathord{\text{\guilsinglright{}}} ^{\circ{}} \euro{} \rightarrow{} \leq{} 
\geq{}
 $$
-{\ttfamily\textsl{default kbdinputstyle}}
-
 
+{\ttfamily\textsl{default kbdinputstyle}}
 {\ttfamily\textsl{in example default kbdinputstyle}}
 
 
-\texttt{code kbdinputstyle}
-
 
+\texttt{code kbdinputstyle}
 \texttt{in example code kbdinputstyle}
 
 
-{\ttfamily\textsl{example kbdinputstyle}}
-
 
+{\ttfamily\textsl{example kbdinputstyle}}
 \texttt{in example example kbdinputstyle}
 
 
-{\ttfamily\textsl{distinct kbdinputstyle}}
-
 
+{\ttfamily\textsl{distinct kbdinputstyle}}
 {\ttfamily\textsl{in example distinct kbdinputstyle}}
 
 
-A quot---ation
-
-
-\textbf{Note:} 
-
-A Note
-
-
-\textbf{note:} 
-
-A note
-
-
-\textbf{Caution:} 
-
-Caution
-
-
-\textbf{Important:} 
 
-Important
-
-
-\textbf{Tip:} 
-
-a Tip
-
-
-\textbf{Warning:} 
-
-a Warning.
-
-
-\textbf{something \'{e} \TeX{}:} 
+A quot---ation
 
-The something \'{e} \TeX{} is here.
+\textbf{Note:} A Note
 
+\textbf{note:} A note
 
-\textbf{@ at the end of line \ {}:} 
+\textbf{Caution:} Caution
 
-A @ at the end of the @quotation line.
+\textbf{Important:} Important
 
+\textbf{Tip:} a Tip
 
-\textbf{something, other thing:} 
+\textbf{Warning:} a Warning.
 
-something, other thing
+\textbf{something \'{e} \TeX{}:} The something \'{e} \TeX{} is here.
 
+\textbf{@ at the end of line \ {}:} A @ at the end of the @quotation line.
 
-\textbf{Note, the note:} 
+\textbf{something, other thing:} something, other thing
 
-Note, the note
+\textbf{Note, the note:} Note, the note
 
 
 \textbf{Empty:} 
-
 \textbf{:} 
-
 \textbf{\leavevmode{}\\:} 
-
 aaa quotation
-
-
 --- \emph{quotation author}
-
 A small quot---ation
 
+\textbf{Note:} A small Note
 
-\textbf{Note:} 
-
-A small Note
-
-
-\textbf{something, other thing:} 
-
-something, other thing
-
+\textbf{something, other thing:} something, other thing
 
 \textbullet{} 
 
 i--temize
 
-
 + 
 
 i--tem +
 
-
 \textbullet{} 
 
 b--ullet
 
-
 - 
 
 minu--s
 
-
 \emph{} 
 
 e--mph item
 
-
 \emph{after emph} 
 
 e--mph item
 
-
 \textbullet{} a--n itemize line 
 
 i--tem 1
-
-
 \textbullet{} 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
+i--tem 2
 
+1. 
 
-truc 
+e--numerate
 
-bidule
+mu--ltitable headitem another tab
+mu--ltitable item multitable tab
+mu--ltitable item 2 multitable tab 2
+lone mu--ltitable item
 
+truc bidule
 
 e--xample  some
    text
 
 
+
 example one arg
 
 
+
 example two args
 
 
+
 example three args
 
 
+
 example four args
 
 
+
 example five args
 
 
+
 The something \'{e} \TeX{} is here.
 
 
+
 A @ at the end of the @example line.
 
 
+
 example with empty args
 
 
+
 example with empty and non empty args mix
 
 
+
 s--mallexample
 
 
+
 d--isplay
 
 
+
 s--malldisplay
 
 
+
 l--isp
 
 
+
 s--malllisp
 
 
+
 f--ormat
 
 
+
 s--mallformat
 
 
+
 $$
 disp--laymath
 f(x) = {1 \over \sigma \sqrt{2\pi}}e^{-{1 \over 2}\left({x-\mu \over 
\sigma}\right)^2}
 $$
+
 \hbox{}-- c--ategory: d--effn\_name a--rguments...
 
 
 d--effn
 
-
 \hbox{}-- cate--gory: de--ffn\_name ar--guments    more args \leavevmode{}\\ 
even more so
 
 
 def--fn
 
-
 \hbox{}-- fset: \emph{i} a g
 
 
@@ -1485,15 +1301,18 @@ def--fn
 \hbox{}-- truc: deffnx before end deffn
 
 
+
 \hbox{}-- empty: deffn
 
 
+
 \hbox{}-- empty: deffn with deffnx
 
 
 \hbox{}-- empty: deffnx
 
 
+
 \hbox{}-- fset: \emph{i} a g
 
 
@@ -1502,133 +1321,111 @@ def--fn
 
 text in def item for second def item
 
-
 \hbox{}-- c--ategory: d--efvr\_name
 
 
 d--efvr
 
-
 \hbox{}-- c--ategory: t--ype d--eftypefn\_name a--rguments...
 
 
 d--eftypefn
 
-
 \hbox{}-- c--ategory on c--lass: t--ype d--eftypeop\_name a--rguments...
 
 
 d--eftypeop
 
-
 \hbox{}-- c--ategory: t--ype d--eftypevr\_name
 
 
 d--eftypevr
 
-
 \hbox{}-- c--ategory of c--lass: d--efcv\_name
 
 
 d--efcv
 
-
 \hbox{}-- c--ategory on c--lass: d--efop\_name a--rguments...
 
 
 d--efop
 
-
 \hbox{}-- c--ategory: d--eftp\_name a--ttributes...
 
 
 d--eftp
 
-
 \hbox{}-- Function: d--efun\_name a--rguments...
 
 
 d--efun
 
-
 \hbox{}-- Macro: d--efmac\_name a--rguments...
 
 
 d--efmac
 
-
 \hbox{}-- Special Form: d--efspec\_name a--rguments...
 
 
 d--efspec
 
-
 \hbox{}-- Variable: d--efvar\_name argvar argvar1
 
 
 d--efvar
 
-
 \hbox{}-- User Option: d--efopt\_name
 
 
 d--efopt
 
-
 \hbox{}-- Function: t--ype d--eftypefun\_name a--rguments...
 
 
 d--eftypefun
 
-
 \hbox{}-- Variable: t--ype d--eftypevar\_name
 
 
 d--eftypevar
 
-
 \hbox{}-- Instance Variable of c--lass: d--efivar\_name
 
 
 d--efivar
 
-
 \hbox{}-- Instance Variable of c--lass: t--ype d--eftypeivar\_name
 
 
 d--eftypeivar
 
-
 \hbox{}-- Method on c--lass: d--efmethod\_name a--rguments...
 
 
 d--efmethod
 
-
 \hbox{}-- Method on c--lass: t--ype d--eftypemethod\_name a--rguments...
 
 
 d--eftypemethod
 
-
 \texttt{@xref\{c{-}{-}{-}hapter@@, cross r{-}{-}{-}ef name@@, 
t{-}{-}{-}itle@@, file n{-}{-}{-}ame@@, ma{-}{-}{-}nual@@\}} See cross r---ef 
name@(file n---ame@) (page \pageref{anchor:c_002d_002d_002dhapter_0040}).
 \texttt{@ref\{chapter, cross ref name, title, file name, manual\}} cross ref 
name(file name) (page \pageref{anchor:chapter})
 \texttt{@pxref\{chapter, cross ref name, title, file name, manual\}} see cross 
ref name(file name) (page \pageref{anchor:chapter})
 \texttt{@inforef\{chapter, cross ref name, file name\}} cross ref name(file 
name) (page \pageref{anchor:chapter})
 
-
 \texttt{@ref\{chapter\}} page \pageref{anchor:chapter}
 \texttt{@xref\{chapter\}} See page \pageref{anchor:chapter}.
 \texttt{@pxref\{chapter\}} see page \pageref{anchor:chapter}
 \texttt{@ref\{s{-}{-}ect@comma\{\}ion\}} page 
\pageref{anchor:s_002d_002dect_002cion}
 
-
 \texttt{@ref\{s{-}{-}ect@comma\{\}ion, a @comma\{\} in cross
 ref, a comma@comma\{\} in title, a comma@comma\{\} in file, a @comma\{\} in 
manual name \}}
 a , in cross
 ref(a comma, in file) (page \pageref{anchor:s_002d_002dect_002cion})
 
-
 \texttt{@ref\{chapter,cross ref name\}} cross ref name (page 
\pageref{anchor:chapter})
 \texttt{@ref\{chapter,,title\}} title (page \pageref{anchor:chapter})
 \texttt{@ref\{chapter,,,file name\}} (file name) manual, page 
\pageref{anchor:chapter}
@@ -1671,7 +1468,6 @@ ref(a comma, in file) (page 
\pageref{anchor:s_002d_002dect_002cion})
 \texttt{@inforef\{node,,file name\}} (file name) manual, page 
\pageref{anchor:node}
 \texttt{@inforef\{chapter, cross ref name, file name, spurious arg\}} cross 
ref name(file name, spurious arg) (page \pageref{anchor:chapter})
 
-
 \texttt{@inforef\{s{-}{-}ect@comma\{\}ion, a @comma\{\} in cross
 ref, a comma@comma\{\} in file\}}
 a , in cross
@@ -1679,43 +1475,25 @@ ref(a comma, in file) (page 
\pageref{anchor:s_002d_002dect_002cion})
 
 
 a
-
-
 l--ine
 
-
 a
-
-
 b
-
-
 l--ine
 
-
 a
-
-
 b
-
-
 l--ine
 
-
 c--artouche
 
-
 g--roupe
 
-
 f--lushleft
 
-
 f--lushright
 
-
 ce--ntered line
-
 \begin{verbatim}
 \input texinfo @c -*-texinfo-*-
 
@@ -1732,6 +1510,11 @@ This is a very simple texi manual @  <>.
 in verbatim ''
 \end{verbatim}
 
+
+
+
+
+
 \chapter*{chapheading}
 
 \section*{heading}
@@ -1740,49 +1523,44 @@ in verbatim ''
 
 \subsubsection*{subsubheading}
 
+
 \texttt{@acronym\{{-}{-}a,an accronym @comma\{\} @enddots\{\}\}} --a (an 
accronym , \dots{})
 \texttt{@abbr\{@'E{-}{-}. @comma\{\}A., @'Etude{-}{-}@comma\{\} @b\{Autonome\} 
\}} \'{E}--.\@ ,A.\@ (\'{E}tude--, \textbf{Autonome})
 \texttt{@abbr\{@'E{-}{-}. @comma\{\}A.\}} \'{E}--.\@ ,A.\@
 
-
 \texttt{@math\{{-}{-}a@minus\{\} \{\textbackslash{}frac\{1\}\{2\}\}\}} $--a- 
{\frac{1}{2}}$
 
-
 \texttt{@image\{f-ile,,,alt@verb\{:jk \_" \%\@\}\}} \includegraphics{f-ile}
 \texttt{@image\{f{-}{-}ile,aze,az,@verb\{:jk \_" \%@:\} @b\{in b 
"\},e{-}{-}xt\}} \includegraphics[width=aze,height=az]{layout/f--ile}
 \texttt{@image\{file@verb\{:jk \_" \%@:\},,,alt@verb\{:jk \_" \%@:\}\}} 
\includegraphics{filejk \_" \%@}
 
 
+
+
 Somehow invalid use of @,:\leavevmode{}\\
 @, \c{}
 \leavevmode{}\\
 @,@"u \c{}\"{u}
 
-
 Invalid use of @':\leavevmode{}\\
 @' \'{}
 \leavevmode{}\\
 @'@"u \'{}\"{u}
 
-
 @dotless\{truc\} truc
 @dotless\{ij\} ij
 \texttt{@dotless\{{-}{-}a\}} --a
 \texttt{@dotless\{a\}} a
 
-
 @U, without braces @U\{\}, with empty arg 
 @U\{z\}, with non-hex arg U+z
 @U\{FFFFFFFFFFFFFF\}, value much too large U+FFFFFFFFFFFFFF
 @U\{110000\}, value just beyond Unicode U+110000
 
-
 @TeX, but without brace \TeX{}\texttt{@\#} \#
 
-
 \texttt{@w\{{-}{-}a\}} \hbox{--a}
 
-
 \texttt{@image\{,1{-}{-}xt\}} 
 \texttt{@image\{,,2{-}{-}xt\}} 
 \texttt{@image\{,,,3{-}{-}xt\}} 
@@ -1792,17 +1570,13 @@ Invalid use of @':\leavevmode{}\\
 
 e--mph item
 
-
 \textbullet{} a--n itemize line 
 
 i--tem 1
-
-
 \textbullet{} a--n itemize line 
 
 i--tem 2
 
-
 \hbox{}-- fun: 
 
 
@@ -1822,13 +1596,11 @@ i--tem 2
 
 
 Various deff lines
-
-
 \hbox{}-- truc: after a deff item
 
 
-\texttt{@ref\{node\}} page \pageref{anchor:node}
 
+\texttt{@ref\{node\}} page \pageref{anchor:node}
 
 \texttt{@ref\{,cross ref name\}} cross ref name (page \pageref{anchor:})
 \texttt{@ref\{,,title\}} title (page \pageref{anchor:})
@@ -1860,15 +1632,14 @@ Various deff lines
 \texttt{@ref\{,,title, file name, manual\}} title(file name) (page 
\pageref{anchor:})
 \texttt{@ref\{,,,file name,manual\}} (file name) manual, page \pageref{anchor:}
 
-
 \texttt{@inforef\{,cross ref name \}} cross ref name (page \pageref{anchor:})
 \texttt{@inforef\{,,file name\}} (file name) manual, page \pageref{anchor:}
 \texttt{@inforef\{,cross ref name, file name\}} cross ref name(file name) 
(page \pageref{anchor:})
 \texttt{@inforef\{\}} page \pageref{anchor:}
 
 
-In example.
 
+In example.
 
 <
 >
@@ -1876,12 +1647,16 @@ In example.
 \&
 '
 `
+
 ``simple-double--three---four----''\leavevmode{}\\
 code: \texttt{``simple-double{-}{-}three{-}{-}{-}four{-}{-}{-}-''} 
\leavevmode{}\\
 asis: ``simple-double--three---four----'' \leavevmode{}\\
 strong: \textbf{``simple-double--three---four----''} \leavevmode{}\\
 kbd: {\ttfamily\textsl{``simple-double{-}{-}three{-}{-}{-}four{-}{-}{-}-''}} 
\leavevmode{}\\
+
 `\hbox{}`simple-double-\hbox{}-three---four----'\hbox{}'\leavevmode{}\\
+
+
 @"u \"{u} 
 @"\{U\} \"{U} 
 @\~{}n \~{n}
@@ -1898,7 +1673,9 @@ kbd: 
{\ttfamily\textsl{``simple-double{-}{-}three{-}{-}{-}four{-}{-}{-}-''}} \le
 @,\{@'C\} \c{\'{C}}
 @,c \c{c}
 @,c@"u \c{c}\"{u} \leavevmode{}\\
+
 @U\{0075\} u
+
 @* \leavevmode{}\\
 @ followed by a space
 \ {}
@@ -1915,12 +1692,14 @@ kbd: 
{\ttfamily\textsl{``simple-double{-}{-}three{-}{-}{-}four{-}{-}{-}-''}} \le
 \texttt{@\}} \}
 \texttt{@\{} \{
 \texttt{@/} 
+
 foo vs.\@ bar. 
 colon :\@And something else.
 semi colon ;\@.
 And ? ?\@.
 Now ! !\@@
 but , ,\@
+
 @TeX \TeX{}
 @LaTeX \LaTeX{}
 @bullet \textbullet{}
@@ -1935,6 +1714,7 @@ but , ,\@
 @print $\dashv{}$
 @result $\Rightarrow{}$
 @today a sunny day
+
 @aa \aa{}
 @AA \AA{}
 @ae \ae{}
@@ -1950,6 +1730,7 @@ but , ,\@
 @TH \TH{}
 @dh \dh{}
 @th \th{}
+
 @exclamdown \textexclamdown{}
 @questiondown \textquestiondown{}
 @pounds \textsterling{}
@@ -1974,6 +1755,7 @@ but , ,\@
 @arrow $\rightarrow{}$
 @leq $\leq{}$
 @geq $\geq{}$
+
 \texttt{@acronym\{{-}{-}a,an accronym\}} --a (an accronym)
 \texttt{@acronym\{{-}{-}a\}} --a
 \texttt{@abbr\{@'E{-}{-}. @comma\{\}A., @'Etude Autonome \}} \'{E}--.\@ ,A.\@ 
(\'{E}tude Autonome)
@@ -2005,9 +1787,7 @@ but , ,\@
 \texttt{@slanted\{{-}{-}a\}} 
 \texttt{@titlefont\{{-}{-}a\}} 
 
-{\Huge \bfseries --a
-
-}
+{\Huge \bfseries --a}
 \texttt{@indicateurl\{{-}{-}a\}} `\texttt{{-}{-}a}'
 \texttt{@uref\{{-}{-}a,{-}{-}b\}} --b (--a)
 \texttt{@uref\{{-}{-}a\}} \texttt{<{-}{-}a>}
@@ -2044,12 +1824,9 @@ but , ,\@
 \texttt{@ogonek\{a\}} \k{a}
 \texttt{@ogonek\{{-}{-}a\}} \k{--a}
 \texttt{a@sup\{h\}@sub\{l\}} a\textsuperscript{h}\textsubscript{l}
-\texttt{@footnote\{in footnote\}} \footnote{in footnote
-
-}
-\texttt{@footnote\{in footnote2\}} \footnote{in footnote2
+\texttt{@footnote\{in footnote\}} \footnote{in footnote}
+\texttt{@footnote\{in footnote2\}} \footnote{in footnote2}
 
-}
 \texttt{@image\{f{-}{-}ile\}} \includegraphics{layout/f--ile}
 \texttt{@image\{f{-}{-}ile,l{-}{-}i\}} 
\includegraphics[width=l--i]{layout/f--ile}
 \texttt{@image\{f{-}{-}ile,,l{-}{-}e\}} 
\includegraphics[height=l--e]{layout/f--ile}
@@ -2059,18 +1836,23 @@ but , ,\@
 \texttt{@image\{f-ile,aze,,a{-}{-}lt\}} \includegraphics[width=aze]{f-ile}
 \texttt{@image\{@file\{f{-}{-}ile\}@@@.,aze,az,alt,@file\{.file ext\} 
e{-}{-}xt@\}} \includegraphics[width=aze,height=az]{f--ile@.}
 
+\vskip 2\baselineskip
+
+
 
 \texttt{@clicksequence\{click @click\{\} A\}} click $\rightarrow{}$ A
 After clickstyle $\Rightarrow{}$
 \texttt{@clicksequence\{click @click\{\} A\}} click $\Rightarrow{}$ A
 
 
+
 $$
 \mathbf{``simple-double--three---four----''} \hbox{aa}
 `\hbox{}`simple-double-\hbox{}-three---four----'\hbox{}'\leavevmode{}\\
 $$
 
 
+
 $$
 \ddot{u} \ddot{U} \tilde{n} \hat{a} \acute{e} \bar{o} \grave{i} \acute{e} 
\imath{} \jmath{} \grave{\bar{E}}
 \mathord{\text{\l{}}} \textsl{\c{\'{C}}} \textsl{\c{\'{C}}} \textsl{\c{c}} 
\textsl{\H{a}} \dot{a} \mathring{a} \textsl{\t{a}}
@@ -2080,6 +1862,7 @@ a sunny day
 $$
 
 
+
 $$
 \rightarrow{}
 u
@@ -2091,30 +1874,35 @@ TeX LaTeX \bullet{} \copyright{} \dots{} \dots{} 
\equiv{}
 $$
 
 
+
 $$
 \mathord{\text{\textquotedblleft{}}} \mathord{\text{\textquotedblright{}}} 
 \mathord{\text{\textquoteleft{}}} \mathord{\text{\textquoteright{}}} 
\mathord{\text{\quotedblbase{}}} \mathord{\text{\quotesinglbase{}}} 
\mathord{\text{\guillemotleft{}}}
 \mathord{\text{\guillemotright{}}} \mathord{\text{\guillemotleft{}}} 
\mathord{\text{\guillemotright{}}} \mathord{\text{\guilsinglleft{}}}
 \mathord{\text{\guilsinglright{}}} ^{\circ{}} \euro{} \rightarrow{} \leq{} 
\geq{}
 $$
+
 {\ttfamily\textsl{default kbdinputstyle}}
 
 
 {\ttfamily\textsl{in example default kbdinputstyle}}
 
 
+
 \texttt{code kbdinputstyle}
 
 
 \texttt{in example code kbdinputstyle}
 
 
+
 \texttt{example kbdinputstyle}
 
 
 \texttt{in example example kbdinputstyle}
 
 
+
 {\ttfamily\textsl{distinct kbdinputstyle}}
 
 
@@ -2123,117 +1911,105 @@ $$
 
 
 
+
 A quot---ation
 
 
 
 
-\textbf{Note:} 
 
-A Note
+\textbf{Note:} A Note
 
 
 
 
-\textbf{note:} 
 
-A note
+\textbf{note:} A note
 
 
 
 
-\textbf{Caution:} 
 
-Caution
+\textbf{Caution:} Caution
 
 
 
 
-\textbf{Important:} 
 
-Important
+\textbf{Important:} Important
 
 
 
 
-\textbf{Tip:} 
 
-a Tip
+\textbf{Tip:} a Tip
 
 
 
 
-\textbf{Warning:} 
 
-a Warning.
+\textbf{Warning:} a Warning.
 
 
 
 
-\textbf{something \'{e} \TeX{}:} 
 
-The something \'{e} \TeX{} is here.
+\textbf{something \'{e} \TeX{}:} The something \'{e} \TeX{} is here.
 
 
 
 
-\textbf{@ at the end of line \ {}:} 
 
-A @ at the end of the @quotation line.
+\textbf{@ at the end of line \ {}:} A @ at the end of the @quotation line.
 
 
 
 
-\textbf{something, other thing:} 
 
-something, other thing
+\textbf{something, other thing:} something, other thing
 
 
 
 
-\textbf{Note, the note:} 
 
-Note, the note
+\textbf{Note, the note:} Note, the note
+
 
 
 
 
 
 
-\textbf{Empty:} 
 
+\textbf{Empty:} 
 
 
 \textbf{:} 
 
 
-
 \textbf{\leavevmode{}\\:} 
 
 
-
 aaa quotation
 
 
 --- \emph{quotation author}
 
 
-
 A small quot---ation
 
 
 
 
-\textbf{Note:} 
 
-A small Note
+\textbf{Note:} A small Note
 
 
 
 
-\textbf{something, other thing:} 
 
-something, other thing
+\textbf{something, other thing:} something, other thing
+
 
 
 
@@ -2245,6 +2021,7 @@ i--temize
 
 
 
+
 + 
 
 i--tem +
@@ -2252,6 +2029,7 @@ i--tem +
 
 
 
+
 \textbullet{} 
 
 b--ullet
@@ -2259,6 +2037,7 @@ b--ullet
 
 
 
+
 - 
 
 minu--s
@@ -2266,6 +2045,7 @@ minu--s
 
 
 
+
 \emph{} 
 
 e--mph item
@@ -2275,6 +2055,7 @@ e--mph item
 
 
 
+
 \emph{after emph} 
 
 e--mph item
@@ -2284,6 +2065,7 @@ e--mph item
 
 
 
+
 \textbullet{} a--n itemize line 
 
 i--tem 1
@@ -2296,6 +2078,7 @@ i--tem 2
 
 
 
+
 1. 
 
 e--numerate
@@ -2303,6 +2086,7 @@ e--numerate
 
 
 
+
 mu--ltitable headitem 
 
 another tab
@@ -2323,6 +2107,7 @@ lone mu--ltitable item
 
 
 
+
 truc 
 
 bidule
@@ -2330,98 +2115,117 @@ bidule
 
 
 
+
 e--xample  some
    text
 
 
 
 
+
 example one arg
 
 
 
 
+
 example two args
 
 
 
 
+
 example three args
 
 
 
 
+
 example four args
 
 
 
 
+
 example five args
 
 
 
 
+
 The something \'{e} \TeX{} is here.
 
 
 
 
+
 A @ at the end of the @example line.
 
 
 
 
+
 example with empty args
 
 
 
 
+
 example with empty and non empty args mix
 
 
 
 
+
 s--mallexample
 
 
 
 
+
 d--isplay
 
 
 
 
+
 s--malldisplay
 
 
 
 
+
 l--isp
 
 
 
 
+
 s--malllisp
 
 
 
 
+
 f--ormat
 
 
 
 
+
 s--mallformat
 
 
 
 
+
 $$
 disp--laymath
 f(x) = {1 \over \sigma \sqrt{2\pi}}e^{-{1 \over 2}\left({x-\mu \over 
\sigma}\right)^2}
 $$
 
 
+
 \hbox{}-- c--ategory: d--effn\_name a--rguments...
 
 
@@ -2430,6 +2234,7 @@ d--effn
 
 
 
+
 \hbox{}-- cate--gory: de--ffn\_name ar--guments    more args \leavevmode{}\\ 
even more so
 
 
@@ -2438,6 +2243,7 @@ def--fn
 
 
 
+
 \hbox{}-- fset: \emph{i} a g
 
 
@@ -2505,11 +2311,13 @@ def--fn
 
 
 
+
 \hbox{}-- empty: deffn
 
 
 
 
+
 \hbox{}-- empty: deffn with deffnx
 
 
@@ -2520,6 +2328,7 @@ def--fn
 
 
 
+
 \hbox{}-- fset: \emph{i} a g
 
 
@@ -2531,6 +2340,7 @@ text in def item for second def item
 
 
 
+
 \hbox{}-- c--ategory: d--efvr\_name
 
 
@@ -2539,6 +2349,7 @@ d--efvr
 
 
 
+
 \hbox{}-- c--ategory: t--ype d--eftypefn\_name a--rguments...
 
 
@@ -2547,6 +2358,7 @@ d--eftypefn
 
 
 
+
 \hbox{}-- c--ategory on c--lass: t--ype d--eftypeop\_name a--rguments...
 
 
@@ -2555,6 +2367,7 @@ d--eftypeop
 
 
 
+
 \hbox{}-- c--ategory: t--ype d--eftypevr\_name
 
 
@@ -2563,6 +2376,7 @@ d--eftypevr
 
 
 
+
 \hbox{}-- c--ategory of c--lass: d--efcv\_name
 
 
@@ -2571,6 +2385,7 @@ d--efcv
 
 
 
+
 \hbox{}-- c--ategory on c--lass: d--efop\_name a--rguments...
 
 
@@ -2579,6 +2394,7 @@ d--efop
 
 
 
+
 \hbox{}-- c--ategory: d--eftp\_name a--ttributes...
 
 
@@ -2587,6 +2403,7 @@ d--eftp
 
 
 
+
 \hbox{}-- Function: d--efun\_name a--rguments...
 
 
@@ -2595,6 +2412,7 @@ d--efun
 
 
 
+
 \hbox{}-- Macro: d--efmac\_name a--rguments...
 
 
@@ -2603,6 +2421,7 @@ d--efmac
 
 
 
+
 \hbox{}-- Special Form: d--efspec\_name a--rguments...
 
 
@@ -2611,6 +2430,7 @@ d--efspec
 
 
 
+
 \hbox{}-- Variable: d--efvar\_name argvar argvar1
 
 
@@ -2619,6 +2439,7 @@ d--efvar
 
 
 
+
 \hbox{}-- User Option: d--efopt\_name
 
 
@@ -2627,6 +2448,7 @@ d--efopt
 
 
 
+
 \hbox{}-- Function: t--ype d--eftypefun\_name a--rguments...
 
 
@@ -2635,6 +2457,7 @@ d--eftypefun
 
 
 
+
 \hbox{}-- Variable: t--ype d--eftypevar\_name
 
 
@@ -2643,6 +2466,7 @@ d--eftypevar
 
 
 
+
 \hbox{}-- Instance Variable of c--lass: d--efivar\_name
 
 
@@ -2651,6 +2475,7 @@ d--efivar
 
 
 
+
 \hbox{}-- Instance Variable of c--lass: t--ype d--eftypeivar\_name
 
 
@@ -2659,6 +2484,7 @@ d--eftypeivar
 
 
 
+
 \hbox{}-- Method on c--lass: d--efmethod\_name a--rguments...
 
 
@@ -2667,24 +2493,29 @@ d--efmethod
 
 
 
+
 \hbox{}-- Method on c--lass: t--ype d--eftypemethod\_name a--rguments...
 
 
 d--eftypemethod
 
 
+
 \texttt{@xref\{c{-}{-}{-}hapter@@, cross r{-}{-}{-}ef name@@, 
t{-}{-}{-}itle@@, file n{-}{-}{-}ame@@, ma{-}{-}{-}nual@@\}} See cross r---ef 
name@(file n---ame@) (page \pageref{anchor:c_002d_002d_002dhapter_0040}).
 \texttt{@ref\{chapter, cross ref name, title, file name, manual\}} cross ref 
name(file name) (page \pageref{anchor:chapter})
 \texttt{@pxref\{chapter, cross ref name, title, file name, manual\}} see cross 
ref name(file name) (page \pageref{anchor:chapter})
 \texttt{@inforef\{chapter, cross ref name, file name\}} cross ref name(file 
name) (page \pageref{anchor:chapter})
+
 \texttt{@ref\{chapter\}} page \pageref{anchor:chapter}
 \texttt{@xref\{chapter\}} See page \pageref{anchor:chapter}.
 \texttt{@pxref\{chapter\}} see page \pageref{anchor:chapter}
 \texttt{@ref\{s{-}{-}ect@comma\{\}ion\}} page 
\pageref{anchor:s_002d_002dect_002cion}
+
 \texttt{@ref\{s{-}{-}ect@comma\{\}ion, a @comma\{\} in cross
 ref, a comma@comma\{\} in title, a comma@comma\{\} in file, a @comma\{\} in 
manual name \}}
 a , in cross
 ref(a comma, in file) (page \pageref{anchor:s_002d_002dect_002cion})
+
 \texttt{@ref\{chapter,cross ref name\}} cross ref name (page 
\pageref{anchor:chapter})
 \texttt{@ref\{chapter,,title\}} title (page \pageref{anchor:chapter})
 \texttt{@ref\{chapter,,,file name\}} (file name) manual, page 
\pageref{anchor:chapter}
@@ -2699,6 +2530,8 @@ ref(a comma, in file) (page 
\pageref{anchor:s_002d_002dect_002cion})
 \texttt{@ref\{chapter,,title,,manual\}} title() (page \pageref{anchor:chapter})
 \texttt{@ref\{chapter,,title, file name, manual\}} title(file name) (page 
\pageref{anchor:chapter})
 \texttt{@ref\{chapter,,,file name,manual\}} (file name) manual, page 
\pageref{anchor:chapter}
+
+
 \texttt{@ref\{(pman)anode,cross ref name\}} cross ref name (page 
\pageref{anchor:_0028pman_0029anode})
 \texttt{@ref\{(pman)anode,,title\}} title (page 
\pageref{anchor:_0028pman_0029anode})
 \texttt{@ref\{(pman)anode,,,file name\}} (file name) manual, page 
\pageref{anchor:_0028pman_0029anode}
@@ -2713,6 +2546,8 @@ ref(a comma, in file) (page 
\pageref{anchor:s_002d_002dect_002cion})
 \texttt{@ref\{(pman)anode,,title,,manual\}} title() (page 
\pageref{anchor:_0028pman_0029anode})
 \texttt{@ref\{(pman)anode,,title, file name, manual\}} title(file name) (page 
\pageref{anchor:_0028pman_0029anode})
 \texttt{@ref\{(pman)anode,,,file name,manual\}} (file name) manual, page 
\pageref{anchor:_0028pman_0029anode}
+
+
 \texttt{@inforef\{chapter, cross ref name, file name\}} cross ref name(file 
name) (page \pageref{anchor:chapter})
 \texttt{@inforef\{chapter\}} page \pageref{anchor:chapter}
 \texttt{@inforef\{chapter, cross ref name\}} cross ref name (page 
\pageref{anchor:chapter})
@@ -2722,6 +2557,7 @@ ref(a comma, in file) (page 
\pageref{anchor:s_002d_002dect_002cion})
 \texttt{@inforef\{node, cross ref name\}} cross ref name (page 
\pageref{anchor:node})
 \texttt{@inforef\{node,,file name\}} (file name) manual, page 
\pageref{anchor:node}
 \texttt{@inforef\{chapter, cross ref name, file name, spurious arg\}} cross 
ref name(file name, spurious arg) (page \pageref{anchor:chapter})
+
 \texttt{@inforef\{s{-}{-}ect@comma\{\}ion, a @comma\{\} in cross
 ref, a comma@comma\{\} in file\}}
 a , in cross
@@ -2730,62 +2566,60 @@ ref(a comma, in file) (page 
\pageref{anchor:s_002d_002dect_002cion})
 
 
 
-a
 
 
+a
 l--ine
 
 
 
 
-a
-
 
+a
 
 
 b
-
-
 l--ine
 
 
 
 
-a
-
 
+a
 
 
 b
-
-
 l--ine
 
 
 
 
+
 c--artouche
 
 
 
 
+
 g--roupe
 
 
 
 
+
 f--lushleft
 
 
 
 
+
 f--lushright
 
 
 
 
-ce--ntered line
 
+ce--ntered line
 
 
 \begin{verbatim}
@@ -2810,6 +2644,11 @@ in verbatim ''
 
 
 
+
+
+
+
+
 \chapter*{chapheading}
 
 
@@ -2824,36 +2663,51 @@ in verbatim ''
 
 \subsubsection*{subsubheading}
 
+
 \texttt{@acronym\{{-}{-}a,an accronym @comma\{\} @enddots\{\}\}} --a (an 
accronym , \dots{})
 \texttt{@abbr\{@'E{-}{-}. @comma\{\}A., @'Etude{-}{-}@comma\{\} @b\{Autonome\} 
\}} \'{E}--.\@ ,A.\@ (\'{E}tude--, \textbf{Autonome})
 \texttt{@abbr\{@'E{-}{-}. @comma\{\}A.\}} \'{E}--.\@ ,A.\@
+
 \texttt{@math\{{-}{-}a@minus\{\} \{\textbackslash{}frac\{1\}\{2\}\}\}} $--a- 
{\frac{1}{2}}$
+
 \texttt{@image\{f-ile,,,alt@verb\{:jk \_" \%\@\}\}} \includegraphics{f-ile}
 \texttt{@image\{f{-}{-}ile,aze,az,@verb\{:jk \_" \%@:\} @b\{in b 
"\},e{-}{-}xt\}} \includegraphics[width=aze,height=az]{layout/f--ile}
 \texttt{@image\{file@verb\{:jk \_" \%@:\},,,alt@verb\{:jk \_" \%@:\}\}} 
\includegraphics{filejk \_" \%@}
+
+
+
+
 Somehow invalid use of @,:\leavevmode{}\\
 @, \c{}
 \leavevmode{}\\
 @,@"u \c{}\"{u}
+
 Invalid use of @':\leavevmode{}\\
 @' \'{}
 \leavevmode{}\\
 @'@"u \'{}\"{u}
+
 @dotless\{truc\} truc
 @dotless\{ij\} ij
 \texttt{@dotless\{{-}{-}a\}} --a
 \texttt{@dotless\{a\}} a
+
 @U, without braces @U\{\}, with empty arg 
 @U\{z\}, with non-hex arg U+z
 @U\{FFFFFFFFFFFFFF\}, value much too large U+FFFFFFFFFFFFFF
 @U\{110000\}, value just beyond Unicode U+110000
+
 @TeX, but without brace \TeX{}\texttt{@\#} \#
+
 \texttt{@w\{{-}{-}a\}} \hbox{--a}
+
 \texttt{@image\{,1{-}{-}xt\}} 
 \texttt{@image\{,,2{-}{-}xt\}} 
 \texttt{@image\{,,,3{-}{-}xt\}} 
 
 
+
+
 \emph{} after emph 
 
 e--mph item
@@ -2861,6 +2715,7 @@ e--mph item
 
 
 
+
 \textbullet{} a--n itemize line 
 
 i--tem 1
@@ -2873,6 +2728,7 @@ i--tem 2
 
 
 
+
 \hbox{}-- fun: 
 
 
@@ -2897,7 +2753,9 @@ Various deff lines
 \hbox{}-- truc: after a deff item
 
 
+
 \texttt{@ref\{node\}} page \pageref{anchor:node}
+
 \texttt{@ref\{,cross ref name\}} cross ref name (page \pageref{anchor:})
 \texttt{@ref\{,,title\}} title (page \pageref{anchor:})
 \texttt{@ref\{,,,file name\}} (file name) manual, page \pageref{anchor:}
@@ -2927,52 +2785,57 @@ Various deff lines
 \texttt{@ref\{,,title,,manual\}} title() (page \pageref{anchor:})
 \texttt{@ref\{,,title, file name, manual\}} title(file name) (page 
\pageref{anchor:})
 \texttt{@ref\{,,,file name,manual\}} (file name) manual, page \pageref{anchor:}
+
 \texttt{@inforef\{,cross ref name \}} cross ref name (page \pageref{anchor:})
 \texttt{@inforef\{,,file name\}} (file name) manual, page \pageref{anchor:}
 \texttt{@inforef\{,cross ref name, file name\}} cross ref name(file name) 
(page \pageref{anchor:})
 \texttt{@inforef\{\}} page \pageref{anchor:}
 
 
-cp
-
 
-\printindex
-fn
 
 
-\printindex
-vr
 
 
+cp
 \printindex
-ky
 
+fn
+\printindex
 
+vr
 \printindex
-pg
 
+ky
+\printindex
 
+pg
 \printindex
+
 tp
+\printindex
 
 
-\printindex
-\label{anchor:chapter}\chapter{chapter}
 
-\footnote{in footnote
+\label{anchor:chapter}\chapter{chapter}
 
-}
+\footnote{in footnote}
 
 
 \label{anchor:s_002d_002dect_002cion}\section{A section}
 
+
 \label{anchor:subsection}\subsection{subsection}
 
-\label{anchor:anchor}\label{anchor:subsubsection-_0060_0060simple_002ddouble_002d_002d}\subsubsection{subsubsection
 ``simple-double--}
+
+\label{anchor:anchor}
+\label{anchor:subsubsection-_0060_0060simple_002ddouble_002d_002d}\subsubsection{subsubsection
 ``simple-double--}
 
 
\label{anchor:subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027}\subsubsection{three---four----''}
 
-\label{anchor:chapter2}\printindex
+\label{anchor:chapter2}
 \printindex
+\printindex
+
 \tableofcontents\newpage
 \end{document}



reply via email to

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