summaryrefslogtreecommitdiff
path: root/2005/flow-accounting-ols2005/OLS2005/Texmf/ols.cls
blob: bfa1a6030ee1e90cabd4db9956124f49a3e8111d (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
%%
%% 'ols.cls': Ottawa Linux Symposium house style.
%%
%% Based on Usenix/IEEE style file by Matthew Ward, David Beazley,
%% De Clarke, et al.  Revised for OLS by John Lockhart.  Rewritten as
%% a class file, and 'proceedings' mode added, by Zack Weinberg.
%%
%%
\NeedsTeXFormat{LaTeX2e}[1995/12/01]
\ProvidesClass{ols}[2005/01/31 v1.1   Ottawa Linux Symposium house style]

% This class faces a dilemma.  On the one hand, article.cls does a lot
% of work which we would prefer not to duplicate.  On the other hand,
% a surprisingly large amount of that work is wrong for OLS style,
% particularly in proceedings mode, and has to be overridden.
% Presently I think the tradeoff is in favor of reading article.cls
% and then overriding big chunks of it.

% Options: formatting mode.
% Galley mode suppresses everything that gets in the way of
% composition: page numbers, references, and as many 'this doesn't
% fit' type diagnostics as possible.
\newif\if@galley % checked by \ref wrapper
\newif\if@proceedings % checked by \maketitle etc.

\DeclareOption{galley}
  {\@galleytrue\@proceedingsfalse%
   \setlength{\overfullrule}{0pt}%
   \hbadness10000\vbadness10000\tolerance10000\let\@largefloatcheck\@empty%
   \AtBeginDocument{\pagestyle{empty}}}
% Proof mode corresponds to standard article.cls' ``draft'' mode.
\DeclareOption{proof}
  {\@galleyfalse\@proceedingsfalse%
   \setlength{\overfullrule}{5pt}}
% Final mode corresponds to standard article.cls' ``final'' mode.
% This is the default.
\DeclareOption{final}
  {\@galleyfalse\@proceedingsfalse%
   \setlength{\overfullrule}{0pt}}
% Proceedings mode is used when formatting the entire proceedings as
% one volume.  In this mode, we use fancy page headings, leave a
% gutter for binding, inject a blank page at the end of the document
% if it ends on a right-hand page, and write out some extra
% information for use by the scripts that glue all the .dvi files
% together.
\DeclareOption{proceedings}
  {\@galleyfalse\@proceedingstrue
   \setlength{\overfullrule}{0pt}%
   \PassOptionsToPackage{twoside}{geometry}%
   \PassOptionsToClass{twoside}{article}%
   \AtBeginDocument{\pagestyle{proceedings}}}

% Enable use of article.cls leqno,fleqn,openbib options.
\DeclareOption{leqno}{\PassOptionsToClass{leqno}{article}}
\DeclareOption{fleqn}{\PassOptionsToClass{fleqn}{article}}
\DeclareOption{openbib}{\PassOptionsToClass{openbib}{article}}

\ExecuteOptions{final}
\ProcessOptions\relax

\LoadClass[12pt,twocolumn]{article}

% Global page layout.  The author does not get a choice: 12 point
% text, two columns, US letter paper, no marginal notes.  The geometry
% package does most of the work.
% If your version of the geometry package is too old,
% please get a new one from http://www.ctan.org, or ask "papers" for help.
\RequirePackage[paper=letterpaper,textheight=9in,textwidth=6.5in,%
                heightrounded,twocolumn,columnsep=0.25in]{geometry}[2002/07/08] % >= v3.2
\setlength\columnseprule{0pt}

% Blank-line-between-paragraphs style.
\setlength\parindent{\z@}
\setlength\parskip{12\p@ \@plus3\p@ \@minus3\p@}

% Section titles are bold and 18 point, 2 blank lines before, 1 after.
\renewcommand\section%
  {\@startsection {section}{1}{\z@}%
                  {24\p@ \@plus6\p@ \@minus6\p@}%
                  {12\p@ \@plus3\p@ \@minus3\p@}%
                  {\large\bfseries}}

% Subsection titles are bold and 12 point, 1 blank line before, 1 after.
\renewcommand\subsection%
  {\@startsection {subsection}{2}{\z@}%
                  {12\p@ \@plus3\p@ \@minus3\p@}%
                  {12\p@ \@plus3\p@ \@minus3\p@}%
                  {\normalsize\bfseries}}

% Font and encoding choice. To consider: a different choice of fonts
% might be more pleasant.
\RequirePackage[T1]{fontenc}
\RequirePackage{mathptmx}
%% times and mathptmx both set up tt/sans
% \RequirePackage[scaled=.92]{helvet}
% \RequirePackage{courier}
\RequirePackage{times}



% Title handling.  The article.cls definition of \maketitle and
% \@maketitle must be completely overridden.  For \maketitle, the
% principal differences are the removal of the undesirable
% \thispagestyle, the removal of the unnecessary single-column logic,
% and the added logic to handle proceedings mode.  For \@maketitle,
% the principal change is the addition of \subtitle.

% Define \shortauthor along the lines of \author; the \author value
% tends to contain stuff that cannot be safely written to a toc file
% (and to be too long, to boot).  Same same \subtitle.
\def\shortauthor#1{\gdef\@shortauthor{#1}}
\def\@shortauthor{\@latex@error{No \noexpand\shortauthor given}\@ehc}
\def\subtitle#1{\gdef\@subtitle{\\{\normalsize #1}}}
\def\@subtitle{} % You don't have to have a subtitle.

\renewcommand\maketitle{\par
 \if@proceedings
   \date{}% Do not print a date in the proceedings.
   % Write out a table-of-contents fragment giving the paper title and
   % authors.
   \addcontentsline{toc}{toctitle}{\@title}%
   \addcontentsline{toc}{tocauthor}{\@shortauthor}%
 \fi
 \begingroup
    \renewcommand\thefootnote{\@fnsymbol\c@footnote}%
    \def\@makefnmark{\rlap{\@textsuperscript{\normalfont\@thefnmark}}}%
    \long\def\@makefntext##1{\parindent 1em\noindent
            \hb@xt@1.8em{%
                \hss\@textsuperscript{\normalfont\@thefnmark}}##1}%
    \ifnum \col@number=\@ne
       \@maketitle
    \else
       \twocolumn[\@maketitle]%
    \fi
  \endgroup
  \setcounter{footnote}{0}%
  \global\let\thanks\relax
  \global\let\maketitle\relax
  \global\let\@maketitle\relax
  \global\let\@thanks\@empty
  \global\let\@author\@empty
  \global\let\@shortauthor\@empty
  \global\let\@date\@empty
  % In proceedings, \@title is preserved for use in left-hand-page headers.
  \if@proceedings \else
    \global\let\@title\@empty
  \fi
  \global\let\title\relax
  \global\let\author\relax
  \global\let\shortauthor\relax
  \global\let\date\relax
  \global\let\and\relax
}

\renewcommand\@maketitle{%
  \newpage
  \null
  \vskip 2em%
  \begin{center}%
  \let \footnote \thanks
    {\LARGE \@title \@subtitle \par}%
    \vskip 1.5em%
    {\large
      \lineskip .5em%
      \begin{tabular}[t]{c}%
        \@author
      \end{tabular}\par}%
    \vskip 1em%
    {\large \@date}%
  \end{center}%
  \par
  \vskip 1.5em}

% Proceedings page style.
% The wrapper file is expected to define \ProcName.
\newcommand\ps@proceedings{%
  % No footers.
  \let\@oddfoot\@empty
  \let\@evenfoot\@empty
  % Odd header gives the page number and name of the proceedings volume.
  \renewcommand\@oddhead{%
    \leaders\hrule\hfil\kern0.25em\relax
    {\slshape \ProcName}~~\textbullet~~\thepage}
  % Even header gives the page number and title of the current
  % article.
  \renewcommand\@evenhead{%
    \thepage~~\textbullet~~{\slshape \@title} \kern0.25em \leaders\hrule\hfil}
}

% Special begin-document and end-document handling for proceedings
% mode.  The wrapper file is expected to define \ProcPage.
\if@proceedings
  \AtBeginDocument{\setcounter{page}{\ProcPage}\thispagestyle{empty}}
  \AtEndDocument{\cleardoublepage
    % This is sorta like lastpage.sty, and sorta not (it generates the
    % page number of the first page of the next document, not the page
    % number of the last page of this document).  The \immediate is
    % necessary because we just did \cleardoublepage, so there isn't
    % going to be another invocation of the output routine.
    \immediate\write\@auxout{\string\newlabel{NextPage}{{}{\thepage}}}}
\fi

% In galley mode, cross-references are suppressed: \label is ignored,
% \ref, \pageref, \cite print ``[refname]'' in typewriter font.  The
% point is mainly to make LaTeX shut up about undefined references
% while one is composing.  (If you use varioref, we cannot help you.)
\if@galley
  \renewcommand{\label}[1]{}
  \renewcommand{\ref}[1]%
    {{\footnotesize\ttfamily\bfseries [#1]}}
  \let\pageref=\ref
  \let\cite=\ref
\fi

% Prevent the use of a number of commands whose functionality is
% incompatible with the paper-concatenation logic or the page layout.
\newcommand\@notproceedings[3]{%
  \renewcommand{#1}[#2]{%
    \ClassError{ols}{\string #1 not supported.}%
    {Papers to be collected into proceedings may not have #3.%
     \MessageBreak Press RETURN to ignore and continue.}}}

\newcommand\@notlayout[3]{%
  \renewcommand{#1}[#2]{%
    \ClassError{ols}{\string #1 not supported.}%
    {This page layout does not permit #3.%
     \MessageBreak Press RETURN to ignore and continue.}}}

\@notlayout{\marginpar}{1}{marginal notes}
% For now, allow \thispagestyle because FrontMatter needs it.
%\@notlayout{\thispagestyle}{1}{page style overrides}
\@notproceedings{\tableofcontents}{0}{tables of contents}
\@notproceedings{\listoffigures}{0}{lists of figures}
\@notproceedings{\listoftables}{0}{lists of tables}
\@notproceedings{\glossary}{1}{glossaries}
\@notproceedings{\index}{1}{indices}

% Provide a means to tell if we're running under pdflatex
\newif\ifpdf
\ifx\pdfoutput\undefined
\pdffalse
\else
\pdfoutput=1
\pdftrue
\fi


\endinput
personal git repositories of Harald Welte. Your mileage may vary