blob: 88a2357c7877451bced3469e8b4b485031f55f8f (
plain)
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
|
\documentclass{uafthesis}
\usepackage{fixltx2e} % Allows \(\) in captions, amongst other things.
\usepackage{ppl} % The Paladino font
\usepackage{amsmath, amssymb, amsfonts} % Thanks, AMS!
\usepackage{graphicx, float} % Graphics stuff
\usepackage{verbatim} % Mostly for the comment environment.
%\usepackage{chapterbib} % This is an option for those bundling papers.
\usepackage[square]{natbib}
%\usepackage{tocbibind} % This fixes the "bibliography in ToC" problem.
% Use with chapterbib.
\usepackage{url} % I quote some URLs in the bibliography"
\input{custom-macros.tex}
\begin{document}
\title{An Example Thesis Document}
\author{Joshua Holbrook}
\degreeyear{2011}
\degreemonth{May}
\degree{Master of Arts}
\department{Dept. of Fresh Beats}
\numberofmembers{3} % Make sure this is right! The grad school hates empty
% signature lines.
\prevdegrees{B.A.M.F.}
\college{College of Pwning Noobs}
\makesig
\maketitle
% Wondering when to use `input' and when to use `include?'
% read http://en.wikibooks.org/wiki/LaTeX/Basics#Big_Projects .
\begin{abstract}
\input abstract.tex
\end{abstract}
%Table of Contents and such
\tableofcontents
\listoffigures
\listoftables
%\listofothermaterials
\listofappendices
\begin{acknowledgements}
\input acknowledgements.tex
\end{acknowledgements}
\begin{quotepage}
\input quotepage.tex
\end{quotepage}
\include{ch1}
\include{ch2}
\nocite{wikibook}
\bibliographystyle{agufull08}
\bibliography{example}
\appendix
\include{apx1}
\end{document}
|