texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: Protect space at start of code


From: Gavin D. Smith
Subject: branch master updated: Protect space at start of code
Date: Thu, 11 Aug 2022 10:44:33 -0400

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

gavin pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new f6425db653 Protect space at start of code
f6425db653 is described below

commit f6425db6535f869f4c8f87c5f4b90523be7b46ed
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Thu Aug 11 15:44:14 2022 +0100

    Protect space at start of code
    
    * tp/Texinfo/Convert/LaTeX.pm (_protect_text) <code>:
    Escape an initial space in case it was preceded by punctuation
    from another element.  From Patrice.
---
 ChangeLog                                          |   8 +
 tp/Texinfo/Convert/LaTeX.pm                        |   7 +-
 .../res_latex/definition_commands.tex              |  52 +-
 .../converters_tests/frenchspacing_and_code.pl     |  12 +-
 tp/t/results/converters_tests/image_formatting.pl  |  20 +-
 .../converters_tests/test_deftypefnnewline.pl      |  16 +-
 .../def_syn_indices/res_latex/def_syn_indices.tex  |   2 +-
 .../res_latex/multiple_lang_chapters.tex           |   6 +-
 tp/t/results/latex_tests/indices.pl                |   2 +-
 .../latex_tests/indices/res_latex/indices.tex      |   2 +-
 tp/t/results/misc_commands/kbdinputstyle.pl        |   6 +-
 .../res_parser/formatting_latex/formatting.tex     | 748 ++++++++++-----------
 12 files changed, 445 insertions(+), 436 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 774757e7fe..29e0c7f262 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2022-08-11  Gavin Smith  <gavinsmith0123@gmail.com>
+
+       Protect space at start of code
+
+       * tp/Texinfo/Convert/LaTeX.pm (_protect_text) <code>:
+       Escape an initial space in case it was preceded by punctuation
+       from another element.  From Patrice.
+
 2022-08-11  Patrice Dumas  <pertusus@free.fr>
 
        Handle kbd in LaTeX more like other similar commands
diff --git a/tp/Texinfo/Convert/LaTeX.pm b/tp/Texinfo/Convert/LaTeX.pm
index 4a817bda82..a53fbcf64a 100644
--- a/tp/Texinfo/Convert/LaTeX.pm
+++ b/tp/Texinfo/Convert/LaTeX.pm
@@ -1632,11 +1632,12 @@ sub _protect_text($$)
     if ($self->{'formatting_context'}->[-1]->{'code'}->[-1]) {
       # Prevent extra space after punctuation.  (We could use \frenchspacing
       # in the output, but this can break in section titles with hyperref.)
-      # FIXME this misses the case of punctuation at the end of the
-      # element text, but followed by a space, for instance if spaces
-      # are in separate text elements, as is the case in @def* arguments.
       $text =~ s/([.?!:;,]) /$1\\ /g;
 
+      # In case initial space follows punctuation from a separate element,
+      # like @code{@var{?} a}.
+      $text =~ s/^ /\\ /g;
+
       # Under T1 encoding there are several ligatures even in fixed width fonts
       $text =~ s/---/{-}{-}{-}/g;
       $text =~ s/--/{-}{-}/g;
diff --git 
a/tp/t/results/converters_tests/definition_commands/res_latex/definition_commands.tex
 
b/tp/t/results/converters_tests/definition_commands/res_latex/definition_commands.tex
index 7ad816f6c8..b9e2f18647 100644
--- 
a/tp/t/results/converters_tests/definition_commands/res_latex/definition_commands.tex
+++ 
b/tp/t/results/converters_tests/definition_commands/res_latex/definition_commands.tex
@@ -239,7 +239,7 @@ to \GNUTexinfocommandstyletextvar{font} (one-character 
name\hbox{}\GNUTexinfocom
 test formatting of separators
 \end{quote}
 
-\noindent\texttt{int foobar (int \GNUTexinfocommandstyletextvar{f---oo}, float 
\GNUTexinfocommandstyletextvar{b--ar})}\hfill[Library Function]
+\noindent\texttt{int foobar (int\ \GNUTexinfocommandstyletextvar{f---oo},\ 
float\ \GNUTexinfocommandstyletextvar{b--ar})}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
 \begin{quote}
@@ -247,7 +247,7 @@ test formatting of separators
 \dots{}\@ with var for \GNUTexinfocommandstyletextvar{f---oo} and 
\GNUTexinfocommandstyletextvar{b--ar}
 \end{quote}
 
-\noindent\texttt{int foobar (int \textnormal{\textsl{f---oo}}, float 
\textnormal{\textsl{b--ar}})}\hfill[Library Function]
+\noindent\texttt{int foobar (int\ \textnormal{\textsl{f---oo}},\ float\ 
\textnormal{\textsl{b--ar}})}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
 \begin{quote}
@@ -266,14 +266,14 @@ test formatting of separators
 
 \noindent\texttt{\texttt{int} border-pattern}\hfill[Class Option of 
\texttt{Window}]
 
-\index[vr]{border-pattern of Window@\texttt{border-pattern of Window}}%
+\index[vr]{border-pattern of Window@\texttt{border-pattern\ of Window}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 \dots{}\@
 \end{quote}
 
 \begin{quote}
-\noindent\texttt{int foobar (int \GNUTexinfocommandstyletextvar{foo}, float 
\GNUTexinfocommandstyletextvar{bar})}\hfill[Library Function]
+\noindent\texttt{int foobar (int\ \GNUTexinfocommandstyletextvar{foo},\ float\ 
\GNUTexinfocommandstyletextvar{bar})}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
 \begin{quote}
@@ -309,37 +309,37 @@ explicit keyword marking, no var 
\GNUTexinfocommandstyletextvar{function} with \
 In deffn with code and var used
 \end{quote}
 
-\noindent\texttt{int foobar (int \GNUTexinfocommandstyletextvar{f---oo}[, 
float \GNUTexinfocommandstyletextvar{b--ar}]) default}\hfill[Library Function]
+\noindent\texttt{int foobar (int\ \GNUTexinfocommandstyletextvar{f---oo}[,\ 
float\ \GNUTexinfocommandstyletextvar{b--ar}])\ default}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (int 
\GNUTexinfocommandstyletextvar{f---oo}\textnormal{[}, float 
\GNUTexinfocommandstyletextvar{b--ar}\textnormal{]}) r}\hfill[Library Function]
+\noindent\texttt{int foobar (int\ 
\GNUTexinfocommandstyletextvar{f---oo}\textnormal{[},\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}\textnormal{]})\ r}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (int 
\GNUTexinfocommandstyletextvar{f---oo}\GNUTexinfocommandstyletextvar{[}, float 
\GNUTexinfocommandstyletextvar{b--ar}\GNUTexinfocommandstyletextvar{]}) 
var}\hfill[Library Function]
+\noindent\texttt{int foobar (int\ 
\GNUTexinfocommandstyletextvar{f---oo}\GNUTexinfocommandstyletextvar{[},\ 
float\ \GNUTexinfocommandstyletextvar{b--ar}\GNUTexinfocommandstyletextvar{]})\ 
var}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (int 
\GNUTexinfocommandstyletextvar{f---oo}\textsl{[}, float 
\GNUTexinfocommandstyletextvar{b--ar}\textsl{]}) slanted}\hfill[Library 
Function]
+\noindent\texttt{int foobar (int\ 
\GNUTexinfocommandstyletextvar{f---oo}\textsl{[},\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}\textsl{]})\ slanted}\hfill[Library 
Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (int 
\GNUTexinfocommandstyletextvar{f---oo}\texttt{[}, float 
\GNUTexinfocommandstyletextvar{b--ar}\texttt{]}) code}\hfill[Library Function]
+\noindent\texttt{int foobar (int\ 
\GNUTexinfocommandstyletextvar{f---oo}\texttt{[},\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}\texttt{]})\ code}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (int 
\GNUTexinfocommandstyletextvar{f---oo}\texttt{[}, float 
\GNUTexinfocommandstyletextvar{b--ar}\texttt{]}) t}\hfill[Library Function]
+\noindent\texttt{int foobar (int\ 
\GNUTexinfocommandstyletextvar{f---oo}\texttt{[},\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}\texttt{]})\ t}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (int 
\GNUTexinfocommandstyletextvar{f---oo}\texttt{\textbf{[}}, float 
\GNUTexinfocommandstyletextvar{b--ar}\texttt{\textbf{]}}) t:b}\hfill[Library 
Function]
+\noindent\texttt{int foobar (int\ 
\GNUTexinfocommandstyletextvar{f---oo}\texttt{\textbf{[}},\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}\texttt{\textbf{]}})\ t:b}\hfill[Library 
Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (int 
\GNUTexinfocommandstyletextvar{f---oo}\textnormal{\GNUTexinfocommandstyletextvar{[}},
 float 
\GNUTexinfocommandstyletextvar{b--ar}\textnormal{\GNUTexinfocommandstyletextvar{]}})
 r:var}\hfill[Library Function]
+\noindent\texttt{int foobar (int\ 
\GNUTexinfocommandstyletextvar{f---oo}\textnormal{\GNUTexinfocommandstyletextvar{[}},\
 float\ 
\GNUTexinfocommandstyletextvar{b--ar}\textnormal{\GNUTexinfocommandstyletextvar{]}})\
 r:var}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (int 
\GNUTexinfocommandstyletextvar{f---oo}\textnormal{\textsl{[}}, float 
\GNUTexinfocommandstyletextvar{b--ar}\textnormal{\textsl{]}}) 
r:slanted}\hfill[Library Function]
+\noindent\texttt{int foobar (int\ 
\GNUTexinfocommandstyletextvar{f---oo}\textnormal{\textsl{[}},\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}\textnormal{\textsl{]}})\ 
r:slanted}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (int 
\GNUTexinfocommandstyletextvar{f---oo}\textnormal{\texttt{[}}, float 
\GNUTexinfocommandstyletextvar{b--ar}\textnormal{\texttt{]}}) 
r:code}\hfill[Library Function]
+\noindent\texttt{int foobar (int\ 
\GNUTexinfocommandstyletextvar{f---oo}\textnormal{\texttt{[}},\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}\textnormal{\texttt{]}})\ 
r:code}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (int 
\GNUTexinfocommandstyletextvar{f---oo}\textnormal{\texttt{[}}, float 
\GNUTexinfocommandstyletextvar{b--ar}\textnormal{\texttt{]}}) 
r:t}\hfill[Library Function]
+\noindent\texttt{int foobar (int\ 
\GNUTexinfocommandstyletextvar{f---oo}\textnormal{\texttt{[}},\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}\textnormal{\texttt{]}})\ 
r:t}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
 \begin{quote}
@@ -347,37 +347,37 @@ In deffn with code and var used
 separators
 \end{quote}
 
-\noindent\texttt{int foobar (i{-}{-}nt 
\GNUTexinfocommandstyletextvar{f---oo}[, float 
\GNUTexinfocommandstyletextvar{b--ar}]) default}\hfill[Library Function]
+\noindent\texttt{int foobar (i{-}{-}nt\ 
\GNUTexinfocommandstyletextvar{f---oo}[,\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}])\ default}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (\textnormal{i--nt} 
\GNUTexinfocommandstyletextvar{f---oo}[, float 
\GNUTexinfocommandstyletextvar{b--ar}]) r}\hfill[Library Function]
+\noindent\texttt{int foobar (\textnormal{i--nt}\ 
\GNUTexinfocommandstyletextvar{f---oo}[,\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}])\ r}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (\GNUTexinfocommandstyletextvar{i--nt} 
\GNUTexinfocommandstyletextvar{f---oo}[, float 
\GNUTexinfocommandstyletextvar{b--ar}]) var}\hfill[Library Function]
+\noindent\texttt{int foobar (\GNUTexinfocommandstyletextvar{i--nt}\ 
\GNUTexinfocommandstyletextvar{f---oo}[,\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}])\ var}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (\textsl{i{-}{-}nt} 
\GNUTexinfocommandstyletextvar{f---oo}[, float 
\GNUTexinfocommandstyletextvar{b--ar}]) slanted}\hfill[Library Function]
+\noindent\texttt{int foobar (\textsl{i{-}{-}nt}\ 
\GNUTexinfocommandstyletextvar{f---oo}[,\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}])\ slanted}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (\texttt{i{-}{-}nt} 
\GNUTexinfocommandstyletextvar{f---oo}[, float 
\GNUTexinfocommandstyletextvar{b--ar}]) code}\hfill[Library Function]
+\noindent\texttt{int foobar (\texttt{i{-}{-}nt}\ 
\GNUTexinfocommandstyletextvar{f---oo}[,\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}])\ code}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (\texttt{i{-}{-}nt} 
\GNUTexinfocommandstyletextvar{f---oo}[, float 
\GNUTexinfocommandstyletextvar{b--ar}]) t}\hfill[Library Function]
+\noindent\texttt{int foobar (\texttt{i{-}{-}nt}\ 
\GNUTexinfocommandstyletextvar{f---oo}[,\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}])\ t}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (\texttt{\textbf{i{-}{-}nt}} 
\GNUTexinfocommandstyletextvar{f---oo}[, float 
\GNUTexinfocommandstyletextvar{b--ar}]) t:b}\hfill[Library Function]
+\noindent\texttt{int foobar (\texttt{\textbf{i{-}{-}nt}}\ 
\GNUTexinfocommandstyletextvar{f---oo}[,\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}])\ t:b}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar 
(\textnormal{\GNUTexinfocommandstyletextvar{i--nt}} 
\GNUTexinfocommandstyletextvar{f---oo}[, float 
\GNUTexinfocommandstyletextvar{b--ar}]) r:var}\hfill[Library Function]
+\noindent\texttt{int foobar 
(\textnormal{\GNUTexinfocommandstyletextvar{i--nt}}\ 
\GNUTexinfocommandstyletextvar{f---oo}[,\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}])\ r:var}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (\textnormal{\textsl{i--nt}} 
\GNUTexinfocommandstyletextvar{f---oo}[, float 
\GNUTexinfocommandstyletextvar{b--ar}]) r:slanted}\hfill[Library Function]
+\noindent\texttt{int foobar (\textnormal{\textsl{i--nt}}\ 
\GNUTexinfocommandstyletextvar{f---oo}[,\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}])\ r:slanted}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (\textnormal{\texttt{i{-}{-}nt}} 
\GNUTexinfocommandstyletextvar{f---oo}[, float 
\GNUTexinfocommandstyletextvar{b--ar}]) r:code}\hfill[Library Function]
+\noindent\texttt{int foobar (\textnormal{\texttt{i{-}{-}nt}}\ 
\GNUTexinfocommandstyletextvar{f---oo}[,\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}])\ r:code}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
-\noindent\texttt{int foobar (\textnormal{\texttt{i{-}{-}nt}} 
\GNUTexinfocommandstyletextvar{f---oo}[, float 
\GNUTexinfocommandstyletextvar{b--ar}]) r:t}\hfill[Library Function]
+\noindent\texttt{int foobar (\textnormal{\texttt{i{-}{-}nt}}\ 
\GNUTexinfocommandstyletextvar{f---oo}[,\ float\ 
\GNUTexinfocommandstyletextvar{b--ar}])\ r:t}\hfill[Library Function]
 
 \index[fn]{foobar@\texttt{foobar}}%
 \begin{quote}
diff --git a/tp/t/results/converters_tests/frenchspacing_and_code.pl 
b/tp/t/results/converters_tests/frenchspacing_and_code.pl
index 0604cb21df..7feacb731f 100644
--- a/tp/t/results/converters_tests/frenchspacing_and_code.pl
+++ b/tp/t/results/converters_tests/frenchspacing_and_code.pl
@@ -2533,9 +2533,9 @@ In text w: z? n; p. f
 c:\\ d?\\ j
 \\end{GNUTexinfopreformatted}
 
-\\noindent\\texttt{type:\\ t.\\ c name?\\ n.\\ d arg? e: f.  
\\GNUTexinfocommandstyletextvar{v: g. h} \\texttt{code?\\ is:\\ k}}\\hfill[cat: 
r. a on \\texttt{class:\\ MyC.\\ b}]
+\\noindent\\texttt{type:\\ t.\\ c name?\\ n.\\ d arg?\\ e:\\ f.\\  
\\GNUTexinfocommandstyletextvar{v: g. h}\\ \\texttt{code?\\ is:\\ 
k}}\\hfill[cat: r. a on \\texttt{class:\\ MyC.\\ b}]
 
-\\index[fn]{name? n. d on class: MyC. b@\\texttt{name?\\ n.\\ d on class:\\ 
MyC.\\ b}}%
+\\index[fn]{name? n. d on class: MyC. b@\\texttt{name?\\ n.\\ d\\ on class:\\ 
MyC.\\ b}}%
 \\begin{quote}
 \\unskip{\\parskip=0pt\\noindent}%
 deftypeop
@@ -2546,7 +2546,7 @@ deftypeop
 
\\cs_undefine:N{\\embrac_texttt:nn}\\cs_undefine:N{\\embrac_orig_texttt:n}\\cs_undefine:N{\\__embrac_texttt:n}%
 \\ExplSyntaxOff%
 
-\\index[fn]{vname? n; d on vclass: MyC. u@\\texttt{vname?\\ n;\\ d on 
vclass:\\ MyC.\\ u}}%
+\\index[fn]{vname? n; d on vclass: MyC. u@\\texttt{vname?\\ n;\\ d\\ on 
vclass:\\ MyC.\\ u}}%
 \\begin{quote}
 \\unskip{\\parskip=0pt\\noindent}%
 defop
@@ -2565,9 +2565,9 @@ In text w: z? n; p. fn
 c:\\ d?\\ jn
 \\end{GNUTexinfopreformatted}
 
-\\noindent\\texttt{type:\\ t.\\ c name?\\ n.\\ d narg? e: f.  
\\GNUTexinfocommandstyletextvar{v: g. h} \\texttt{code?\\ is:\\ k}}\\hfill[cat: 
r. a on \\texttt{class:\\ MyC.\\ b}]
+\\noindent\\texttt{type:\\ t.\\ c name?\\ n.\\ d narg?\\ e:\\ f.\\  
\\GNUTexinfocommandstyletextvar{v: g. h}\\ \\texttt{code?\\ is:\\ 
k}}\\hfill[cat: r. a on \\texttt{class:\\ MyC.\\ b}]
 
-\\index[fn]{name? n. d on class: MyC. b@\\texttt{name?\\ n.\\ d on class:\\ 
MyC.\\ b}}%
+\\index[fn]{name? n. d on class: MyC. b@\\texttt{name?\\ n.\\ d\\ on class:\\ 
MyC.\\ b}}%
 \\begin{quote}
 \\unskip{\\parskip=0pt\\noindent}%
 deftypeop n
@@ -2578,7 +2578,7 @@ deftypeop n
 
\\cs_undefine:N{\\embrac_texttt:nn}\\cs_undefine:N{\\embrac_orig_texttt:n}\\cs_undefine:N{\\__embrac_texttt:n}%
 \\ExplSyntaxOff%
 
-\\index[fn]{vname? n; d on nvclass: MyC. u@\\texttt{vname?\\ n;\\ d on 
nvclass:\\ MyC.\\ u}}%
+\\index[fn]{vname? n; d on nvclass: MyC. u@\\texttt{vname?\\ n;\\ d\\ on 
nvclass:\\ MyC.\\ u}}%
 \\begin{quote}
 \\unskip{\\parskip=0pt\\noindent}%
 defop n
diff --git a/tp/t/results/converters_tests/image_formatting.pl 
b/tp/t/results/converters_tests/image_formatting.pl
index ee9a2f711a..67622076b8 100644
--- a/tp/t/results/converters_tests/image_formatting.pl
+++ b/tp/t/results/converters_tests/image_formatting.pl
@@ -3032,20 +3032,20 @@ $result_converted{'latex'}->{'image_formatting'} = 
'\\label{anchor:Top}%
 \\texttt{@image\\{f{-}{-}ile{,}{,}{,}{,}e-d-xt\\}} \\includegraphics{f--ile}
 \\texttt{@image\\{f{-}{-}ile,aze,az,alt,e{-}{-}xt\\}} 
\\includegraphics[width=aze,height=az]{f--ile}
 \\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@.}
+\\texttt{@image\\{@file\\{f{-}{-}ile\\}@@@.,aze,az,alt,@file\\{file ext\\}\\ 
e{-}{-}xt@\\}} \\includegraphics[width=aze,height=az]{f--ile@.}
 \\includegraphics{image} \\includegraphics{image}
 
 \\begin{GNUTexinfopreformatted}
 \\leftskip=2em\\relax\\ttfamily%
-\\texttt{@image\\{f{-}{-}ile\\}} \\includegraphics{f--ile}
-\\texttt{@image\\{f{-}{-}ile,l{-}{-}i\\}} \\includegraphics[width=l--i]{f--ile}
-\\texttt{@image\\{f{-}{-}ile{,}{,}l{-}{-}e\\}} 
\\includegraphics[height=l--e]{f--ile}
-\\texttt{@image\\{f{-}{-}ile{,}{,},alt\\}} \\includegraphics{f--ile}
-\\texttt{@image\\{f{-}{-}ile{,}{,}{,}{,}e-d-xt\\}} \\includegraphics{f--ile}
-\\texttt{@image\\{f{-}{-}ile,aze,az,alt,e{-}{-}xt\\}} 
\\includegraphics[width=aze,height=az]{f--ile}
-\\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@.}
-\\includegraphics{image} \\includegraphics{image}
+\\texttt{@image\\{f{-}{-}ile\\}}\\ \\includegraphics{f--ile}
+\\texttt{@image\\{f{-}{-}ile,l{-}{-}i\\}}\\ 
\\includegraphics[width=l--i]{f--ile}
+\\texttt{@image\\{f{-}{-}ile{,}{,}l{-}{-}e\\}}\\ 
\\includegraphics[height=l--e]{f--ile}
+\\texttt{@image\\{f{-}{-}ile{,}{,},alt\\}}\\ \\includegraphics{f--ile}
+\\texttt{@image\\{f{-}{-}ile{,}{,}{,}{,}e-d-xt\\}}\\ \\includegraphics{f--ile}
+\\texttt{@image\\{f{-}{-}ile,aze,az,alt,e{-}{-}xt\\}}\\ 
\\includegraphics[width=aze,height=az]{f--ile}
+\\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@.}
+\\includegraphics{image}\\ \\includegraphics{image}
 \\end{GNUTexinfopreformatted}
 
 \\includegraphics{f--ile}
diff --git a/tp/t/results/converters_tests/test_deftypefnnewline.pl 
b/tp/t/results/converters_tests/test_deftypefnnewline.pl
index 0d1b561e1f..09a5c4966c 100644
--- a/tp/t/results/converters_tests/test_deftypefnnewline.pl
+++ b/tp/t/results/converters_tests/test_deftypefnnewline.pl
@@ -3641,7 +3641,7 @@ d--eftypefn no arg
 
 \\noindent\\texttt{t{-}{-}ype\\leavevmode{}\\\\d{-}{-}eftypeop\\_name 
a{-}{-}rguments...}\\hfill[c--ategory on \\texttt{c{-}{-}lass}]
 
-\\index[fn]{d--eftypeop\\_name on c--lass@\\texttt{d{-}{-}eftypeop\\_name on 
c{-}{-}lass}}%
+\\index[fn]{d--eftypeop\\_name on c--lass@\\texttt{d{-}{-}eftypeop\\_name\\ on 
c{-}{-}lass}}%
 \\begin{quote}
 \\unskip{\\parskip=0pt\\noindent}%
 d--eftypeop
@@ -3649,7 +3649,7 @@ d--eftypeop
 
 
\\noindent\\texttt{t{-}{-}ype\\leavevmode{}\\\\d{-}{-}eftypeop\\_name}\\hfill[c--ategory
 on \\texttt{c{-}{-}lass}]
 
-\\index[fn]{d--eftypeop\\_name on c--lass@\\texttt{d{-}{-}eftypeop\\_name on 
c{-}{-}lass}}%
+\\index[fn]{d--eftypeop\\_name on c--lass@\\texttt{d{-}{-}eftypeop\\_name\\ on 
c{-}{-}lass}}%
 \\begin{quote}
 \\unskip{\\parskip=0pt\\noindent}%
 d--eftypeop no arg
@@ -3657,7 +3657,7 @@ d--eftypeop no arg
 
 \\noindent\\texttt{t{-}{-}ype d{-}{-}eftypecv\\_name}\\hfill[c--ategory of 
\\texttt{c{-}{-}lass}]
 
-\\index[vr]{d--eftypecv\\_name of c--lass@\\texttt{d{-}{-}eftypecv\\_name of 
c{-}{-}lass}}%
+\\index[vr]{d--eftypecv\\_name of c--lass@\\texttt{d{-}{-}eftypecv\\_name\\ of 
c{-}{-}lass}}%
 \\begin{quote}
 \\unskip{\\parskip=0pt\\noindent}%
 d--eftypecv
@@ -3665,7 +3665,7 @@ d--eftypecv
 
 \\noindent\\texttt{t{-}{-}ype d{-}{-}eftypecv\\_name 
a{-}{-}rguments...}\\hfill[c--ategory of \\texttt{c{-}{-}lass}]
 
-\\index[vr]{d--eftypecv\\_name of c--lass@\\texttt{d{-}{-}eftypecv\\_name of 
c{-}{-}lass}}%
+\\index[vr]{d--eftypecv\\_name of c--lass@\\texttt{d{-}{-}eftypecv\\_name\\ of 
c{-}{-}lass}}%
 \\begin{quote}
 \\unskip{\\parskip=0pt\\noindent}%
 d--eftypecv with arguments
@@ -3698,7 +3698,7 @@ d--eftypefn no arg2
 
 \\noindent\\texttt{t{-}{-}ype2 d{-}{-}eftypeop\\_name2 
a{-}{-}rguments2...}\\hfill[c--ategory2 on \\texttt{c{-}{-}lass2}]
 
-\\index[fn]{d--eftypeop\\_name2 on c--lass2@\\texttt{d{-}{-}eftypeop\\_name2 
on c{-}{-}lass2}}%
+\\index[fn]{d--eftypeop\\_name2 on c--lass2@\\texttt{d{-}{-}eftypeop\\_name2\\ 
on c{-}{-}lass2}}%
 \\begin{quote}
 \\unskip{\\parskip=0pt\\noindent}%
 d--eftypeop2
@@ -3706,7 +3706,7 @@ d--eftypeop2
 
 \\noindent\\texttt{t{-}{-}ype2 d{-}{-}eftypeop\\_name2}\\hfill[c--ategory2 on 
\\texttt{c{-}{-}lass2}]
 
-\\index[fn]{d--eftypeop\\_name2 on c--lass2@\\texttt{d{-}{-}eftypeop\\_name2 
on c{-}{-}lass2}}%
+\\index[fn]{d--eftypeop\\_name2 on c--lass2@\\texttt{d{-}{-}eftypeop\\_name2\\ 
on c{-}{-}lass2}}%
 \\begin{quote}
 \\unskip{\\parskip=0pt\\noindent}%
 d--eftypeop no arg2
@@ -3714,7 +3714,7 @@ d--eftypeop no arg2
 
 \\noindent\\texttt{t{-}{-}ype2 d{-}{-}eftypecv\\_name2}\\hfill[c--ategory2 of 
\\texttt{c{-}{-}lass2}]
 
-\\index[vr]{d--eftypecv\\_name2 of c--lass2@\\texttt{d{-}{-}eftypecv\\_name2 
of c{-}{-}lass2}}%
+\\index[vr]{d--eftypecv\\_name2 of c--lass2@\\texttt{d{-}{-}eftypecv\\_name2\\ 
of c{-}{-}lass2}}%
 \\begin{quote}
 \\unskip{\\parskip=0pt\\noindent}%
 d--eftypecv2
@@ -3722,7 +3722,7 @@ d--eftypecv2
 
 \\noindent\\texttt{t{-}{-}ype2 d{-}{-}eftypecv\\_name2 
a{-}{-}rguments2...}\\hfill[c--ategory2 of \\texttt{c{-}{-}lass2}]
 
-\\index[vr]{d--eftypecv\\_name2 of c--lass2@\\texttt{d{-}{-}eftypecv\\_name2 
of c{-}{-}lass2}}%
+\\index[vr]{d--eftypecv\\_name2 of c--lass2@\\texttt{d{-}{-}eftypecv\\_name2\\ 
of c{-}{-}lass2}}%
 \\begin{quote}
 \\unskip{\\parskip=0pt\\noindent}%
 d--eftypecv with arguments2
diff --git a/tp/t/results/indices/def_syn_indices/res_latex/def_syn_indices.tex 
b/tp/t/results/indices/def_syn_indices/res_latex/def_syn_indices.tex
index c1f2f37eed..40ff64528a 100644
--- a/tp/t/results/indices/def_syn_indices/res_latex/def_syn_indices.tex
+++ b/tp/t/results/indices/def_syn_indices/res_latex/def_syn_indices.tex
@@ -79,7 +79,7 @@ after
 \index[fn]{index truc}%
 
 
-\index[codeidx]{a index entry te\~{} i\^{}@\texttt{a 
\GNUTexinfocommandstyletextvar{index entry} t\~{e} \^{\i{}}}}%
+\index[codeidx]{a index entry te\~{} i\^{}@\texttt{a 
\GNUTexinfocommandstyletextvar{index entry}\ t\~{e}\ \^{\i{}}}}%
 
 \index[fn]{cindex entry@\texttt{cindex entry}}%
 
diff --git 
a/tp/t/results/languages/multiple_lang_chapters_latex/res_latex/multiple_lang_chapters.tex
 
b/tp/t/results/languages/multiple_lang_chapters_latex/res_latex/multiple_lang_chapters.tex
index d742332773..3e79828ba2 100644
--- 
a/tp/t/results/languages/multiple_lang_chapters_latex/res_latex/multiple_lang_chapters.tex
+++ 
b/tp/t/results/languages/multiple_lang_chapters_latex/res_latex/multiple_lang_chapters.tex
@@ -87,7 +87,7 @@
 In japanese. See 
\hyperref[anchor:chapter-ja]{\chaptername~\ref*{anchor:chapter-ja} [chapter 
ja], page~\pageref*{anchor:chapter-ja}}.
 \noindent\texttt{BBB 
\EmbracOn{}\textnormal{\textsl{CCC}}\EmbracOff{}}\hfill[Instance Variable of 
\texttt{AAA}]
 
-\index[vr]{BBB of AAA@\texttt{BBB of AAA}}%
+\index[vr]{BBB of AAA@\texttt{BBB\ of AAA}}%
 
 \selectlanguage{en}%
 \chapter{{en}}
@@ -96,7 +96,7 @@ In japanese. See 
\hyperref[anchor:chapter-ja]{\chaptername~\ref*{anchor:chapter-
 In english. See 
\hyperref[anchor:chapter-ja]{\chaptername~\ref*{anchor:chapter-ja} [chapter 
ja], page~\pageref*{anchor:chapter-ja}}.
 \noindent\texttt{BBB 
\EmbracOn{}\textnormal{\textsl{CCC}}\EmbracOff{}}\hfill[Instance Variable of 
\texttt{AAA}]
 
-\index[vr]{BBB of AAA@\texttt{BBB of AAA}}%
+\index[vr]{BBB of AAA@\texttt{BBB\ of AAA}}%
 
 \selectlanguage{fr-FR}%
 \chapter{{fr\_FR}}
@@ -104,7 +104,7 @@ In english. See 
\hyperref[anchor:chapter-ja]{\chaptername~\ref*{anchor:chapter-j
 
 \noindent\texttt{BBB 
\EmbracOn{}\textnormal{\textsl{CCC}}\EmbracOff{}}\hfill[Variable d'instance of 
\texttt{AAA}]
 
-\index[vr]{BBB of AAA@\texttt{BBB of AAA}}%
+\index[vr]{BBB of AAA@\texttt{BBB\ of AAA}}%
 
 \selectlanguage{de}%
 \chapter{{de}}
diff --git a/tp/t/results/latex_tests/indices.pl 
b/tp/t/results/latex_tests/indices.pl
index ec96368a8c..01a6bb9262 100644
--- a/tp/t/results/latex_tests/indices.pl
+++ b/tp/t/results/latex_tests/indices.pl
@@ -1371,7 +1371,7 @@ $result_converted{'latex'}->{'indices'} = '
 
 \\index[cp]{\\textbackslash{}some\\textbackslash{}command for \\texttt{file}}%
 
-\\index[fn]{the person index aa@\\texttt{the \\textnormal{person} index 
\\texttt{aa}}}%
+\\index[fn]{the person index aa@\\texttt{the \\textnormal{person}\\ index 
\\texttt{aa}}}%
 
 \\printindex[cp]
 
diff --git a/tp/t/results/latex_tests/indices/res_latex/indices.tex 
b/tp/t/results/latex_tests/indices/res_latex/indices.tex
index 877b1ad439..d0e15d5d23 100644
--- a/tp/t/results/latex_tests/indices/res_latex/indices.tex
+++ b/tp/t/results/latex_tests/indices/res_latex/indices.tex
@@ -76,7 +76,7 @@
 
 \index[cp]{\textbackslash{}some\textbackslash{}command for \texttt{file}}%
 
-\index[fn]{the person index aa@\texttt{the \textnormal{person} index 
\texttt{aa}}}%
+\index[fn]{the person index aa@\texttt{the \textnormal{person}\ index 
\texttt{aa}}}%
 
 \printindex[cp]
 
diff --git a/tp/t/results/misc_commands/kbdinputstyle.pl 
b/tp/t/results/misc_commands/kbdinputstyle.pl
index a6c2bc0abc..64b81d95de 100644
--- a/tp/t/results/misc_commands/kbdinputstyle.pl
+++ b/tp/t/results/misc_commands/kbdinputstyle.pl
@@ -1715,7 +1715,7 @@ in example
 \\leftskip=2em\\relax\\ttfamily%
 \\texttt{in code in example \\texttt{in nested code}}.
 \\texttt{kbd in example}.
-\\texttt{kbd \\texttt{in code} in example}.
+\\texttt{kbd \\texttt{in code}\\ in example}.
 \\end{GNUTexinfopreformatted}
 
 @kbdinputstyle example
@@ -1730,7 +1730,7 @@ in example
 \\leftskip=2em\\relax\\ttfamily%
 \\texttt{in code in example \\texttt{in nested code}}.
 \\texttt{kbd in example}.
-\\texttt{kbd \\texttt{in code} in example}.
+\\texttt{kbd \\texttt{in code}\\ in example}.
 \\end{GNUTexinfopreformatted}
 
 @kbdinputstyle distinct
@@ -1745,7 +1745,7 @@ in example
 \\leftskip=2em\\relax\\ttfamily%
 \\texttt{in code in example \\texttt{in nested code}}.
 \\GNUTexinfocommandstyletextkbd{kbd in example}.
-\\texttt{kbd \\GNUTexinfocommandstyletextkbd{in code} in example}.
+\\texttt{kbd \\GNUTexinfocommandstyletextkbd{in code}\\ in example}.
 \\end{GNUTexinfopreformatted}
 ';
 
diff --git a/tp/tests/layout/res_parser/formatting_latex/formatting.tex 
b/tp/tests/layout/res_parser/formatting_latex/formatting.tex
index ef29bb2de3..e540c804d3 100644
--- a/tp/tests/layout/res_parser/formatting_latex/formatting.tex
+++ b/tp/tests/layout/res_parser/formatting_latex/formatting.tex
@@ -263,7 +263,7 @@ but , ,\@
 \texttt{@i\{{-}{-}a\}} \textit{--a}
 \texttt{@kbd\{{-}{-}a\}} \GNUTexinfocommandstyletextkbd{{-}{-}a}
 \texttt{@key\{{-}{-}a\}} \texttt{{-}{-}a}
-\texttt{@math\{{-}{-}a \{\textbackslash{}frac\{1\}\{2\}\} @minus\{\}\}} $--a 
{\frac{1}{2}} -$
+\texttt{@math\{{-}{-}a \{\textbackslash{}frac\{1\}\{2\}\}\ @minus\{\}\}} $--a 
{\frac{1}{2}} -$
 \texttt{@option\{{-}{-}a\}} \texttt{{-}{-}a}
 \texttt{@r\{{-}{-}a\}} \textnormal{--a}
 \texttt{@samp\{{-}{-}a\}} `\texttt{{-}{-}a}'
@@ -286,7 +286,7 @@ but , ,\@
 \texttt{@url\{,{-}{-}b\}} --b
 \texttt{@var\{{-}{-}a\}} \GNUTexinfocommandstyletextvar{--a}
 \texttt{@verb\{:{-}{-}a:\}} \verb:--a:
-\texttt{@verb\{:a  < \& @ \% " {-}{-}    b:\}} \verb:a  < & @ % " --    b:
+\texttt{@verb\{:a  < \& @\ \% " {-}{-}    b:\}} \verb:a  < & @ % " --    b:
 \texttt{@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\}} \hbox{a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a 
a a}
 \texttt{@H\{a\}} \H{a}
 \texttt{@H\{{-}{-}a\}} \H{--a}
@@ -324,9 +324,9 @@ but , ,\@
 \texttt{need 1002}
 \needspace{1.002pt}%
 
-\texttt{@clicksequence\{click @click\{\} A\}} click $\rightarrow{}$ A
+\texttt{@clicksequence\{click @click\{\}\ A\}} click $\rightarrow{}$ A
 After clickstyle $\Rightarrow{}$
-\texttt{@clicksequence\{click @click\{\} A\}} click $\Rightarrow{}$ A
+\texttt{@clicksequence\{click @click\{\}\ A\}} click $\Rightarrow{}$ A
 
 
 $$
@@ -632,7 +632,7 @@ truc &bidule\\
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
 e{-}{-}xample  some
-   text
+\   text
 \end{GNUTexinfopreformatted}
 
 \begin{GNUTexinfopreformatted}
@@ -662,12 +662,12 @@ example five args
 
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
-The something \'{e} \TeX{} is here.
+The something \'{e}\ \TeX{}\ is here.
 \end{GNUTexinfopreformatted}
 
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
-A @ at the end of the @example line.
+A @\ at the end of the @example line.
 \end{GNUTexinfopreformatted}
 
 \begin{GNUTexinfopreformatted}
@@ -790,9 +790,9 @@ def--fn
 \noindent\texttt{\textbf{id ule} 
\EmbracOn{}\textnormal{\textsl{truc}}\EmbracOff{}}\hfill[cmde]
 
 \index[fn]{id ule@\texttt{\textbf{id ule}}}%
-\noindent\texttt{\textbf{id `\texttt{i}' ule} 
\EmbracOn{}\textnormal{\textsl{truc}}\EmbracOff{}}\hfill[cmde2]
+\noindent\texttt{\textbf{id `\texttt{i}'\ ule} 
\EmbracOn{}\textnormal{\textsl{truc}}\EmbracOff{}}\hfill[cmde2]
 
-\index[fn]{id i ule@\texttt{\textbf{id `\texttt{i}' ule}}}%
+\index[fn]{id i ule@\texttt{\textbf{id `\texttt{i}'\ ule}}}%
 \noindent\texttt{}\hfill[]
 
 \noindent\texttt{machin}\hfill[]
@@ -887,7 +887,7 @@ d--eftypefn no arg
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name 
a{-}{-}rguments...}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeop
@@ -895,7 +895,7 @@ d--eftypeop
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name}\hfill[c--ategory on 
\texttt{c{-}{-}lass}]
 
-\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeop no arg
@@ -927,7 +927,7 @@ d--efcv with arguments
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name}\hfill[c--ategory of 
\texttt{c{-}{-}lass}]
 
-\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypecv
@@ -935,7 +935,7 @@ d--eftypecv
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name 
a{-}{-}rguments...}\hfill[c--ategory of \texttt{c{-}{-}lass}]
 
-\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypecv with arguments
@@ -943,7 +943,7 @@ d--eftypecv with arguments
 
 \noindent\texttt{d{-}{-}efop\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory 
on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--efop
@@ -951,7 +951,7 @@ d--efop
 
 \noindent\texttt{d{-}{-}efop\_name}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--efop no arg
@@ -1031,7 +1031,7 @@ d--eftypevar
 
 \noindent\texttt{d{-}{-}efivar\_name}\hfill[Instance Variable of 
\texttt{c{-}{-}lass}]
 
-\index[cp]{d--efivar\_name of c--lass@\texttt{d{-}{-}efivar\_name of 
c{-}{-}lass}}%
+\index[cp]{d--efivar\_name of c--lass@\texttt{d{-}{-}efivar\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--efivar
@@ -1039,7 +1039,7 @@ d--efivar
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeivar\_name}\hfill[Instance Variable 
of \texttt{c{-}{-}lass}]
 
-\index[cp]{d--eftypeivar\_name of c--lass@\texttt{d{-}{-}eftypeivar\_name of 
c{-}{-}lass}}%
+\index[cp]{d--eftypeivar\_name of c--lass@\texttt{d{-}{-}eftypeivar\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeivar
@@ -1047,7 +1047,7 @@ d--eftypeivar
 
 \noindent\texttt{d{-}{-}efmethod\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Method on 
\texttt{c{-}{-}lass}]
 
-\index[fn]{d--efmethod\_name on c--lass@\texttt{d{-}{-}efmethod\_name on 
c{-}{-}lass}}%
+\index[fn]{d--efmethod\_name on c--lass@\texttt{d{-}{-}efmethod\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--efmethod
@@ -1055,7 +1055,7 @@ d--efmethod
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypemethod\_name 
a{-}{-}rguments...}\hfill[Method on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--eftypemethod\_name on c--lass@\texttt{d{-}{-}eftypemethod\_name 
on c{-}{-}lass}}%
+\index[fn]{d--eftypemethod\_name on c--lass@\texttt{d{-}{-}eftypemethod\_name\ 
on c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypemethod
@@ -1080,7 +1080,7 @@ d--eftypefn no arg2
 
 \noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 on \texttt{c{-}{-}lass2}]
 
-\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2\ on 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeop2
@@ -1088,7 +1088,7 @@ d--eftypeop2
 
 
\noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2}\hfill[c--ategory2
 on \texttt{c{-}{-}lass2}]
 
-\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2\ on 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeop no arg2
@@ -1096,7 +1096,7 @@ d--eftypeop no arg2
 
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2}\hfill[c--ategory2 of 
\texttt{c{-}{-}lass2}]
 
-\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2\ of 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypecv2
@@ -1104,7 +1104,7 @@ d--eftypecv2
 
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 of \texttt{c{-}{-}lass2}]
 
-\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2\ of 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypecv with arguments2
@@ -1129,8 +1129,8 @@ fff2
 \texttt{@pxref\{chapter\}} see 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [chapter], 
page~\pageref*{anchor:chapter}}
 \texttt{@ref\{s{-}{-}ect@comma\{\}ion\}} 
\hyperref[anchor:s_002d_002dect_002cion]{Section~\ref*{anchor:s_002d_002dect_002cion}
 [s--ect,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 \}}
+\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 \}}
 Section ``a comma, in title'' in \textsl{a , in manual name}
 
 \texttt{@ref\{chapter,cross ref name\}} 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [chapter], 
page~\pageref*{anchor:chapter}}
@@ -1175,9 +1175,9 @@ Section ``a comma, in title'' in \textsl{a , in manual 
name}
 \texttt{@inforef\{node{,}{,}file name\}} Section ``node'' in \texttt{file name}
 \texttt{@inforef\{chapter,\ cross ref name,\ file name,\ spurious arg\}} 
Section ``chapter'' in \texttt{file name,\ spurious arg}
 
-\texttt{@inforef\{s{-}{-}ect@comma\{\}ion,\ a @comma\{\} in cross
-ref,\ a comma@comma\{\} in file\}}
-Section ``s--ect,ion'' in \texttt{a comma, in file}
+\texttt{@inforef\{s{-}{-}ect@comma\{\}ion,\ a @comma\{\}\ in cross
+ref,\ a comma@comma\{\}\ in file\}}
+Section ``s--ect,ion'' in \texttt{a comma,\ in file}
 
 `\texttt{\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} 
[chapter], page~\pageref*{anchor:chapter}}}'.
 
@@ -1280,11 +1280,11 @@ $\frac{a < b \texttt{tex \hbox{ code }}}{b}$ ``
 \GNUTexinfonopagebreakheading{\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{@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{@math\{{-}{-}a@minus\{\}\ \{\textbackslash{}frac\{1\}\{2\}\}\}} $--a- 
{\frac{1}{2}}$
 
 
 
@@ -1328,9 +1328,9 @@ Invalid use of @':\leavevmode{}\\
 \texttt{@image\{f{-}{-}ile,l{-}{-}i\}} \includegraphics[width=l--i]{f--ile}
 \texttt{@image\{f{-}{-}ile{,}{,}l{-}{-}e\}} 
\includegraphics[height=l--e]{f--ile}
 \texttt{@image\{f{-}{-}ile,aze,az,alt,.e{-}{-}xt\}} 
\includegraphics[width=aze,height=az]{f--ile}
-\texttt{@image\{@file\{f{-}{-}ile\}@@@.,aze,az,alt,@file\{.file ext\} 
e{-}{-}xt@\}} \includegraphics[width=aze,height=az]{f--ile@.}
+\texttt{@image\{@file\{f{-}{-}ile\}@@@.,aze,az,alt,@file\{.file ext\}\ 
e{-}{-}xt@\}} \includegraphics[width=aze,height=az]{f--ile@.}
 
-\texttt{@image\{f{-}{-}ile,aze,az,@verb\{:jk \_" \%@:\} @b\{in b 
"\},e{-}{-}xt\}} \includegraphics[width=aze,height=az]{f--ile}
+\texttt{@image\{f{-}{-}ile,aze,az,@verb\{:jk \_" \%@:\}\ @b\{in b 
"\},e{-}{-}xt\}} \includegraphics[width=aze,height=az]{f--ile}
 \texttt{@image\{file@verb\{:jk \_" \%@:\}{,}{,},alt@verb\{:jk \_" \%@:\}\}} 
\includegraphics{filejk _" \%@}
 
 
@@ -1611,7 +1611,7 @@ but , ,\@
 \texttt{@i\{{-}{-}a\}} \textit{--a}
 \texttt{@kbd\{{-}{-}a\}} \GNUTexinfocommandstyletextkbd{{-}{-}a}
 \texttt{@key\{{-}{-}a\}} \texttt{{-}{-}a}
-\texttt{@math\{{-}{-}a \{\textbackslash{}frac\{1\}\{2\}\} @minus\{\}\}} $--a 
{\frac{1}{2}} -$
+\texttt{@math\{{-}{-}a \{\textbackslash{}frac\{1\}\{2\}\}\ @minus\{\}\}} $--a 
{\frac{1}{2}} -$
 \texttt{@option\{{-}{-}a\}} \texttt{{-}{-}a}
 \texttt{@r\{{-}{-}a\}} \textnormal{--a}
 \texttt{@samp\{{-}{-}a\}} `\texttt{{-}{-}a}'
@@ -1634,7 +1634,7 @@ but , ,\@
 \texttt{@url\{,{-}{-}b\}} --b
 \texttt{@var\{{-}{-}a\}} \GNUTexinfocommandstyletextvar{--a}
 \texttt{@verb\{:{-}{-}a:\}} \verb:--a:
-\texttt{@verb\{:a  < \& @ \% " {-}{-}    b:\}} \verb:a  < & @ % " --    b:
+\texttt{@verb\{:a  < \& @\ \% " {-}{-}    b:\}} \verb:a  < & @ % " --    b:
 \texttt{@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\}} \hbox{a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a 
a a}
 \texttt{@H\{a\}} \H{a}
 \texttt{@H\{{-}{-}a\}} \H{--a}
@@ -1669,9 +1669,9 @@ but , ,\@
 \texttt{need 1002}
 \needspace{1.002pt}%
 
-\texttt{@clicksequence\{click @click\{\} A\}} click $\rightarrow{}$ A
+\texttt{@clicksequence\{click @click\{\}\ A\}} click $\rightarrow{}$ A
 After clickstyle $\Rightarrow{}$
-\texttt{@clicksequence\{click @click\{\} A\}} click $\Rightarrow{}$ A
+\texttt{@clicksequence\{click @click\{\}\ A\}} click $\Rightarrow{}$ A
 
 
 $$
@@ -1977,7 +1977,7 @@ truc &bidule\\
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
 e{-}{-}xample  some
-   text
+\   text
 \end{GNUTexinfopreformatted}
 
 \begin{GNUTexinfopreformatted}
@@ -2007,12 +2007,12 @@ example five args
 
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
-The something \'{e} \TeX{} is here.
+The something \'{e}\ \TeX{}\ is here.
 \end{GNUTexinfopreformatted}
 
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
-A @ at the end of the @example line.
+A @\ at the end of the @example line.
 \end{GNUTexinfopreformatted}
 
 \begin{GNUTexinfopreformatted}
@@ -2135,9 +2135,9 @@ def--fn
 \noindent\texttt{\textbf{id ule} 
\EmbracOn{}\textnormal{\textsl{truc}}\EmbracOff{}}\hfill[cmde]
 
 \index[fn]{id ule@\texttt{\textbf{id ule}}}%
-\noindent\texttt{\textbf{id `\texttt{i}' ule} 
\EmbracOn{}\textnormal{\textsl{truc}}\EmbracOff{}}\hfill[cmde2]
+\noindent\texttt{\textbf{id `\texttt{i}'\ ule} 
\EmbracOn{}\textnormal{\textsl{truc}}\EmbracOff{}}\hfill[cmde2]
 
-\index[fn]{id i ule@\texttt{\textbf{id `\texttt{i}' ule}}}%
+\index[fn]{id i ule@\texttt{\textbf{id `\texttt{i}'\ ule}}}%
 \noindent\texttt{}\hfill[]
 
 \noindent\texttt{machin}\hfill[]
@@ -2232,7 +2232,7 @@ d--eftypefn no arg
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name 
a{-}{-}rguments...}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeop
@@ -2240,7 +2240,7 @@ d--eftypeop
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name}\hfill[c--ategory on 
\texttt{c{-}{-}lass}]
 
-\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeop no arg
@@ -2272,7 +2272,7 @@ d--efcv with arguments
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name}\hfill[c--ategory of 
\texttt{c{-}{-}lass}]
 
-\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypecv
@@ -2280,7 +2280,7 @@ d--eftypecv
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name 
a{-}{-}rguments...}\hfill[c--ategory of \texttt{c{-}{-}lass}]
 
-\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypecv with arguments
@@ -2288,7 +2288,7 @@ d--eftypecv with arguments
 
 \noindent\texttt{d{-}{-}efop\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory 
on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--efop
@@ -2296,7 +2296,7 @@ d--efop
 
 \noindent\texttt{d{-}{-}efop\_name}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--efop no arg
@@ -2376,7 +2376,7 @@ d--eftypevar
 
 \noindent\texttt{d{-}{-}efivar\_name}\hfill[Instance Variable of 
\texttt{c{-}{-}lass}]
 
-\index[cp]{d--efivar\_name of c--lass@\texttt{d{-}{-}efivar\_name of 
c{-}{-}lass}}%
+\index[cp]{d--efivar\_name of c--lass@\texttt{d{-}{-}efivar\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--efivar
@@ -2384,7 +2384,7 @@ d--efivar
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeivar\_name}\hfill[Instance Variable 
of \texttt{c{-}{-}lass}]
 
-\index[cp]{d--eftypeivar\_name of c--lass@\texttt{d{-}{-}eftypeivar\_name of 
c{-}{-}lass}}%
+\index[cp]{d--eftypeivar\_name of c--lass@\texttt{d{-}{-}eftypeivar\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeivar
@@ -2392,7 +2392,7 @@ d--eftypeivar
 
 \noindent\texttt{d{-}{-}efmethod\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Method on 
\texttt{c{-}{-}lass}]
 
-\index[fn]{d--efmethod\_name on c--lass@\texttt{d{-}{-}efmethod\_name on 
c{-}{-}lass}}%
+\index[fn]{d--efmethod\_name on c--lass@\texttt{d{-}{-}efmethod\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--efmethod
@@ -2400,7 +2400,7 @@ d--efmethod
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypemethod\_name 
a{-}{-}rguments...}\hfill[Method on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--eftypemethod\_name on c--lass@\texttt{d{-}{-}eftypemethod\_name 
on c{-}{-}lass}}%
+\index[fn]{d--eftypemethod\_name on c--lass@\texttt{d{-}{-}eftypemethod\_name\ 
on c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypemethod
@@ -2425,7 +2425,7 @@ d--eftypefn no arg2
 
 \noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 on \texttt{c{-}{-}lass2}]
 
-\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2\ on 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeop2
@@ -2433,7 +2433,7 @@ d--eftypeop2
 
 
\noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2}\hfill[c--ategory2
 on \texttt{c{-}{-}lass2}]
 
-\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2\ on 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeop no arg2
@@ -2441,7 +2441,7 @@ d--eftypeop no arg2
 
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2}\hfill[c--ategory2 of 
\texttt{c{-}{-}lass2}]
 
-\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2\ of 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypecv2
@@ -2449,7 +2449,7 @@ d--eftypecv2
 
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 of \texttt{c{-}{-}lass2}]
 
-\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2\ of 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypecv with arguments2
@@ -2474,8 +2474,8 @@ fff2
 \texttt{@pxref\{chapter\}} see 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [chapter], 
page~\pageref*{anchor:chapter}}
 \texttt{@ref\{s{-}{-}ect@comma\{\}ion\}} 
\hyperref[anchor:s_002d_002dect_002cion]{Section~\ref*{anchor:s_002d_002dect_002cion}
 [s--ect,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 \}}
+\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 \}}
 Section ``a comma, in title'' in \textsl{a , in manual name}
 
 \texttt{@ref\{chapter,cross ref name\}} 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [chapter], 
page~\pageref*{anchor:chapter}}
@@ -2520,9 +2520,9 @@ Section ``a comma, in title'' in \textsl{a , in manual 
name}
 \texttt{@inforef\{node{,}{,}file name\}} Section ``node'' in \texttt{file name}
 \texttt{@inforef\{chapter,\ cross ref name,\ file name,\ spurious arg\}} 
Section ``chapter'' in \texttt{file name,\ spurious arg}
 
-\texttt{@inforef\{s{-}{-}ect@comma\{\}ion,\ a @comma\{\} in cross
-ref,\ a comma@comma\{\} in file\}}
-Section ``s--ect,ion'' in \texttt{a comma, in file}
+\texttt{@inforef\{s{-}{-}ect@comma\{\}ion,\ a @comma\{\}\ in cross
+ref,\ a comma@comma\{\}\ in file\}}
+Section ``s--ect,ion'' in \texttt{a comma,\ in file}
 
 `\texttt{\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} 
[chapter], page~\pageref*{anchor:chapter}}}'.
 
@@ -2625,11 +2625,11 @@ $\frac{a < b \texttt{tex \hbox{ code }}}{b}$ ``
 \GNUTexinfonopagebreakheading{\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{@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{@math\{{-}{-}a@minus\{\}\ \{\textbackslash{}frac\{1\}\{2\}\}\}} $--a- 
{\frac{1}{2}}$
 
 
 
@@ -2673,9 +2673,9 @@ Invalid use of @':\leavevmode{}\\
 \texttt{@image\{f{-}{-}ile,l{-}{-}i\}} \includegraphics[width=l--i]{f--ile}
 \texttt{@image\{f{-}{-}ile{,}{,}l{-}{-}e\}} 
\includegraphics[height=l--e]{f--ile}
 \texttt{@image\{f{-}{-}ile,aze,az,alt,.e{-}{-}xt\}} 
\includegraphics[width=aze,height=az]{f--ile}
-\texttt{@image\{@file\{f{-}{-}ile\}@@@.,aze,az,alt,@file\{.file ext\} 
e{-}{-}xt@\}} \includegraphics[width=aze,height=az]{f--ile@.}
+\texttt{@image\{@file\{f{-}{-}ile\}@@@.,aze,az,alt,@file\{.file ext\}\ 
e{-}{-}xt@\}} \includegraphics[width=aze,height=az]{f--ile@.}
 
-\texttt{@image\{f{-}{-}ile,aze,az,@verb\{:jk \_" \%@:\} @b\{in b 
"\},e{-}{-}xt\}} \includegraphics[width=aze,height=az]{f--ile}
+\texttt{@image\{f{-}{-}ile,aze,az,@verb\{:jk \_" \%@:\}\ @b\{in b 
"\},e{-}{-}xt\}} \includegraphics[width=aze,height=az]{f--ile}
 \texttt{@image\{file@verb\{:jk \_" \%@:\}{,}{,},alt@verb\{:jk \_" \%@:\}\}} 
\includegraphics{filejk _" \%@}
 
 
@@ -2977,7 +2977,7 @@ but , ,\@
 \texttt{@i\{{-}{-}a\}} \textit{--a}
 \texttt{@kbd\{{-}{-}a\}} \GNUTexinfocommandstyletextkbd{{-}{-}a}
 \texttt{@key\{{-}{-}a\}} \texttt{{-}{-}a}
-\texttt{@math\{{-}{-}a \{\textbackslash{}frac\{1\}\{2\}\} @minus\{\}\}} $--a 
{\frac{1}{2}} -$
+\texttt{@math\{{-}{-}a \{\textbackslash{}frac\{1\}\{2\}\}\ @minus\{\}\}} $--a 
{\frac{1}{2}} -$
 \texttt{@option\{{-}{-}a\}} \texttt{{-}{-}a}
 \texttt{@r\{{-}{-}a\}} \textnormal{--a}
 \texttt{@samp\{{-}{-}a\}} `\texttt{{-}{-}a}'
@@ -3000,7 +3000,7 @@ but , ,\@
 \texttt{@url\{,{-}{-}b\}} --b
 \texttt{@var\{{-}{-}a\}} \GNUTexinfocommandstyletextvar{--a}
 \texttt{@verb\{:{-}{-}a:\}} \verb:--a:
-\texttt{@verb\{:a  < \& @ \% " {-}{-}    b:\}} \verb:a  < & @ % " --    b:
+\texttt{@verb\{:a  < \& @\ \% " {-}{-}    b:\}} \verb:a  < & @ % " --    b:
 \texttt{@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\}} \hbox{a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a 
a a}
 \texttt{@H\{a\}} \H{a}
 \texttt{@H\{{-}{-}a\}} \H{--a}
@@ -3035,9 +3035,9 @@ but , ,\@
 \texttt{need 1002}
 \needspace{1.002pt}%
 
-\texttt{@clicksequence\{click @click\{\} A\}} click $\rightarrow{}$ A
+\texttt{@clicksequence\{click @click\{\}\ A\}} click $\rightarrow{}$ A
 After clickstyle $\Rightarrow{}$
-\texttt{@clicksequence\{click @click\{\} A\}} click $\Rightarrow{}$ A
+\texttt{@clicksequence\{click @click\{\}\ A\}} click $\Rightarrow{}$ A
 
 
 $$
@@ -3343,7 +3343,7 @@ truc &bidule\\
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
 e{-}{-}xample  some
-   text
+\   text
 \end{GNUTexinfopreformatted}
 
 \begin{GNUTexinfopreformatted}
@@ -3373,12 +3373,12 @@ example five args
 
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
-The something \'{e} \TeX{} is here.
+The something \'{e}\ \TeX{}\ is here.
 \end{GNUTexinfopreformatted}
 
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
-A @ at the end of the @example line.
+A @\ at the end of the @example line.
 \end{GNUTexinfopreformatted}
 
 \begin{GNUTexinfopreformatted}
@@ -3501,9 +3501,9 @@ def--fn
 \noindent\texttt{\textbf{id ule} 
\EmbracOn{}\textnormal{\textsl{truc}}\EmbracOff{}}\hfill[cmde]
 
 \index[fn]{id ule@\texttt{\textbf{id ule}}}%
-\noindent\texttt{\textbf{id `\texttt{i}' ule} 
\EmbracOn{}\textnormal{\textsl{truc}}\EmbracOff{}}\hfill[cmde2]
+\noindent\texttt{\textbf{id `\texttt{i}'\ ule} 
\EmbracOn{}\textnormal{\textsl{truc}}\EmbracOff{}}\hfill[cmde2]
 
-\index[fn]{id i ule@\texttt{\textbf{id `\texttt{i}' ule}}}%
+\index[fn]{id i ule@\texttt{\textbf{id `\texttt{i}'\ ule}}}%
 \noindent\texttt{}\hfill[]
 
 \noindent\texttt{machin}\hfill[]
@@ -3598,7 +3598,7 @@ d--eftypefn no arg
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name 
a{-}{-}rguments...}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeop
@@ -3606,7 +3606,7 @@ d--eftypeop
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name}\hfill[c--ategory on 
\texttt{c{-}{-}lass}]
 
-\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeop no arg
@@ -3638,7 +3638,7 @@ d--efcv with arguments
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name}\hfill[c--ategory of 
\texttt{c{-}{-}lass}]
 
-\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypecv
@@ -3646,7 +3646,7 @@ d--eftypecv
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name 
a{-}{-}rguments...}\hfill[c--ategory of \texttt{c{-}{-}lass}]
 
-\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypecv with arguments
@@ -3654,7 +3654,7 @@ d--eftypecv with arguments
 
 \noindent\texttt{d{-}{-}efop\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory 
on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--efop
@@ -3662,7 +3662,7 @@ d--efop
 
 \noindent\texttt{d{-}{-}efop\_name}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--efop no arg
@@ -3742,7 +3742,7 @@ d--eftypevar
 
 \noindent\texttt{d{-}{-}efivar\_name}\hfill[Instance Variable of 
\texttt{c{-}{-}lass}]
 
-\index[cp]{d--efivar\_name of c--lass@\texttt{d{-}{-}efivar\_name of 
c{-}{-}lass}}%
+\index[cp]{d--efivar\_name of c--lass@\texttt{d{-}{-}efivar\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--efivar
@@ -3750,7 +3750,7 @@ d--efivar
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeivar\_name}\hfill[Instance Variable 
of \texttt{c{-}{-}lass}]
 
-\index[cp]{d--eftypeivar\_name of c--lass@\texttt{d{-}{-}eftypeivar\_name of 
c{-}{-}lass}}%
+\index[cp]{d--eftypeivar\_name of c--lass@\texttt{d{-}{-}eftypeivar\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeivar
@@ -3758,7 +3758,7 @@ d--eftypeivar
 
 \noindent\texttt{d{-}{-}efmethod\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Method on 
\texttt{c{-}{-}lass}]
 
-\index[fn]{d--efmethod\_name on c--lass@\texttt{d{-}{-}efmethod\_name on 
c{-}{-}lass}}%
+\index[fn]{d--efmethod\_name on c--lass@\texttt{d{-}{-}efmethod\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--efmethod
@@ -3766,7 +3766,7 @@ d--efmethod
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypemethod\_name 
a{-}{-}rguments...}\hfill[Method on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--eftypemethod\_name on c--lass@\texttt{d{-}{-}eftypemethod\_name 
on c{-}{-}lass}}%
+\index[fn]{d--eftypemethod\_name on c--lass@\texttt{d{-}{-}eftypemethod\_name\ 
on c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypemethod
@@ -3791,7 +3791,7 @@ d--eftypefn no arg2
 
 \noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 on \texttt{c{-}{-}lass2}]
 
-\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2\ on 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeop2
@@ -3799,7 +3799,7 @@ d--eftypeop2
 
 
\noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2}\hfill[c--ategory2
 on \texttt{c{-}{-}lass2}]
 
-\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2\ on 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeop no arg2
@@ -3807,7 +3807,7 @@ d--eftypeop no arg2
 
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2}\hfill[c--ategory2 of 
\texttt{c{-}{-}lass2}]
 
-\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2\ of 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypecv2
@@ -3815,7 +3815,7 @@ d--eftypecv2
 
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 of \texttt{c{-}{-}lass2}]
 
-\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2\ of 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypecv with arguments2
@@ -3840,8 +3840,8 @@ fff2
 \texttt{@pxref\{chapter\}} see 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [chapter], 
page~\pageref*{anchor:chapter}}
 \texttt{@ref\{s{-}{-}ect@comma\{\}ion\}} 
\hyperref[anchor:s_002d_002dect_002cion]{Section~\ref*{anchor:s_002d_002dect_002cion}
 [s--ect,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 \}}
+\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 \}}
 Section ``a comma, in title'' in \textsl{a , in manual name}
 
 \texttt{@ref\{chapter,cross ref name\}} 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [chapter], 
page~\pageref*{anchor:chapter}}
@@ -3886,9 +3886,9 @@ Section ``a comma, in title'' in \textsl{a , in manual 
name}
 \texttt{@inforef\{node{,}{,}file name\}} Section ``node'' in \texttt{file name}
 \texttt{@inforef\{chapter,\ cross ref name,\ file name,\ spurious arg\}} 
Section ``chapter'' in \texttt{file name,\ spurious arg}
 
-\texttt{@inforef\{s{-}{-}ect@comma\{\}ion,\ a @comma\{\} in cross
-ref,\ a comma@comma\{\} in file\}}
-Section ``s--ect,ion'' in \texttt{a comma, in file}
+\texttt{@inforef\{s{-}{-}ect@comma\{\}ion,\ a @comma\{\}\ in cross
+ref,\ a comma@comma\{\}\ in file\}}
+Section ``s--ect,ion'' in \texttt{a comma,\ in file}
 
 `\texttt{\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} 
[chapter], page~\pageref*{anchor:chapter}}}'.
 
@@ -3991,11 +3991,11 @@ $\frac{a < b \texttt{tex \hbox{ code }}}{b}$ ``
 \GNUTexinfonopagebreakheading{\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{@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{@math\{{-}{-}a@minus\{\}\ \{\textbackslash{}frac\{1\}\{2\}\}\}} $--a- 
{\frac{1}{2}}$
 
 
 
@@ -4039,9 +4039,9 @@ Invalid use of @':\leavevmode{}\\
 \texttt{@image\{f{-}{-}ile,l{-}{-}i\}} \includegraphics[width=l--i]{f--ile}
 \texttt{@image\{f{-}{-}ile{,}{,}l{-}{-}e\}} 
\includegraphics[height=l--e]{f--ile}
 \texttt{@image\{f{-}{-}ile,aze,az,alt,.e{-}{-}xt\}} 
\includegraphics[width=aze,height=az]{f--ile}
-\texttt{@image\{@file\{f{-}{-}ile\}@@@.,aze,az,alt,@file\{.file ext\} 
e{-}{-}xt@\}} \includegraphics[width=aze,height=az]{f--ile@.}
+\texttt{@image\{@file\{f{-}{-}ile\}@@@.,aze,az,alt,@file\{.file ext\}\ 
e{-}{-}xt@\}} \includegraphics[width=aze,height=az]{f--ile@.}
 
-\texttt{@image\{f{-}{-}ile,aze,az,@verb\{:jk \_" \%@:\} @b\{in b 
"\},e{-}{-}xt\}} \includegraphics[width=aze,height=az]{f--ile}
+\texttt{@image\{f{-}{-}ile,aze,az,@verb\{:jk \_" \%@:\}\ @b\{in b 
"\},e{-}{-}xt\}} \includegraphics[width=aze,height=az]{f--ile}
 \texttt{@image\{file@verb\{:jk \_" \%@:\}{,}{,},alt@verb\{:jk \_" \%@:\}\}} 
\includegraphics{filejk _" \%@}
 
 
@@ -4321,7 +4321,7 @@ but , ,\@
 \texttt{@i\{{-}{-}a\}} \textit{--a}
 \texttt{@kbd\{{-}{-}a\}} \GNUTexinfocommandstyletextkbd{{-}{-}a}
 \texttt{@key\{{-}{-}a\}} \texttt{{-}{-}a}
-\texttt{@math\{{-}{-}a \{\textbackslash{}frac\{1\}\{2\}\} @minus\{\}\}} $--a 
{\frac{1}{2}} -$
+\texttt{@math\{{-}{-}a \{\textbackslash{}frac\{1\}\{2\}\}\ @minus\{\}\}} $--a 
{\frac{1}{2}} -$
 \texttt{@option\{{-}{-}a\}} \texttt{{-}{-}a}
 \texttt{@r\{{-}{-}a\}} \textnormal{--a}
 \texttt{@samp\{{-}{-}a\}} `\texttt{{-}{-}a}'
@@ -4344,7 +4344,7 @@ but , ,\@
 \texttt{@url\{,{-}{-}b\}} --b
 \texttt{@var\{{-}{-}a\}} \GNUTexinfocommandstyletextvar{--a}
 \texttt{@verb\{:{-}{-}a:\}} \verb:--a:
-\texttt{@verb\{:a  < \& @ \% " {-}{-}    b:\}} \verb:a  < & @ % " --    b:
+\texttt{@verb\{:a  < \& @\ \% " {-}{-}    b:\}} \verb:a  < & @ % " --    b:
 \texttt{@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\}} \hbox{a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a 
a a}
 \texttt{@H\{a\}} \H{a}
 \texttt{@H\{{-}{-}a\}} \H{--a}
@@ -4379,9 +4379,9 @@ but , ,\@
 \texttt{need 1002}
 \needspace{1.002pt}%
 
-\texttt{@clicksequence\{click @click\{\} A\}} click $\rightarrow{}$ A
+\texttt{@clicksequence\{click @click\{\}\ A\}} click $\rightarrow{}$ A
 After clickstyle $\Rightarrow{}$
-\texttt{@clicksequence\{click @click\{\} A\}} click $\Rightarrow{}$ A
+\texttt{@clicksequence\{click @click\{\}\ A\}} click $\Rightarrow{}$ A
 
 
 $$
@@ -4687,7 +4687,7 @@ truc &bidule\\
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
 e{-}{-}xample  some
-   text
+\   text
 \end{GNUTexinfopreformatted}
 
 \begin{GNUTexinfopreformatted}
@@ -4717,12 +4717,12 @@ example five args
 
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
-The something \'{e} \TeX{} is here.
+The something \'{e}\ \TeX{}\ is here.
 \end{GNUTexinfopreformatted}
 
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
-A @ at the end of the @example line.
+A @\ at the end of the @example line.
 \end{GNUTexinfopreformatted}
 
 \begin{GNUTexinfopreformatted}
@@ -4845,9 +4845,9 @@ def--fn
 \noindent\texttt{\textbf{id ule} 
\EmbracOn{}\textnormal{\textsl{truc}}\EmbracOff{}}\hfill[cmde]
 
 \index[fn]{id ule@\texttt{\textbf{id ule}}}%
-\noindent\texttt{\textbf{id `\texttt{i}' ule} 
\EmbracOn{}\textnormal{\textsl{truc}}\EmbracOff{}}\hfill[cmde2]
+\noindent\texttt{\textbf{id `\texttt{i}'\ ule} 
\EmbracOn{}\textnormal{\textsl{truc}}\EmbracOff{}}\hfill[cmde2]
 
-\index[fn]{id i ule@\texttt{\textbf{id `\texttt{i}' ule}}}%
+\index[fn]{id i ule@\texttt{\textbf{id `\texttt{i}'\ ule}}}%
 \noindent\texttt{}\hfill[]
 
 \noindent\texttt{machin}\hfill[]
@@ -4942,7 +4942,7 @@ d--eftypefn no arg
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name 
a{-}{-}rguments...}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeop
@@ -4950,7 +4950,7 @@ d--eftypeop
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name}\hfill[c--ategory on 
\texttt{c{-}{-}lass}]
 
-\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeop no arg
@@ -4982,7 +4982,7 @@ d--efcv with arguments
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name}\hfill[c--ategory of 
\texttt{c{-}{-}lass}]
 
-\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypecv
@@ -4990,7 +4990,7 @@ d--eftypecv
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name 
a{-}{-}rguments...}\hfill[c--ategory of \texttt{c{-}{-}lass}]
 
-\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypecv with arguments
@@ -4998,7 +4998,7 @@ d--eftypecv with arguments
 
 \noindent\texttt{d{-}{-}efop\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory 
on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--efop
@@ -5006,7 +5006,7 @@ d--efop
 
 \noindent\texttt{d{-}{-}efop\_name}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--efop no arg
@@ -5086,7 +5086,7 @@ d--eftypevar
 
 \noindent\texttt{d{-}{-}efivar\_name}\hfill[Instance Variable of 
\texttt{c{-}{-}lass}]
 
-\index[cp]{d--efivar\_name of c--lass@\texttt{d{-}{-}efivar\_name of 
c{-}{-}lass}}%
+\index[cp]{d--efivar\_name of c--lass@\texttt{d{-}{-}efivar\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--efivar
@@ -5094,7 +5094,7 @@ d--efivar
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeivar\_name}\hfill[Instance Variable 
of \texttt{c{-}{-}lass}]
 
-\index[cp]{d--eftypeivar\_name of c--lass@\texttt{d{-}{-}eftypeivar\_name of 
c{-}{-}lass}}%
+\index[cp]{d--eftypeivar\_name of c--lass@\texttt{d{-}{-}eftypeivar\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeivar
@@ -5102,7 +5102,7 @@ d--eftypeivar
 
 \noindent\texttt{d{-}{-}efmethod\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Method on 
\texttt{c{-}{-}lass}]
 
-\index[fn]{d--efmethod\_name on c--lass@\texttt{d{-}{-}efmethod\_name on 
c{-}{-}lass}}%
+\index[fn]{d--efmethod\_name on c--lass@\texttt{d{-}{-}efmethod\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--efmethod
@@ -5110,7 +5110,7 @@ d--efmethod
 
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypemethod\_name 
a{-}{-}rguments...}\hfill[Method on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--eftypemethod\_name on c--lass@\texttt{d{-}{-}eftypemethod\_name 
on c{-}{-}lass}}%
+\index[fn]{d--eftypemethod\_name on c--lass@\texttt{d{-}{-}eftypemethod\_name\ 
on c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypemethod
@@ -5135,7 +5135,7 @@ d--eftypefn no arg2
 
 \noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 on \texttt{c{-}{-}lass2}]
 
-\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2\ on 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeop2
@@ -5143,7 +5143,7 @@ d--eftypeop2
 
 
\noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2}\hfill[c--ategory2
 on \texttt{c{-}{-}lass2}]
 
-\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2\ on 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypeop no arg2
@@ -5151,7 +5151,7 @@ d--eftypeop no arg2
 
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2}\hfill[c--ategory2 of 
\texttt{c{-}{-}lass2}]
 
-\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2\ of 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypecv2
@@ -5159,7 +5159,7 @@ d--eftypecv2
 
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 of \texttt{c{-}{-}lass2}]
 
-\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2\ of 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 d--eftypecv with arguments2
@@ -5184,8 +5184,8 @@ fff2
 \texttt{@pxref\{chapter\}} see 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [chapter], 
page~\pageref*{anchor:chapter}}
 \texttt{@ref\{s{-}{-}ect@comma\{\}ion\}} 
\hyperref[anchor:s_002d_002dect_002cion]{Section~\ref*{anchor:s_002d_002dect_002cion}
 [s--ect,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 \}}
+\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 \}}
 Section ``a comma, in title'' in \textsl{a , in manual name}
 
 \texttt{@ref\{chapter,cross ref name\}} 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [chapter], 
page~\pageref*{anchor:chapter}}
@@ -5230,9 +5230,9 @@ Section ``a comma, in title'' in \textsl{a , in manual 
name}
 \texttt{@inforef\{node{,}{,}file name\}} Section ``node'' in \texttt{file name}
 \texttt{@inforef\{chapter,\ cross ref name,\ file name,\ spurious arg\}} 
Section ``chapter'' in \texttt{file name,\ spurious arg}
 
-\texttt{@inforef\{s{-}{-}ect@comma\{\}ion,\ a @comma\{\} in cross
-ref,\ a comma@comma\{\} in file\}}
-Section ``s--ect,ion'' in \texttt{a comma, in file}
+\texttt{@inforef\{s{-}{-}ect@comma\{\}ion,\ a @comma\{\}\ in cross
+ref,\ a comma@comma\{\}\ in file\}}
+Section ``s--ect,ion'' in \texttt{a comma,\ in file}
 
 `\texttt{\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} 
[chapter], page~\pageref*{anchor:chapter}}}'.
 
@@ -5335,11 +5335,11 @@ $\frac{a < b \texttt{tex \hbox{ code }}}{b}$ ``
 \GNUTexinfonopagebreakheading{\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{@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{@math\{{-}{-}a@minus\{\}\ \{\textbackslash{}frac\{1\}\{2\}\}\}} $--a- 
{\frac{1}{2}}$
 
 
 
@@ -5383,9 +5383,9 @@ Invalid use of @':\leavevmode{}\\
 \texttt{@image\{f{-}{-}ile,l{-}{-}i\}} \includegraphics[width=l--i]{f--ile}
 \texttt{@image\{f{-}{-}ile{,}{,}l{-}{-}e\}} 
\includegraphics[height=l--e]{f--ile}
 \texttt{@image\{f{-}{-}ile,aze,az,alt,.e{-}{-}xt\}} 
\includegraphics[width=aze,height=az]{f--ile}
-\texttt{@image\{@file\{f{-}{-}ile\}@@@.,aze,az,alt,@file\{.file ext\} 
e{-}{-}xt@\}} \includegraphics[width=aze,height=az]{f--ile@.}
+\texttt{@image\{@file\{f{-}{-}ile\}@@@.,aze,az,alt,@file\{.file ext\}\ 
e{-}{-}xt@\}} \includegraphics[width=aze,height=az]{f--ile@.}
 
-\texttt{@image\{f{-}{-}ile,aze,az,@verb\{:jk \_" \%@:\} @b\{in b 
"\},e{-}{-}xt\}} \includegraphics[width=aze,height=az]{f--ile}
+\texttt{@image\{f{-}{-}ile,aze,az,@verb\{:jk \_" \%@:\}\ @b\{in b 
"\},e{-}{-}xt\}} \includegraphics[width=aze,height=az]{f--ile}
 \texttt{@image\{file@verb\{:jk \_" \%@:\}{,}{,},alt@verb\{:jk \_" \%@:\}\}} 
\includegraphics{filejk _" \%@}
 
 
@@ -5535,10 +5535,10 @@ 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:\ 
\GNUTexinfocommandstyletextkbd{{`}{`}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:\ 
\GNUTexinfocommandstyletextkbd{{`}{`}simple-double{-}{-}three{-}{-}{-}four{-}{-}{-}-{'}{'}}\
 \leavevmode{}\\
 
 
`\hbox{}`simple-double-\hbox{}-three{-}{-}{-}four{-}{-}{-}-'\hbox{}'\leavevmode{}\\
 
@@ -5547,42 +5547,42 @@ kbd:\ 
\GNUTexinfocommandstyletextkbd{{`}{`}simple-double{-}{-}three{-}{-}{-}four
 \index[fn]{``@\texttt{{`}{`}}}%
 \index[fn]{--foption@\texttt{{-}{-}foption}}%
 
-@"u \"{u} 
-@"\{U\} \"{U} 
+@"u \"{u}\ 
+@"\{U\}\ \"{U}\ 
 @\~{}n \~{n}
 @\^{}a \^{a}
 @'e \'{e}
 @=o \={o}
 @`i \`{i}
-@'\{e\} \'{e}
-@'\{@dotless\{i\}\} \'{\i{}} 
-@dotless\{i\} \i{}
-@dotless\{j\} \j{}
-@`\{@=E\} \`{\={E}} 
-@l\{\} \l{}
-@,\{@'C\} \c{\'{C}}
+@'\{e\}\ \'{e}
+@'\{@dotless\{i\}\}\ \'{\i{}}\ 
+@dotless\{i\}\ \i{}
+@dotless\{j\}\ \j{}
+@`\{@=E\}\ \`{\={E}}\ 
+@l\{\}\ \l{}
+@,\{@'C\}\ \c{\'{C}}
 @,c \c{c}
-@,c@"u \c{c}\"{u} \leavevmode{}\\
+@,c@"u \c{c}\"{u}\ \leavevmode{}\\
 
-@U\{0075\} u
+@U\{0075\}\ u
 
 @* \leavevmode{}\\
-@ followed by a space
+@\ followed by a space
 \ {}
-@ followed by a tab
+@\ followed by a tab
 \ {}
-@ followed by a new line
-\ {}\texttt{@-} \-{}
-\texttt{@:} \@
-\texttt{@!} \@!
-\texttt{@?} \@?
-\texttt{@.} \@.
-\texttt{@@} @
-\texttt{@\}} \}
-\texttt{@\{} \{
-\texttt{@/} 
-
-foo vs.\@ bar.\ 
+@\ followed by a new line
+\ {}\texttt{@-}\ \-{}
+\texttt{@:}\ \@
+\texttt{@!}\ \@!
+\texttt{@?}\ \@?
+\texttt{@.}\ \@.
+\texttt{@@}\ @
+\texttt{@\}}\ \}
+\texttt{@\{}\ \{
+\texttt{@/}\ 
+
+foo vs.\@\ bar.\ 
 colon :\@And something else.
 semi colon ;\@.
 And ?\ ?\@.
@@ -5647,77 +5647,77 @@ but ,\ ,\@
 @geq $\geq{}$
 @tie a\hbox{}b
 
-\texttt{@acronym\{{-}{-}a,an accronym\}} {-}{-}a (an accronym)
-\texttt{@acronym\{{-}{-}a\}} {-}{-}a
-\texttt{@abbr\{@'E{-}{-}.\ @comma\{\}A.,\ @'Etude Autonome \}} \'{E}{-}{-}.\@\ 
,A.\@ (\'{E}tude Autonome)
-\texttt{@abbr\{@'E{-}{-}.\ @comma\{\}A.\}} \'{E}{-}{-}.\@\ ,A.\@
-\texttt{@asis\{{-}{-}a\}} {-}{-}a
-\texttt{@b\{{-}{-}a\}} \textbf{{-}{-}a}
-\texttt{@cite\{{-}{-}a\}} \GNUTexinfocommandstyletextcite{--a}
-\texttt{@code\{{-}{-}a\}} \texttt{{-}{-}a}
-\texttt{@command\{{-}{-}a\}} \texttt{{-}{-}a}
-\texttt{@dfn\{{-}{-}a\}} \textsl{{-}{-}a}
-\texttt{@dmn\{{-}{-}a\}} \thinspace {-}{-}a
-\texttt{@email\{{-}{-}a,{-}{-}b\}} \href{mailto:--a}{{-}{-}b}
-\texttt{@email\{,{-}{-}b\}} {-}{-}b
-\texttt{@email\{{-}{-}a\}} \href{mailto:--a}{\nolinkurl{--a}}
-\texttt{@emph\{{-}{-}a\}} \emph{{-}{-}a}
-\texttt{@env\{{-}{-}a\}} \texttt{{-}{-}a}
-\texttt{@file\{{-}{-}a\}} \texttt{{-}{-}a}
-\texttt{@i\{{-}{-}a\}} \textit{{-}{-}a}
-\texttt{@kbd\{{-}{-}a\}} \GNUTexinfocommandstyletextkbd{{-}{-}a}
-\texttt{@key\{{-}{-}a\}} \texttt{{-}{-}a}
-\texttt{@math\{{-}{-}a \{\textbackslash{}frac\{1\}\{2\}\} @minus\{\}\}} $--a 
{\frac{1}{2}} -$
-\texttt{@option\{{-}{-}a\}} \texttt{{-}{-}a}
-\texttt{@r\{{-}{-}a\}} \textnormal{--a}
-\texttt{@samp\{{-}{-}a\}} `\texttt{{-}{-}a}'
-\texttt{@sc\{{-}{-}a\}} \textsc{{-}{-}a}
-\texttt{@strong\{{-}{-}a\}} \textbf{{-}{-}a}
-\texttt{@t\{{-}{-}a\}} \texttt{{-}{-}a}
-\texttt{@sansserif\{{-}{-}a\}} \textsf{{-}{-}a}
-\texttt{@slanted\{{-}{-}a\}} \textsl{{-}{-}a}
-\texttt{@titlefont\{{-}{-}a\}} \end{GNUTexinfopreformatted}
+\texttt{@acronym\{{-}{-}a,an accronym\}}\ {-}{-}a\ (an accronym)
+\texttt{@acronym\{{-}{-}a\}}\ {-}{-}a
+\texttt{@abbr\{@'E{-}{-}.\ @comma\{\}A.,\ @'Etude Autonome \}}\ 
\'{E}{-}{-}.\@\ ,A.\@\ (\'{E}tude Autonome)
+\texttt{@abbr\{@'E{-}{-}.\ @comma\{\}A.\}}\ \'{E}{-}{-}.\@\ ,A.\@
+\texttt{@asis\{{-}{-}a\}}\ {-}{-}a
+\texttt{@b\{{-}{-}a\}}\ \textbf{{-}{-}a}
+\texttt{@cite\{{-}{-}a\}}\ \GNUTexinfocommandstyletextcite{--a}
+\texttt{@code\{{-}{-}a\}}\ \texttt{{-}{-}a}
+\texttt{@command\{{-}{-}a\}}\ \texttt{{-}{-}a}
+\texttt{@dfn\{{-}{-}a\}}\ \textsl{{-}{-}a}
+\texttt{@dmn\{{-}{-}a\}}\ \thinspace {-}{-}a
+\texttt{@email\{{-}{-}a,{-}{-}b\}}\ \href{mailto:--a}{{-}{-}b}
+\texttt{@email\{,{-}{-}b\}}\ {-}{-}b
+\texttt{@email\{{-}{-}a\}}\ \href{mailto:--a}{\nolinkurl{--a}}
+\texttt{@emph\{{-}{-}a\}}\ \emph{{-}{-}a}
+\texttt{@env\{{-}{-}a\}}\ \texttt{{-}{-}a}
+\texttt{@file\{{-}{-}a\}}\ \texttt{{-}{-}a}
+\texttt{@i\{{-}{-}a\}}\ \textit{{-}{-}a}
+\texttt{@kbd\{{-}{-}a\}}\ \GNUTexinfocommandstyletextkbd{{-}{-}a}
+\texttt{@key\{{-}{-}a\}}\ \texttt{{-}{-}a}
+\texttt{@math\{{-}{-}a \{\textbackslash{}frac\{1\}\{2\}\}\ @minus\{\}\}}\ $--a 
{\frac{1}{2}} -$
+\texttt{@option\{{-}{-}a\}}\ \texttt{{-}{-}a}
+\texttt{@r\{{-}{-}a\}}\ \textnormal{--a}
+\texttt{@samp\{{-}{-}a\}}\ `\texttt{{-}{-}a}'
+\texttt{@sc\{{-}{-}a\}}\ \textsc{{-}{-}a}
+\texttt{@strong\{{-}{-}a\}}\ \textbf{{-}{-}a}
+\texttt{@t\{{-}{-}a\}}\ \texttt{{-}{-}a}
+\texttt{@sansserif\{{-}{-}a\}}\ \textsf{{-}{-}a}
+\texttt{@slanted\{{-}{-}a\}}\ \textsl{{-}{-}a}
+\texttt{@titlefont\{{-}{-}a\}}\ \end{GNUTexinfopreformatted}
 {\huge \bfseries --a}\begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
 
-\texttt{@indicateurl\{{-}{-}a\}} `\texttt{{-}{-}a}'
-\texttt{@uref\{{-}{-}a,{-}{-}b\}} \href{--a}{{-}{-}b (\nolinkurl{--a})}
-\texttt{@uref\{{-}{-}a\}} \url{--a}
-\texttt{@uref\{,{-}{-}b\}} {-}{-}b
-\texttt{@uref\{{-}{-}a,{-}{-}b,{-}{-}c\}} {-}{-}c
-\texttt{@uref\{,{-}{-}b,{-}{-}c\}} {-}{-}c
-\texttt{@uref\{{-}{-}a{,}{,}{-}{-}c\}} {-}{-}c
-\texttt{@uref\{{,}{,}{-}{-}c\}} {-}{-}c
-\texttt{@url\{{-}{-}a,{-}{-}b\}} \href{--a}{{-}{-}b (\nolinkurl{--a})}
-\texttt{@url\{{-}{-}a,\}} \url{--a}
-\texttt{@url\{,{-}{-}b\}} {-}{-}b
-\texttt{@var\{{-}{-}a\}} \GNUTexinfocommandstyletextvar{--a}
-\texttt{@verb\{:{-}{-}a:\}} \verb:--a:
-\texttt{@verb\{:a  < \& @ \% " {-}{-}    b:\}} \verb:a  < & @ % " --    b:
-\texttt{@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\}} \hbox{a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a 
a a}
-\texttt{@H\{a\}} \H{a}
-\texttt{@H\{{-}{-}a\}} \H{{-}{-}a}
-\texttt{@dotaccent\{a\}} \.{a}
-\texttt{@dotaccent\{{-}{-}a\}} \.{{-}{-}a}
-\texttt{@ringaccent\{a\}} \r{a}
-\texttt{@ringaccent\{{-}{-}a\}} \r{{-}{-}a}
-\texttt{@tieaccent\{a\}} \t{a}
-\texttt{@tieaccent\{{-}{-}a\}} \t{{-}{-}a}
-\texttt{@u\{a\}} \u{a}
-\texttt{@u\{{-}{-}a\}} \u{{-}{-}a}
-\texttt{@ubaraccent\{a\}} \b{a}
-\texttt{@ubaraccent\{{-}{-}a\}} \b{{-}{-}a}
-\texttt{@udotaccent\{a\}} \d{a}
-\texttt{@udotaccent\{{-}{-}a\}} \d{{-}{-}a}
-\texttt{@v\{a\}} \v{a}
-\texttt{@v\{{-}{-}a\}} \v{{-}{-}a}
-\texttt{@,\{c\}} \c{c}
-\texttt{@,\{{-}{-}c\}} \c{{-}{-}c}
-\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{@indicateurl\{{-}{-}a\}}\ `\texttt{{-}{-}a}'
+\texttt{@uref\{{-}{-}a,{-}{-}b\}}\ \href{--a}{{-}{-}b (\nolinkurl{--a})}
+\texttt{@uref\{{-}{-}a\}}\ \url{--a}
+\texttt{@uref\{,{-}{-}b\}}\ {-}{-}b
+\texttt{@uref\{{-}{-}a,{-}{-}b,{-}{-}c\}}\ {-}{-}c
+\texttt{@uref\{,{-}{-}b,{-}{-}c\}}\ {-}{-}c
+\texttt{@uref\{{-}{-}a{,}{,}{-}{-}c\}}\ {-}{-}c
+\texttt{@uref\{{,}{,}{-}{-}c\}}\ {-}{-}c
+\texttt{@url\{{-}{-}a,{-}{-}b\}}\ \href{--a}{{-}{-}b (\nolinkurl{--a})}
+\texttt{@url\{{-}{-}a,\}}\ \url{--a}
+\texttt{@url\{,{-}{-}b\}}\ {-}{-}b
+\texttt{@var\{{-}{-}a\}}\ \GNUTexinfocommandstyletextvar{--a}
+\texttt{@verb\{:{-}{-}a:\}}\ \verb:--a:
+\texttt{@verb\{:a  < \& @\ \% " {-}{-}    b:\}}\ \verb:a  < & @ % " --    b:
+\texttt{@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\}}\ \hbox{a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a 
a a}
+\texttt{@H\{a\}}\ \H{a}
+\texttt{@H\{{-}{-}a\}}\ \H{{-}{-}a}
+\texttt{@dotaccent\{a\}}\ \.{a}
+\texttt{@dotaccent\{{-}{-}a\}}\ \.{{-}{-}a}
+\texttt{@ringaccent\{a\}}\ \r{a}
+\texttt{@ringaccent\{{-}{-}a\}}\ \r{{-}{-}a}
+\texttt{@tieaccent\{a\}}\ \t{a}
+\texttt{@tieaccent\{{-}{-}a\}}\ \t{{-}{-}a}
+\texttt{@u\{a\}}\ \u{a}
+\texttt{@u\{{-}{-}a\}}\ \u{{-}{-}a}
+\texttt{@ubaraccent\{a\}}\ \b{a}
+\texttt{@ubaraccent\{{-}{-}a\}}\ \b{{-}{-}a}
+\texttt{@udotaccent\{a\}}\ \d{a}
+\texttt{@udotaccent\{{-}{-}a\}}\ \d{{-}{-}a}
+\texttt{@v\{a\}}\ \v{a}
+\texttt{@v\{{-}{-}a\}}\ \v{{-}{-}a}
+\texttt{@,\{c\}}\ \c{c}
+\texttt{@,\{{-}{-}c\}}\ \c{{-}{-}c}
+\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{@sp 2}\leavevmode{}\\
 \vskip 2\baselineskip %
@@ -5734,9 +5734,9 @@ but ,\ ,\@
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
 
-\texttt{@clicksequence\{click @click\{\} A\}} click $\rightarrow{}$ A
+\texttt{@clicksequence\{click @click\{\}\ A\}}\ click $\rightarrow{}$\ A
 After clickstyle $\Rightarrow{}$
-\texttt{@clicksequence\{click @click\{\} A\}} click $\Rightarrow{}$ A
+\texttt{@clicksequence\{click @click\{\}\ A\}}\ click $\Rightarrow{}$\ A
 
 
 \end{GNUTexinfopreformatted}
@@ -5966,7 +5966,7 @@ a Warning.
 \begin{quote}
 \textbf{something \'{e} \TeX{}:} \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
-The something \'{e} \TeX{} is here.
+The something \'{e}\ \TeX{}\ is here.
 \end{GNUTexinfopreformatted}
 \end{quote}
 \begin{GNUTexinfopreformatted}
@@ -5976,7 +5976,7 @@ The something \'{e} \TeX{} is here.
 \begin{quote}
 \textbf{@ at the end of line \ {}:} \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
-A @ at the end of the @quotation line.
+A @\ at the end of the @quotation line.
 \end{GNUTexinfopreformatted}
 \end{quote}
 \begin{GNUTexinfopreformatted}
@@ -6330,7 +6330,7 @@ bidule
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
 e{-}{-}xample  some
-   text
+\   text
 \end{GNUTexinfopreformatted}
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
@@ -6378,7 +6378,7 @@ example five args
 \end{GNUTexinfopreformatted}
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
-The something \'{e} \TeX{} is here.
+The something \'{e}\ \TeX{}\ is here.
 \end{GNUTexinfopreformatted}
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
@@ -6386,7 +6386,7 @@ The something \'{e} \TeX{} is here.
 \end{GNUTexinfopreformatted}
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
-A @ at the end of the @example line.
+A @\ at the end of the @example line.
 \end{GNUTexinfopreformatted}
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
@@ -6456,7 +6456,7 @@ s{-}{-}mallexample
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
 
-\texttt{@noindent} after smallexample.
+\texttt{@noindent}\ after smallexample.
 \end{GNUTexinfopreformatted}
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily\footnotesize%
@@ -6566,9 +6566,9 @@ def{-}{-}fn
 \noindent\texttt{\textbf{id ule} 
\EmbracOn{}\textnormal{\textsl{truc}}\EmbracOff{}}\hfill[cmde]
 
 \index[fn]{id ule@\texttt{\textbf{id ule}}}%
-\noindent\texttt{\textbf{id `\texttt{i}' ule} 
\EmbracOn{}\textnormal{\textsl{truc}}\EmbracOff{}}\hfill[cmde2]
+\noindent\texttt{\textbf{id `\texttt{i}'\ ule} 
\EmbracOn{}\textnormal{\textsl{truc}}\EmbracOff{}}\hfill[cmde2]
 
-\index[fn]{id i ule@\texttt{\textbf{id `\texttt{i}' ule}}}%
+\index[fn]{id i ule@\texttt{\textbf{id `\texttt{i}'\ ule}}}%
 \noindent\texttt{}\hfill[]
 
 \noindent\texttt{machin}\hfill[]
@@ -6714,7 +6714,7 @@ d{-}{-}eftypefn no arg
 \end{GNUTexinfopreformatted}
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name 
a{-}{-}rguments...}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 \begin{GNUTexinfopreformatted}
@@ -6728,7 +6728,7 @@ d{-}{-}eftypeop
 \end{GNUTexinfopreformatted}
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeop\_name}\hfill[c--ategory on 
\texttt{c{-}{-}lass}]
 
-\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on 
c{-}{-}lass}}%
+\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 \begin{GNUTexinfopreformatted}
@@ -6784,7 +6784,7 @@ d{-}{-}efcv with arguments
 \end{GNUTexinfopreformatted}
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name}\hfill[c--ategory of 
\texttt{c{-}{-}lass}]
 
-\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 \begin{GNUTexinfopreformatted}
@@ -6798,7 +6798,7 @@ d{-}{-}eftypecv
 \end{GNUTexinfopreformatted}
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypecv\_name 
a{-}{-}rguments...}\hfill[c--ategory of \texttt{c{-}{-}lass}]
 
-\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of 
c{-}{-}lass}}%
+\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 \begin{GNUTexinfopreformatted}
@@ -6812,7 +6812,7 @@ d{-}{-}eftypecv with arguments
 \end{GNUTexinfopreformatted}
 \noindent\texttt{d{-}{-}efop\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[c--ategory 
on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 \begin{GNUTexinfopreformatted}
@@ -6826,7 +6826,7 @@ d{-}{-}efop
 \end{GNUTexinfopreformatted}
 \noindent\texttt{d{-}{-}efop\_name}\hfill[c--ategory on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 \begin{GNUTexinfopreformatted}
@@ -6966,7 +6966,7 @@ d{-}{-}eftypevar
 \end{GNUTexinfopreformatted}
 \noindent\texttt{d{-}{-}efivar\_name}\hfill[Instance Variable of 
\texttt{c{-}{-}lass}]
 
-\index[cp]{d--efivar\_name of c--lass@\texttt{d{-}{-}efivar\_name of 
c{-}{-}lass}}%
+\index[cp]{d--efivar\_name of c--lass@\texttt{d{-}{-}efivar\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 \begin{GNUTexinfopreformatted}
@@ -6980,7 +6980,7 @@ d{-}{-}efivar
 \end{GNUTexinfopreformatted}
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypeivar\_name}\hfill[Instance Variable 
of \texttt{c{-}{-}lass}]
 
-\index[cp]{d--eftypeivar\_name of c--lass@\texttt{d{-}{-}eftypeivar\_name of 
c{-}{-}lass}}%
+\index[cp]{d--eftypeivar\_name of c--lass@\texttt{d{-}{-}eftypeivar\_name\ of 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 \begin{GNUTexinfopreformatted}
@@ -6994,7 +6994,7 @@ d{-}{-}eftypeivar
 \end{GNUTexinfopreformatted}
 \noindent\texttt{d{-}{-}efmethod\_name 
\EmbracOn{}\textnormal{\textsl{a--rguments...}}\EmbracOff{}}\hfill[Method on 
\texttt{c{-}{-}lass}]
 
-\index[fn]{d--efmethod\_name on c--lass@\texttt{d{-}{-}efmethod\_name on 
c{-}{-}lass}}%
+\index[fn]{d--efmethod\_name on c--lass@\texttt{d{-}{-}efmethod\_name\ on 
c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 \begin{GNUTexinfopreformatted}
@@ -7008,7 +7008,7 @@ d{-}{-}efmethod
 \end{GNUTexinfopreformatted}
 \noindent\texttt{t{-}{-}ype d{-}{-}eftypemethod\_name 
a{-}{-}rguments...}\hfill[Method on \texttt{c{-}{-}lass}]
 
-\index[fn]{d--eftypemethod\_name on c--lass@\texttt{d{-}{-}eftypemethod\_name 
on c{-}{-}lass}}%
+\index[fn]{d--eftypemethod\_name on c--lass@\texttt{d{-}{-}eftypemethod\_name\ 
on c{-}{-}lass}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 \begin{GNUTexinfopreformatted}
@@ -7051,7 +7051,7 @@ d{-}{-}eftypefn no arg2
 \end{GNUTexinfopreformatted}
 \noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 on \texttt{c{-}{-}lass2}]
 
-\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2\ on 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 \begin{GNUTexinfopreformatted}
@@ -7065,7 +7065,7 @@ d{-}{-}eftypeop2
 \end{GNUTexinfopreformatted}
 
\noindent\texttt{t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2}\hfill[c--ategory2
 on \texttt{c{-}{-}lass2}]
 
-\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on 
c{-}{-}lass2}}%
+\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2\ on 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 \begin{GNUTexinfopreformatted}
@@ -7079,7 +7079,7 @@ d{-}{-}eftypeop no arg2
 \end{GNUTexinfopreformatted}
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2}\hfill[c--ategory2 of 
\texttt{c{-}{-}lass2}]
 
-\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2\ of 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 \begin{GNUTexinfopreformatted}
@@ -7093,7 +7093,7 @@ d{-}{-}eftypecv2
 \end{GNUTexinfopreformatted}
 \noindent\texttt{t{-}{-}ype2 d{-}{-}eftypecv\_name2 
a{-}{-}rguments2...}\hfill[c--ategory2 of \texttt{c{-}{-}lass2}]
 
-\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of 
c{-}{-}lass2}}%
+\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2\ of 
c{-}{-}lass2}}%
 \begin{quote}
 \unskip{\parskip=0pt\noindent}%
 \begin{GNUTexinfopreformatted}
@@ -7119,65 +7119,65 @@ fff2
 \leftskip=2em\relax\ttfamily%
 
 
-\texttt{@xref\{c{-}{-}{-}hapter@@,\ cross r{-}{-}{-}ef name@@,\ 
t{-}{-}{-}itle@@,\ file n{-}{-}{-}ame@@,\ ma{-}{-}{-}nual@@\}} See Section 
``t{-}{-}{-}itle@'' in \textsl{ma{-}{-}{-}nual@}.
-\texttt{@ref\{chapter,\ cross ref name,\ title,\ file name,\ manual\}} Section 
``title'' in \textsl{manual}
-\texttt{@pxref\{chapter,\ cross ref name,\ title,\ file name,\ manual\}} see 
Section ``title'' in \textsl{manual}
-\texttt{@inforef\{chapter,\ cross ref name,\ file name\}} Section ``chapter'' 
in \texttt{file name}
-
-\texttt{@ref\{chapter\}} 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [chapter], 
page~\pageref*{anchor:chapter}}
-\texttt{@xref\{chapter\}} See 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [chapter], 
page~\pageref*{anchor:chapter}}.
-\texttt{@pxref\{chapter\}} see 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [chapter], 
page~\pageref*{anchor:chapter}}
-\texttt{@ref\{s{-}{-}ect@comma\{\}ion\}} 
\hyperref[anchor:s_002d_002dect_002cion]{Section~\ref*{anchor:s_002d_002dect_002cion}
 [s{-}{-}ect,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 \}}
-Section ``a comma, in title'' in \textsl{a , in manual name}
-
-\texttt{@ref\{chapter,cross ref name\}} 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [chapter], 
page~\pageref*{anchor:chapter}}
-\texttt{@ref\{chapter{,}{,}title\}} 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [title], 
page~\pageref*{anchor:chapter}}
-\texttt{@ref\{chapter{,}{,},file name\}} Section ``chapter'' in \texttt{file 
name}
-\texttt{@ref\{chapter{,}{,}{,}{,}manual\}} Section ``chapter'' in 
\textsl{manual}
-\texttt{@ref\{chapter,cross ref name,title,\}} 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [title], 
page~\pageref*{anchor:chapter}}
-\texttt{@ref\{chapter,cross ref name{,}{,}file name\}} Section ``chapter'' in 
\texttt{file name}
-\texttt{@ref\{chapter,cross ref name{,}{,},manual\}} Section ``chapter'' in 
\textsl{manual}
-\texttt{@ref\{chapter,cross ref name,title,file name\}} Section ``title'' in 
\texttt{file name}
-\texttt{@ref\{chapter,cross ref name,title{,}{,}manual\}} Section ``title'' in 
\textsl{manual}
-\texttt{@ref\{chapter,cross ref name,title,\ file name,\ manual\}} Section 
``title'' in \textsl{manual}
-\texttt{@ref\{chapter{,}{,}title,file name\}} Section ``title'' in 
\texttt{file name}
-\texttt{@ref\{chapter{,}{,}title{,}{,}manual\}} Section ``title'' in 
\textsl{manual}
-\texttt{@ref\{chapter{,}{,}title,\ file name,\ manual\}} Section ``title'' in 
\textsl{manual}
-\texttt{@ref\{chapter{,}{,},file name,manual\}} Section ``chapter'' in 
\textsl{manual}
-
-
-\texttt{@ref\{(pman)anode,cross ref name\}} (pman)anode
-\texttt{@ref\{(pman)anode{,}{,}title\}} title
-\texttt{@ref\{(pman)anode{,}{,},file name\}} Section ``(pman)anode'' in 
\texttt{file name}
-\texttt{@ref\{(pman)anode{,}{,}{,}{,}manual\}} Section ``(pman)anode'' in 
\textsl{manual}
-\texttt{@ref\{(pman)anode,cross ref name,title,\}} title
-\texttt{@ref\{(pman)anode,cross ref name{,}{,}file name\}} Section 
``(pman)anode'' in \texttt{file name}
-\texttt{@ref\{(pman)anode,cross ref name{,}{,},manual\}} Section 
``(pman)anode'' in \textsl{manual}
-\texttt{@ref\{(pman)anode,cross ref name,title,file name\}} Section ``title'' 
in \texttt{file name}
-\texttt{@ref\{(pman)anode,cross ref name,title{,}{,}manual\}} Section 
``title'' in \textsl{manual}
-\texttt{@ref\{(pman)anode,cross ref name,title,\ file name,\ manual\}} Section 
``title'' in \textsl{manual}
-\texttt{@ref\{(pman)anode{,}{,}title,file name\}} Section ``title'' in 
\texttt{file name}
-\texttt{@ref\{(pman)anode{,}{,}title{,}{,}manual\}} Section ``title'' in 
\textsl{manual}
-\texttt{@ref\{(pman)anode{,}{,}title,\ file name,\ manual\}} Section ``title'' 
in \textsl{manual}
-\texttt{@ref\{(pman)anode{,}{,},file name,manual\}} Section ``(pman)anode'' in 
\textsl{manual}
-
-
-\texttt{@inforef\{chapter,\ cross ref name,\ file name\}} Section ``chapter'' 
in \texttt{file name}
-\texttt{@inforef\{chapter\}} chapter
-\texttt{@inforef\{chapter,\ cross ref name\}} chapter
-\texttt{@inforef\{chapter{,}{,}file name\}} Section ``chapter'' in 
\texttt{file name}
-\texttt{@inforef\{node,\ cross ref name,\ file name\}} Section ``node'' in 
\texttt{file name}
-\texttt{@inforef\{node\}} node
-\texttt{@inforef\{node,\ cross ref name\}} node
-\texttt{@inforef\{node{,}{,}file name\}} Section ``node'' in \texttt{file name}
-\texttt{@inforef\{chapter,\ cross ref name,\ file name,\ spurious arg\}} 
Section ``chapter'' in \texttt{file name,\ spurious arg}
-
-\texttt{@inforef\{s{-}{-}ect@comma\{\}ion,\ a @comma\{\} in cross
-ref,\ a comma@comma\{\} in file\}}
-Section ``s{-}{-}ect,ion'' in \texttt{a comma, in file}
+\texttt{@xref\{c{-}{-}{-}hapter@@,\ cross r{-}{-}{-}ef name@@,\ 
t{-}{-}{-}itle@@,\ file n{-}{-}{-}ame@@,\ ma{-}{-}{-}nual@@\}}\ See Section 
``t{-}{-}{-}itle@'' in \textsl{ma{-}{-}{-}nual@}.
+\texttt{@ref\{chapter,\ cross ref name,\ title,\ file name,\ manual\}}\ 
Section ``title'' in \textsl{manual}
+\texttt{@pxref\{chapter,\ cross ref name,\ title,\ file name,\ manual\}}\ see 
Section ``title'' in \textsl{manual}
+\texttt{@inforef\{chapter,\ cross ref name,\ file name\}}\ Section ``chapter'' 
in \texttt{file name}
+
+\texttt{@ref\{chapter\}}\ 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [chapter], 
page~\pageref*{anchor:chapter}}
+\texttt{@xref\{chapter\}}\ See 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [chapter], 
page~\pageref*{anchor:chapter}}.
+\texttt{@pxref\{chapter\}}\ see 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [chapter], 
page~\pageref*{anchor:chapter}}
+\texttt{@ref\{s{-}{-}ect@comma\{\}ion\}}\ 
\hyperref[anchor:s_002d_002dect_002cion]{Section~\ref*{anchor:s_002d_002dect_002cion}
 [s{-}{-}ect,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 \}}
+Section ``a comma,\ in title'' in \textsl{a ,\ in manual name}
+
+\texttt{@ref\{chapter,cross ref name\}}\ 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [chapter], 
page~\pageref*{anchor:chapter}}
+\texttt{@ref\{chapter{,}{,}title\}}\ 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [title], 
page~\pageref*{anchor:chapter}}
+\texttt{@ref\{chapter{,}{,},file name\}}\ Section ``chapter'' in \texttt{file 
name}
+\texttt{@ref\{chapter{,}{,}{,}{,}manual\}}\ Section ``chapter'' in 
\textsl{manual}
+\texttt{@ref\{chapter,cross ref name,title,\}}\ 
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [title], 
page~\pageref*{anchor:chapter}}
+\texttt{@ref\{chapter,cross ref name{,}{,}file name\}}\ Section ``chapter'' in 
\texttt{file name}
+\texttt{@ref\{chapter,cross ref name{,}{,},manual\}}\ Section ``chapter'' in 
\textsl{manual}
+\texttt{@ref\{chapter,cross ref name,title,file name\}}\ Section ``title'' in 
\texttt{file name}
+\texttt{@ref\{chapter,cross ref name,title{,}{,}manual\}}\ Section ``title'' 
in \textsl{manual}
+\texttt{@ref\{chapter,cross ref name,title,\ file name,\ manual\}}\ Section 
``title'' in \textsl{manual}
+\texttt{@ref\{chapter{,}{,}title,file name\}}\ Section ``title'' in 
\texttt{file name}
+\texttt{@ref\{chapter{,}{,}title{,}{,}manual\}}\ Section ``title'' in 
\textsl{manual}
+\texttt{@ref\{chapter{,}{,}title,\ file name,\ manual\}}\ Section ``title'' in 
\textsl{manual}
+\texttt{@ref\{chapter{,}{,},file name,manual\}}\ Section ``chapter'' in 
\textsl{manual}
+
+
+\texttt{@ref\{(pman)anode,cross ref name\}}\ (pman)anode
+\texttt{@ref\{(pman)anode{,}{,}title\}}\ title
+\texttt{@ref\{(pman)anode{,}{,},file name\}}\ Section ``(pman)anode'' in 
\texttt{file name}
+\texttt{@ref\{(pman)anode{,}{,}{,}{,}manual\}}\ Section ``(pman)anode'' in 
\textsl{manual}
+\texttt{@ref\{(pman)anode,cross ref name,title,\}}\ title
+\texttt{@ref\{(pman)anode,cross ref name{,}{,}file name\}}\ Section 
``(pman)anode'' in \texttt{file name}
+\texttt{@ref\{(pman)anode,cross ref name{,}{,},manual\}}\ Section 
``(pman)anode'' in \textsl{manual}
+\texttt{@ref\{(pman)anode,cross ref name,title,file name\}}\ Section ``title'' 
in \texttt{file name}
+\texttt{@ref\{(pman)anode,cross ref name,title{,}{,}manual\}}\ Section 
``title'' in \textsl{manual}
+\texttt{@ref\{(pman)anode,cross ref name,title,\ file name,\ manual\}}\ 
Section ``title'' in \textsl{manual}
+\texttt{@ref\{(pman)anode{,}{,}title,file name\}}\ Section ``title'' in 
\texttt{file name}
+\texttt{@ref\{(pman)anode{,}{,}title{,}{,}manual\}}\ Section ``title'' in 
\textsl{manual}
+\texttt{@ref\{(pman)anode{,}{,}title,\ file name,\ manual\}}\ Section 
``title'' in \textsl{manual}
+\texttt{@ref\{(pman)anode{,}{,},file name,manual\}}\ Section ``(pman)anode'' 
in \textsl{manual}
+
+
+\texttt{@inforef\{chapter,\ cross ref name,\ file name\}}\ Section ``chapter'' 
in \texttt{file name}
+\texttt{@inforef\{chapter\}}\ chapter
+\texttt{@inforef\{chapter,\ cross ref name\}}\ chapter
+\texttt{@inforef\{chapter{,}{,}file name\}}\ Section ``chapter'' in 
\texttt{file name}
+\texttt{@inforef\{node,\ cross ref name,\ file name\}}\ Section ``node'' in 
\texttt{file name}
+\texttt{@inforef\{node\}}\ node
+\texttt{@inforef\{node,\ cross ref name\}}\ node
+\texttt{@inforef\{node{,}{,}file name\}}\ Section ``node'' in \texttt{file 
name}
+\texttt{@inforef\{chapter,\ cross ref name,\ file name,\ spurious arg\}}\ 
Section ``chapter'' in \texttt{file name,\ spurious arg}
+
+\texttt{@inforef\{s{-}{-}ect@comma\{\}ion,\ a @comma\{\}\ in cross
+ref,\ a comma@comma\{\}\ in file\}}
+Section ``s{-}{-}ect,ion'' in \texttt{a comma,\ in file}
 
 `\texttt{\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} 
[chapter], page~\pageref*{anchor:chapter}}}'.
 
@@ -7367,11 +7367,11 @@ $\frac{a < b \texttt{tex \hbox{ code }}}{b}$ ``
 \leftskip=2em\relax\ttfamily%
 
 
-\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{@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{@math\{{-}{-}a@minus\{\}\ \{\textbackslash{}frac\{1\}\{2\}\}\}}\ $--a- 
{\frac{1}{2}}$
 
 
 
@@ -7386,39 +7386,39 @@ Invalid use of @':\leavevmode{}\\
 \leavevmode{}\\
 @'@"u \'{}\"{u}
 
-\texttt{@|} 
+\texttt{@|}\ 
 
-@dotless\{truc\} truc
-@dotless\{ij\} ij
-\texttt{@dotless\{{-}{-}a\}} \{-\}\{-\}a
-\texttt{@dotless\{a\}} a
+@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{@\#} \#
+@TeX,\ but without brace \TeX{}\texttt{@\#}\ \#
 
-\texttt{@w\{{-}{-}a\}} \hbox{{-}{-}a}
+\texttt{@w\{{-}{-}a\}}\ \hbox{{-}{-}a}
 
-\texttt{@image\{,1{-}{-}xt\}} 
-\texttt{@image\{{,}{,}2{-}{-}xt\}} 
-\texttt{@image\{{,}{,},3{-}{-}xt\}} 
+\texttt{@image\{,1{-}{-}xt\}}\ 
+\texttt{@image\{{,}{,}2{-}{-}xt\}}\ 
+\texttt{@image\{{,}{,},3{-}{-}xt\}}\ 
 
-\texttt{@image\{f-ile,aze{,}{,}a{-}{-}lt\}} \includegraphics[width=aze]{f-ile}
-\texttt{@image\{f-ile{,}{,},alt@verb\{:jk \_" \%\@\}\}} \includegraphics{f-ile}
+\texttt{@image\{f-ile,aze{,}{,}a{-}{-}lt\}}\ \includegraphics[width=aze]{f-ile}
+\texttt{@image\{f-ile{,}{,},alt@verb\{:jk \_" \%\@\}\}}\ 
\includegraphics{f-ile}
 
-\texttt{@image\{f{-}{-}ile\}} \includegraphics{f--ile}
-\texttt{@image\{f{-}{-}ile{,}{,},alt\}} \includegraphics{f--ile}
-\texttt{@image\{f{-}{-}ile{,}{,}{,}{,}.e-d-xt\}} \includegraphics{f--ile}
-\texttt{@image\{f{-}{-}ile,l{-}{-}i\}} \includegraphics[width=l--i]{f--ile}
-\texttt{@image\{f{-}{-}ile{,}{,}l{-}{-}e\}} 
\includegraphics[height=l--e]{f--ile}
-\texttt{@image\{f{-}{-}ile,aze,az,alt,.e{-}{-}xt\}} 
\includegraphics[width=aze,height=az]{f--ile}
-\texttt{@image\{@file\{f{-}{-}ile\}@@@.,aze,az,alt,@file\{.file ext\} 
e{-}{-}xt@\}} \includegraphics[width=aze,height=az]{f--ile@.}
+\texttt{@image\{f{-}{-}ile\}}\ \includegraphics{f--ile}
+\texttt{@image\{f{-}{-}ile{,}{,},alt\}}\ \includegraphics{f--ile}
+\texttt{@image\{f{-}{-}ile{,}{,}{,}{,}.e-d-xt\}}\ \includegraphics{f--ile}
+\texttt{@image\{f{-}{-}ile,l{-}{-}i\}}\ \includegraphics[width=l--i]{f--ile}
+\texttt{@image\{f{-}{-}ile{,}{,}l{-}{-}e\}}\ 
\includegraphics[height=l--e]{f--ile}
+\texttt{@image\{f{-}{-}ile,aze,az,alt,.e{-}{-}xt\}}\ 
\includegraphics[width=aze,height=az]{f--ile}
+\texttt{@image\{@file\{f{-}{-}ile\}@@@.,aze,az,alt,@file\{.file ext\}\ 
e{-}{-}xt@\}}\ \includegraphics[width=aze,height=az]{f--ile@.}
 
-\texttt{@image\{f{-}{-}ile,aze,az,@verb\{:jk \_" \%@:\} @b\{in b 
"\},e{-}{-}xt\}} \includegraphics[width=aze,height=az]{f--ile}
-\texttt{@image\{file@verb\{:jk \_" \%@:\}{,}{,},alt@verb\{:jk \_" \%@:\}\}} 
\includegraphics{filejk _" \%@}
+\texttt{@image\{f{-}{-}ile,aze,az,@verb\{:jk \_" \%@:\}\ @b\{in b 
"\},e{-}{-}xt\}}\ \includegraphics[width=aze,height=az]{f--ile}
+\texttt{@image\{file@verb\{:jk \_" \%@:\}{,}{,},alt@verb\{:jk \_" \%@:\}\}}\ 
\includegraphics{filejk _" \%@}
 
 
 {\bfseries author}%
@@ -7594,42 +7594,42 @@ g{-}{-}roupe
 \begin{GNUTexinfopreformatted}
 \leftskip=2em\relax\ttfamily%
 
-\texttt{@ref\{node\}} node
-
-\texttt{@ref\{,cross ref name\}} 
-\texttt{@ref\{{,}{,}title\}} title
-\texttt{@ref\{{,}{,},file name\}} \texttt{file name}
-\texttt{@ref\{{,}{,}{,}{,}manual\}} \textsl{manual}
-\texttt{@ref\{node,cross ref name\}} node
-\texttt{@ref\{node{,}{,}title\}} title
-\texttt{@ref\{node{,}{,},file name\}} Section ``node'' in \texttt{file name}
-\texttt{@ref\{node{,}{,}{,}{,}manual\}} Section ``node'' in \textsl{manual}
-\texttt{@ref\{node,cross ref name,title,\}} title
-\texttt{@ref\{node,cross ref name{,}{,}file name\}} Section ``node'' in 
\texttt{file name}
-\texttt{@ref\{node,cross ref name{,}{,},manual\}} Section ``node'' in 
\textsl{manual}
-\texttt{@ref\{node,cross ref name,title,file name\}} Section ``title'' in 
\texttt{file name}
-\texttt{@ref\{node,cross ref name,title{,}{,}manual\}} Section ``title'' in 
\textsl{manual}
-\texttt{@ref\{node,cross ref name,title,\ file name,\ manual\}} Section 
``title'' in \textsl{manual}
-\texttt{@ref\{node{,}{,}title,file name\}} Section ``title'' in \texttt{file 
name}
-\texttt{@ref\{node{,}{,}title{,}{,}manual\}} Section ``title'' in 
\textsl{manual}
-\texttt{@ref\{chapter{,}{,}title,\ file name,\ manual\}} Section ``title'' in 
\textsl{manual}
-\texttt{@ref\{node{,}{,}title,\ file name,\ manual\}} Section ``title'' in 
\textsl{manual}
-\texttt{@ref\{node{,}{,},file name,manual\}} Section ``node'' in 
\textsl{manual}
-\texttt{@ref\{,cross ref name,title,\}} title
-\texttt{@ref\{,cross ref name{,}{,}file name\}} \texttt{file name}
-\texttt{@ref\{,cross ref name{,}{,},manual\}} \textsl{manual}
-\texttt{@ref\{,cross ref name,title,file name\}} Section ``title'' in 
\texttt{file name}
-\texttt{@ref\{,cross ref name,title{,}{,}manual\}} Section ``title'' in 
\textsl{manual}
-\texttt{@ref\{,cross ref name,title,\ file name,\ manual\}} Section ``title'' 
in \textsl{manual}
-\texttt{@ref\{{,}{,}title,file name\}} Section ``title'' in \texttt{file name}
-\texttt{@ref\{{,}{,}title{,}{,}manual\}} Section ``title'' in \textsl{manual}
-\texttt{@ref\{{,}{,}title,\ file name,\ manual\}} Section ``title'' in 
\textsl{manual}
-\texttt{@ref\{{,}{,},file name,manual\}} \textsl{manual}
-
-\texttt{@inforef\{,cross ref name \}} 
-\texttt{@inforef\{{,}{,}file name\}} \texttt{file name}
-\texttt{@inforef\{,cross ref name,\ file name\}} \texttt{file name}
-\texttt{@inforef\{\}} 
+\texttt{@ref\{node\}}\ node
+
+\texttt{@ref\{,cross ref name\}}\ 
+\texttt{@ref\{{,}{,}title\}}\ title
+\texttt{@ref\{{,}{,},file name\}}\ \texttt{file name}
+\texttt{@ref\{{,}{,}{,}{,}manual\}}\ \textsl{manual}
+\texttt{@ref\{node,cross ref name\}}\ node
+\texttt{@ref\{node{,}{,}title\}}\ title
+\texttt{@ref\{node{,}{,},file name\}}\ Section ``node'' in \texttt{file name}
+\texttt{@ref\{node{,}{,}{,}{,}manual\}}\ Section ``node'' in \textsl{manual}
+\texttt{@ref\{node,cross ref name,title,\}}\ title
+\texttt{@ref\{node,cross ref name{,}{,}file name\}}\ Section ``node'' in 
\texttt{file name}
+\texttt{@ref\{node,cross ref name{,}{,},manual\}}\ Section ``node'' in 
\textsl{manual}
+\texttt{@ref\{node,cross ref name,title,file name\}}\ Section ``title'' in 
\texttt{file name}
+\texttt{@ref\{node,cross ref name,title{,}{,}manual\}}\ Section ``title'' in 
\textsl{manual}
+\texttt{@ref\{node,cross ref name,title,\ file name,\ manual\}}\ Section 
``title'' in \textsl{manual}
+\texttt{@ref\{node{,}{,}title,file name\}}\ Section ``title'' in \texttt{file 
name}
+\texttt{@ref\{node{,}{,}title{,}{,}manual\}}\ Section ``title'' in 
\textsl{manual}
+\texttt{@ref\{chapter{,}{,}title,\ file name,\ manual\}}\ Section ``title'' in 
\textsl{manual}
+\texttt{@ref\{node{,}{,}title,\ file name,\ manual\}}\ Section ``title'' in 
\textsl{manual}
+\texttt{@ref\{node{,}{,},file name,manual\}}\ Section ``node'' in 
\textsl{manual}
+\texttt{@ref\{,cross ref name,title,\}}\ title
+\texttt{@ref\{,cross ref name{,}{,}file name\}}\ \texttt{file name}
+\texttt{@ref\{,cross ref name{,}{,},manual\}}\ \textsl{manual}
+\texttt{@ref\{,cross ref name,title,file name\}}\ Section ``title'' in 
\texttt{file name}
+\texttt{@ref\{,cross ref name,title{,}{,}manual\}}\ Section ``title'' in 
\textsl{manual}
+\texttt{@ref\{,cross ref name,title,\ file name,\ manual\}}\ Section ``title'' 
in \textsl{manual}
+\texttt{@ref\{{,}{,}title,file name\}}\ Section ``title'' in \texttt{file name}
+\texttt{@ref\{{,}{,}title{,}{,}manual\}}\ Section ``title'' in \textsl{manual}
+\texttt{@ref\{{,}{,}title,\ file name,\ manual\}}\ Section ``title'' in 
\textsl{manual}
+\texttt{@ref\{{,}{,},file name,manual\}}\ \textsl{manual}
+
+\texttt{@inforef\{,cross ref name \}}\ 
+\texttt{@inforef\{{,}{,}file name\}}\ \texttt{file name}
+\texttt{@inforef\{,cross ref name,\ file name\}}\ \texttt{file name}
+\texttt{@inforef\{\}}\ 
 
 
 \end{GNUTexinfopreformatted}
@@ -7665,7 +7665,7 @@ g{-}{-}roupe
 
 \index[fn]{@\texttt{\hbox{}}}%
 
-\index[codeidx]{a index---entry te\~{} --- i\^{}@\texttt{a 
\GNUTexinfocommandstyletextvar{index---entry} t\~{e} {-}{-}{-} \^{\i{}}}}%
+\index[codeidx]{a index---entry te\~{} --- i\^{}@\texttt{a 
\GNUTexinfocommandstyletextvar{index---entry}\ t\~{e}\ {-}{-}{-} \^{\i{}}}}%
 
 \index[truc]{truc}%
 



reply via email to

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