blob: 615802b30a2f90b1de799c06532d1bc0fb0fe2ab (
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
|
%%
%% This is file `couriers.sty',
%%
% This program may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.2
% of this license or (at your option) any later version.
% The latest version of this license is in
% http://www.latex-project.org/lppl.txt
% and version 1.2 or later is part of all distributions of LaTeX
% version 1999/12/01 or later.
\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'.
|