-
Notifications
You must be signed in to change notification settings - Fork 2
/
USC-PhD.tex
163 lines (114 loc) · 2.94 KB
/
USC-PhD.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
\documentclass[12pt,english]{report}
\input{include/Preamble}
\doublespacing
% Remove \bfseries from chapter titles in ToC
\renewcommand{\cftchapfont}{}
% Remove \bfseries from section titles' page in ToC
\renewcommand{\cftchappagefont}{}
% Fill section and chapter entries with dots in ToC
\renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}} % for sections
\renewcommand{\cftchapleader}{\cftdotfill{\cftdotsep}} % for chapters
\begin{document}
% This ensures that text 'mostly' doesn't extand past the right hand margin
\emergencystretch 3em
\begin{titlepage}
\vspace*{8ex}
\begin{center}
[TITLE:]
\vspace{2ex}
[SUBTITLE]
\vspace{4ex}
by
\vspace{4ex}
[Your Full Name]
\vspace{8ex}
\begin{onehalfspace}
A Dissertation Presented to the \\
FACULTY OF THE USC GRADUATE SCHOOL \\
UNIVERSITY OF SOUTHERN CALIFORNIA \\
In Partial Fulfillment of the \\
Requirement for the Degree \\
DOCTOR OF PHILOSOPHY \\
(MAJOR or DEGREE PROGRAM NAME)
\end{onehalfspace}
\vspace{8ex}
[December or May or August] [Year]
\end{center}
\vfill
Copyright [Year] \hfill [Your Full Name]
% Force a page break
\clearpage
\end{titlepage}
\newpage
\chapter*{}
\addcontentsline{toc}{chapter}{Dedication}%
\stepcounter{page}
\vspace*{6cm}
\begin{center}
\emph{Dedicated to ...}
\end{center}
\newpage
\bgroup
\titleformat{\chapter}{}{}{0pt}{\normalfont\Large\bfseries}
\titlespacing*{\chapter}{0pt}{0pt}{20pt}
\chapter*{Acknowledgments}
\egroup
\addcontentsline{toc}{chapter}{Acknowledgement}%
\begin{onehalfspace}
I would like to acknowledge ...
\end{onehalfspace}
\newpage
\begin{singlespace}
{
\hypersetup{linkcolor=black}
\tableofcontents
}
\end{singlespace}
\newpage
{
\hypersetup{linkcolor=black}
\listoftables
}
\newpage
{
\hypersetup{linkcolor=black}
\listoffigures
}
\newpage
\input{include/Nomenclature}
\renewcommand{\nomname}{Nomenclature}
\begin{singlespace}
\printnomenclature[3cm] % Increase 3cm if more space is needed
\end{singlespace}
\newpage
\bgroup
\titleformat{\chapter}{}{}{0pt}{\normalfont\Large\bfseries}
\titlespacing*{\chapter}{0pt}{0pt}{20pt}
\chapter*{Abstract}
\egroup
\addcontentsline{toc}{chapter}{Abstract}%
\begin{onehalfspace}
\noindent % Force no line-indent for the abstract
\blindtext
\end{onehalfspace}
% This changes "before" spacing back to its default of 50pt
\titlespacing*{\chapter}{0pt}{50pt}{40pt}
\chapter{Introduction} \label{c:intro}
\pagenumbering{arabic} % Switch page numbering back to Arabic
\input{include/Introduction}
\chapter{Background} \label{c:background}
\input{include/Background}
\chapter{Methodology} \label{c:method}
\input{include/Methodology}
\chapter{Results} \label{c:res}
\input{include/Results}
\chapter{Conclusion} \label{c:conclusion}
\input{include/Conclusion}
\begin{onehalfspace}
\setlength\bibitemsep{0.5\baselineskip}
\printbibliography[heading=bibintoc]
\end{onehalfspace}
\appendix
\chapter{Some supplemental important thing} \label{c:conclusion}
\input{include/Conclusion}
\end{document}