texmacs-dev
[Top][All Lists]
Advanced

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

Re: [Texmacs-dev] Latex->Texmacs conversion


From: Gwenael Gabard
Subject: Re: [Texmacs-dev] Latex->Texmacs conversion
Date: Mon, 26 Aug 2002 15:37:37 +0200
User-agent: KMail/1.4.2

   Hi,

> > (1) Accented i (like \^i, \"i ...) are not correctly translated. In
> > parsetex.cc the line 507:
> >   'e', 'e', 'e', 'e', 16 , 16 , 16 , 16 ,
> > should be replaced by:
> >   'e', 'e', 'e', 'e', 'i', 'i', 'i', 'i',
> I believe that the current version is correct,
> because 16 stands for an i without the dot.
   Ok, so the line 562 in parsetex.cc
      if (v=="\\i") c1= (char) 16;
should become
      if ((v=="\\i") || (v="i")) c1= (char) 16;

Gwenael





reply via email to

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