-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathdissertation.tex
137 lines (105 loc) · 3.56 KB
/
dissertation.tex
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
% arara: pdflatex
% arara: biber
% arara: pdflatex
% arara: pdflatex
\documentclass[12pt, notitlepage, twoside]{report}
% Document Metafiles (Do Not Reorder!) ===================================== %
\input{metafiles/preamble.tex}
\input{metafiles/booleans.tex}
\input{metafiles/structure.tex}
% Document Structure Options =============================================== %
\sidenotetrue
%\sidenotefalse
\figurestrue
% \figuresfalse
\tablestrue
% \tablesfalse
% If you want sidenotes, we'll load some additional packages. Nothing for you to worry about.
\input{metafiles/sidenotes.tex}
\begin{document}
% Title and Author Settings ================================================ %
\newcommand{\doctitle}{Your Dissertation Title Will Go Here}
\newcommand{\docauthor}{Your Name Goes Here}
%--------------------------ABSTRACT---------------------------%
\input{metafiles/abstractpage.tex}
\makeabstract{%
This section of the page is where your abstract will go. Fill in this spot in the dissertation.tex file with your abstract. Doctoral 350 words max, 150 max for masters.
}%
%--------------------------TITLE PAGE---------------------------%
\input{metafiles/titlepage.tex}
\newcommand{\degreesearned}{%
B.S., University of Georgia, 2018\\
Enter only degrees already completed. Follow example above\\
If degree was obtained outside of the US, the country \\
of the school and date obtained will need to be provided.
}%
\newcommand{\degreetype}{[Dissertation or Thesis]}
\newcommand{\degreetitle}{[Doctor or Master]}
\newcommand{\degreename}{[Degree Name]}
\newcommand{\degreeyear}{2020}
\maketitlepage
%--------------------------COPYRIGHT---------------------------%
\input{metafiles/copyright.tex}
\makecopyright{2020}
%--------------------------APPROVAL---------------------------%
\newpage
\thispagestyle{empty}
\vspace*{18pt}
\begin{center}
\textsc{\doctitle}\\[18pt]
by\\[18pt]
\textsc{\docauthor}
\end{center}
\vfill
\begin{flushright}
\begin{tabular}{ll}
Major Professor: & Major Prof \\ [8pt]
Committee: & Prof 1 \\
& Prof 2 \\
& Prof 3 \\
\end{tabular}
\end{flushright}
\vspace*{3cm}
\begin{flushleft}
Electronic Version Approved:\\[12pt]
Ron Walcott\\
Dean of the Graduate School\\
The University of Georgia\\
Month Year
\end{flushleft}
\vspace*{1.5cm}
% Dedication ============================================================== %
\subfile{subfiles/dedication}
% Acknowledgements ======================================================== %
\subfile{subfiles/acknowledgements}
% Table of Contents ======================================================= %
\setcounter{tocdepth}{1}
\tableofcontents
\iffigures
\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures
\fi
\iftables
\addcontentsline{toc}{chapter}{\listtablename}
\listoftables
\fi
\clearpage
\pagenumbering{arabic}
% Document Body =========================================================== %
% ------------------------------------------------------------------------- %
\subfile{subfiles/chapter1}
\subfile{subfiles/chapter2}
\subfile{subfiles/chapter3}
\subfile{subfiles/chapter4}
\subfile{subfiles/conclusion}
% ------------------------------------------------------------------------- %
% ========================================================================= %
%-----------------------APPENDICES----------------------------%
\begin{appendices}
\subfile{subfiles/appendices}
\end{appendices}
%-----------------------BIBLIOGRAPHY---------------------------%
\newpage
\addcontentsline{toc}{chapter}{Bibliography} %add bib to the TOC
\printbibliography[title={Bibliography}]
\end{document}