-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
345 lines (274 loc) · 10.3 KB
/
thesis.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
% NYU PhD thesis format. Original template created by José Koiller 2007--2008.
%% Updated by Anshul Vikram Pandey with new design guidelines. 2017--2018.
%%% Modified by Abdullah Khanfor for Stevens Institute of Technology PhD thesis format design guidelines 2019--2020. Link to the old template: https://github.com/khanfor/stevens-phd-thesis-dissertation-template
%%% Updated by Mofadal Alymani for Stevens Institute of Technology PhD thesis format design guidelines 2020--2021.
%% Use the first of the following lines during production to
%% easily spot "overfull boxes" in the output. Use the second
%% line for the final version.
% \documentclass[12pt,draft,letterpaper]{report}
% \documentclass[12pt,letterpaper]{report}
\documentclass[12pt]{report}
\usepackage{siunitx}
\usepackage{enumitem}
\usepackage{url}
\usepackage[breaklinks]{hyperref}
\def\UrlBreaks{\do\/\do-}
%% Replace the title, name, advisor name, graduation date and dedication below with
%% your own. Graduation months must be January, May or September.
\newcommand{\thesistitle}{Thesis Title}
\newcommand{\thesisauthor}{First Last}
\newcommand{\thesisadvisor}{Advisor}
\newcommand{\thesisyear}{2021}
\newcommand{\thesisname}{First Last}
\newcommand{\thesischairadvisor}{Dr. Advisor} % this name prints on the title page as chairman and the abstract page as advisor
\newcommand{\committeenameA}{Dr. Member}
\newcommand{\committeenameB}{Dr. Member}
\newcommand{\committeenameC}{Dr. Member}
\newcommand{\thesisdepartment}{Department}
\newcommand{\thesisdate}{April 26, 2021}
\newcommand{\thesistype}{dissertation}
\newcommand{\thesisdegree}{Doctor of Philosophy}
\newcommand{\graddate}{\the\year} % like 2020, 2019, no month or day should be written
\newcommand{\thesissigline}[1]{%
\leftline{\hbox to 2.5in{}\hrulefill}
\endgraf
\vspace*{-18pt}
\leftline{\hbox to 2.53in{}{#1}}}
%% If you do not want a dedication, scroll down and comment out
%% the appropriate lines in this file.
\newcommand{\thesisdedication}{To all the Ph.D. pursuing brave souls}
%% The following makes chapters and sections, but not subsections,
%% appear in the TOC (table of contents). Increase to 2 or 3 to
%% make subsections or subsubsections appear, respectively. It seems
%% to be usual to use the "1" setting, however.
\setcounter{tocdepth}{1}
%% Sectional units up to subsubsections are numbered. To number
%% subsections, but not subsubsections, decrease this counter to 2.
\setcounter{secnumdepth}{3}
% Setting a gap between page number and text block
%% This inputs your auxiliary file with \usepackage's and \newcommand's:
%% It is assumed that that file is called "definitions.tex".
\input{definitions}
%% Use the following commands, if desired, during production.
%% Comment them out for final version.
%\usepackage{layout} % defines the \layout command, see below
%\setlength{\hoffset}{-.75in} % creates a large right margin for notes and \showlabels
\pagestyle{fancy}
\fancyhf{}
% this prints a line under the header
\renewcommand{\headrulewidth}{0 pt}
%this prints a line under the footer
\renewcommand{\footrulewidth}{0 pt}
\fancyhead[RO]{}
\fancyhead[LO]{}
\fancyfoot[C]{}
\rhead{\thepage}
\fancypagestyle{plain}{%
\fancyhf{}
\rhead{\thepage}
}
%% Page layout (customized to letter paper and NYU requirements):
\setlength{\headheight}{20pt}
%% Use the line below for official NYU version, which requires
%% double line spacing. For all other uses, this is unnecessary,
%% so the line can be commented out.
\onehalfspacing % requires package setspace, invoked above
%% Each of the following lines defines the \com command, which produces
%% a comment (notes for yourself, for instance) in the output file.
%% Example: \com{this will appear as a comment in the output}
%% Choose (uncomment) only one of the three forms:
%\newcommand{\com}[1]{[/// {#1} ///]} % between [/// and ///].
\newcommand{\com}[1]{\marginpar{\tiny #1}} % as (tiny) margin notes
%\newcommand{\com}[1]{} % suppress all comments.
%% Cross-referencing utilities. Use one or the other--whichever you prefer--
%% but comment out both lines for final version.
%\usepackage{showlabels}
%\usepackage{showkeys}
% \pagestyle{headings}
\begin{document}
%% Produces a test "layout" page, for "debugging" purposes only.
%% Comment out for final version.
%\layout % requires package layout (see above, on this same file)
%% Sets page numbering to "roman style" i, ii, iii, iv, etc:
%%%%%% Cover page %%%%%%%%%%%
%% Sets page numbering to "roman style" i, ii, iii, iv, etc:
\pagenumbering{roman}
\thispagestyle{empty}
\begin{center}
{
{\thesistitle}
\vspace{.15in}
by
\vspace{.15in}
\thesisauthor
\vspace{.15in}
{A DISSERTATION}\\
\vspace{.2in}
\begin{spacing}{1}
{Submitted to the Faculty of the Stevens Institute of Technology\\
in partial fulfillment of the requirements for the degree of}
\end{spacing}
\vspace{.2in}
{DOCTOR OF PHILOSOPHY}\\
\vspace{1.0in}
% for master thesis, change Chairman to Advisor
\hfill
\begin{minipage}{80mm}
\begin{spacing}{ }\noindent \rule{3.2in}{0.1mm}
\thesisname, Candidate\\[3mm]
\underline{ADVISORY COMMITTEE}\\[3mm]
\noindent \rule{3.2in}{0.1mm}\\[-1.3mm]
% for master thesis, change Chairman to Advisor
{\thesischairadvisor}, Chairman \hfill{Date}\\[2mm]
{\noindent \rule{3.2in}{0.1mm}}\\[-1.3mm]
{\committeenameA} \hfill{Date}\\[2mm]
{\noindent \rule{3.2in}{0.1mm}}\\[-1.3mm]
{\committeenameB} \hfill{Date}\\[2mm]
{\noindent \rule{3.2in}{0.1mm}}\\[-1.3mm]
{\committeenameC} \hfill{Date}\\[2mm]
\end{spacing}
\end{minipage}
\vfill
{STEVENS INSTITUTE OF TECHNOLOGY\\
\vspace{-0.05in}
Castle Point on Hudson\\
Hoboken, NJ 07030
}
% \vfill
{\graddate}
}
\end{center}
\newpage
%%%%%%%%%%%%%% Microfilm / Publishing Page ProQuest %%%%%%%%%%%%%%%%%
% You can comment this section it is here to show you how it will appear when it submitted.
\thispagestyle{empty}
\begin{center}
ProQuest Number: XXXXXXXX
\vspace{.45in}
All rights reserved.
\vspace{.1in}
INFORMATION TO ALL USERS\\
The quality of this reproduction is dependent upon the quality of the copy submitted.
\vspace{.2in}
In the unlikely event that the author did not send a complete manuscript and there are missing pages, these will be noted. Also, if material had to be removed, a note will indicate the deletion.
\vspace{.1in}
\begin{figure}[H]
\centering
\includegraphics[width=200px]{misc/proquest-seeklogo.eps}
\end{figure}
\vspace{.1in}
ProQuest Number: XXXXXXXX
\vspace{.1in}
Published by ProQuest LLC (\the\year). Copyright of the Dissertation is held by the Author.
\vspace{.2in}
All rights reserved. This work is protected against unauthorized copying under Title 17, United States Code Microform Edition {\textcopyright} ProQuest LLC.
\vspace{.2in}
ProQuest LLC.\\
789 East Eisenhower Parkway\\
P.O. Box 1346\\
Ann Arbor, MI 48106-1346
\end{center}
\newpage
%%%%%% Copyrights page %%%%%%%%%%%
%
\setcounter{page}{2}
%% No numbering in the title page:
\thispagestyle{empty}
%
\begin{center}
{
\vspace*{\fill}
{\textcopyright} \graddate, \thesisname. All rights reserved.
}
\end{center}
\newpage
\doublespacing
%%%%%%%%%%%%%% Abstract %%%%%%%%%%%%%%%%%
\begin{center}
{\thesistitle}\\
{ABSTRACT}\\
\vspace{.05in}
\end{center}
\addcontentsline{toc}{chapter}{Abstract}
\input{abstract}
\vspace{0.4in}
\begin{flushleft}
Author: \thesisname \\
Advisor: \thesischairadvisor \\
Date: \thesisdate \\
Department: \thesisdepartment \\
Degree: \thesisdegree \\
\end{flushleft}
\newpage
%%%%%%%%%%%%%% Dedication Page %%%%%%%%%%%%%%%%%
%% Comment out the following lines if you do not want to dedicate it is optional
\chapter*{Dedication}
\addcontentsline{toc}{chapter}{Dedication}
\strut \vspace{2in}
\begin{center}
This dissertation is dedicated to my family, who supported me during my Ph.D. journey.
\end{center}
\vfill \strut
\newpage
\newpage
%%%%%%%%%%%%%% Acknowledgements %%%%%%%%%%%%%%%%%
%% Comment out the following lines if you do not want to acknowledge
%% anyone's help...
\addcontentsline{toc}{chapter}{Acknowledgments}
\input{acknowledge}
\newpage
%%%% Table of Contents %%%%%%%%%%%%
\setcounter{tocdepth}{2} % To show a three level depth of sections
\tableofcontents
% \clearpage
% \pagestyle{headings}
\newpage
%%%%% List of Tables %%%%%%%%%%%%%
%% Comment out the following two lines if your thesis does not
%% contain any tables. The list of tables contains only
%% those tables included withing the "table" environment.
\listoftables
\newpage
%%%%% List of Figures %%%%%%%%%%%%%
%% Comment out the following two lines if your thesis does not
%% contain any figures. The list of figures contains only
%% those figures included withing the "figure" environment.
\listoffigures\addcontentsline{toc}{chapter}{\listfigurename}
\newpage
%%%%% Body of thesis starts %%%%%%%%%%%%
\pagenumbering{arabic} % switches page numbering to arabic: 1, 2, 3, etc.
%% Introduction. If your thesis has no introduction, or chapter 1 is
%% meant to be the introduction, then comment out the lines below.
%% \section*{Introduction}\addcontentsline{toc}{section}{Introduction}
%\input{intro}
%%If your thesis has different "Parts", use commands such as the following:
\input{introduction/introduction}
\input{two/two}
\input{three/three}
\input{four/four}
\input{five/five}
\input{six/six}
\input{conclusion/conclusion}
%%%%% Appendices start %%%%%%%%%%%%%%%%
%% Comment out the following line if your thesis has no appendix
\addcontentsline{toc}{chapter}{Appendices}
\noindent \textbf{Appendices}
\appendix
\input{appendix/app1}
\input{appendix/app2}
%% Note: If your thesis has more than one appendix, NYU requires a "list of
%% appendices" page before the body of the thesis. I don't provide the tools
%% to create that here, so you're on your own for that one... Sorry.
%\input{app2}
%%%% Input bibliography file %%%%%%%%%%%%%%%
% \input{thesis}
\bibliographystyle{abbrv}
% Remember to remove the repated artificates/papers from the different files
\bibliography{biblio,introduction/introduction,two/two,three/three,four/four,five/five,six/six,conclusion/conclusion} % add intelligently
\newpage
%%%%%%%%%%%%%% Vita %%%%%%%%%%%%%%%%%
\section*{Vita}
\addcontentsline{toc}{chapter}{Vita}
\input{vita}
\newpage
\end{document}