-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathmain.tex
216 lines (186 loc) · 6.98 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% WARNING: There should be no reason to edit this file.
%% This project has been setup so that all files
%% that need to be edited or added should be done
%% in one of the directories inside this project.
%% See the README.md file for an overview of the
%% project layout.
%% --DDM
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[12pt]{cpthesis}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Math packages
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{amsmath} % for lots math items
\usepackage{amssymb} % for more math symbols
\usepackage{mathtools} % for DeclareMathOperator
\usepackage{bm} % for bold math symbols
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Figures and tables packages
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% figure related packages
\usepackage{silence}
% This document class is not known to the caption class, but
% there is nothing to be done and the default values are ok.
\WarningFilter{caption}{Unknown document class (or package)}
\usepackage{caption}
\usepackage{subcaption}
\captionsetup{
format=hang,
font={it, singlespacing},
labelfont=bf,
% textformat=period,
labelsep=colon
}
\captionsetup[table]{position=above}
\captionsetup[subfigure]{labelformat=parens, font={it, singlespacing}}
\captionsetup[subtable]{labelformat=parens, font={it, singlespacing}, position=top}
% Ensures table floats have caption above table.
% from https://tex.stackexchange.com/a/43097
% Note: Still have to manually do this for non-floating tables.
\usepackage{floatrow}
\floatsetup[table]{capposition=top}
%% table related packages
\usepackage{tabularx}
%% figure related packages
\usepackage{graphicx}
% Add figures folder to the graphics path
\graphicspath{{figures/}}
\newcommand{\printlistoftables}{
\listoftables
\addtocontents{lot}{\hbox to \linewidth{\hspace{1.5em}Table\hfill Page}}
}
\newcommand{\printlistoffigures}{
\listoffigures
\addtocontents{lof}{\hbox to \linewidth{\hspace{1.5em}Figure\hfill Page}}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Nomenclature packages
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[intoc,notocbasic]{nomencl}
% changes to formatting of the list of symbols to be upper case
\renewcommand{\nomname}{\MakeUppercase{\listsymbolsname}}
% allow cross-references to the nomenclature
% see: https://tex.stackexchange.com/a/158934
\usepackage{etoolbox}
\patchcmd{\thenomenclature}
{\chapter*{\nomname}}
{\phantomsection\chapter*{\nomname}\label{sec:Nomenclature}}
{}
{}
\makenomenclature
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Bibliography packages
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[
backend=biber,
style=numeric,
url=true,
giveninits=true,
maxnames=4,
minnames=3,
]{biblatex} % bibliography
%\AtEveryBibitem{\clearlist{language}}
%\AtEveryBibitem{\clearfield{note}}
\addbibresource{bibliography/references.bib}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Algorithm and code listing packages
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{xpatch}
\usepackage[chapter]{algorithm}
\usepackage[noEnd=true, indLines=true]{algpseudocodex}
\captionsetup[algorithm]{labelsep=colon}
% remove top rule for algorithm environment
% https://tex.stackexchange.com/a/180337
\DeclareFloatStyle{rulednotop}{midcode=rule,postcode=lowrule,capposition=top,heightadjust=all}
\floatsetup[algorithm]{style=rulednotop}
\renewcommand{\listalgorithmname}{\MakeUppercase{\listalgorithmsname}}
\addtocontents{loa}{\hbox to \linewidth{\hspace{1.5em}Algorithm\hfill Page}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Code and code listing packages
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{listings}
\lstset{
basicstyle=\linespread{1.0}\ttfamily,
% numbers=left,
breaklines=true,
xleftmargin=5ex,
frame=lines,
}
\renewcommand{\lstlistlistingname}{\MakeUppercase{\listcodelistingsname}}
\renewcommand{\lstlistingname}{Code Listing}
\addtocontents{lol}{\hbox to \linewidth{\hspace{1.5em}Code Listing\hfill Page}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Additional packages needed for specific thesis
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\input{frontmatter/preamble}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% hyperlinks and URL handling
%% Note: must be one of the last packages added
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{url}
\usepackage[breaklinks=true,hidelinks,pdfusetitle]{hyperref}
% Options for hyperref
\hypersetup{
bookmarksnumbered=true,
bookmarksopen=false,
bookmarksopenlevel=0,
colorlinks=false,
pdfstartview=Fit,
pdfborder={0 0 0},
}
% remove \uppercase from references to chapters
% see: https://tex.stackexchange.com/a/417078
\pdfstringdefDisableCommands{\let\uppercase\@firstofone}
% Make URLs use same typeface as rest of document
\urlstyle{same}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Automatic determination of kind of reference
%% Note: must be included after hyperref
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\RequirePackage{cleveref}
% Define Appendix refs
\crefname{app}{appendix}{appendices}
\Crefname{app}{Appendix}{Appendices}
% oxford comma
\newcommand{\creflastconjunction}{, and~}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% End of document preamble
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Setting for the front matter
\input{frontmatter/information}
\begin{document}
%% The content before first chapter
\begin{frontmatter}
\maketitle
% Custom made for Cal Poly (by Mark Barry, modified by Andrew Tsui).
\copyrightpage
% Custom made for Cal Poly (by Andrew Tsui).
\committeemembershippage
% Abstract page
\begin{abstract}
\input{frontmatter/abstract}
\end{abstract}
% Acknowledgments page (if wanted)
\input{frontmatter/acknowledgments}
% Dedication page (if wanted)
\input{frontmatter/dedication}
% Insert table of contents
\tableofcontents
% Insert all of the potentially optional listings
\input{frontmatter/listings}
% Insert list of symbols
% Note: package handles inserting into table of contents
\input{frontmatter/nomenclature.tex}
\end{frontmatter}
%% Input the chapters as configured from the file
\input{chapters/outline}
%% Bibliography/references section
\input{bibliography/bib_info.tex}
\printbibliography[
heading=bibintoc,
title={\MakeUppercase{\bibname}}
]
%% Input the appendices (if any) as configured from the file
\input{appendices/outline}
\end{document}