-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQMUL_Thesis.tex
140 lines (88 loc) · 3.79 KB
/
QMUL_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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
%%-----------------------------------------------------------------------%%
%% This template was created by Celeste Damiani
%% for the training session "LaTeX for writing your thesis"
%% at Queen Mary University of London, April 2021.
%%-----------------------------------------------------------------------%%
%% This is your master document. Use as a dashboard to your project
%% Preamble
%%----------------------------------------------------------------------------------
\RequirePackage[l2tabu, orthodox]{nag} % nag will show warnings if you're using obsolete or deprecated commands. Optional.
\documentclass[12pt, a4paper, oneside]{book}
\input{Environment/Packages.tex}
%% Special Environments
%%------------------------------------------------------------------------------------
\input{Environment/Environments.tex}
%% Macros
%%-----------------------------------------------------------------------------------
\input{Environment/Macros.tex}
%%------------------------------------------------------------------------------------
%% Begin document (first set spacing with package setspace)
%% and remember to check at the end of titlepage
%% that the spacing is still set to what you want (see QM rules)
%%------------------------------------------------------------------------------------
\doublespacing
%\onehalfspacing
%% to make a part of the text of your document singlespaced:
%% \begin{singlespace}
%% text
%% \end{singlespace}
% Content Name
\renewcommand*\contentsname{Table of Contents}
% 1.5 line spacing just like word
\linespread{1.25}
\begin{document}
% \frontmatter
%%------------------------------------------------------------------------------------
%% Beginning of Frontmatter
%%------------------------------------------------------------------------------------
\includepdf[pages=-]{Environment/TitlePage.pdf}
% \input{Environment/Titlepage.tex} % titlepage
% Statement of originality
%----------------------------------------------------------
% \include{Environment/Statement}
% content
\tableofcontents
% Abstract
%----------------------------------------------------------
\include{Environment/Abstract}
% Epighraph
%----------------------------------------------------------
% \cleardoublepage
% \thispagestyle{empty}
% \epigraph{O time, thou must untangle this, not I.
% It is too hard a knot for me to untie!}
% {\textit{Twelfth Night}\\
% \textsc{Shakespeare}}
% Acknowledgements and licences
%----------------------------------------------------------
% \include{Environment/Acknowledgements}
% Table of contents
%----------------------------------------------------------
% \tableofcontents
% \listoffigures
% \listoftables
%%------------------------------------------------------------------------------------
%% Beginning of Mainmatter
%%------------------------------------------------------------------------------------
\include{Chapters/intro}
\include{Chapters/background}
\include{Chapters/method}
\include{Chapters/exp}
\include{Chapters/Conclusion}
%%------------------------------------------------------------------------------------
%% Appendices
%%------------------------------------------------------------------------------------
% \appendix % resets chapter numbering, uses letters for appendix chapter numbers
% \include{Chapters/Appendix}
%%------------------------------------------------------------------------------------
%% Beginning of Backmatter
%%------------------------------------------------------------------------------------
\backmatter % turns off chapter numbering
%Bibliografia
%------------------------------------------------------------------
\bibliography{Environment/Bibliography.bib}{}
% \bibliographystyle{plain}
\include{Chapters/Acknowledgements}
\include{Chapters/Appendix}
% \printindex % to make the index
\end{document}