blob: 22b624e46ed22f1cf45c736b27a0fb3ce402a1ec (
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
|
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{nimbusserif}
[2015/09/19 Style file for NimbusSerif (msharpe).]
\RequirePackage[T1]{fontenc}
\RequirePackage{textcomp}
\IfFileExists{xkeyval.sty}{
\newcommand*{\NimbusSerifscale}{1}
\RequirePackage{xkeyval}
\DeclareOptionX{scale}{\renewcommand*{\NimbusSerifscale}{##1}}
\DeclareOptionX{scaled}{\renewcommand*{\NimbusSerifscale}{##1}}
}{
\let\DeclareOptionX\DeclareOption
\let\ExecuteOptionsX\ExecuteOptions
\let\ProcessOptionsX\ProcessOptions
}
\ProcessOptionsX\relax
\renewcommand*{\rmdefault}{NimbusSerif}
\renewcommand*{\familydefault}{\rmdefault}
\endinput
|