-
Notifications
You must be signed in to change notification settings - Fork 2
/
dissertation.tex
109 lines (88 loc) · 2.96 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
% ---------------------------------------------------------------------------- %
% file: disseration.tex
% author: YOUR NAME HERE
%
% LaTeX based on work by Sarah Kreidler and Peter DeWitt, updated by
% Michael Pilosov and Jordan Hall
% (github.com/dewittpe/ucd-dissertation-template) updated in 2020 to
% (https://github.com/mathematicalmichael/dissertation-template/)
% ---------------------------------------------------------------------------- %
\documentclass[english,10pt]{ucdenver-dissertation}
\input{env/usepackages.tex}
\input{env/newcommands.tex}
\input{env/pythonenv.tex}
% enables the following:
% \pythonexternal{demo.py}
% \begin{python}-\end{python}
% \pythoninline{import bet}
\input{env/bashenv.tex}
% enables the same functions, but with bash.
\usepackage{lipsum}
\widowpenalty=10000
\clubpenalty=10000
\renewcommand{\floatpagefraction}{0.7}%
% Draft and Time stamp in the header and footer.
\usepackage{fancyhdr}
\usepackage{datetime}
% ---------------------------------------------------------------------------- %
% FRONT MATTER
\makeatletter
\title{A FORMAL TITLE}
\authorLast{LAST NAME}
\authorFirst{FIRST NAME}
\authorMiddle{MIDDLE NAME}
\education{
B.S., University of Colorado: Denver, YYYY \\
M.S., University of Colorado: Denver, YYYY
}
\school{University of Colorado: Denver, College of Liberal Arts and Sciences}
\program{Applied Mathematics}
\date{2020}
\submitDate{Final day of semester (e.g., December 12, 2020)}
\advisor{Advisor Name}
\advisorTitle{Professor}
%\coadvisor{Co-advisor Two} %% CO-ADVISOR
%\coadvisorTitle{Professor} %% CO-ADVISOR
\committeeChair{Chair Member}
\committeeMembers{
Second Member \\
Third Member \\
Fourth Member \\
Fifth Member
}
% dedication - this is also optional
\dedication{DEDICATION}
% preface
\preface{
\input{src/abstract.tex}
%\input{notation.tex}
}
% acknowledgement - this is optional
\acknowledgements{
\input{src/acknowledgements.tex}
}
\makeatother
% ---------------------------------------------------------------------------- %
% ---------------------------------------------------------------------------- %
% Begin Document
\begin{document}
\chead{\small \color{red} DRAFT. Last compiled at \currenttime \ on \today }
\input{src/main.tex}
% ---------------------------------------------------------------------------- %
\renewcommand\bibname{REFERENCES}
\singlespacing
\nocite{*}
\bibliographystyle{ref/ucdDissertation}
\bibliography{ref/references.bib,ref/references-code.bib}
\doublespacing
% ---------------------------------------------------------------------------- %
% DeWitt: had to do some TOC shenanigans, so please use the ucdappendix command
% instead of regular old \appendix
\ucdappendix
%\input{notation.tex}
% ---------------------------------------------------------------------------- %
% additional appendices
\input{src/appendix.tex}
% ---------------------------------------------------------------------------- %
\end{document}
% ---------------------------------------------------------------------------- %