Jean-Marc Lasgouttes wrote: > Georg> Am Sonntag, 29. August 2004 06:16 schrieb Jeremy C. Reed: > Georg> This is probably a problem of the ascii export and not tex2lyx. > Georg> Please send a minimal example .tex file (and the resulting .lyx > Georg> file) so that we can be sure. > > The problem is indeed in the ascii export which reads basically: > > int MathHullInset::plaintext(Buffer const &, ostream & os, > OutputParams const &) const > { > WriteStream wi(os, false, true); > wi << ' ' << cell(0) << ' '; > return wi.line(); > } > > So the spaces are added intentionally. The question is probably: why?
I don't know. IMHO they should not be there. If there is a space in the .lyx file after the formula, it will also appear in the plaintext output. If there is no space, there is probably a reason for that. > See attached file if you really need an example. Thanks, Jeremy sent a link to his files which I checked already. Georg