public
Description: LaTeX dissertation template for the University of Wisconsin--Madison
Homepage: http://pages.cs.wisc.edu/~willb/
Clone URL: git://github.com/willb/wi-thesis-template.git
wi-thesis-template / dissertation.tex
100644 79 lines (60 sloc) 2.368 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
%!TEX TS-program = pdflatex
% dissertation.tex -- main dissertation file
%
% Wisconsin dissertation template
% Copyright (c) 2008-2009 William C. Benton. All rights reserved.
%
% This program can redistributed and/or modified under the terms
% of the LaTeX Project Public License Distributed from CTAN
% archives in directory macros/latex/base/lppl.txt; either
% version 1 of the License, or (at your option) any later version.
%
% This program includes other software that is licensed under the
% terms of the LPPL and the Perl Artistic License; see README for details.
%
% You, the user, still hold the copyright to any document you produce
% with this software (like your dissertation).
%
 
%%% You'll want ``oneside'' for the deposit version, but probably not for any versions that don't need to meet the UW requirements
\documentclass[12pt,oneside,letterpaper]{memoir}
 
\input{includes/preamble}
\input{includes/defs}
\input{includes/thesisdefs}
\svnidlong{$LastChangedBy$}{$LastChangedRevision$}{$LastChangedDate$}{$HeadURL: http://freevariable.com/dissertation/branches/diss-template/dissertation.tex $}
 
\clearpage\pagenumbering{roman} % This makes the page numbers Roman (i, ii, etc)
 
\title{Not Finished, But Abandoned}
\author{Buckingham B.~Badger}
\department{Computer Sciences}
 
\date{2008}
 
\begin{document}
 
%%% Uncomment the following if your .bib contains references that you will not
%%% explicitly cite, but that should be in the final bibliography:
% \nocite{*}
 
\ifpdf
\DeclareGraphicsExtensions{.pdf, .jpg, .tif}
\else
\DeclareGraphicsExtensions{.eps, .jpg}
\fi
 
\maketitle
 
%% Add \part declarations if you want, but it's not necessary
%\part{Preliminaries}
 
\include{frontmatter/frontmatter}
 
%% Now include the tex files for each chapter, like so (I put these in separate dirs):
% \include{intro/intro}
% \include{motivation/motivation}
% \include{related/related}
 
%% etc, etc.
 
%% Do you have appendices? If so, add them here, just like chapters.
% \begin{appendices}
% \include{backmatter/appendix1}
% \end{appendices}
 
%% Are you a big nerd with a colophon? Add it here.
\begin{colophon}
\input{backmatter/colophon}
\end{colophon}
 
%% McBride is a very nice style (some version is included in this distribution)
\bibliographystyle{mcbride}
\bibliography{your-bib-file}
 
%% Want an index? Neither did I.
%\printindex
 
\end{document}