-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththesis.tex
executable file
·174 lines (141 loc) · 4.53 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
%% thesis.tex 2014/04/11
%
% Based on sample files of unknown authorship.
%
% The Current Maintainer of this work is Paul Vojta.
\documentclass{ucbthesis}
\usepackage[sorting=none,
backend=biber,
]{biblatex}
% \addbibresource{references}
\bibliography{references}
% \usepackage[backend=bibtex]{biblatex}
\usepackage[english]{babel}
\usepackage{setspace}
% \usepackage{threeparttable}
\usepackage{amssymb}
%% The amsthm package provides extended theorem environments
\usepackage{amsthm}
\usepackage{epsfig}
% \usepackage{times}
\renewcommand{\ttdefault}{cmtt}
\usepackage{amsmath}
\usepackage{graphicx} % for graphics files
\usepackage{subcaption}
\usepackage{tabularx}
\usepackage{listings}
% Draw figures yourself
\usepackage{tikz}
% writing elements
\usepackage[version=3]{mhchem}
% The float package HAS to load before hyperref
\usepackage{float} % for psuedocode formatting
\usepackage{xspace}
% from Denovo Methods Manual
\usepackage{mathrsfs}
\usepackage[mathcal]{euscript}
\usepackage{color}
\usepackage{array}
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
% \usepackage{hyperref}
% \usepackage[parfill]{parskip}
% \hypersetup{linkcolor=black, citecolor=black, urlcolor=black}
\usepackage{hyperref}
\usepackage{multirow}
\usepackage{notoccite}
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}
%
%
% Add math definitions
\DeclareMathOperator\erf{erf}
% 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}
\begin{document}
% Declarations for Front Matter
\title{FW/CADIS-$\Omega$: An Angle-Informed Hybrid Method for Neutron Transport}
\author{Madicken Munk}
\degreesemester{Summer}
\degreeyear{2017}
\degree{Doctor of Philosophy}
\chair{Assistant Professor Rachel N. Slaybaugh}
\othermembers{Assistant Professor Massimiliano Fratoni \\
Professor John Harte \\
Dr. Tara Pandya}
\numberofmembers{4}
% Previous degrees are no longer to be listed on the title page.
% \prevdegrees{B.A. (University of Northern South Dakota at Hoople) 1978 \\
% M.S. (Ed's School of Quantum Mechanics and Muffler Repair) 1989}
\field{Engineering - Nuclear Engineering}
% Designated Emphasis -- this is optional, and rare
% \emphasis{Colloidal Telemetry}
% This is optional, and rare
% \jointinstitution{University of Western Maryland}
% This is optional
\campus{Berkeley}
% For a masters thesis, replace the above \documentclass line with
% \documentclass[masters]{ucbthesis}
% This affects the title and approval pages, which by default calls this
% document a "dissertation", not a "thesis".
\maketitle
% Delete (or comment out) the \approvalpage line for the final version.
% \approvalpage
\copyrightpage
\input{frontmatter/abstract}
\begin{frontmatter}
\begin{dedication}
\null\vfil
\begin{center}
This dissertation is dedicated to the internet of cats: a series of
interconnected paws, tails, fur, space, and autotune. \\
\vspace{15mm}
Thanks also to the human family, friends, and mentors for the support and
assistance that, sometimes, only opposable thumbs can provide.
\end{center}
\vfil\null
\end{dedication}
% You can delete the \clearpage lines if you don't want these to start on
% separate pages.
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\tableofcontents
\clearpage
\listoffigures
\clearpage
\listoftables
\input{frontmatter/acknowledgements}
\end{frontmatter}
\pagestyle{headings}
% (Optional) \part{First Part}
\include{chapters/intro/introduction}
\include{chapters/lit_review/lit_review}
\include{chapters/methodology/methodology}
\include{chapters/characterization_probs/char_probs}
\include{chapters/conclusions/conclusions}
% \chapter{More Monticello Candidates}
% \bibliography{references}
\nocite{*}
\printbibliography
% \bibstyle{ucbthesis}
\begin{appendix}
\include{appendix/code/code}
\end{appendix}
\end{document}