Texinfo version 4.13a (4.13a.dfsg.1-4ubunut1)
Texinfo manual (version 4.13, 18 September 2008)
Ubuntu 9.10 (Karmic Koala)
uname -a:
Linux localhost 2.6.31-19-generic #56-Ubuntu SMP Thu Jan 28
02:39:34 UTC 2010 x86_64 GNU/Linux
See the attached file "spacing.texinfo". The problem exists
regardless of the -p option:
texi2dvi -c spacing.texinfo
texi2dvi -c -p spacing.texinfo
The problem: @var and @emph disrupt the spacing in an
@example block.
\input texinfo @c -*-texinfo-*-
@setfilename spacing.texinfo
@settitle spacing bug
Is this a bug? I want @code{@@var} and @code{@@emph} to preserve
the monospacing in an @code{@@example} block, but they don't:
@example
command var1 var2 var3@
@i{## unformatted text (monospace)}
command @var{var1} @var{var2} @var{var3}@
@i{## @@var screws up the spacing}
command emph emph emph@
@i{## unformatted text (monospace)}
command @emph{emph} @emph{emph} @emph{emph}@
@i{## so does @@emph}
@end example
@bye