forked from alexdiem/phd_thesis_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
64 lines (54 loc) · 1.77 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
%% ----------------------------------------------------------------
%% thesis.tex
%% ----------------------------------------------------------------
\documentclass[a4paper]{phdthesis}
\usepackage[round]{natbib} % Use Natbib style for the refs.
\usepackage[binary-units=true]{siunitx}
\usepackage{fixltx2e}
\hypersetup{colorlinks=true} % Set to false for black/white printing
\graphicspath{{.}} % Location of your graphics files
\renewcommand{\bibname}{References}
%% ----------------------------------------------------------------
\begin{document}
\frontmatter
\title {Thesis Title}
\date {November 2016}
\author {Author Names}
\supervisor {Prof. XYZ}
\university {University of Southampton}
\department {Computational Engineering and Design}
\group {Computational Engineering and Design Group}
\faculty {Faculty of Engineering and the Environment}
\maketitle
\begin{abstract}
Abstract goes here.
\end{abstract}
\tableofcontents
\listoffigures
\listoftables
\lstlistoflistings
\listofsymbols{llc}{
$a$ & description & unit\\
$b$ & description & unit\\
$c$ & description & unit}
\listofacronyms{ll}{
ACR & acronym\\
ACR & acronym\\
ACR & acronym}
\declaration{Author et al. 2017}
\acknowledgements{Thanks to no one.}
\mainmatter
%% ----------------------------------------------------------------
\chapter{A Chapter}
The text for a chapter goes here.
\chapter{Another Chapter}
The text for another chapter goes here.
\appendix
\chapter{Appendix}
The text for an appendix goes here.
%% ----------------------------------------------------------------
\backmatter
%\bibliographystyle{plainnat}
%\bibliography{thesis}
\end{document}
%% ----------------------------------------------------------------