From e0c6872cf40896c7be36b11dcc744620f10adf1d Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Mon, 2 Sep 2019 13:46:59 +0900 Subject: Initial commit --- macros/latex/contrib/libertine/Changes | 12 +++++++++ macros/latex/contrib/libertine/README | 11 ++++++++ macros/latex/contrib/libertine/libertine.sty | 38 ++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 macros/latex/contrib/libertine/Changes create mode 100644 macros/latex/contrib/libertine/README create mode 100644 macros/latex/contrib/libertine/libertine.sty (limited to 'macros/latex/contrib/libertine') diff --git a/macros/latex/contrib/libertine/Changes b/macros/latex/contrib/libertine/Changes new file mode 100644 index 0000000000..7544953a5a --- /dev/null +++ b/macros/latex/contrib/libertine/Changes @@ -0,0 +1,12 @@ +libertine.sty -------- +v. 0.03 2012-10-19 - set macros for slshape to italic + for the optional argument SlantedAsItalic + The latest Libertine/Biolinum have no special font + for slanted glyphs. With this option one gets + the italic version. Otherwise it will be upright + for slanted. +v. 0.02 2012-09-24 - pass options to package not class + - added a README +v. 0.01 2012-09-24 - first CTAN version + + diff --git a/macros/latex/contrib/libertine/README b/macros/latex/contrib/libertine/README new file mode 100644 index 0000000000..69e47875b7 --- /dev/null +++ b/macros/latex/contrib/libertine/README @@ -0,0 +1,11 @@ +This package allows a compatibility to the old package +libertine which loads Biolinum _and_ Libertine. +All options are passes to the new packages +biolinum-type1 and libertine-type1. The default +font encoding is set to T1. + +This package has only one optional argument +"SlantedAsItalic" which sets the macros \textsl +and \slshape to the same meaning as the variants +for italic. The current versions of Libertine/Biolinum +have no more a slanted font. One has to use italic. diff --git a/macros/latex/contrib/libertine/libertine.sty b/macros/latex/contrib/libertine/libertine.sty new file mode 100644 index 0000000000..5605be5bcf --- /dev/null +++ b/macros/latex/contrib/libertine/libertine.sty @@ -0,0 +1,38 @@ +% LaTeX-Package for libertine Type-1 +% +% Herbert Voss herbert@dante.de +% +% (License LPPL) +% +\def\libertineVersion{0.03}% +\def\libertineVersionDate{2012/10/19} +% +\ProvidesPackage{libertine}[% + \libertineVersionDate\space-\space\libertineVersion: + Font Libertine/Biolinum - Herbert Voss] +% +\newif\ifhv@italic\hv@italicfalse +\DeclareOption{SlantedAsItalic}{\hv@italictrue} + +\DeclareOption*{ + \PassOptionsToPackage{\CurrentOption}{biolinum-type1}% + \PassOptionsToPackage{\CurrentOption}{libertine-type1}% +} +\ProcessOptions\relax +% +\RequirePackage{biolinum-type1} +\RequirePackage{libertine-type1} +\RequirePackage[LY1,T1]{fontenc} +% +\ifhv@italic + \let\textsl\textit % there is no more a slanted variant + \let\slshape\itshape +\fi +% +\endinput + +%% This package allows a compatibility to the old package +%% libertine which loads Biolinum _and_ Libertine. +%% All options are passes to the new packages +%% biolinum-type1 and libertine-type1. The default +%% font encoding is set to T1. -- cgit v1.2.3