blob: 26fd1d3e8982829a6f5ca8e4d67322a9009abfd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{Oswald}
[2021/10/17 (Carl-Clemens Ebinger and autoinst) Style file for Oswald fonts.]
\RequirePackage{xkeyval}
\newcommand*{\Zeroswald@scale}{1}
\DeclareOptionX{scale}{\renewcommand*{\Zeroswald@scale}{#1}}
\DeclareOptionX{scaled}{\renewcommand*{\Zeroswald@scale}{#1}}
\DeclareOptionX{lining}{\edef\Zeroswald@figurestyle{LF}}
\DeclareOptionX{tabular}{\edef\Zeroswald@figurealign{T}}
\DeclareOptionX{mainfont}{
\renewcommand{\familydefault}{\sfdefault}
}
\DeclareOptionX{semibold}{\edef\bfseries@rm{semibold}}
\DeclareOptionX{bold}{\edef\bfseries@rm{bold}}
\DeclareOptionX{medium}{\edef\mdseries@rm{medium}}
\DeclareOptionX{regular}{\edef\mdseries@rm{regular}}
\ExecuteOptionsX{lining,tabular}
\ProcessOptionsX\relax
\RequirePackage{fontenc,textcomp}
\RequirePackage{ifthen}
\RequirePackage{mweights}
\IfFileExists{fontaxes.sty}{
\RequirePackage{fontaxes}
\fa@naming@exception{figures}{{superior}{proportional}}{Sup}
\fa@naming@exception{figures}{{superior}{tabular}}{Sup}
\def\supfigures{\@nomath\supfigures
\fontfigurestyle{superior}\selectfont}
\let\sufigures\supfigures
\DeclareTextFontCommand{\textsup}{\supfigures}
\let\textsu\textsup
\let\textsuperior\textsup
}{}
% Here we implement the scale=MatchLowercase option.
% If this is given, we must compute the correct value of
% the "\Zeroswald@scale" parameter before loading the .fd files;
% but to determine that value we of course need the font's x-height.
% To avoid triggering the loading of .fd files,
% we use plain TeX's \font primitive to load the testfont.
% We then compute the ratio of the current x-height to our font's x-height;
% this is the "\Zeroswald@scale" we will pass to the .fd files.
\ifthenelse{\equal{\Zeroswald@scale}{MatchLowercase}}
{ \newlength{\Zeroswald@currentx}
\settoheight{\Zeroswald@currentx}{x}
\newlength{\Zeroswald@xheight}
\settoheight{\Zeroswald@xheight}
{{\font\testfont=0swald-Regular-tlf-ot1 at \f@size pt\testfont x}}
\renewcommand*{\Zeroswald@scale}
{\strip@pt\dimexpr\number\numexpr\number\dimexpr\Zeroswald@currentx\relax*65536/\number\dimexpr\Zeroswald@xheight\relax\relax sp\relax}}
{}
\renewcommand*
{\sfdefault}
{Zeroswald-\Zeroswald@figurealign\Zeroswald@figurestyle}
\endinput
|