-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathmain.tex
159 lines (129 loc) · 4.71 KB
/
main.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
% USC Dissertation/Thesis LaTeX Template
% Edited by Ruda Zhang, 2020-10-08.
% -----------------------------------------------------------------------------
% PACKAGES AND DOCUMENT CONFIGURATION
%-----------------------------------------------------------------------------
% Use `report` class with `USCthesis` package (style file) by Brian P. Gerkey
% Font size should be 11 or 12 points for regular paragraph text.
\documentclass[letterpaper,12pt]{report}
% [options] can be any of these default/alternative flag:
% dissertation/thesis, final/proposal, copyright/nocopyright,
% fussy/sloppy, flushbottom/raggedbottom, clref/opref.
\usepackage[dissertation]{USCthesis}
% Packages required by `USCthesis.sty`.
\usepackage{hyperref}
\usepackage{setspace}
\usepackage{tabularx}
% Line spacing and margins in compliance with USC graduate school guidelines.
\usepackage[margin=1in,footskip=.5in]{geometry}
\doublespacing
% Optional packages: mathematical fonts and symbols
% You may comment this section out if you don't need them.
\usepackage{mathptmx} % set font to Times Roman
\usepackage[OT1]{fontenc} % font encoding for xelatex
\usepackage{mathtools}
\usepackage{amsmath}
\usepackage{amssymb}
% Optional packages: graphics
\usepackage{graphicx}
% You can use the "demo" option while editing to avoid compiling figures.
% \usepackage[demo]{graphicx}
% You can add absolute paths as well.
\graphicspath{{./}{../}{figures/}{../figures/}}
% Optional packages: bibliography with BibLaTeX.
% Comment this section out if you prefer BibTeX.
\usepackage[
style=nature,
sorting=none,
isbn=false,
url=false,
doi=true,
eprint=false,
date=year,
maxnames=6,
minnames=6
]{biblatex}
\AtEveryBibitem{\clearfield{eventtitle}}
\AtEveryCitekey{\clearfield{eventtitle}}
\AtEveryBibitem{\clearfield{pagetotal}}
\AtEveryCitekey{\clearfield{pagetotal}}
\addbibresource{references.bib}
% Filler text for formatting. Comment these lines out for real writing.
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}
%-----------------------------------------------------------------------------
% TITLE PAGE
%-----------------------------------------------------------------------------
% Volume name could be added as option, e.g. `[Volume I]`.
\title{\textbf{\Large{Writing a thesis at USC}}}
\author{Tommy T. Trojan}
% Committee list is only shown in `proposal` layout.
\committee{A.~Adams & (Chair)\\*
B.~Bell\\*
C.~Clausius\\*
D.~Dirichlet\\*
E.~Emory & (Outside Member)}
% Submission information is only shown in `final` layout.
\majorfield{Civil Engineering}
\submitdate{December 2020} % Must be one of the three dates allowed in the guideline
% Make sure everything, specially your title page, exactly follows the guideline:
% https://graduateschool.usc.edu/wp-content/uploads/2020/11/Manuscript_Formatting_and_Documentation_Styles.pdf
%-----------------------------------------------------------------------------
% PREFACE
%-----------------------------------------------------------------------------
% The preface environment prints the title page.
\begin{preface}
% Dedication Page, which is truly unnecessary.
\prefacesection[Dedication]{}
\input{dedication}
% Acknowledgement Page, which is also unnecessary for proposals.
\prefacesection{Acknowledgements}
\input{acknowledgements}
\tableofcontents
\listoftables % Comment this out if you don't have tables
\listoffigures
% Abstract Page
\prefacesection{Abstract}
\input{abstract}
\end{preface}
%-----------------------------------------------------------------------------
% CONTENT STRUCTURE
%-----------------------------------------------------------------------------
% Better to separate LaTeX structure and content
\include{Introduction}
% Research Topic 1
\include{ResearchTopic1}
% More Research Topics
% \include{ResearchTopic2}
% Conclusion and ongoing work
\include{Conclusion}
% Using single-space for reference list.
\begin{singlespace}
% Bibliography
\phantomsection
\addcontentsline{toc}{chapter}{References}%
\markboth{References}{References}%
% If you use BibLaTeX
\printbibliography[title=References]
% If you use BibTeX
% \bibliographystyle{plain}
% \bibliography{references}
\end{singlespace}
% Appendices
\phantomsection
\addcontentsline{toc}{chapter}{Appendices}%
\markboth{Appendices}{Appendices}%
\chapter*{Appendices}
\renewcommand\thesection{\Alph{section}}
\renewcommand*{\thesubsection}{\Alph{section}.\arabic{subsection}}
\begingroup
\numberwithin{equation}{section}
% Appendix source files
\input{appendix_proof}
\endgroup
% In case your dissertation has multiple volumes.
% \addvolumecontents{thesis_part2}
% \addvolumecontents{thesis_part3}
% \addvolumecontents[lof]{thesis_part2}
\end{document}