blob: a2506259b7226f7754fbd7a33f3ce748237bcd3b (
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
52
53
54
|
%% 12 APR 91: \Section command provided by Jackie Damrau + Will Ward.
%% 13 APR 91: \Section too high on the page, so inserted a voffset (Ch.)
%% 15 APR 91: text width and height set (Ch.)
\input report.sty %% default report style, 10pt font
\font\Sectionfont=cmbxsl10 scaled \magstep2 %% \Large = 14.40pt
\font\Subsectionfont=cmbxsl10 scaled \magstep1 %% \large = 12pt
\font\bsl=cmbxsl10 %% \normal 10pt
\textwidth=29pc
\textheight=43pc
\voffset=-2pc
\overfullrule=0pt \hfuzz=5pt
\newcommand{\Section}[1]{\section*{\centering%
\hrule\hrule \vskip.5pc
{\Sectionfont #1}
\vskip.5pc \hrule\hrule
}
}
%% Reggie's \Subsection (6 MAY 91):
\newcommand{\Subsection}[1]{\subsection*{\centering%
\centerline{\vrule width 6cm height .5pt} \vskip 6pt
{{\Subsectionfont #1}}
\centerline{\vrule width 6cm height .5pt} \vskip 6pt
}
}
%% Abbreviations and Logos (some copped from tugboat.com):
%% for the METAFONT logo font:
\font\manual=logo10
\def\MF{{\manual META}\-{\manual FONT}}
\def\TUG{\TeX{} Users Group}
\def\TTN{{\sl\TeX{} and TUG NEWS}}
\newcount\TestCount
\def\LaTeX{\TestCount=\the\fam \leavevmode L\raise.42ex
\hbox{$\fam\TestCount\scriptstyle\kern-.3em A$}\kern-.15em\TeX}
\def\AmSTeX{{\the\textfont2 A}\kern-.1667em\lower.5ex\hbox
{\the\textfont2 M}\kern-.125em{\the\textfont2 S}-\TeX}
\def\careof{\leavevmode\hbox{\raise.75ex\hbox{c}\kern-.15em
/\kern-.125em\smash{\lower.3ex\hbox{o}}} \ignorespaces}
\let\ts=\thinspace
\let\nl=\newline
%%%%%% END OF FILE %%%%%
|