Juergen Spitzmueller wrote: > Index: src/paragraph_pimpl.C > =================================================================== > --- src/paragraph_pimpl.C (Revision 16185) > +++ src/paragraph_pimpl.C (Arbeitskopie) > @@ -651,6 +651,21 @@ void Paragraph::Pimpl::simpleTeXSpecialC > } > break; > > + case 0x20ac: // EURO SIGN > + if ((bparams.inputenc == "latin9" || > + bparams.inputenc == "cp1251") || > + (bparams.inputenc == "auto" && > + (font.language()->encoding()->latexName() > + == "latin9" || > + font.language()->encoding()->latexName() > + == "cp1251"))) { > + os << "\\texteuro{}"; > + column += 11; > + } else { > + os.put(c); > + } > + break;
I don't understand that logic. I always thought that you could directly enter the euro symbol as a character if you use latin9, so why do you output \texteuro? I would expect to output \texteuro for all encodings except of latin9, cp1251 and utf8. Georg