[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * tp/Texinfo/Convert/LaTeX.pm (_open_preformatted
From: |
Patrice Dumas |
Subject: |
branch master updated: * tp/Texinfo/Convert/LaTeX.pm (_open_preformatted) (_close_preformatted, _open_preformatted_command) (_close_preformatted_command, _open_preformatted_stack) (_close_preformatted_command, _convert): format preformatted type as preformatted, not preformatted commands. Preformatted commands only set up 'preformatted_context'. |
Date: |
Wed, 19 Jan 2022 18:05:24 -0500 |
This is an automated email from the git hooks/post-receive script.
pertusus pushed a commit to branch master
in repository texinfo.
The following commit(s) were added to refs/heads/master by this push:
new 47c5c0a993 * tp/Texinfo/Convert/LaTeX.pm (_open_preformatted)
(_close_preformatted, _open_preformatted_command) (_close_preformatted_command,
_open_preformatted_stack) (_close_preformatted_command, _convert): format
preformatted type as preformatted, not preformatted commands. Preformatted
commands only set up 'preformatted_context'.
47c5c0a993 is described below
commit 47c5c0a993f4b56f6beca33db0129ca6a299f95a
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Thu Jan 20 00:05:12 2022 +0100
* tp/Texinfo/Convert/LaTeX.pm (_open_preformatted)
(_close_preformatted, _open_preformatted_command)
(_close_preformatted_command, _open_preformatted_stack)
(_close_preformatted_command, _convert): format preformatted type
as preformatted, not preformatted commands. Preformatted commands
only set up 'preformatted_context'.
---
ChangeLog | 9 +
tp/Texinfo/Convert/LaTeX.pm | 54 +-
.../results/latex_tests/verbatim_in_smallformat.pl | 2 -
.../res_latex/verbatim_in_smallformat.tex | 2 -
.../misc_commands/kbdinputstyle_in_table.pl | 6 -
.../res_latex/quotation_author_in_example.tex | 6 +-
.../inter_item_commands_in_table_in_example.tex | 6 +-
.../res_parser/formatting_latex/formatting.tex | 755 +++++++++++++++++----
8 files changed, 670 insertions(+), 170 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 8a762dcd6a..739415d27d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2022-01-19 Patrice Dumas <pertusus@free.fr>
+
+ * tp/Texinfo/Convert/LaTeX.pm (_open_preformatted)
+ (_close_preformatted, _open_preformatted_command)
+ (_close_preformatted_command, _open_preformatted_stack)
+ (_close_preformatted_command, _convert): format preformatted type
+ as preformatted, not preformatted commands. Preformatted commands
+ only set up 'preformatted_context'.
+
2022-01-19 Patrice Dumas <pertusus@free.fr>
* tp/Texinfo/Convert/LaTeX.pm (_convert, _latex_header): implement
diff --git a/tp/Texinfo/Convert/LaTeX.pm b/tp/Texinfo/Convert/LaTeX.pm
index 503178f586..699f34373a 100644
--- a/tp/Texinfo/Convert/LaTeX.pm
+++ b/tp/Texinfo/Convert/LaTeX.pm
@@ -1645,8 +1645,19 @@ foreach my $small_font_preformatted_command (
sub _open_preformatted($$)
{
my $self = shift;
- my $command = shift;
+ my $element = shift;
+
+ my $command =
$self->{'formatting_context'}->[-1]->{'preformatted_context'}->[-1];
+
+ if ($preformatted_code_commands{$command}) {
+ $self->{'formatting_context'}->[-1]->{'code'} += 1;
+ }
+ # no preformatted formatting if in a @table item, it leads
+ # to an error, and also it is only for some inter item
+ # content.
+ return ''
+ if
(scalar(@{$self->{'formatting_context'}->[-1]->{'nr_table_items_context'}}));
my $result = '';
$result .= '\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing';
# TODO indent block correct amount
@@ -1654,28 +1665,47 @@ sub _open_preformatted($$)
if ($preformatted_code_commands{$command}) {
$result .= '\\ttfamily';
- $self->{'formatting_context'}->[-1]->{'code'} += 1;
}
if ($small_font_preformatted_commands{$command}) {
$result .= "\\$small_font_size";
}
$result .= '{}'."%\n";
- push @{$self->{'formatting_context'}->[-1]->{'preformatted_context'}},
$command;
return $result;
}
sub _close_preformatted($$)
{
my $self = shift;
- my $command = shift;
+ my $element = shift;
+
+ my $command =
$self->{'formatting_context'}->[-1]->{'preformatted_context'}->[-1];
if ($preformatted_code_commands{$command}) {
$self->{'formatting_context'}->[-1]->{'code'} -= 1;
}
- my $old_context = pop
@{$self->{'formatting_context'}->[-1]->{'preformatted_context'}};
- die if ($old_context ne $command);
+ return ''
+ if
(scalar(@{$self->{'formatting_context'}->[-1]->{'nr_table_items_context'}}));
return "\\endgroup{}%\n"; # \obeylines
}
+sub _open_preformatted_command($$)
+{
+ my $self = shift;
+ my $command = shift;
+
+ push @{$self->{'formatting_context'}->[-1]->{'preformatted_context'}},
$command;
+ return '';
+}
+
+sub _close_preformatted_command($$)
+{
+ my $self = shift;
+ my $command = shift;
+
+ my $old_context = pop
@{$self->{'formatting_context'}->[-1]->{'preformatted_context'}};
+ die if ($old_context ne $command);
+ return '';
+}
+
sub _open_preformatted_stack($$)
{
my $self = shift;
@@ -1683,7 +1713,7 @@ sub _open_preformatted_stack($$)
my $result = '';
foreach my $preformatted_command (@$stack) {
- $result .= _open_preformatted($self, $preformatted_command);
+ $result .= _open_preformatted_command($self, $preformatted_command);
}
return $result;
}
@@ -1695,7 +1725,7 @@ sub _close_preformatted_stack($$)
my $result = '';
foreach my $preformatted_command (reverse @$stack) {
- $result .= _close_preformatted($self, $preformatted_command);
+ $result .= _close_preformatted_command($self, $preformatted_command);
}
return $result;
}
@@ -2716,7 +2746,7 @@ sub _convert($$)
}
}
if ($preformatted_commands{$cmdname}) {
- $result .= _open_preformatted($self, $cmdname);
+ _open_preformatted_command($self, $cmdname);
} elsif ($block_raw_commands{$cmdname}) {
push @{$self->{'formatting_context'}->[-1]->{'text_context'}}, 'raw';
}
@@ -3303,6 +3333,8 @@ sub _convert($$)
}
}
push @{$self->{'formatting_context'}->[-1]->{'nr_table_items_context'}},
$nr_item;
+ } elsif ($element->{'type'} eq 'preformatted') {
+ $result .= _open_preformatted($self, $element);
} elsif ($element->{'type'} eq '_code') {
# ...
} elsif ($element->{'type'} eq '_dot_not_end_sentence') {
@@ -3341,6 +3373,8 @@ sub _convert($$)
pop @{$self->{'formatting_context'}->[-1]->{'nr_table_items_context'}};
} elsif ($type eq 'bracketed') {
$result .= _protect_text($self, '}');
+ } elsif ($type eq 'preformatted') {
+ $result .= _close_preformatted($self, $element);
} elsif ($type eq 'before_item') {
# LaTeX environments do not accept text before the first item, add an
item
if ($result =~ /\S/) {
@@ -3382,7 +3416,7 @@ sub _convert($$)
}
}
if ($preformatted_commands{$cmdname}) {
- $result .= _close_preformatted($self, $cmdname);
+ _close_preformatted_command($self, $cmdname);
}
if ($cmdname eq 'float') {
my $normalized_float_type = '';
diff --git a/tp/t/results/latex_tests/verbatim_in_smallformat.pl
b/tp/t/results/latex_tests/verbatim_in_smallformat.pl
index 5ae69ea8e3..5925032c1f 100644
--- a/tp/t/results/latex_tests/verbatim_in_smallformat.pl
+++ b/tp/t/results/latex_tests/verbatim_in_smallformat.pl
@@ -184,11 +184,9 @@ $result_floats{'verbatim_in_smallformat'} = {};
$result_converted{'latex'}->{'verbatim_in_smallformat'} = '
\\begin{document}
-\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em\\relax\\parskip=0pt\\relax\\footnotesize{}%
\\begin{verbatim}
... still verbatim, but in a smaller font ...
\\end{verbatim}
-\\endgroup{}%
';
1;
diff --git
a/tp/t/results/latex_tests/verbatim_in_smallformat/res_latex/verbatim_in_smallformat.tex
b/tp/t/results/latex_tests/verbatim_in_smallformat/res_latex/verbatim_in_smallformat.tex
index 7dbe563143..7d3308a657 100644
---
a/tp/t/results/latex_tests/verbatim_in_smallformat/res_latex/verbatim_in_smallformat.tex
+++
b/tp/t/results/latex_tests/verbatim_in_smallformat/res_latex/verbatim_in_smallformat.tex
@@ -57,9 +57,7 @@
\begin{document}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\footnotesize{}%
\begin{verbatim}
... still verbatim, but in a smaller font ...
\end{verbatim}
-\endgroup{}%
\end{document}
diff --git a/tp/t/results/misc_commands/kbdinputstyle_in_table.pl
b/tp/t/results/misc_commands/kbdinputstyle_in_table.pl
index d06731e67f..4bf6b4eaec 100644
--- a/tp/t/results/misc_commands/kbdinputstyle_in_table.pl
+++ b/tp/t/results/misc_commands/kbdinputstyle_in_table.pl
@@ -2433,7 +2433,6 @@ $result_converted{'latex'}->{'kbdinputstyle_in_table'} = '
\\end{description}
in example
-\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em\\relax\\parskip=0pt\\relax\\ttfamily{}%
\\begin{description}
\\item[{\\parbox[b]{\\linewidth}{%
\\texttt{i{-}{-}tem in example}}}]
@@ -2442,7 +2441,6 @@ in example
\\item[{\\parbox[b]{\\linewidth}{%
\\texttt{braced i{-}{-}tem in example}}}]
\\end{description}
-\\endgroup{}%
@kbdinputstyle example
@@ -2458,7 +2456,6 @@ in example
\\end{description}
in example
-\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em\\relax\\parskip=0pt\\relax\\ttfamily{}%
\\begin{description}
\\item[{\\parbox[b]{\\linewidth}{%
\\texttt{i{-}{-}tem in example}}}]
@@ -2467,7 +2464,6 @@ in example
\\item[{\\parbox[b]{\\linewidth}{%
\\texttt{braced i{-}{-}tem in example}}}]
\\end{description}
-\\endgroup{}%
@kbdinputstyle distinct
@@ -2483,7 +2479,6 @@ in example
\\end{description}
in example
-\\par\\begingroup\\obeylines\\obeyspaces\\frenchspacing\\leftskip=2em\\relax\\parskip=0pt\\relax\\ttfamily{}%
\\begin{description}
\\item[{\\parbox[b]{\\linewidth}{%
\\GNUTexinfotablestylekbd{i{-}{-}tem in example}}}]
@@ -2492,7 +2487,6 @@ in example
\\item[{\\parbox[b]{\\linewidth}{%
\\GNUTexinfotablestylekbd{braced i{-}{-}tem in example}}}]
\\end{description}
-\\endgroup{}%
';
1;
diff --git
a/tp/t/results/quotation/quotation_author_in_example/res_latex/quotation_author_in_example.tex
b/tp/t/results/quotation/quotation_author_in_example/res_latex/quotation_author_in_example.tex
index 456f476398..a64b55af64 100644
---
a/tp/t/results/quotation/quotation_author_in_example/res_latex/quotation_author_in_example.tex
+++
b/tp/t/results/quotation/quotation_author_in_example/res_latex/quotation_author_in_example.tex
@@ -56,12 +56,12 @@
\GNUTexinfosetsingleheader{}%
\begin{document}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
A quot{-}{-}{-}ation
+\endgroup{}%
\end{quote}
\begin{center}
-{-}{-}{-} \emph{Some One}
+--- \emph{Some One}
\end{center}
-\endgroup{}%
\end{document}
diff --git
a/tp/t/results/xtable/inter_item_commands_in_table_in_example/res_latex/inter_item_commands_in_table_in_example.tex
b/tp/t/results/xtable/inter_item_commands_in_table_in_example/res_latex/inter_item_commands_in_table_in_example.tex
index 620142b3c4..eb0a115015 100644
---
a/tp/t/results/xtable/inter_item_commands_in_table_in_example/res_latex/inter_item_commands_in_table_in_example.tex
+++
b/tp/t/results/xtable/inter_item_commands_in_table_in_example/res_latex/inter_item_commands_in_table_in_example.tex
@@ -67,17 +67,17 @@
\begin{document}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
-\GNUTexinfotablestylevar{a{-}{-}b}\\
+\GNUTexinfotablestylevar{a--b}\\
\index[cp]{index entry between item and itemx}%
\GNUTexinfotablestylevar{b}\\
\GNUTexinfotablestylevar{c}}}]
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
l{-}{-}ine
+\endgroup{}%
\item[{\parbox[b]{\linewidth}{%
\GNUTexinfotablestylevar{d}}}]
\end{description}
-\endgroup{}%
\end{document}
diff --git a/tp/tests/layout/res_parser/formatting_latex/formatting.tex
b/tp/tests/layout/res_parser/formatting_latex/formatting.tex
index 853931b824..e324680e90 100644
--- a/tp/tests/layout/res_parser/formatting_latex/formatting.tex
+++ b/tp/tests/layout/res_parser/formatting_latex/formatting.tex
@@ -365,13 +365,13 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
{\ttfamily\textsl{in example default kbdinputstyle}}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\GNUTexinfotablestylekbd{vtable i{-}{-}tem in example default kbdinputstyle}
\index[cp]{vtable i--tem in example default kbdinputstyle@\texttt{vtable
i{-}{-}tem in example default kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
\texttt{code kbdinputstyle}
\begin{description}
@@ -382,13 +382,13 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\texttt{in example code kbdinputstyle}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\texttt{vtable i{-}{-}tem in example code kbdinputstyle}
\index[cp]{vtable i--tem in example code kbdinputstyle@\texttt{vtable
i{-}{-}tem in example code kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
{\ttfamily\textsl{example kbdinputstyle}}
\begin{description}
@@ -399,13 +399,13 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\texttt{in example example kbdinputstyle}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\texttt{vtable i{-}{-}tem in example example kbdinputstyle}
\index[cp]{vtable i--tem in example example kbdinputstyle@\texttt{vtable
i{-}{-}tem in example example kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
{\ttfamily\textsl{distinct kbdinputstyle}}
\begin{description}
@@ -416,13 +416,13 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
{\ttfamily\textsl{in example distinct kbdinputstyle}}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\GNUTexinfotablestylekbd{vtable i{-}{-}tem in example distinct kbdinputstyle}
\index[cp]{vtable i--tem in example distinct kbdinputstyle@\texttt{vtable
i{-}{-}tem in example distinct kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
\begin{quote}
A quot---ation
@@ -1549,13 +1549,13 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
{\ttfamily\textsl{in example default kbdinputstyle}}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\GNUTexinfotablestylekbd{vtable i{-}{-}tem in example default kbdinputstyle}
\index[cp]{vtable i--tem in example default kbdinputstyle@\texttt{vtable
i{-}{-}tem in example default kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
\texttt{code kbdinputstyle}
\begin{description}
@@ -1566,13 +1566,13 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\texttt{in example code kbdinputstyle}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\texttt{vtable i{-}{-}tem in example code kbdinputstyle}
\index[cp]{vtable i--tem in example code kbdinputstyle@\texttt{vtable
i{-}{-}tem in example code kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
{\ttfamily\textsl{example kbdinputstyle}}
\begin{description}
@@ -1583,13 +1583,13 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\texttt{in example example kbdinputstyle}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\texttt{vtable i{-}{-}tem in example example kbdinputstyle}
\index[cp]{vtable i--tem in example example kbdinputstyle@\texttt{vtable
i{-}{-}tem in example example kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
{\ttfamily\textsl{distinct kbdinputstyle}}
\begin{description}
@@ -1600,13 +1600,13 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
{\ttfamily\textsl{in example distinct kbdinputstyle}}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\GNUTexinfotablestylekbd{vtable i{-}{-}tem in example distinct kbdinputstyle}
\index[cp]{vtable i--tem in example distinct kbdinputstyle@\texttt{vtable
i{-}{-}tem in example distinct kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
\begin{quote}
A quot---ation
@@ -2753,13 +2753,13 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
{\ttfamily\textsl{in example default kbdinputstyle}}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\GNUTexinfotablestylekbd{vtable i{-}{-}tem in example default kbdinputstyle}
\index[cp]{vtable i--tem in example default kbdinputstyle@\texttt{vtable
i{-}{-}tem in example default kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
\texttt{code kbdinputstyle}
\begin{description}
@@ -2770,13 +2770,13 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\texttt{in example code kbdinputstyle}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\texttt{vtable i{-}{-}tem in example code kbdinputstyle}
\index[cp]{vtable i--tem in example code kbdinputstyle@\texttt{vtable
i{-}{-}tem in example code kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
{\ttfamily\textsl{example kbdinputstyle}}
\begin{description}
@@ -2787,13 +2787,13 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\texttt{in example example kbdinputstyle}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\texttt{vtable i{-}{-}tem in example example kbdinputstyle}
\index[cp]{vtable i--tem in example example kbdinputstyle@\texttt{vtable
i{-}{-}tem in example example kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
{\ttfamily\textsl{distinct kbdinputstyle}}
\begin{description}
@@ -2804,13 +2804,13 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
{\ttfamily\textsl{in example distinct kbdinputstyle}}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\GNUTexinfotablestylekbd{vtable i{-}{-}tem in example distinct kbdinputstyle}
\index[cp]{vtable i--tem in example distinct kbdinputstyle@\texttt{vtable
i{-}{-}tem in example distinct kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
\begin{quote}
A quot---ation
@@ -3936,13 +3936,13 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
{\ttfamily\textsl{in example default kbdinputstyle}}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\GNUTexinfotablestylekbd{vtable i{-}{-}tem in example default kbdinputstyle}
\index[cp]{vtable i--tem in example default kbdinputstyle@\texttt{vtable
i{-}{-}tem in example default kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
\texttt{code kbdinputstyle}
\begin{description}
@@ -3953,13 +3953,13 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\texttt{in example code kbdinputstyle}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\texttt{vtable i{-}{-}tem in example code kbdinputstyle}
\index[cp]{vtable i--tem in example code kbdinputstyle@\texttt{vtable
i{-}{-}tem in example code kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
{\ttfamily\textsl{example kbdinputstyle}}
\begin{description}
@@ -3970,13 +3970,13 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\texttt{in example example kbdinputstyle}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\texttt{vtable i{-}{-}tem in example example kbdinputstyle}
\index[cp]{vtable i--tem in example example kbdinputstyle@\texttt{vtable
i{-}{-}tem in example example kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
{\ttfamily\textsl{distinct kbdinputstyle}}
\begin{description}
@@ -3987,13 +3987,13 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
{\ttfamily\textsl{in example distinct kbdinputstyle}}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\GNUTexinfotablestylekbd{vtable i{-}{-}tem in example distinct kbdinputstyle}
\index[cp]{vtable i--tem in example distinct kbdinputstyle@\texttt{vtable
i{-}{-}tem in example distinct kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
\begin{quote}
A quot---ation
@@ -5014,7 +5014,9 @@ but , ,\@
\texttt{@t\{{-}{-}a\}} \texttt{{-}{-}a}
\texttt{@sansserif\{{-}{-}a\}} \textsf{{-}{-}a}
\texttt{@slanted\{{-}{-}a\}} \textsl{{-}{-}a}
-\texttt{@titlefont\{{-}{-}a\}} {\huge \bfseries {-}{-}a}
+\texttt{@titlefont\{{-}{-}a\}} \endgroup{}%
+{\huge \bfseries
--a}\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+
\texttt{@indicateurl\{{-}{-}a\}} `\texttt{{-}{-}a}'
\texttt{@uref\{{-}{-}a,{-}{-}b\}} \href{--a}{{-}{-}b (\nolinkurl{--a})}
\texttt{@uref\{{-}{-}a\}} \url{--a}
@@ -5066,8 +5068,10 @@ but , ,\@
\texttt{@sp 2}\leavevmode{}\\
\vskip 2\baselineskip %
\texttt{@page}\leavevmode{}\\
+\endgroup{}%
\newpage{}%
\phantom{blabla}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
{\bfseries author}%
\texttt{need 1002}
@@ -5122,6 +5126,7 @@ $$
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
{\ttfamily\textsl{default kbdinputstyle}}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\GNUTexinfotablestylekbd{vtable i{-}{-}tem default kbdinputstyle}
@@ -5130,15 +5135,17 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
{\ttfamily\textsl{in example default kbdinputstyle}}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\GNUTexinfotablestylekbd{vtable i{-}{-}tem in example default kbdinputstyle}
\index[cp]{vtable i--tem in example default kbdinputstyle@\texttt{vtable
i{-}{-}tem in example default kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\texttt{code kbdinputstyle}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\texttt{vtable i{-}{-}tem code kbdinputstyle}
@@ -5147,15 +5154,17 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\texttt{in example code kbdinputstyle}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\texttt{vtable i{-}{-}tem in example code kbdinputstyle}
\index[cp]{vtable i--tem in example code kbdinputstyle@\texttt{vtable
i{-}{-}tem in example code kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\texttt{example kbdinputstyle}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\texttt{vtable i{-}{-}tem example kbdinputstyle}
@@ -5164,15 +5173,17 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\texttt{in example example kbdinputstyle}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\texttt{vtable i{-}{-}tem in example example kbdinputstyle}
\index[cp]{vtable i--tem in example example kbdinputstyle@\texttt{vtable
i{-}{-}tem in example example kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
{\ttfamily\textsl{distinct kbdinputstyle}}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\GNUTexinfotablestylekbd{vtable i{-}{-}tem distinct kbdinputstyle}
@@ -5181,246 +5192,448 @@ $$
\end{description}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
{\ttfamily\textsl{in example distinct kbdinputstyle}}
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\GNUTexinfotablestylekbd{vtable i{-}{-}tem in example distinct kbdinputstyle}
\index[cp]{vtable i--tem in example distinct kbdinputstyle@\texttt{vtable
i{-}{-}tem in example distinct kbdinputstyle}}%
}}]
\end{description}
-\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
A quot{-}{-}{-}ation
+\endgroup{}%
\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
-\textbf{Note:} A Note
+\textbf{Note:}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+A Note
+\endgroup{}%
\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
-\textbf{note:} A note
+\textbf{note:}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+A note
+\endgroup{}%
\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
-\textbf{Caution:} Caution
+\textbf{Caution:}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+Caution
+\endgroup{}%
\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
-\textbf{Important:} Important
+\textbf{Important:}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+Important
+\endgroup{}%
\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
-\textbf{Tip:} a Tip
+\textbf{Tip:}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+a Tip
+\endgroup{}%
\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
-\textbf{Warning:} a Warning.
+\textbf{Warning:}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+a Warning.
+\endgroup{}%
\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
-\textbf{something \'{e} \TeX{}:} The something \'{e} \TeX{} is here.
+\textbf{something \'{e} \TeX{}:}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+The something \'{e} \TeX{} is here.
+\endgroup{}%
\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
-\textbf{@ at the end of line \ {}:} A @ at the end of the @quotation line.
+\textbf{@ at the end of line \ {}:}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+A @ at the end of the @quotation line.
+\endgroup{}%
\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
-\textbf{something, other thing:} something, other thing
+\textbf{something, other thing:}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+something, other thing
+\endgroup{}%
\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
-\textbf{Note, the note:} Note, the note
+\textbf{Note, the note:}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+Note, the note
+\endgroup{}%
\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
\textbf{Empty:} \end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
\textbf{:} \end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
\textbf{\leavevmode{}\\:} \end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
aaa quotation
+\endgroup{}%
\end{quote}
\begin{center}
-{-}{-}{-} \emph{quotation author}
+--- \emph{quotation author}
\end{center}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
indent in quotation
+\endgroup{}%
\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
\begin{footnotesize}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
A small quot{-}{-}{-}ation
+\endgroup{}%
\end{footnotesize}
\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
\begin{footnotesize}
-\textbf{Note:} A small Note
+\textbf{Note:}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+A small Note
+\endgroup{}%
\end{footnotesize}
\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{quote}
\begin{footnotesize}
-\textbf{something, other thing:} something, other thing
+\textbf{something, other thing:}
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+something, other thing
+\endgroup{}%
\end{footnotesize}
\end{quote}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{itemize}
-\item i{-}{-}temize
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+i{-}{-}temize
+\endgroup{}%
\end{itemize}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{itemize}[label=+]
-\item i{-}{-}tem +
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+i{-}{-}tem +
+\endgroup{}%
\end{itemize}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{itemize}[label=\textbullet{}]
-\item b{-}{-}ullet
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+b{-}{-}ullet
+\endgroup{}%
\end{itemize}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{itemize}[label=-]
-\item minu{-}{-}s
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+minu{-}{-}s
+\endgroup{}%
\end{itemize}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{itemize}[label=\emph{after emph}]
-\item e{-}{-}mph item
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+e{-}{-}mph item
+\endgroup{}%
\end{itemize}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\begin{itemize}[label=\textbullet{} a{-}{-}n itemize line]
-\item \index[cp]{index entry within itemize}%
+\endgroup{}%
+\begin{itemize}[label=\textbullet{} a--n itemize line]
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\index[cp]{index entry within itemize}%
i{-}{-}tem 1
-\item i{-}{-}tem 2
+\endgroup{}%
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+i{-}{-}tem 2
+\endgroup{}%
\end{itemize}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{itemize}[label={}]
-\item without brace w a{-}{-}b
-\item without brace w c{-}{-}d
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+without brace w a{-}{-}b
+\endgroup{}%
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+without brace w c{-}{-}d
+\endgroup{}%
\end{itemize}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{itemize}[label={}]
-\item with w a{-}{-}b
-\item with w c{-}{-}d
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+with w a{-}{-}b
+\endgroup{}%
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+with w c{-}{-}d
+\endgroup{}%
\end{itemize}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{itemize}[label=\hbox{} on a line]
-\item line w a{-}{-}b
-\item line with w c{-}{-}d
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+line w a{-}{-}b
+\endgroup{}%
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+line with w c{-}{-}d
+\endgroup{}%
\end{itemize}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{enumerate}[start=1]
-\item e{-}{-}numerate
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+e{-}{-}numerate
+\endgroup{}%
\end{enumerate}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{enumerate}[start=3]
-\item first third
-\item second third
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+first third
+\endgroup{}%
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+second third
+\endgroup{}%
\end{enumerate}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{enumerate}[label=\alph*.]
-\item e{-}{-}numerate
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+e{-}{-}numerate
+\endgroup{}%
\end{enumerate}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{enumerate}[label=\alph*.,start=3]
-\item first c
-\item second c
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+first c
+\endgroup{}%
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+second c
+\endgroup{}%
\end{enumerate}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{tabular}{m{0.4\textwidth} m{0.6\textwidth}}%
-mu{-}{-}ltitable headitem &another tab\\
-mu{-}{-}ltitable item &multitable tab\\
-mu{-}{-}ltitable item 2 &multitable tab 2
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+mu{-}{-}ltitable headitem \endgroup{}%&
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+another tab
+\endgroup{}%
+\\
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+mu{-}{-}ltitable item \endgroup{}%&
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+multitable tab
+\endgroup{}%
+\\
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+mu{-}{-}ltitable item 2 \endgroup{}%&
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+multitable tab 2
\index[cp]{index entry within multitable}%
+\endgroup{}%
\\
-lone mu{-}{-}ltitable item&\\
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+lone mu{-}{-}ltitable item
+\endgroup{}%&\\
\end{tabular}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{tabular}{m{0.4\textwidth} m{0.6\textwidth}}%
-truc &bidule\\
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+truc \endgroup{}%&
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+bidule
+\endgroup{}%
+\\
\end{tabular}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
e{-}{-}xample some
text
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
example one arg
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
example two args
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
example three args
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
example four args
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
example five args
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
The something \'{e} \TeX{} is here.
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
A @ at the end of the @example line.
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
example with empty args
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
example with empty and non empty args mix
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily\footnotesize{}%
s{-}{-}mallexample
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\texttt{@noindent} after smallexample.
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily\footnotesize{}%
\$ wget
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.guess?rev=HEAD\&content-type=text/plain'
\$ wget
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD\&content-type=text/plain'
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\noindent{}Less recent versions are also present.
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax{}%
-d{-}{-}isplay
+d--isplay
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\footnotesize{}%
-s{-}{-}malldisplay
+s--malldisplay
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
l{-}{-}isp
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily\footnotesize{}%
s{-}{-}malllisp
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax{}%
-f{-}{-}ormat
+f--ormat
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\footnotesize{}%
-s{-}{-}mallformat
+s--mallformat
\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\endgroup{}%
$$
@@ -5429,324 +5642,484 @@ f(x) = {1 \over \sigma \sqrt{2\pi}}e^{-{1 \over
2}\left({x-\mu \over \sigma}\rig
$$
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory: d{-}{-}effn\_name a{-}{-}rguments...
+\endgroup{}%
+\hbox{}-- c--ategory: d--effn\_name a--rguments...
\index[fn]{d--effn\_name@\texttt{d{-}{-}effn\_name}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}effn
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} cate{-}{-}gory: de{-}{-}ffn\_name ar{-}{-}guments more args
\leavevmode{}\\ even more so
+\endgroup{}%
+\hbox{}-- cate--gory: de--ffn\_name ar--guments more args \leavevmode{}\\
even more so
\index[fn]{de--ffn\_name@\texttt{de{-}{-}ffn\_name}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
def{-}{-}fn
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} fset: \emph{i} a g
+\endgroup{}%
+\hbox{}-- fset: \emph{i} a g
\index[fn]{i@\texttt{\emph{i}}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\index[cp]{index entry within deffn}%
-\hbox{}{-}{-} cmde: truc
+\endgroup{}%
+\hbox{}-- cmde: truc
\index[fn]{truc@\texttt{truc}}%
-\hbox{}{-}{-} Command: log trap
+\hbox{}-- Command: log trap
\index[fn]{log trap@\texttt{log trap}}%
-\hbox{}{-}{-} Command: log trap1
+\hbox{}-- Command: log trap1
\index[fn]{log trap1@\texttt{log trap1}}%
-\hbox{}{-}{-} Command: log trap2
+\hbox{}-- Command: log trap2
\index[fn]{log trap2@\texttt{log trap2}}%
-\hbox{}{-}{-} cmde: \textbf{id ule} truc
+\hbox{}-- cmde: \textbf{id ule} truc
\index[fn]{id ule@\texttt{\textbf{id ule}}}%
-\hbox{}{-}{-} cmde2: \textbf{id `\texttt{i}' ule} truc
+\hbox{}-- cmde2: \textbf{id `\texttt{i}' ule} truc
\index[fn]{id i ule@\texttt{\textbf{id `\texttt{i}' ule}}}%
-\hbox{}{-}{-} \textbf{id `\texttt{i}' ule}:
+\hbox{}-- \textbf{id `\texttt{i}' ule}:
-\hbox{}{-}{-} aaa:
+\hbox{}-- aaa:
-\hbox{}{-}{-} :
+\hbox{}-- :
-\hbox{}{-}{-} :
+\hbox{}-- :
-\hbox{}{-}{-} : machin
+\hbox{}-- : machin
\index[fn]{machin@\texttt{machin}}%
-\hbox{}{-}{-} : bidule machin
+\hbox{}-- : bidule machin
\index[fn]{bidule machin@\texttt{bidule machin}}%
-\hbox{}{-}{-} truc: machin
+\hbox{}-- truc: machin
\index[fn]{machin@\texttt{machin}}%
-\hbox{}{-}{-} truc:
+\hbox{}-- truc:
-\hbox{}{-}{-} truc: followed by a comment
+\hbox{}-- truc: followed by a comment
\index[fn]{followed@\texttt{followed}}%
-\hbox{}{-}{-} truc:
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
+\hbox{}-- truc:
-\hbox{}{-}{-} :
+\hbox{}-- :
-\hbox{}{-}{-} truc: a b c d e \textbf{f g} h i
+\hbox{}-- truc: a b c d e \textbf{f g} h i
\index[fn]{a@\texttt{a}}%
-\hbox{}{-}{-} truc: deffnx before end deffn
+\hbox{}-- truc: deffnx before end deffn
\index[fn]{deffnx@\texttt{deffnx}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} empty: deffn
+\endgroup{}%
+\hbox{}-- empty: deffn
\index[fn]{deffn@\texttt{deffn}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} empty: deffn with deffnx
+\endgroup{}%
+\hbox{}-- empty: deffn with deffnx
\index[fn]{deffn@\texttt{deffn}}%
-\hbox{}{-}{-} empty: deffnx
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
+\hbox{}-- empty: deffnx
\index[fn]{deffnx@\texttt{deffnx}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} fset: \emph{i} a g
+\endgroup{}%
+\hbox{}-- fset: \emph{i} a g
\index[fn]{i@\texttt{\emph{i}}}%
-\hbox{}{-}{-} cmde: truc
+\hbox{}-- cmde: truc
\index[fn]{truc@\texttt{truc}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
text in def item for second def item
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory: d{-}{-}efvr\_name
+\endgroup{}%
+\hbox{}-- c--ategory: d--efvr\_name
\index[cp]{d--efvr\_name@\texttt{d{-}{-}efvr\_name}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}efvr
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory: n{-}{-}ame a{-}{-}rguments...
+\endgroup{}%
+\hbox{}-- c--ategory: n--ame a--rguments...
\index[fn]{n--ame@\texttt{n{-}{-}ame}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}effn
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory: n{-}{-}ame
+\endgroup{}%
+\hbox{}-- c--ategory: n--ame
\index[fn]{n--ame@\texttt{n{-}{-}ame}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}effn no arg
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory: t{-}{-}ype d{-}{-}eftypefn\_name
a{-}{-}rguments...
+\endgroup{}%
+\hbox{}-- c--ategory: t--ype d--eftypefn\_name a--rguments...
\index[fn]{d--eftypefn\_name@\texttt{d{-}{-}eftypefn\_name}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}eftypefn
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory: t{-}{-}ype d{-}{-}eftypefn\_name
+\endgroup{}%
+\hbox{}-- c--ategory: t--ype d--eftypefn\_name
\index[fn]{d--eftypefn\_name@\texttt{d{-}{-}eftypefn\_name}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}eftypefn no arg
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory on c{-}{-}lass: t{-}{-}ype d{-}{-}eftypeop\_name
a{-}{-}rguments...
+\endgroup{}%
+\hbox{}-- c--ategory on c--lass: t--ype d--eftypeop\_name a--rguments...
\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on
c{-}{-}lass}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}eftypeop
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory on c{-}{-}lass: t{-}{-}ype d{-}{-}eftypeop\_name
+\endgroup{}%
+\hbox{}-- c--ategory on c--lass: t--ype d--eftypeop\_name
\index[fn]{d--eftypeop\_name on c--lass@\texttt{d{-}{-}eftypeop\_name on
c{-}{-}lass}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}eftypeop no arg
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory: t{-}{-}ype d{-}{-}eftypevr\_name
+\endgroup{}%
+\hbox{}-- c--ategory: t--ype d--eftypevr\_name
\index[cp]{d--eftypevr\_name@\texttt{d{-}{-}eftypevr\_name}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}eftypevr
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory of c{-}{-}lass: d{-}{-}efcv\_name
+\endgroup{}%
+\hbox{}-- c--ategory of c--lass: d--efcv\_name
\index[cp]{d--efcv\_name@\texttt{d{-}{-}efcv\_name}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}efcv
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory of c{-}{-}lass: d{-}{-}efcv\_name
a{-}{-}rguments...
+\endgroup{}%
+\hbox{}-- c--ategory of c--lass: d--efcv\_name a--rguments...
\index[cp]{d--efcv\_name@\texttt{d{-}{-}efcv\_name}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}efcv with arguments
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory of c{-}{-}lass: t{-}{-}ype d{-}{-}eftypecv\_name
+\endgroup{}%
+\hbox{}-- c--ategory of c--lass: t--ype d--eftypecv\_name
\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of
c{-}{-}lass}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}eftypecv
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory of c{-}{-}lass: t{-}{-}ype d{-}{-}eftypecv\_name
a{-}{-}rguments...
+\endgroup{}%
+\hbox{}-- c--ategory of c--lass: t--ype d--eftypecv\_name a--rguments...
\index[cp]{d--eftypecv\_name of c--lass@\texttt{d{-}{-}eftypecv\_name of
c{-}{-}lass}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}eftypecv with arguments
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory on c{-}{-}lass: d{-}{-}efop\_name
a{-}{-}rguments...
+\endgroup{}%
+\hbox{}-- c--ategory on c--lass: d--efop\_name a--rguments...
\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}efop
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory on c{-}{-}lass: d{-}{-}efop\_name
+\endgroup{}%
+\hbox{}-- c--ategory on c--lass: d--efop\_name
\index[fn]{d--efop\_name on c--lass@\texttt{d{-}{-}efop\_name on c{-}{-}lass}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}efop no arg
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory: d{-}{-}eftp\_name a{-}{-}ttributes...
+\endgroup{}%
+\hbox{}-- c--ategory: d--eftp\_name a--ttributes...
\index[tp]{d--eftp\_name@\texttt{d{-}{-}eftp\_name}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}eftp
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} Function: d{-}{-}efun\_name a{-}{-}rguments...
+\endgroup{}%
+\hbox{}-- Function: d--efun\_name a--rguments...
\index[fn]{d--efun\_name@\texttt{d{-}{-}efun\_name}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}efun
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} Macro: d{-}{-}efmac\_name a{-}{-}rguments...
+\endgroup{}%
+\hbox{}-- Macro: d--efmac\_name a--rguments...
\index[fn]{d--efmac\_name@\texttt{d{-}{-}efmac\_name}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}efmac
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} Special Form: d{-}{-}efspec\_name a{-}{-}rguments...
+\endgroup{}%
+\hbox{}-- Special Form: d--efspec\_name a--rguments...
\index[fn]{d--efspec\_name@\texttt{d{-}{-}efspec\_name}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}efspec
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} Variable: d{-}{-}efvar\_name
+\endgroup{}%
+\hbox{}-- Variable: d--efvar\_name
\index[cp]{d--efvar\_name@\texttt{d{-}{-}efvar\_name}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}efvar
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} Variable: d{-}{-}efvar\_name arg{-}{-}var arg{-}{-}var1
+\endgroup{}%
+\hbox{}-- Variable: d--efvar\_name arg--var arg--var1
\index[cp]{d--efvar\_name@\texttt{d{-}{-}efvar\_name}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}efvar with args
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} User Option: d{-}{-}efopt\_name
+\endgroup{}%
+\hbox{}-- User Option: d--efopt\_name
\index[cp]{d--efopt\_name@\texttt{d{-}{-}efopt\_name}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}efopt
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} Function: t{-}{-}ype d{-}{-}eftypefun\_name a{-}{-}rguments...
+\endgroup{}%
+\hbox{}-- Function: t--ype d--eftypefun\_name a--rguments...
\index[fn]{d--eftypefun\_name@\texttt{d{-}{-}eftypefun\_name}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}eftypefun
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} Variable: t{-}{-}ype d{-}{-}eftypevar\_name
+\endgroup{}%
+\hbox{}-- Variable: t--ype d--eftypevar\_name
\index[cp]{d--eftypevar\_name@\texttt{d{-}{-}eftypevar\_name}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}eftypevar
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} Instance Variable of c{-}{-}lass: d{-}{-}efivar\_name
+\endgroup{}%
+\hbox{}-- Instance Variable of c--lass: d--efivar\_name
\index[cp]{d--efivar\_name of c--lass@\texttt{d{-}{-}efivar\_name of
c{-}{-}lass}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}efivar
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} Instance Variable of c{-}{-}lass: t{-}{-}ype
d{-}{-}eftypeivar\_name
+\endgroup{}%
+\hbox{}-- Instance Variable of c--lass: t--ype d--eftypeivar\_name
\index[cp]{d--eftypeivar\_name of c--lass@\texttt{d{-}{-}eftypeivar\_name of
c{-}{-}lass}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}eftypeivar
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} Method on c{-}{-}lass: d{-}{-}efmethod\_name a{-}{-}rguments...
+\endgroup{}%
+\hbox{}-- Method on c--lass: d--efmethod\_name a--rguments...
\index[fn]{d--efmethod\_name on c--lass@\texttt{d{-}{-}efmethod\_name on
c{-}{-}lass}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}efmethod
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} Method on c{-}{-}lass: t{-}{-}ype d{-}{-}eftypemethod\_name
a{-}{-}rguments...
+\endgroup{}%
+\hbox{}-- Method on c--lass: t--ype d--eftypemethod\_name a--rguments...
\index[fn]{d--eftypemethod\_name on c--lass@\texttt{d{-}{-}eftypemethod\_name
on c{-}{-}lass}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}eftypemethod
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} Function:\leavevmode{}\\data-type2\leavevmode{}\\name2
arguments2...
+\endgroup{}%
+\hbox{}-- Function:\leavevmode{}\\data-type2\leavevmode{}\\name2 arguments2...
\index[fn]{name2@\texttt{name2}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
aaa2
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-}
c{-}{-}ategory2:\leavevmode{}\\t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypefn\_name2
+\endgroup{}%
+\hbox{}-- c--ategory2:\leavevmode{}\\t--ype2\leavevmode{}\\d--eftypefn\_name2
\index[fn]{d--eftypefn\_name2@\texttt{d{-}{-}eftypefn\_name2}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}eftypefn no arg2
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory2 on
c{-}{-}lass2:\leavevmode{}\\t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2
a{-}{-}rguments2...
+\endgroup{}%
+\hbox{}-- c--ategory2 on
c--lass2:\leavevmode{}\\t--ype2\leavevmode{}\\d--eftypeop\_name2 a--rguments2...
\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on
c{-}{-}lass2}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}eftypeop2
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory2 on
c{-}{-}lass2:\leavevmode{}\\t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypeop\_name2
+\endgroup{}%
+\hbox{}-- c--ategory2 on
c--lass2:\leavevmode{}\\t--ype2\leavevmode{}\\d--eftypeop\_name2
\index[fn]{d--eftypeop\_name2 on c--lass2@\texttt{d{-}{-}eftypeop\_name2 on
c{-}{-}lass2}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}eftypeop no arg2
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory2 of
c{-}{-}lass2:\leavevmode{}\\t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypecv\_name2
+\endgroup{}%
+\hbox{}-- c--ategory2 of
c--lass2:\leavevmode{}\\t--ype2\leavevmode{}\\d--eftypecv\_name2
\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of
c{-}{-}lass2}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}eftypecv2
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} c{-}{-}ategory2 of
c{-}{-}lass2:\leavevmode{}\\t{-}{-}ype2\leavevmode{}\\d{-}{-}eftypecv\_name2
a{-}{-}rguments2...
+\endgroup{}%
+\hbox{}-- c--ategory2 of
c--lass2:\leavevmode{}\\t--ype2\leavevmode{}\\d--eftypecv\_name2 a--rguments2...
\index[cp]{d--eftypecv\_name2 of c--lass2@\texttt{d{-}{-}eftypecv\_name2 of
c{-}{-}lass2}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
d{-}{-}eftypecv with arguments2
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} fun2: arg2
+\endgroup{}%
+\hbox{}-- fun2: arg2
\index[fn]{arg2@\texttt{arg2}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
fff2
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\texttt{@xref\{c{-}{-}{-}hapter@@, cross r{-}{-}{-}ef name@@,
t{-}{-}{-}itle@@, file n{-}{-}{-}ame@@, ma{-}{-}{-}nual@@\}} See Section
``t{-}{-}{-}itle@'' in \textit{ma{-}{-}{-}nual@}.
@@ -5814,22 +6187,33 @@ Section ``s{-}{-}ect,ion'' in \texttt{a comma, in file}
Section ``title with uref2 \href{href://http/myhost.com/index2.html}{uref2
(\nolinkurl{href://http/myhost.com/index2.html})}'' in \textit{printed manual
with uref4 \href{href://http/myhost.com/index4.html}{uref4
(\nolinkurl{href://http/myhost.com/index4.html})}}
\hyperref[anchor:chapter]{\chaptername~\ref*{anchor:chapter} [title with uref2
\href{href://http/myhost.com/index2.html}{uref2
(\nolinkurl{href://http/myhost.com/index2.html})}],
page~\pageref*{anchor:chapter}}
+\endgroup{}%
\begin{description}
+\item[]
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\item[{\parbox[b]{\linewidth}{%
-\textbf{a{-}{-}strong}}}]
+\textbf{a--strong}}}]
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
l{-}{-}ine
+\endgroup{}%
\end{description}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
-a{-}{-}asis\\
+a--asis\\
\index[cp]{a--asis@\texttt{a{-}{-}asis}}%
b
\index[cp]{b@\texttt{b}}%
}}]
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
l{-}{-}ine
+\endgroup{}%
\end{description}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
\GNUTexinfotablestyleemph{a}\\
@@ -5838,45 +6222,83 @@ l{-}{-}ine
\GNUTexinfotablestyleemph{b}
\index[fn]{b@\texttt{b}}%
}}]
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
l{-}{-}ine
+\endgroup{}%
\end{description}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{description}
-\item[] Title
+\item[]
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+Title
+\endgroup{}%
\item[{\parbox[b]{\linewidth}{%
\texttt{a{-}{-}code}}}]
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
Value{-}{-}table code
+\endgroup{}%
\end{description}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{description}
-\item[] Title
+\item[]
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+Title
+\endgroup{}%
\item[{\parbox[b]{\linewidth}{%
\GNUTexinfotablestylesamp{a{-}{-}samp}\\
\GNUTexinfotablestylesamp{a2{-}{-}samp}}}]
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
Value{-}{-}table samp
+\endgroup{}%
\end{description}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{mdframed}[style=GNUTexinfocartouche]
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
c{-}{-}artouche
+\endgroup{}%
\end{mdframed}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
g{-}{-}roupe
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
f{-}{-}lushleft
more text
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
f{-}{-}lushright
more text
+\endgroup{}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{center}
-ce{-}{-}ntered line
+ce--ntered line
\end{center}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{flushleft}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
r{-}{-}raggedright
more text
+\endgroup{}%
\end{flushleft}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{verbatim}
\input texinfo @c -*-texinfo-*-
@@ -5890,10 +6312,13 @@ This is a very simple texi manual @ <>.
@bye
\end{verbatim}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{verbatim}
in verbatim ''
\end{verbatim}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
@@ -5901,15 +6326,25 @@ in verbatim ''
$\frac{a < b \texttt{tex \hbox{ code }}}{b}$ ``
+\endgroup{}%
\GNUTexinfonopagebreakheading{\chapter*}{majorheading}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\GNUTexinfonopagebreakheading{\chapter*}{chapheading}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\GNUTexinfonopagebreakheading{\section*}{heading}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\GNUTexinfonopagebreakheading{\subsection*}{subheading}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\GNUTexinfonopagebreakheading{\subsubsection*}{subsubheading}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\texttt{@acronym\{{-}{-}a,an accronym @comma\{\} @enddots\{\}\}} {-}{-}a (an
accronym , \dots{})
@@ -5954,31 +6389,58 @@ Invalid use of @':\leavevmode{}\\
\texttt{@image\{,,,3{-}{-}xt\}}
+\endgroup{}%
\begin{itemize}[label=\emph{}]
-\item e{-}{-}mph item
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+e{-}{-}mph item
+\endgroup{}%
\end{itemize}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{itemize}[label=\emph{} after emph]
-\item e{-}{-}mph item
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+e{-}{-}mph item
+\endgroup{}%
\end{itemize}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\begin{itemize}[label=\textbullet{} a{-}{-}n itemize line]
-\item i{-}{-}tem 1
-\item i{-}{-}tem 2
+\endgroup{}%
+\begin{itemize}[label=\textbullet{} a--n itemize line]
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+i{-}{-}tem 1
+\endgroup{}%
+\item
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+i{-}{-}tem 2
+\endgroup{}%
\end{itemize}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{description}
+\item[]
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\item[{\parbox[b]{\linewidth}{%
a}}]
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
l{-}{-}ine
+\endgroup{}%
\end{description}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{description}
+\item[]
\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\item[{\parbox[b]{\linewidth}{%
-a{-}{-}missing style formatting}}]
+a--missing style formatting}}]
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
l{-}{-}ine
+\endgroup{}%
\end{description}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
+\endgroup{}%
\begin{description}
\item[{\parbox[b]{\linewidth}{%
a\\
@@ -5987,37 +6449,44 @@ a\\
b
\index[fn]{b@\texttt{b}}%
}}]
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
l{-}{-}ine
+\endgroup{}%
\end{description}
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
-\hbox{}{-}{-} fun:
+\endgroup{}%
+\hbox{}-- fun:
-\hbox{}{-}{-} truc: machin bidule chose and
+\hbox{}-- truc: machin bidule chose and
\index[fn]{machin@\texttt{machin}}%
-\hbox{}{-}{-} truc: machin bidule chose and after
+\hbox{}-- truc: machin bidule chose and after
\index[fn]{machin@\texttt{machin}}%
-\hbox{}{-}{-} truc: machin bidule chose and
+\hbox{}-- truc: machin bidule chose and
\index[fn]{machin@\texttt{machin}}%
-\hbox{}{-}{-} truc: machin bidule chose and and after
+\hbox{}-- truc: machin bidule chose and and after
\index[fn]{machin@\texttt{machin}}%
-\hbox{}{-}{-} truc: followed by a comment
+\hbox{}-- truc: followed by a comment
\index[fn]{followed@\texttt{followed}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
Various deff lines
-\hbox{}{-}{-} truc: after a deff item
+\endgroup{}%
+\hbox{}-- truc: after a deff item
\index[fn]{after@\texttt{after}}%
+\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax\ttfamily{}%
\texttt{@ref\{node\}} node
@@ -6134,8 +6603,6 @@ tp
\footnote{in footnote}
-\par\begingroup\obeylines\obeyspaces\frenchspacing\leftskip=2em\relax\parskip=0pt\relax{}%
-\endgroup{}%
\section{A section}
\label{anchor:s_002d_002dect_002cion}%
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * tp/Texinfo/Convert/LaTeX.pm (_open_preformatted) (_close_preformatted, _open_preformatted_command) (_close_preformatted_command, _open_preformatted_stack) (_close_preformatted_command, _convert): format preformatted type as preformatted, not preformatted commands. Preformatted commands only set up 'preformatted_context'.,
Patrice Dumas <=