blob: 7516991b831576f9164177fe158b7bcc9ad63216 (
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
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
|
\documentclass{dissertation}
\begin{document}
\raggedbottom
% --- preamble ------------------------------------------------------------------------------------
\begin{centering}
\thispagestyle{empty}
% TITLE PAGE
\textbf{Development of Frequency Domain Multidimensional Spectroscopy \\
with Applications in Semiconductor Photophysics} \\
\vspace{80 pt}
By \\
Blaise Jonathan Thompson \\
\vspace{40 pt}
A dissertation submitted in partial fulfillment of \\
the requirements for the degree of \\
\vspace{10 pt}
Doctor of Philosophy \\
(Chemistry) \\
\vspace{40 pt}
at the \\
UNIVERSITY OF WISCONSIN - MADISON \\
2018 \\
\end{centering}
\vfill
\noindent Date of final oral examination: April 23, 2018 \\
This dissertation is approved by the following members of the Final Oral Committee: \\
\-\hspace{1cm} John C. Wright, Professor, Analytical Chemistry \\
\-\hspace{1cm} Randall Goldsmith, Professor, Physical Chemistry \\
\-\hspace{1cm} Tim Bertram, Professor, Analytical Chemistry \\
\-\hspace{1cm} Kyoung-Shin Choi, Professor, Materials Chemistry \\
\pagenumbering{gobble}
\cleardoublepage % TODO: remove page number
\pagenumbering{roman} % must use roman page numbering in preamble
% CONTENTS
\renewcommand{\baselinestretch}{0.5}\normalsize
\tableofcontents
% TODO: consider adding chapter headings to list of figures / list of tables
\listoffigures
\listoftables
\renewcommand{\baselinestretch}{1}\normalsize
% ACKNOWLEDGEMENTS
\cleardoublepage
\include{acknowledgements}
% ABSTRACT
\cleardoublepage
\include{abstract} % abs
\afterpage{\blankpage} % introduction must start on ODD page
\doublespacing % double spacing required for body of paper
\pagenumbering{arabic}
% chapters ----------------------------------------------------------------------------------------
\include{introduction/chapter} % int
\part{Background} \label{prt:background}
\include{spectroscopy/chapter}
\include{software/chapter} % sof
\part{Development} \label{prt:development}
\include{processing/chapter} % pro
\include{acquisition/chapter} % acq
\include{active_correction/chapter} % act
\include{opa/chapter} % opa
\include{mixed_domain/chapter}
\part{Applications} \label{prt:applications}
\include{PbSe_susceptibility/chapter} % pss
\include{PbSe_global_analysis/chapter} % psg
\include{MX2/chapter} % mx2
\include{PEDOT_PSS/chapter} % pps
% appendix -----------------------------------------------------------------------------------------
\singlespacing
\part{Appendix} \label{prt:appendix}
\begin{appendix}
\include{procedures/chapter} % prc
\include{irf/chapter} % irf
\include{quantitative_ta/chapter} % qta
\include{opa_phase/chapter} % rpa
\include{colophon/chapter}
\end{appendix}
% post --------------------------------------------------------------------------------------------
\pagenumbering{gobble}
\renewcommand{\arraystretch}{2} % there is probably a better way...
\printbibliography
\end{document}
|