-
Notifications
You must be signed in to change notification settings - Fork 0
/
dissertation.tex
85 lines (68 loc) · 2.03 KB
/
dissertation.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
\documentclass[11pt,letterpaper,twoside]{report}
\input{preamble}
\begin{document}
%******************
% frontmatter pages use two inch top margin
\newgeometry{left=1.25in,top=2in,right=1.25in,bottom=1in,nohead}
\pagenumbering{roman}
%title page
\include{frontmatter/titlepage}
% copyright page (optional)
\newgeometry{left=1.25in,top=8.33in,right=1.25in,bottom=1in,nohead}
\include{frontmatter/copyright}
% normal pages from here on out
\restoregeometry
% abstract
\include{frontmatter/abstract}
%% dedication, acknowledgements and/or preface (all optional)
\include{frontmatter/dedication}
\include{frontmatter/acknowledgements}
%\include{frontmatter/preface}
%
%% table of contents, with page references
\include{frontmatter/tableofcontents}
%% list of tables, with titles and page references (if applicable)
\include{frontmatter/listoftables}
%% list of figures or illustrations, with titles and page references (if applicable)
\include{frontmatter/listoffigures}
%% list of abbreviations (if applicable)
%\include{frontmatter/listofabbreviations}
% list of symbols (if applicable)
%\include{frontmatter/listofsymbols}
%******************
% mainmatter
\pagenumbering{arabic}
% a chapter
%\include{mainmatter/introduction}
%\include{mainmatter/replanning}
%\include{mainmatter/simulation}
%\include{mainmatter/lqgdef}
%\include{mainmatter/conclusion}
\include{mainmatter/introduction}
\include{mainmatter/APD}
\include{mainmatter/IBL}
\include{mainmatter/GPlanner}
\include{mainmatter/GCollide}
\include{mainmatter/GLSH}
\include{mainmatter/PCollide}
\include{mainmatter/PCollide2}
\include{mainmatter/conclusion}
% backmatter
% an appendix
%\include{backmatter/appendix}
% bibliography, references, or works cited
%\include{backmatter/bibliography}
\clearpage
\phantomsection
{\def\chapter*#1{} % suppress bibliography header
\begin{singlespace}
\addcontentsline{toc}{chapter}{BIBLIOGRAPHY}
\begin{center}
\Large \textbf{BIBLIOGRAPHY}
\vspace{17pt}
\end{center}
\bibliographystyle{apalike}
\bibliography{dissertation}
\end{singlespace}
}
\end{document}