-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathexample.tex
More file actions
88 lines (70 loc) · 2.82 KB
/
Copy pathexample.tex
File metadata and controls
88 lines (70 loc) · 2.82 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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%% Preamble
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%% The uwthesis.sty file relies on the memoir class!
%%%% You should be using the memoir class anyway; it makes life easier:
%%%% http://www.ctan.org/tex-archive/macros/latex/contrib/memoir/
\documentclass[oneside, letterpaper, 12pt, oldfontcommands]{memoir}
%%%% Import uwthesis.sty to get official formatting, then set your variables.
\usepackage{uwthesis}
\settitle{An Awesome Thesis}
\setauthor{Robert Generic}
\setdepartment{Physics}
\doctors % or \masters
\setgraddate{2012}
\setdefensedate{2 May 2012} % or whatever format you want
%%%% Members of the Final Oral Committee (FOC)
%%%% Give name, rank, and department
%%%%
\setfoca{George Washington}{Associate Professor}{Physics} % <- Your advisor
\setfocb{John Adams}{Professor}{Physics}
\setfocc{Thomas Jefferson}{Assistant Professor}{Physics}
\setfocd{James Madison}{Professor}{Physics}
\setfoce{James Monroe}{Professor}{Materials Engineering}
\setfocf{Grover Cleveland}{Professor}{Zoology}
%%%% Your abstract, used for the UMI abstract and in your front matter
\setabstract{%
An awesome study of important things is presented.
I further describe my project here, but I will not exceed 350 words,
for that is strictly forbidden for the abstract of this document.
If you're submitting online, you can even put symbols
in your abstract and title, but you'll have to find out the HTML
character codes for the various symbols.
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%% Document
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
% Tell the memoir class to set up lowercase roman for pagination, etc.
\frontmatter
%%%% Uncomment this to create a UMI abstract page.
%%%% If you are submitting electronically, however, this page is unnecessary.
% \theumiabstract
% The title page
\thetitlepage
\clearpage
% The copyright page, if you want to pay the fee and register copyright.
\thecopyrightpage
\cleardoublepage
% These above pages should not be counted, so we reset the counter to 1.
\setcounter{page}{1}
% An abstract may be required by your department.
\section{Abstract}
\uwabstract
\cleardoublepage
% Acknowledgements go here if you want to include them.
\section{Acknowledgements}
This is where any acknowledgements would go.
\clearpage
% Table of contents
\maxtocdepth{subsection}
\tableofcontents* % the * means that there isn't an entry for the TOC itself
% \clearpage
% \listoffigures % if you have any figures
% \clearpage
% \listoftables % if you have any tables
% Tell the memoir class to set up normal pagination, etc. for the main doc
\mainmatter
\chapter{Introduction}
And this is where your hard work goes.
\end{document}