-
Notifications
You must be signed in to change notification settings - Fork 3
/
thesis.tex
153 lines (120 loc) · 3.33 KB
/
thesis.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
%% thesis.tex 2014/04/11
%
% Based on sample files of unknown authorship.
%
% The Current Maintainer of this work is Paul Vojta.
%
% https://math.berkeley.edu/~vojta/tex/ucbthesis-phd.html
\documentclass{ucbthesis}
\usepackage[dvipdfmx]{graphicx} % needs to be up top
\usepackage{bmpsize}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage[sorting=none]{biblatex}
\usepackage{color}
\usepackage{etoolbox}
\usepackage[hidelinks]{hyperref}
\usepackage[super]{nth}
\usepackage{notoccite}
\newcommand{\bo}{\mathbf\Omega}
\newcommand{\vecr}{\textbf{r}}
\newcommand{\sigt}{\Sigma_t}
\newcommand{\sigs}{\Sigma_s}
\newenvironment{psmallmatrix}
{\left(\begin{smallmatrix}}
{\end{smallmatrix}\right)}
\makeatletter
\let\oldcite\cite
\pretocmd{\listoffigures}{\def\cite{\ignorespaces\@gobble}}{}{}
\apptocmd{\listoffigures}{\let\cite\oldcite}{}{}
\makeatother
% Get job name
\def\StripPrefix#1>{}
\def\jobis#1{FF\fi
\def\predicate{#1}%
\edef\predicate{\expandafter\StripPrefix\meaning\predicate}%
\edef\job{\jobname}%
\ifx\job\predicate
}
% To compile this file, run "latex thesis", then "biber thesis"
% (or "bibtex thesis", if the output from latex asks for that instead),
% and then "latex thesis" (without the quotes in each case).
% Double spacing, if you want it. Do not use for the final copy.
% \def\dsp{\def\baselinestretch{2.0}\large\normalsize}
% \dsp
% If the Grad. Division insists that the first paragraph of a section
% be indented (like the others), then include this line:
% \usepackage{indentfirst}
\newtheorem{theorem}{Jibberish}
\bibliography{references}
\hyphenation{mar-gin-al-ia}
\hyphenation{bra-va-do}
\hyphenation{ACRONYM}
\begin{document}
% Declarations for Front Matter
\title{Advanced Nuclear Engineering for a Better World}
\author{Nancy Neutron}
\degreesemester{Spring}
\degreeyear{2049}
\degree{Doctor of Philosophy}
\chair{Professor Sofia Syntax}
\othermembers{
Associate Professor Sally Slurm \\
Professor Esther Electron
}
\numberofmembers{3}
\field{Engineering -- Nuclear Engineering}
% Designated Emphasis -- this is optional, and rare
%\emphasis{Computational and Data Science and Engineering}
\campus{Berkeley}
\if\jobis{thesis}
\maketitle
% Delete (or comment out) the \approvalpage line for the final version.
\approvalpage
\copyrightpage
\include{chp/abstract}
\fi
\begin{frontmatter}
% You can delete the \clearpage lines if you don't want these to start on
% separate pages.
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
% to show paragraphs in ToC (good for an outline, stylistically ugly):
% \setcounter{secnumdepth}{4}
% \setcounter{tocdepth}{4}
\if\jobis{thesis}
\tableofcontents
\clearpage
\listoffigures
\clearpage
\listoftables
\begin{acknowledgements}
THANKS EVERYONE
\vspace{\fill}
\footnotesize{This material is based upon work supported under a prestigious
graduate fellowship as well as supported by the Department
of Excellence under Award Number(s) 31337.}
\end{acknowledgements}
\fi
\end{frontmatter}
\pagestyle{headings}
% (Optional) \part{First Part}
\include{chp/intro}
\include{chp/background}
\include{chp/method}
\include{chp/results}
\include{chp/conclusion}
\if\jobis{thesis}
\printbibliography
\else
\newpage
\renewcommand{\thepage}{}
\printbibliography
\fi
%\appendix
% \include{mathbg}
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: