%% ----------------------------------------------------------------
%% Thesis.tex
%% ----------------------------------------------------------------
\documentclass[sotoncolour]{uosthesis} % Use the Thesis Style with custom link colour
\graphicspath{{Figures/}} % Location of your graphics files
\usepackage[round]{natbib} % Use Natbib style for the refs.
\usepackage{bibentry} % Use bibentry for prepublished works
\nobibliography* % Use bibentry for prepublished works
\usepackage{attrib} % Use the attrib package for quotations
\hypersetup{colorlinks=true} % Set to false for black/white printing
\input{Definitions} % Include your abbreviations
%% ----------------------------------------------------------------
%% --------------------THESIS/DOC INFORMATION ---------------------
\department {School of [Insert school]}
\DEPARTMENT {\MakeUppercase{\deptname}}
\group {[Group name]}
\GROUP {\MakeUppercase{\groupname}}
\faculty {Faculty of [Insert faculty]}
\FACULTY {\MakeUppercase{\facname}}
\title {An Investigation into \dots}
%% TODO: Replace with your name removing []
\authors {[Insert full name, for example, Sarah Alison Watson]} % Use of Soton Email unadvised, use ORCiD instead.
\addresses {\groupname\\\deptname\\\univname}
\date {\today}
%% Optional Fields TODO: Replace these fields with your own data
\qualifications{[Insert Previous Qualifications, for example MEng]}
\orcidid{0000-0002-1825-0097}
\doi{10.1002/0470841559.ch1}
\volume{n}{m} %Optional Volume Numbering Volume n of m
\subject {}
\keywords {}
\begin{document}
%% ------------------ FRONT MATTER ORGANISATION -------------------
\pagenumbering{gobble} % removes page number
\copyrightDeclaration{} % !!! Comment this line when printing the hardcopy !!!
\raggedright %% Set the style to Left justification, remove for fill justification
%% Must be done after copyrightDeclaration
\frontmatter
\maketitle
\begin{abstract}
This work is all about \dots
There are broad instructions for this template entitled: How to use the University of Southampton LaTeX template. There is a technical reference included in the \texttt{doc} folder with the templates.
There is no prescribed font, you should use a font appropriate to your discipline. See Producing your thesis section 7.2.
\end{abstract}
\tableofcontents
\listoffigures
\listoftables
%% The List of listings does not, by default, appear in the ToC, so....
\addtotoc{Listings}
\lstlistoflistings
\listofaddmaterial
\addtolom{Material Name e.g Map}
\addtolom{Material Name e.g CD}
\addtolom{Test Material}
%% ---------- AUTHORSHIP DECLARATION/ ACKNOW. / DEDICATORY ----------
%% Either include citations like below (as many as required spaced with commas or 'and').
%% \bibentry command must be used here with prepublished papers
\authorshipdeclaration{\bibentry{Gunn:2001:pdflatex}\newline\bibentry{Lovell:2011:updated}\newline\bibentry{Gunn:2011:updated2}}
%% Or state no citations like below
%% \authorshipdeclaration{}
%% -----------------------
\acknowledgements{Thanks to no one.}
\dedicatory{To \dots}
%%Lightweight Definitions and Abbreviations see package:nomencl for alternative
%% Include if relevant to discipline
\listofsymbols{ll}{$w$ & The weight vector\\$\S$ & If relevant to discipline}
\mainmatter
%% ------------------ MAIN MATTER (CONTENT) --------------------
\include{Introduction}
\include{Conclusions}
\begin{lstlisting}[caption=Listing of what an example listing would be like]
This is a test listing
The test listing has serveral lines
to show how the listings
will be displayed
\end{lstlisting}
\appendix
\include{AppendixA}
\backmatter
\chapter{Glossary [if relevant]}
\bibliographystyle{plainnat}
\bibliography{UOS}
\chapter{Bibliography}
To use bibliography as well as the references section use the \texttt{multibbl} package.
\chapter{Index [if relevant]}
\end{document}
%% ----------------------------------------------------------------