The branch, master, has been updated. - Log -----------------------------------------------------------------
commit 348b5e6610e690539e3e114f6573b9c93f14a9c1 Author: Uwe Stöhr <[email protected]> Date: Mon Feb 11 14:40:35 2013 +0100 tex2lyx: support for fileformat change 444 biolinum is used if libertine is detected diff --git a/src/tex2lyx/Preamble.cpp b/src/tex2lyx/Preamble.cpp index 58cf930..7f48bfb 100644 --- a/src/tex2lyx/Preamble.cpp +++ b/src/tex2lyx/Preamble.cpp @@ -680,12 +680,16 @@ void Preamble::handle_package(Parser &p, string const & name, if (name == "libertine") { h_font_roman = "libertine-legacy"; + // this automatically invokes biolinum + h_font_sans = "biolinum"; if (opts == "osf") h_font_osf = "true"; } if (name == "libertine-type1") { h_font_roman = "libertine"; + // this automatically invokes biolinum + h_font_sans = "biolinum"; if (opts == "lining") h_font_osf = "false"; else diff --git a/src/tex2lyx/TODO.txt b/src/tex2lyx/TODO.txt index 28298b6..3db0090 100644 --- a/src/tex2lyx/TODO.txt +++ b/src/tex2lyx/TODO.txt @@ -66,8 +66,6 @@ Format LaTeX feature LyX feature 439 MinionPro.sty \font_roman, \font_osf 440 MinionPro.sty, \font_math 443 unicode-math.sty InsetMath* -444 libertine.sty, \font_osf, \font_sans - libertine-legacy.sty 445 URW Classico LaTeX font \font_sans uop \renewcommand{\sffamily}{uop} 446 Optional and required arguments InsetArgument ----------------------------------------------------------------------- Summary of changes: src/tex2lyx/Preamble.cpp | 4 ++++ src/tex2lyx/TODO.txt | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) hooks/post-receive -- The LyX Source Repository
