bug-texinfo
[Top][All Lists]
Advanced

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

Re: texinfo.tex: accents in math mode


From: Oleg Katsitadze
Subject: Re: texinfo.tex: accents in math mode
Date: Sun, 6 Apr 2008 01:48:13 +0300
User-agent: Mutt/1.5.17 (2007-11-01)

On Sat, Apr 05, 2008 at 03:29:58PM +0200, John Mandereau wrote:
> \input texinfo
> @setfilename mathaccents.info
> @settitle Math accents
> @documentencoding UTF-8
> 
> blablabla @math{alteraciĆ³n > 0} blablabla
> 
> @bye

What you write inside @math is basically plain TeX.  And in plain TeX,
you can't use text accents in math mode.  Moreover, typesetting
multi-letter variable names in math mode will result in incorrect
kerning and lack of ligatures.  You should switch to text mode for
this:

  \input texinfo
  @setfilename mathaccents.info
  @settitle Math accents
  @documentencoding UTF-8

  blablabla @math{\hbox{\it alteraciĆ³n} > 0} blablabla

  @bye

HTH,
Oleg




reply via email to

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