From: Juergen Spitzmueller Date: Sat, 13 Jul 2019 15:46:43 +0000 (+0200) Subject: tex2lyx: extend support for some osf fonts. X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=77a5a66dd2dbdbefedd65d03fb426ba102992575;p=features.git tex2lyx: extend support for some osf fonts. --- diff --git a/src/tex2lyx/Preamble.cpp b/src/tex2lyx/Preamble.cpp index 89a120d8de..a5906d7c7b 100644 --- a/src/tex2lyx/Preamble.cpp +++ b/src/tex2lyx/Preamble.cpp @@ -854,6 +854,23 @@ void Preamble::handle_package(Parser &p, string const & name, } // noto as typewriter is handled in handling of \ttdefault // special cases are handled in handling of \rmdefault and \sfdefault + vector allopts = getVectorFromString(opts); + string xopts; + for (auto const & opt : allopts) { + if (opt == "rm") + continue; + if (opt == "sf") + continue; + if (opt == "nott") + continue; + if (opt == "osf") { + h_font_osf = "true"; + continue; + } + if (!xopts.empty()) + xopts += ", "; + xopts += opt; + } } if (name == "paratype") { @@ -941,6 +958,10 @@ void Preamble::handle_package(Parser &p, string const & name, vector allopts = getVectorFromString(opts); string xopts; for (auto const & opt : allopts) { + if (opt == "osf") { + h_font_osf = "true"; + continue; + } if (!xopts.empty()) xopts += ", "; xopts += opt;