-
Notifications
You must be signed in to change notification settings - Fork 12
/
Thesis.tex
137 lines (96 loc) · 4.65 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
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
\documentclass[11pt,a4paper]{report}
\usepackage[university=lancaster]{thesis}
\usepackage[numbers,sort&compress,square]{natbib}
\phdthesis
%\mastersthesis
%\thesisdraft %% Uncomment this if you want a draft
%% version; this will print a timestamp
%% on each page of your thesis.
\leftchapter %% Uncomment one of these if you want
% \centerchapter %% left-justified, centered or
% \rightchapter %% right-justified chapter headings.
%% Chapter headings includes the
%% Contents, Acknowledgments, Lists
%% of Tables and Figures and the Vita.
%% The default is \centerchapter.
\usepackage{setspace}
\onehalfspacing %! This is the default and gives an acceptable "double spaced" thesis
%! It is the minimum spacing accepted by the graduate school, and there is no reason to increase the spacing.
%\singlespacing %! Uncomment if you want single-spacing,
%\doublespacing %! uncomment if you want real double-spacing for some perverse reason.
\renewcommand{\thesisdepartmentname}{Department of \ldots}
\renewcommand{\thesissubmission}{
Submitted to \universityname\\
in partial fulfilment of the requirements\\
for admission to the degree of}
\renewcommand{\thesisauthor}{Author Name}
\renewcommand{\thesisauthordegrees}{BSc (Hons)}
\renewcommand{\thesismonth}{Month}
\renewcommand{\thesisyear}{Year}
\renewcommand{\thesistitle}{Thesis Title}
\renewcommand{\thesistitletypesize}{\huge}
\renewcommand{\thesissupervisor}{Supervisor Name}
%% Your thesis supervisor; use mixed-case
%% and don't use any titles or degrees.
\renewcommand{\thesissubject}{Thesis Subject}
%% The subject your thesis is in.
\renewcommand{\thesiskeywords}{Keyword 1, Keyword 2}
%% Keywords for your thesis
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%
%%% The following commands are all optional, but useful if your requirements
%%% are different from the default values in utthesis.sty. To use them,
%%% simply uncomment (remove the leading %) the line(s).
% \renewcommand{\thesisdegree}{...} %% Uncomment this only if your thesis
%% degree is NOT "DOCTOR OF PHILOSOPHY"
%% for \phdthesis or "MASTER OF ARTS"
%% for \mastersthesis. Provide the
%% correct FULL OFFICIAL name of
%% the degree.
%\renewcommand{\thesistype}{Thesis} %% Use this ONLY if your thesis type
%! is NOT "Thesis"
%% Provide the OFFICIAL type of the
%% thesis; use mixed-case.
%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Uncomment this to show the frame of the pdf document to check layout issues.
%\usepackage{showframe}
\input{Header}
\begin{document}
% Include any specific coversheets as required
\iffalse
\includepdf[
pages=-
]{Preamble/coversheet.pdf}
\fi
\hypersetup{pageanchor=false}
\thesistitlebrandingpage
\hypersetup{pageanchor=true}
%%* Start roman page numbering here for contents, etc
%! Begins roman numerals start from page i.
\pagenumbering{roman}
\microtypesetup{protrusion=false} % disables protrusion locally in the document
\tableofcontents
\listoftables
\listoffigures
%{\let\clearpage\relax\listofalgorithms} % Uncomment if you have algorithms
\microtypesetup{protrusion=true} % enables protrusion
\include{Preamble/Acknowledgements}
\include{Preamble/Declarations}
\include{Preamble/Abstract}
\include{Preamble/Abbreviations}
%%* Start arabic numbering of main text here
\pagenumbering{arabic} %! Begins arabic numerals start from page 1.
\include{Chapters/C1_Introduction/Introduction}
\include{Chapters/C2_Background/Background}
\include{Chapters/C3/C3}
\include{Chapters/C4/C4}
\include{Chapters/C5/C5}
\include{Chapters/C6_Evaluation/Discussion}
\include{Chapters/C7_Conclusions/ConclusionsAndFutureWork}
\appendix
\include{Appendices/Appendices}
%\renewcommand\bibfont{\small} % You might want a smaller bib font
\bibliographystyle{plainnat}
\bibliography{Bib/bib}
\end{document}