\documentclass[
bibstyle=acmauthoryear, % or any option compatible with biblatex, e.g. alphabetic, numeric, ieee, ...
% twoside, % uncomment when a two-sided version is needed for printing
]{uob-thesis}
\usepackage{lipsum}
\addbibresource{refs.bib}
%%%%%%%%%%%%%%%%%%%
%% AUTHOR DETAILS %
%%%%%%%%%%%%%%%%%%%
\title{A Deep and Interesting Thesis}
\subtitle{with applications to life}
\author{Alan Turing}
\DTMsavedate{thesisdate}{2052-02-02} % do not change the name "thesisdate"
\date{\printdatewithoutmonth{thesisdate}}
% change as appropriate, e.g.
% Bachelor of Science in Computer Science
% Master of Engineering in Computer Science
\degree{PhD~in~Computer~Science}
\school{School~of~Computer~Science}
\faculty{Faculty~of~Engineering}
\wordcount{1234} % use texcount to find this
\begin{document}
%%% -------------------------------------------------------------
%%% THESE TITLE PAGES ARE SPECIFIED BY THE REGULATIONS
%%% DO NOT CHANGE ORDER
%%%
%%% comment out each begin/end environment to remove the relevant section
\hypersetup{pageanchor=false}
\maketitle
\cleardoubleoddemptypage
\begin{abstract}
\input{abstract}
\end{abstract}
\begin{dedication}
To my darling mama,\\
sine-qua-non.
\end{dedication}
\begin{acknowledgements}
It is common practice (although totally optional) to acknowledge any third-party
advice, contribution or influence you have found useful during your work.
Examples include support from friends or family, the input of your Supervisor
and/or Advisor, external organisations or persons who have supplied resources
of some kind (e.g., funding, advice or time), and so on.
\end{acknowledgements}
\begin{declaration}
I declare that the work in this dissertation was carried out in accordance
with the requirements of the University's Regulations and Code of Practice for
Taught Programmes/Research Degree Programmes {\color{red} (delete as
appropriate)} and that it has not been submitted for any other academic award.
Except where indicated by specific reference in the text, the work is the
candidate's own work. Work done in collaboration with, or with the assistance
of, others, is indicated as such. Any views expressed in the
dissertation are those of the author.
\vspace{2cm}
\includegraphics[width=4cm]{sig}
\end{declaration}
\hypersetup{pageanchor=true}
%%%
%%% TITLE PAGES END HERE
%%% -----------------------------------------------------
%%%
%% FRONT MATTER
%%%
\frontmatter
%% THESE MUST BE IN THIS ORDER ACCORDING TO REGULATIONS
\tableofcontents
\listoftables
\listoffigures
%%%%%%%%%%%%%%%%
%% MAIN MATTER %
%%%%%%%%%%%%%%%%
\mainmatter
% Add your chapters here, one by one.
% I recommend that you put the content in separate .tex files.
\chapter{Introduction}
\input{1_intro}
\chapter{Methodology}
\input{2_methodology}
%%%%%%%%%%%%%%%%
%% BACK MATTER %
%%%%%%%%%%%%%%%%
\backmatter
\printbibliography[heading=bibintoc]
\end{document}