-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy paththesis.tex
54 lines (42 loc) · 1.72 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
\documentclass[12pt]{rutgersthesis}
% preamble
% Make sure your LaTeX files are put under the root of your work directory. They should not be in a subfolder!
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Your information here
% !IMPORTANT!
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newcommand{\thesisType}{Dissertation} % Dissertation for PhD and Thesis for Master
\newcommand{\thesisTitle}{Title} % your thesis/dissertation title, e.g., How to Write A Thesis
\newcommand{\yourName}{Name} % your name, e.g., Tim Cook
\newcommand{\yourDegree}{Doctor of Philosophy} % your degree to be obtained, e.g., Master of Science, Doctor of Philosophy
\newcommand{\yourProgram}{Graduate Program} %insert your graduate program’s official name
\newcommand{\yourDirectorTitle}{Prof.} % the title of your thesis director
\newcommand{\yourDirector}{Dissertation/Thesis Director} % your thesis director name here, his/her title not included
\newcommand{\yourCommitteeNumber}{4} % IMPORTANT! the number of the committee members for your defense
\newcommand{\yourMonth}{Month} % your graduation month, not your defense month
\newcommand{\yourYear}{Year} % your graduation year
\bibliography{references}
% document body
\begin{document}
% \doublespacing %set line spacing
\input{copyright}
\makeTitlePage{Month}{Year}
\begin{frontmatter}
\input{abstract}
\input{acknowledgments}
\makeTOC
\makeListOfTables
\makeListOfFigures
\input{abbrevs}
\end{frontmatter}
\begin{thesisbody}
\input{chapters/chapter1}
\input{chapters/chapter2}
% \input{chapters/chapter3}
% \input{chapters/chapter4}
% \input{chapters/chapter5.tex}
\input{publications.tex}
\makeBibliography
\input{chapters/appendix.tex}
\end{thesisbody}
\end{document}