summaryrefslogtreecommitdiff
path: root/fonts/gudea/latex/Gudea.sty
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2021-01-10 03:01:42 +0000
committerNorbert Preining <norbert@preining.info>2021-01-10 03:01:42 +0000
commitef57fc77f3c939d55d51322d428e40a5a3c9ed8e (patch)
treec296d1bf47b8ffa67bb75b1843c2e0786fb0634c /fonts/gudea/latex/Gudea.sty
parent0b5fb424a9fab0df06b2d7b9f8edc803cb89a760 (diff)
CTAN sync 202101100301
Diffstat (limited to 'fonts/gudea/latex/Gudea.sty')
-rw-r--r--fonts/gudea/latex/Gudea.sty50
1 files changed, 50 insertions, 0 deletions
diff --git a/fonts/gudea/latex/Gudea.sty b/fonts/gudea/latex/Gudea.sty
new file mode 100644
index 0000000000..03c6b3f0db
--- /dev/null
+++ b/fonts/gudea/latex/Gudea.sty
@@ -0,0 +1,50 @@
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{Gudea}
+ [2021/01/09 (Carl-Clemens Ebinger & autoinst) Style file for Gudea fonts.]
+
+\RequirePackage{xkeyval}
+\newcommand*{\Gudea@scale}{1}
+\DeclareOptionX{scale}{\renewcommand*{\Gudea@scale}{#1}}
+\DeclareOptionX{scaled}{\renewcommand*{\Gudea@scale}{#1}}
+
+\DeclareOptionX{lining}{\edef\Gudea@figurestyle{LF}}
+\DeclareOptionX{tabular}{\edef\Gudea@figurealign{T}}
+\DeclareOptionX{mainfont}{
+ \renewcommand{\familydefault}{\rmdefault}
+}
+\DeclareOptionX{bold}{\edef\bfseries@rm{bold}}
+\DeclareOptionX{regular}{\edef\mdseries@rm{regular}}
+\ExecuteOptionsX{lining,tabular}
+\ProcessOptionsX\relax
+
+\RequirePackage{fontenc,textcomp}
+\RequirePackage{ifthen}
+\RequirePackage{mweights}
+
+\IfFileExists{fontaxes.sty}{
+ \RequirePackage{fontaxes}
+}{}
+
+% Here we implement the scale=MatchLowercase option.
+% If this is given, we must compute the correct value of
+% the "\Gudea@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 "\Gudea@scale" we will pass to the .fd files.
+\ifthenelse{\equal{\Gudea@scale}{MatchLowercase}}
+ { \newlength{\Gudea@currentx}
+ \settoheight{\Gudea@currentx}{x}
+ \newlength{\Gudea@xheight}
+ \settoheight{\Gudea@xheight}
+ {{\font\testfont=Gudea-tlf-ot1 at \f@size pt\testfont x}}
+ \renewcommand*{\Gudea@scale}
+ {\strip@pt\dimexpr\number\numexpr\number\dimexpr\Gudea@currentx\relax*65536/\number\dimexpr\Gudea@xheight\relax\relax sp\relax}}
+ {}
+
+\renewcommand*
+ {\rmdefault}
+ {Gudea-\Gudea@figurealign\Gudea@figurestyle}
+
+\endinput