blob: f2addddcbac3f4d7581210fd8fc3760122b88efe (
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
|
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{step}
\RequirePackage{textcomp}
\IfFileExists{mweights.sty}{\RequirePackage{mweights}}{}
\IfFileExists{fontaxes.sty}{
\RequirePackage{fontaxes}
\fa@naming@exception{figures}{{superior}{proportional}}{Sup}
\fa@naming@exception{figures}{{superior}{tabular}}{Sup}
\def\sufigures{\@nomath\sufigures
\fontfigurestyle{superior}\selectfont}
\DeclareTextFontCommand{\textsu}{\sufigures}
\let\textsuperior\textsu
\fa@naming@exception{figures}{{inferior}{proportional}}{Inf}
\fa@naming@exception{figures}{{inferior}{tabular}}{Inf}
\def\infigures{\@nomath\infigures
\fontfigurestyle{inferior}\selectfont}
\DeclareTextFontCommand{\textin}{\infigures}
\let\textinferior\textin
}{}
\IfFileExists{xkeyval.sty}{
\newcommand*{\STEP@scale}{1}
\RequirePackage{xkeyval}
\DeclareOptionX{scale}{\renewcommand*{\STEP@scale}{##1}}
\DeclareOptionX{scaled}{\renewcommand*{\STEP@scale}{##1}}
}{
\let\DeclareOptionX\DeclareOption
\let\ExecuteOptionsX\ExecuteOptions
\let\ProcessOptionsX\ProcessOptions
}
\DeclareOptionX{lining}{\edef\STEP@figurestyle{LF}}
\DeclareOptionX{oldstyle}{\edef\STEP@figurestyle{OsF}}
\DeclareOptionX{tabular}{\edef\STEP@figurealign{T}}
\DeclareOptionX{mainfont}{
\renewcommand{\familydefault}{\rmdefault}
}
\DeclareOptionX{bold}{\edef\bfseries@rm{bold}}
\DeclareOptionX{regular}{\edef\mdseries@rm{regular}}
\ExecuteOptionsX{lining,tabular,bold,regular}
\ProcessOptionsX\relax
\DeclareTextFontCommand{\lining}{\fontfamily{STEP-\STEP@figurealign LF}\selectfont}
\DeclareTextFontCommand{\oldstyle}{\fontfamily{STEP-\STEP@figurealign OsF}\selectfont}
\renewcommand*
{\rmdefault}
{STEP-\STEP@figurealign\STEP@figurestyle}
\let\oldstylenums\oldstyle
\endinput
|