This repository has been archived by the owner on Jan 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaster.tex
215 lines (170 loc) · 4.84 KB
/
master.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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% PHD DISSERTATION
%
%
% Michael Malick
% 2017-05-23
% v3.0
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ----------------------------
% Pre-amble
% ----------------------------
% {{{
\documentclass[11pt]{report}
\usepackage{float}
\usepackage{natbib}
\usepackage{pdflscape}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage{pdfpages}
\usepackage{longtable}
\usepackage{booktabs} % provides cmidrule
\usepackage{threeparttable} % provides tablenotes
\usepackage{threeparttablex} % enables table notes with long tables
\usepackage[margin=1cm]{caption}
\usepackage[showframe=false,
includefoot, % ensure page numbers do not extend into margins
includehead, % ensure page numbers do not extend into margins
headheight=13.6pt, % need for fancyhdr
top=1.0in,
bottom=1.0in,
left=1.25in,
right=1.25in ]{geometry}
\usepackage{hyperref}
\hypersetup{pdfstartview=FitH,
bookmarksopen=false,
colorlinks,
linkcolor=black,
urlcolor=black,
citecolor=black}
\usepackage{amstext}
\usepackage{amsmath}
%% Latin Modern Font
% \usepackage[T1]{fontenc}
% \usepackage{lmodern}
% \usepackage{cfr-lm} % latin-modern with old-style numbers
%% Free Bembo
% \usepackage[full]{textcomp}
% \usepackage[sups,osf]{fbb} % osf (or tosf) for text, not math
% \usepackage[scaled=.95]{cabin} % sans serif
% \usepackage[varqu,varl]{inconsolata} % sans serif typewriter
% \usepackage[libertine,bigdelims,vvarbb]{newtxmath} % bb from STIX
% \usepackage[cal=boondoxo]{mathalfa} % mathcal
%% Libertine font
%% http://get-software.net/fonts/newtx/doc/newtxdoc.pdf (pg. 7)
\usepackage[lining,semibold]{libertine} % a bit lighter than Times--no osf in math
\usepackage[T1]{fontenc} % best for Western European languages
\usepackage{textcomp} % required to get special symbols
\usepackage[varqu,varl]{inconsolata}% a typewriter font must be defined
\usepackage{amsthm}% must be loaded before newtxmath
\usepackage[libertine,cmintegrals,bigdelims,vvarbb]{newtxmath}
\usepackage[scr=rsfso]{mathalfa}
\usepackage{bm}% load after all math to give access to bold math
%% After loading math package, switch to osf in text.
\useosf % for osf in normal text
% Customize section heading text
\renewcommand{\listfigurename}{List of figures}
\renewcommand{\listtablename}{List of tables}
% Left justify the captions
\usepackage{caption}
\captionsetup{justification=justified,
singlelinecheck=false}
\widowpenalty=1000
\clubpenalty=1000
% 1.5 line spacing
\onehalfspacing
% Line numbers
% \usepackage{lineno}
% \linenumbers
% change font of hyperlinks
\usepackage{url}
\urlstyle{rm}
\begin{document}
% \raggedright
\setlength{\parindent}{1cm}
\bibpunct{(}{)}{;}{a}{}{;}
% }}}
% ----------------------------
% Includes
% ----------------------------
% \phantomsection is needed for
% certain sections to have proper
% links in the toc
%% Title page
\pagenumbering{gobble}
\input{./0_frontmatter/titlepage.tex}
\clearpage
\pagenumbering{roman}
\setcounter{page}{2}
%% Approval
\phantomsection
\input{./0_frontmatter/approval.tex}
\clearpage
%% Partial copyright
% \phantomsection
% \addcontentsline{toc}{chapter}{Partial Copyright License}
% \includepdf[pagecommand={\thispagestyle{plain}}, pages={1}]
% {./0_frontmatter/partial-copyright.pdf}
%% Abstract
\input{./0_frontmatter/abstract.tex}
\clearpage
%% Quote
% \input{./0_frontmatter/quote.tex}
% \clearpage
%% Acknowledgments
\input{./0_frontmatter/acknowledgements.tex}
\clearpage
%% TOC
\phantomsection
\addcontentsline{toc}{chapter}{Contents}
\tableofcontents
\clearpage
%% List of tables
\phantomsection
\addcontentsline{toc}{chapter}{List of tables}
\listoftables
\clearpage
%% List of figures
\phantomsection
\addcontentsline{toc}{chapter}{List of figures}
\listoffigures
\clearpage
\pagenumbering{arabic}
\setcounter{page}{1}
%%%%%
%% Fancy Headers
\fancyhf{}
\renewcommand{\headrulewidth}{0pt} % remove header rule
\pagestyle{fancy}
\lhead{\small \textit{\leftmark}}
\rhead{\small \thepage}
% \pagestyle{headings} % default latex header
%% Introduction
\input{./1_introduction/intro.tex}
\clearpage
%% Spring-bloom
\input{./2_springbloom/springbloom.tex}
\clearpage
%% North Pacific Current
\input{./3_npcurrent/npcurrent.tex}
\clearpage
%% Bayesian-network
\input{./4_bayesnetwork/bayesnetwork.tex}
\clearpage
%% Policy
\input{./5_policy/policy.tex}
\clearpage
%% Discussion
\input{./6_discussion/discussion.tex}
\clearpage
%% Bibliography
\singlespacing
\phantomsection
\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{apalike}
\bibliography{library}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}
% vim:fdm=marker