willb / wi-thesis-template

LaTeX dissertation template for the University of Wisconsin--Madison

wi-thesis-template / frontmatter / frontmatter.tex
100644 98 lines (74 sloc) 2.495 kb
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
\svnidlong{$LastChangedBy$}{$LastChangedRevision$}{$LastChangedDate$}{$HeadURL: http://freevariable.com/dissertation/branches/diss-template/frontmatter/frontmatter.tex $}
\vcinfo{}
 
%%% SOME OF THIS CODE IS ADAPTED FROM THE VENERABLE withesis.cls
 
% COPYRIGHT PAGE
% - To include a copyright page use \copyrightpage
\copyrightpage
 
% DEDICATION
\begin{dedication}
\emph{Please insert your dedication here.}
\end{dedication}
 
%% BEGIN PAGESTYLE
 
%%% You can pick a pagestyle if you want; see the memoir class
%%% documentation for more info. The default ``deposit'' option meets
%%% the UW thesis typesetting requirements but is probably
%%% unsatisfactory for making a version of your dissertation that
%%% won't be deposited to the graduate school (e.g. for web or a nice
%%% printed copy)
 
\chapterstyle{deposit}
\pagestyle{deposit}
 
 
% ACKNOWLEDGMENTS
\begin{acks}
\input{frontmatter/acks}
\end{acks}
 
% CONTENTS, TABLES, FIGURES
\renewcommand{\printtoctitle}[1]{\chapter*{#1}}
\renewcommand{\printloftitle}[1]{\chapter*{#1}}
\renewcommand{\printlottitle}[1]{\chapter*{#1}}
 
\renewcommand{\tocmark}{}
\renewcommand{\lofmark}{}
\renewcommand{\lotmark}{}
 
\renewcommand{\tocheadstart}{}
\renewcommand{\lofheadstart}{}
\renewcommand{\lotheadstart}{}
 
\renewcommand{\aftertoctitle}{}
\renewcommand{\afterloftitle}{}
\renewcommand{\afterlottitle}{}
 
\renewcommand{\cftchapterfont}{\normalfont}
\renewcommand{\cftsectionfont}{\itshape}
\renewcommand{\cftchapterpagefont}{\normalfont}
\renewcommand{\cftchapterpresnum}{\bfseries}
\renewcommand{\cftchapterleader}{}
\renewcommand{\cftsectionleader}{}
\renewcommand{\cftchapterafterpnum}{\cftparfillskip}
\renewcommand{\cftsectionafterpnum}{\cftparfillskip}
 
% \captionnamefont{\small\sffamily}
% \captiontitlefont{\small\sffamily}
 
% \renewcommand{\contentsname}{contents}
% \renewcommand{\listfigurename}{list of figures}
% \renewcommand{\listtablename}{list of tables}
 
\tableofcontents
 
\clearpage
\listoftables
 
\clearpage
\listoffigures
 
\clearpage
% NOMENCLATURE
% \begin{conventions}
% % \begin{description}
% % \item{\makebox[0.75in][l]{term}
% % \parbox[t]{5in}{definition\\}}
% % \end{description}
% \input{conventions}
% \end{conventions}
 
\advisorname{Gottlob Frege}
\advisortitle{Professor}
% ABSTRACT
\begin{umiabstract}
  \input{frontmatter/abstract}
\end{umiabstract}
 
\begin{abstract}
  \input{frontmatter/abstract}
\end{abstract}
 
\clearpage\pagenumbering{arabic}
 
%%% END STUFF TAKEN FROM WITHESIS EXAMPLE FILE