%% ---------------------------------------------------------------- %% Progress.tex %% ---------------------------------------------------------------- \documentclass[sotoncolour]{uosprogress} % Use the progress Style with custom link colour \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} %% Optional Fields \qualifications{MEng PhD} \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 %%Lightweight Definitions and Abbreviations see package:nomencl for alternative \listofsymbols{ll}{$w$ & The weight vector} \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{uos} \bibliography{UOS} \end{document} %% ----------------------------------------------------------------