This repository has been archived by the owner on Apr 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
85 lines (70 loc) · 1.88 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
%\documentclass[a4paper,12pt,oneside,openright,nohints]{report}
\documentclass[a4paper,12pt,twoside,openright,nohints]{report} % to print (also, remember to change headers)
% ~~~~~~~~~~~~~~~~~~~~
% Disable ChkTex warnings
% chktex-file 24 --- Delete this space to maintain correct page references.
% chktex-file 46 --- Use \( ... \) instead of $ ... $.
% ~~~~~~~~~~~~~~~~~~~~
% Preamble structure files
\input{structure/packages.tex}
\input{structure/functions.tex}
\input{structure/format.tex}
\input{structure/colours.tex}
\input{structure/units.tex}
\input{structure/acronyms.tex}
% ~~~~~~~~~~~~~~~~~~~~
\begin{document}
% Document properties
\title{A telescope control and scheduling system for the Gravitational-wave Optical Transient Observer}
\author{Martin J Dyer}
% Front pages
\singlespacing{}
\pagenumbering{roman}
\pagestyle{empty}
% ---------
\include{support/titlepage}
\include{support/quote}
% Front matter
\doublespacing{}
\pagestyle{plain}
% ---------
\include{support/declaration}
\include{support/acknowledgements}
\include{support/summary}
\include{support/contents}
\include{support/figurelist}
\include{support/tablelist}
\include{support/acronymlist}
% Main body
\cleardoublepage{}
\pagenumbering{arabic}
\pagestyle{fancy}
% ---------
\include{chapters/introduction}
\include{chapters/hardware}
\include{chapters/gtecs}
\include{chapters/autonomous}
\include{chapters/scheduling}
\include{chapters/tiling}
\include{chapters/alerts}
\include{chapters/commissioning}
\include{chapters/multiscope}
\include{chapters/conclusion}
% Bibliography
\pagestyle{plain}
% ---------
\include{support/bibliography}
%% Appendices
%\pagestyle{fancy}
%% ---------
%\begin{appendices}
%\renewcommand\chaptername{Appendix}
%\include{chapters/appendix}
%\end{appendices}
%% Back pages
%\singlespacing{}
%\pagestyle{empty}
%% ---------
%\include{support/backpage}
\end{document}
% ~~~~~~~~~~~~~~~~~~~~