-
Notifications
You must be signed in to change notification settings - Fork 4
/
thesisdraft.tex
75 lines (53 loc) · 1.85 KB
/
thesisdraft.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
% This is the main LaTeX document which should be processed to produce one's
% thesis.
\RequirePackage[l2tabu, orthodox]{nag}
%\documentclass{easyuvathesis}
\documentclass[truedoublespace,12pt]{easyuvathesis}
% The second line prints the thesis in true doublespacing, otherwise
% the thesis comes out with 1.5 spacing. I submitted a 1.5 space thesis,
% other people have had to submit a double-spaced thesis, your milelage
% may very.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{natbib} % This is required to use the apj.bst
\citestyle{aa} % and be able to use the AASTEX 5.x
% citations (\citep, \citet, etc.) - bph
\bibliographystyle{apj}
\usepackage{aasmod}
\ProcessOptions
\usepackage[colorlinks,linkcolor=black,citecolor=black,filecolor=black,urlcolor=black,bookmarks=false,breaklinks=true]{hyperref}
\begin{document}
\include{titlepageinfo}
\maketitle
\include{abstract} % file is "abstract.tex"
\include{acknowledgements} % file is "acknowledgements.tex"
\tableofcontents
% uncomment if you have a list of figures:
%\listoffigures
% uncomment if you have a list of tables:
%\listoftables
%
% Begin Body
%
\mainmatter
% uncomment this to enable a per-page unique footer image (i.e., if you want to
% turn your dissertation into a flipbook ;) )
%\fancypagestyle{plain}{
%\renewcommand{\headrulewidth}{0pt}
%\fancyhf{}
%\fancyhead[R]{\thepage}
%\fancyfoot[R]{\setlength{\unitlength}{1mm}
% \begin{picture}(0,0)
% \put(-10,-15){\includegraphics[width=0.15\textwidth]{footimg/pic\thepage}}
% \end{picture}}}
%
%\pagestyle{plain}
\include{01-intro/intro} % "intro.tex" (I put \chapter{} commands in the
% tex file, rather than here)
\include{02-chapter/chap2}
% and so on and so forth
\include{06-Summary/summary}
%\appendix
%\include{A01-appendix/appendix}
\bibliography{thesisdraft}
\label{references}
\end{document}