-
Notifications
You must be signed in to change notification settings - Fork 0
/
ucetd.cls
429 lines (351 loc) · 12.6 KB
/
ucetd.cls
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
\NeedsTeXFormat{LaTeX2e}[1995/06/01]
\ProvidesClass{ucetd}[2012/05/06 University of Chicago Electronic Theses and Dissertations]
%%%%%%%%%%%%%%%%%%%%%%%%% Helper commands %%%%%%%%%%%%%%%%%%%%%%%%%
% These commands deal with options that set variables
\newcommand{\etdDeclVarArg}[2]{\newcommand{#1}{#2}}
\newcommand{\etdVarArg}[3]{\DeclareOption{#2}{\renewcommand{#1}{#3}}}
% These commands deal with options that execute latex
\newcommand{\etdDeclArg}[2]{#2}
\newcommand{\etdArg}[2]{\DeclareOption{#1}{#2}}
% Declare a super class and pass it remaining unprocessed arguments
\newcommand{\etdSuperClass}[2]{
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{#1}}
\ProcessOptions\relax
\LoadClass[#2]{#1}
}
% Default copyright text
\newcommand{\etdCopyrightText}{
\null\vfill
\centerline{Copyright \copyright\ \number\year\ by \@author}
\centerline{All Rights Reserved}
\vskip 15pt\relax
}
% Preliminary sections following the table of contents and preceding the body are front matter
\newcommand{\etdFrontMatter}[1]{
\chapter*{#1}
\addcontentsline{toc}{chapter}{#1}
}
% Special front matter that appears before the table of contents
\newcommand{\etdPreTOCMatter}[1]{
\chapter*{}
\thispagestyle{empty}
\begin{center}
#1
\end{center}
}
% Starts the main matter of the document
\newcommand{\etdMainMatter}{
\clearpage
% Switch to arabic numbers on pages
\pagenumbering{arabic}
}
% Commands to follow the title page
\newcommand{\etdPostTitle}{
% Setup page numbering
\pagenumbering{roman}
\addtocounter{page}{1}
}
% UC ETD title page format
\newcommand{\etdTitlePage} {
\begin{titlepage}
\begin{center}
\rule{0in}{0.55in} % Artificial extra [old=0.95in] margin. Why not vspace?
THE UNIVERSITY OF CHICAGO\\
\vspace{0.8in}
\MakeUppercase{\@title}\\
\vspace{0.8in}
A DISSERTATION SUBMITTED TO\\
THE FACULTY OF THE DIVISION OF THE \MakeUppercase{\@division}\\
IN CANDIDACY FOR THE DEGREE OF\\
\MakeUppercase{\@degree}\\
\ \\
DEPARTMENT OF \MakeUppercase{\@department}\\
\vspace{0.8in}
BY\\
\MakeUppercase{\@author}\\
\vspace{0.8in}
CHICAGO, ILLINOIS\\
\MakeUppercase{\@date}
\vspace*{0.45in}
\end{center}
\end{titlepage}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% Load required packages
%%
\RequirePackage{setspace}[1998/04/8]
%%
%% Default Settings
%%
% Default font point size
\newcommand{\etdDefaultPointSize}{12pt}
% Default line spacing
%\newcommand{\etdDefaultSpacing}{\setstretch{1.37}}
\newcommand{\etdDefaultSpacing}{\doublespacing}
% Parent document class
\newcommand{\etdParentClass}{report}
% Adds to the margin size (initially 1in)
\newcommand{\etdMarginAdjust}{0.0in}
\newcommand{\etdHeadingMarginAdjust}{0.0in}
%%
%% Declare arguments/options
%%
% TOC Options
\let\iftocflag=\iffalse
\DeclareOption{tocchapterhead}{\let\iftocflag=\iftrue}
% Chapter Style Options
\newcommand{\etdChapterStyle}[1]{\MakeUppercase{#1}}
\DeclareOption{plainchapterheads}{\renewcommand{\etdChapterStyle}[1]{#1}}
% Options for setting point size
\etdDeclVarArg{\etdPtSize}{\etdDefaultPointSize}
\etdVarArg{\etdPtSize}{10pt}{10pt}
\etdVarArg{\etdPtSize}{11pt}{11pt}
\etdVarArg{\etdPtSize}{12pt}{12pt}
% Option for using letter paper
\etdArg{letterpaper}{\PassOptionsToClass{letterpaper}{report}}
% Options to set spacing
\etdDeclVarArg{\etdSpacing}{\etdDefaultSpacing}
\etdVarArg{\etdSpacing}{doublespace}{\doublespacing}
\etdVarArg{\etdSpacing}{defaultspace}{\etdDefaultSpacing}
\etdVarArg{\etdSpacing}{onehalfspace}{\onehalfspace}
\etdVarArg{\etdSpacing}{singlespace}{\singlespace}
% Options to set chapter head style
\newcommand{\etdChapterHeadFormat}[1]{\MakeUppercase{#1}}
\etdArg{plainchaptertitles}{\renewcommand{\etdChapterHeadFormat}[1]{#1}}
\etdArg{capschaptertitles}{\newcommand{\etdChapterHeadFormat}[1]{\MakeUppercase{#1}}}
% Enable/Disable printing of CHAPTER and APPENDIX in TOC
\let\iftocflag=\iffalse
\etdArg{tocchapterhead}{\let\iftocflag=\iftrue}
%%
%% Load superclass for document
%%
\etdSuperClass{\etdParentClass}{\etdPtSize}
%%
%% Do some init stuff
%%
% Ported from old file, sets up spacing between footnotes
\RequirePackage[splitrule]{footmisc}
\setlength{\footnotesep}{\baselineskip}
\let\oldfootnoterule = \footnoterule
\renewcommand{\footnoterule}{\kern 0.4\footnotesep\oldfootnoterule\kern-0.4\footnotesep}
\renewcommand{\@makefntext}[1]{\noindent\makebox[2.5em][r]{\@thefnmark.\ }#1}
% Setup default size of math text
\AtBeginDocument{\DeclareMathSizes{12}{12}{10}{8}}
% Setup spacing
\etdSpacing
%%%%%%%%%%%%%%%%%%%%%%%%% User Commands %%%%%%%%%%%%%%%%%%%%%%%%%%
% Define text to go on the dedication/copyright/epigraph page
% Usage:
% \dedication{dedication text}
\newcommand{\dedication}[1]{\newcommand{\etdDedicationText}{#1}}
% Usage:
% \epigraph{epigraph text}
\newcommand{\epigraph}[1]{\newcommand{\etdEpigraphText}{#1}}
% Output a dedication/copyright/epigraph page
\newcommand{\makededication}{\etdPreTOCMatter{\etdDedicationText}}
\newcommand{\makecopyright}{\etdPreTOCMatter{\etdCopyrightText}}
\newcommand{\makeepigraph}{\etdPreTOCMatter{\etdEpigraphText}}
% Begin an abstract or acknowledgements page
\renewcommand{\abstract}{\etdFrontMatter{Abstract}}
\newcommand{\acknowledgments}{\etdFrontMatter{Acknowledgments}}
% Start the main thesis body
\newcommand{\mainmatter}{\etdMainMatter}
% Bibliography
% Change ft2,master,refs below to point to your library.bib files
\newcommand{\makebibliography}{
\newpage
\addcontentsline{toc}{chapter}{References}
\begin{singlespace}
\bibliography{ft2,master,refs}
\bibliographystyle{plain}
\end{singlespace}
}
%
% Title page related commands
%
% Basic information
\renewcommand{\title}[1]{\gdef\@title{#1}}
\renewcommand{\author}[1]{\gdef\@author{#1}}
\newcommand{\department}[1]{\gdef\@department{#1}}
\newcommand{\division}[1]{\gdef\@division{#1}}
\newcommand{\degree}[1]{\gdef\@degree{#1}}
\renewcommand{\date}[1]{\gdef\@date{#1}}
% Output title page
\renewcommand{\maketitle}{
\etdTitlePage
\etdPostTitle
}
% You MUST call this command where the title would normally be emitted if you omit the title page
\newcommand{\omittitle}{\etdPostTitle}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%% Internal Formatting %%%%%%%%%%%%%%%%%%%%%%%%%
%
% The following was mostly ported from ccw_chithesis_YH with a few modifications
%
% Chapter/Section formatting
\renewcommand{\@makechapterhead}[1]{{
\setlength{\topmargin}{0.5in} % really 1.5in, added by bph
% to meet OAP standards
\normalfont\large\bfseries
%\begin{center}
\etdChapterStyle{\normalfont\Large\bfseries\noindent \@chapapp{ \thechapter}} % CHAPTER # or APPENDIX
\etdChapterStyle{\normalfont\LARGE\bfseries\noindent #1} % TITLE OF CHAPTER
%\end{center}
\setlength{\topmargin}{0in} % back to 1in
\vspace*{0.5in}
}}
\renewcommand{\@makeschapterhead}[1]{{
\setlength{\topmargin}{0.5in} % really 1.5in, added by bph
% to meet OAP standards
\normalfont\large\bfseries
\begin{center}
\etdChapterHeadFormat{#1} % TITLE OF CHAPTER
\end{center}
\setlength{\topmargin}{0in} % back to 1in
\vspace*{0.5in}
}}
\renewcommand\section{\@startsection {section}{1}{\z@}%
{-3.5ex \@plus -1ex \@minus -.2ex}%
{2.3ex \@plus.2ex}%
{\normalfont\large\bfseries}}
\renewcommand\subsection{\@startsection{subsection}{2}{\z@}%
{-3.25ex\@plus -1ex \@minus -.2ex}%
{1.5ex \@plus .2ex}%
{\normalfont\large\itshape}}
\renewcommand\subsubsection{\@startsection{subsubsection}{3}{\z@}%
{-3.25ex\@plus -1ex \@minus -.2ex}%
{1.5ex \@plus .2ex}%
{\normalfont\large}}
\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
{3.25ex \@plus1ex \@minus.2ex}%
{-1em}%
{\normalfont\normalsize\bfseries}}
\renewcommand\subparagraph{\@startsection{subparagraph}{5}{\parindent}%
{3.25ex \@plus1ex \@minus .2ex}%
{-1em}%
{\normalfont\normalsize\itshape}}
\renewcommand*\l@part[2]{%
\ifnum \c@tocdepth >\m@ne
\addpenalty{-\@highpenalty}%
\vskip 1.0em \@plus\p@
\setlength\@tempdima{1.5em}%
\begingroup
\parindent \z@ \rightskip \@pnumwidth
\parfillskip -\@pnumwidth
\leavevmode
\advance\leftskip\@tempdima
\hskip -\leftskip
{\bf \etdChapterHeadFormat{#1}}\nobreak
\hfil \nobreak\hb@xt@\@pnumwidth{\hss}\par
\penalty\@highpenalty
\endgroup
\fi}
\renewcommand*\l@chapter[2]{%
\ifnum \c@tocdepth >\m@ne
\addpenalty{-\@highpenalty}%
\vskip 1.0em \@plus\p@
\setlength\@tempdima{1.5em}%
\begingroup
\parindent \z@ \rightskip \@pnumwidth
\parfillskip -\@pnumwidth
\leavevmode
\advance\leftskip\@tempdima
\hskip -\leftskip
\etdChapterHeadFormat{#1}\nobreak
% CCW: The following 3 lines add dots to the chapter TOC listings
\leaders\hbox{$\m@th
\mkern \@dotsep mu\hbox{.}\mkern \@dotsep
mu$}\hfill
\hfil \nobreak\hb@xt@\@pnumwidth{\hss #2}\par
\penalty\@highpenalty
\endgroup
\fi}
% Add "CHAPTER"/"APPENDIX" headings to TOC before first of each.
% If you want these words to be a bit bigger, remove "\normalsize"
% from the definition below. If you want the words to be bold,
% remove "\mdseries". (CCW)
\iftocflag
\let\old@chapter = \@chapter
\def\@chapter[#1]#2{\ifnum\c@chapter=\z@%
\addtocontents{toc}{\protect\contentsline{part}%
{\mdseries\normalsize\etchapterheadstyle{\@chapapp}}{}}%
\fi%
\old@chapter[{#1}]{#2}}
\fi
% Change names of table of contents and bibliography
\renewcommand{\contentsname}{Table of Contents}
\renewcommand{\bibname}{References}
% Change the margins to fit requirements
%%\setlength{\oddsidemargin}{-0.325in} % really 1.5in
%%\setlength{\evensidemargin}{-0.325in} % really 1.5in
%\setlength{\oddsidemargin}{0.in}
%\setlength{\evensidemargin}{0.in}
%%\setlength{\textwidth}{6.875in}
%\setlength{\textwidth}{6.5in}
%%\setlength{\topmargin}{0.in} % really 1in
%\setlength{\headheight}{-0.375in}
%\setlength{\headsep}{0.in}
%%\setlength{\textheight}{8.5in}
%\setlength{\textheight}{9.3in}
%\setlength{\footskip}{0.3in}
%%%%%%
%% Completely re-doing margins --mvz
%%%%%%
% Main text box is the width/height of the paper minus 2in
\setlength{\textwidth}{6.5in}
\setlength{\textheight}{8.75in} % + footskip (0.25) = 9.00in
% Only the left and top margins can be defined
% 1in is added to given values
\setlength{\topmargin}{0.0in}
\setlength{\evensidemargin}{0.0in}
\setlength{\oddsidemargin}{0.0in}
% The top margin is also affected by the headhight and headsep
\setlength{\headheight}{0.0in}
\setlength{\headsep}{0.0in}
% The bottom margin is also affected by the footskip
% i.e. the length of the page has the following markers:
% top of text at 1.00in, bottom of text at 9.75in,
% page number at 10.00in, bottom of page at 11.00in
\setlength{\footskip}{0.25in}
% Making sure absolutely nothing passes the right margin
\setlength{\hfuzz}{0.0pt}
% Changing where the page numbers go on pages that aren't the first
% page of a chapter.
%\pagestyle{myheadings}
%\pagestyle{plain}
%\markright{}
% Make the table of contents, etc., single spaced
%
% bph added lists of tables/figures to table of contents.
% CCW fixed bug where multipage LOT/LOF were listed in TOC with wrong
% page number.
\let\oldtableofcontents = \tableofcontents
\renewcommand{\tableofcontents}{
\begin{singlespace}
\oldtableofcontents
\end{singlespace}
}
% The following defines the list of tables and figures and removes any
% indentations. If your latex compiler has different default options, you'll
% need to change the following.
\renewcommand*{\l@table}{\@dottedtocline{1}{0em}{2.3em}}
\let\oldlistoftables = \listoftables
\renewcommand{\listoftables}{
\begin{singlespace}
% This works b/c multiple \newpage's are treated as one
\newpage
\addcontentsline{toc}{chapter}{List of Tables}
\oldlistoftables
\end{singlespace}
}
\renewcommand*{\l@figure}{\@dottedtocline{1}{0em}{2.3em}}
\let\oldlistoffigures = \listoffigures
\renewcommand{\listoffigures}{
\begin{singlespace}
% This works b/c multiple \newpage's are treated as one
\newpage
\addcontentsline{toc}{chapter}{List of Figures}
\oldlistoffigures
\end{singlespace}
}