-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathputhesis.cls
153 lines (153 loc) · 4.15 KB
/
puthesis.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
%%
%% This is file `puthesis.cls',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% puthesis.dtx (with options: `class')
%%
%% IMPORTANT NOTICE:
%%
%% For the copyright see the source file.
%%
%% You are *not* allowed to modify this file.
%%
%% You are *not* allowed to distribute this file.
%% For distribution of the original source see
%% the terms for copying and modification in the file puthesis.dtx.
%%
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{puthesis}
[2011/02/16 v1.4.2 Princeton University Thesis class]
\RequirePackage{setspace}
% the next two lines are needed to make packages using xcolor happy
\RequirePackage{xcolor}
%\def\current@color{ Black}
\newcounter{subyear}
\setcounter{subyear}{\number\year}
\def\submitted#1{\gdef\@submitted{#1}}
\def\@submittedyear{\ifnum\month>10 \stepcounter{subyear}\thesubyear
\else\thesubyear\fi}
\def\@submittedmonth{\ifnum\month>10 January\else\ifnum\month>8 November
\else\ifnum\month>6 September\else June\fi\fi\fi}
\def\adviser#1{\gdef\@adviser{#1}}
\long\def\@abstract{\@latex@error{No \noexpand\abstract given}\@ehc}
\newcommand*{\frontmatter}{
\pagenumbering{roman}
}
\newcommand*{\mainmatter}{\pagenumbering{arabic}}
\newcommand*{\makelot}{}
\newcommand*{\makelof}{}
\newcommand*{\makelos}{}
\newcommand*{\begincmd}{
\doublespacing
\frontmatter\maketitlepage\makecopyrightpage\makeabstract
\makeacknowledgements\makededication\tableofcontents\clearpage
\makelot\clearpage\makelof\clearpage\makelos
\clearpage\mainmatter}
\def\@submitted{\@submittedmonth~\@submittedyear}
\def\@dept{Computer Science}
\def\@deptpref{Department of}
\def\departmentprefix#1{\gdef\@deptpref{#1}}
\def\department#1{\gdef\@dept{#1}}
\long\def\acknowledgements#1{\gdef\@acknowledgements{#1}}
\def\dedication#1{\gdef\@dedication{#1}}
\newcommand{\maketitlepage}{{
\thispagestyle{empty}
\sc
\vspace*{0in}
\begin{center}
\LARGE \@title
\end{center}
\vspace{.6in}
\begin{center}
\@author
\end{center}
\vspace{.6in}
\begin{center}
A Dissertation \\
Presented to the Faculty \\
of Princeton University \\
in Candidacy for the Degree \\
of Doctor of Philosophy
\end{center}
\vspace{.3in}
\begin{center}
Recommended for Acceptance \\
by the \@deptpref \\
\@dept \\
Adviser: \@adviser
\end{center}
\vspace{.3in}
\begin{center}
\@submitted
\end{center}
\clearpage
}}
\newcommand*{\makecopyrightpage}{
\thispagestyle{empty}
\vspace*{0in}
\begin{center}
\copyright\ Copyright by \@author, \number\year. \\
All Rights Reserved
\end{center}
\clearpage}
\newcommand*{\makeabstract}{
\newpage
\addcontentsline{toc}{section}{Abstract}
\begin{center}
\Large \textbf{Abstract}
\end{center}
\@abstract
\clearpage
}
\def\makeacknowledgements{
\ifx\@acknowledgements\undefined
\else
\addcontentsline{toc}{section}{Acknowledgements}
\begin{center}
\Large \textbf{Acknowledgements}
\end{center}
\@acknowledgements
\clearpage
\fi
}
\def\makededication{
\ifx\@dedication\undefined
\else
\vspace*{1.5in}
\begin{flushright}
\@dedication
\end{flushright}
\clearpage
\fi
}
\DeclareOption{myorder}{
\renewcommand*{\begincmd}{\doublespacing}}
\DeclareOption{lot}{\renewcommand*{\makelot}{
\addcontentsline{toc}{section}{List of Tables}\listoftables}}
\DeclareOption{lof}{\renewcommand*{\makelof}{
\addcontentsline{toc}{section}{List of Figures}\listoffigures}}
\DeclareOption{los}{
\renewcommand*{\makelos}{
\RequirePackage{losymbol}
\section*{List of Symbols\@mkboth {LIST OF SYMBOLS}{LIST OF SYMBOLS}}
\@starttoc{los}
\addcontentsline{toc}{section}{List of Symbols}
}
}
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{report}}
\ProcessOptions
%% Not necessary to specify the point size - we inherit it from above
%% \LoadClass[12pt]{report}
\LoadClass{report}
\setlength{\oddsidemargin}{.5in} %{.4375in}
\setlength{\evensidemargin}{.5in} %{.4375in}
\setlength{\topmargin}{-.5in} %{-.5625in}
\setlength{\textheight}{9in}
\setlength{\textwidth}{6in}
\long\def\abstract#1{\gdef\@abstract{#1}}
\AtBeginDocument{\begincmd}
\endinput
%%
%% End of file `puthesis.cls'.