SMSAS PhD Thesis Template
Author
Rhys Jones
Last Updated
4 months ago
License
Other (as stated in the work)
Abstract
Latex Template for University of Essex PhD Thesis
%-------------------------------------------------%
% This is a very basic but effective thesis template
% created by David Clark. By all means feel free to
% use and distribute this template to all who may need
% it but only done so freely. The creator forbids
% commercial use and distribution for personal/private
% gain.
%--------------------------------------------------%
%------------------------------------------------%
% Declare document class, using 'twoside' option %
%------------------------------------------------%
% In document class, we can specify 'print' to present the print version, otherwise the electronic version will compile.
\documentclass[12pt,a4paper,twoside,print]{report}
\input{packages.tex}
\pagenumbering{gobble} % Turn page numbering off during front matter
\pagestyle{headings}
\addbibresource{ThesisBibliography.bib}
\doublespacing
\begin{document}
%--------------%
% Front matter %
%--------------%
\cleardoublepage
\input{Front/title}
% \input{Front/declaration}
\cleardoublepage
\input{Front/dedication}
\cleardoublepage
\input{Front/acknowledgements}
\pagenumbering{roman}
% \input{Front/abstract}
\cleardoublepage
\addcontentsline{toc}{chapter}{\abstractname}
\cleardoublepage
\tableofcontents
\cleardoublepage
\addcontentsline{toc}{chapter}{\listtablename}
\listoftables
\cleardoublepage
\listoffigures
\addcontentsline{toc}{chapter}{\listfigurename}
\cleardoublepage
\pagenumbering{arabic}
\input{Main/introduction}
\input{Main/chaptertwo}
\input{Main/chapterthree}
\input{Main/chapterfour}
\cleardoublepage
\printbibliography[heading=bibintoc]
%\input{Back/tables}
\end{document}