blob: c21193584aeb90f436df61c81860e8a62309c7a4 (
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
|
%%
%% This is file `couriers.sty',
%%
\ProvidesPackage{couriers}
[2004/07/10 Scaled Courier
(HS)
]
\RequirePackage{keyval}
\define@key{Cou}{scaled}[0.95]{%
\def\Cr@scale{#1}}
\def\ProcessOptionsWithKV#1{%
\let\@tempc\relax
\let\Cr@tempa\@empty
\@for\CurrentOption:=\@classoptionslist\do{%
\@ifundefined{KV@#1@\CurrentOption}%
{}%
{\edef\Cr@tempa{\Cr@tempa,\CurrentOption,}}%
}%
\edef\Cr@tempa{%
\noexpand\setkeys{#1}{%
\Cr@tempa\@ptionlist{\@currname.\@currext}%
}%
}%
\Cr@tempa
}
\ProcessOptionsWithKV{Cou}
\AtEndOfPackage{%
\let\@unprocessedoptions\relax
}
\renewcommand{\ttdefault}{pcrs}
\endinput
%%
%% End of file `couriers.sty'.
|