-
Notifications
You must be signed in to change notification settings - Fork 5
/
main.tex
94 lines (72 loc) · 3.29 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
%====================== header ==================================================
\documentclass[12pt]{osuthesis}
%====================== process the document configuration ======================
\input{AuxiliaryFiles/Configuration}
%====================== read any new commands or environments ===================
\input{AuxiliaryFiles/CommandsAndEnvironments}
%====================== document information ====================================
\input{AuxiliaryFiles/DocInfo}
\begin{document}
%====================== make title page =========================================
\maketitle
%====================== make approval page ======================================
\makeapproval{4} % use this for the page your committee will sign
%\makeElectronicapproval{4} % use this page for the electronic thesis submission
%====================== make acknowledgments page ===============================
\begin{acknowledge}
\input{Acknowledgments/Acknowledgments}
\end{acknowledge}
%====================== make dedications page ===============================
\begin{dedication}
\input{Dedication/Dedication}
\end{dedication}
%====================== make abstract ===========================================
\renewcommand{\thepage}{\roman{page}}
\begin{abstract}{JOHN Q. DOE}{ROCKET SCIENCE}
\input{Abstract/Abstract}
\end{abstract}
%====================== table of contents creation ==============================
%\addtocontents{toc}{\conttocheading} %% uncomment this line for multipage TOC
\tableofcontents
%====================== table of tables creation ================================
%\addtocontents{lot}{\conttotheading} %% uncomment this line for multipage LOT
\listoftables
%====================== list of figures creation ================================
%\addtocontents{lof}{\conttofheading} %% uncomment this line for multipage LOF
\listoffigures
%====================== abbreviations============================================
\begin{abbreviation}
\input{Abbreviations/Abbreviations}
\end{abbreviation}
%====================== nomenclature ============================================
\begin{nomenclature}
\input{Notation/Notation}
\end{nomenclature}
%====================== main body of the dissertation ==========================
% ==== Get a new page to leave the last page of the nomenclature unaffected
\newpage
% ==== Set line spacing for the bulk of the document
%\setstretch{1.4}
\doublespacing
% ==== Reset page numbering to arabic numerals...this also resets it to start at 1
\pagenumbering{arabic}
%====================== chapters information ====================================
\input{Ch-Introduction/Introduction}
\input{Ch-Methods/Methods}
\input{Ch-Results/Results}
%===================== bibliography ============================================
%\nocite{*} %leave this to put ALL references in the bibliography
\newpage
\renewcommand\bibname{\centering References}
\addcontentsline{toc}{chapter}{References}
\bibliography{References/References} %use main dissertation bibtex file
\bibliographystyle{apa}
% uncomment to print all refs in BibTex lib
%\nocite{*}
%====================== appendices ==============================================
\appendix
\singlespace
\input{Appendices/Appendix}
%====================== vita ====================================================
\input{Vita/Vita}
\end{document}