Newer
Older
%% ----------------------------------------------------------------
%% Project.tex
%% ----------------------------------------------------------------
\documentclass[sotonlinks]{ecsproject} % Use the Project Style with custom link colour
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
\graphicspath{{../Figures/}} % Location of your graphics files
\usepackage{natbib} % Use Natbib style for the refs.
\hypersetup{colorlinks=true} % Set to false for black/white printing
\input{Definitions} % Include your abbreviations
%% ----------------------------------------------------------------
%% --------------------THESIS/DOC INFORMATION ---------------------
\title {An Investigation into \dots}
\authors {\texorpdfstring
{\href{mailto:S.R.Gunn@ecs.soton.ac.uk}{Steve R. Gunn}}
{Steve R. Gunn}
}
\addresses {\groupname\\\deptname\\\univname}
\date {\today}
\supervisor {Mr Beavis}
\examiner {Dr Butthead}
\degree {BEng Electronic Engineering}
%% Optional Fields
\subject {}
\keywords {}
\begin{document}
%% ------------------ FRONT MATTER ORGANISATION -------------------
\frontmatter
\maketitle
\begin{abstract}
This work is all about \dots
\end{abstract}
\tableofcontents
\listoffigures
\listoftables
%% The List of listings does not, by default, appear in the ToC, so....
\addtotoc{List of Listings}
\lstlistoflistings
\listofsymbols{ll}{$w$ & The weight vector}
%% ---------- AUTHORSHIP DECLARATION/ ACKNOW. / DEDICATORY ----------
%% Either include citations like below (as many as required spaced with commas or 'and').
\authorshipdeclaration{\citep{Gunn:2001:pdflatex}, \citep{Lovell:2011:updated} and \citep{Gunn:2011:updated2}}
%% Or state no citations like below
%% \authorshipdeclaration{}
%% -----------------------
\acknowledgements{Thanks to no one.}
\dedicatory{To \dots}
\mainmatter
%% ------------------ MAIN MATTER (CONTENT) --------------------
\include{Introduction}
\include{Conclusions}
\begin{lstlisting}[caption=Without a title it doesn't appear in the table]
This is a test listing
It has several lines
That
say not much at all
\end{lstlisting}
\appendix
\include{AppendixA}
\backmatter
\bibliographystyle{ecs}
\bibliography{ECS}
\end{document}
%% ----------------------------------------------------------------