% Thesis Template for QMUL SMS PGRs.
% Based on Thesis Presentation Notes updated November 2024
% https://www.qmul.ac.uk/registry-services/media/arcs/docs/research-degrees/Thesis_Presentation_Notes_Nov24.pdf
% For the latest version, please check https://www.qmul.ac.uk/registry-services/research-degrees/research-student-information/thesis-submission--examination/
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% General Page set up
\documentclass[a4paper, twoside]{report} % Report is like article, but in addition to sections and subsections, you have chapters and parts. For more details, see https://en.wikibooks.org/wiki/LaTeX/Document_Structure
\usepackage[a4paper, margin=40mm]{geometry} % A4 paper size, margins no less than 40mm.
\usepackage[doublespacing]{setspace} % Double or one-and-a-half spacing. Choose as you like.
%\usepackage[onehalfspacing]{setspace}
% Note that single spacing may be used for indented quotations or footnotes, see the Thesis Presentation Notes for more details.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Insert Packages as you like
\usepackage{graphicx} % Required for inserting images
\usepackage{amsmath, physics, amsfonts}
\usepackage{hyperref} % Hyperlinks
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Theorem Environments
\usepackage{amsthm}
\newtheorem{definition}{Definition}
\newtheorem{theorem}{Theorem}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% New Commands and Math Operators
% See https://tex.stackexchange.com/questions/67506/newcommand-vs-declaremathoperator for the distinction between \newcommand and \DeclareMathOperator.
\newcommand{\C}{\mathbb{C}}
\DeclareMathOperator{\arctg}{arctg}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Bibliography
\usepackage{biblatex} % Imports biblatex package
\addbibresource{bib.bib} % Import the bibliography file
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Title Page
\begin{titlepage}
\begin{center}
{\LARGE Thesis Title \par}
\vspace{2cm}
{\Large Your Name \\
Supervised by Your Supervisor \par}
\vfill
{\Large School of Mathematical Sciences \par}
\vspace{1cm}
{\includegraphics[width=0.5\linewidth]{QM_logo_Blue_CMYK.png} \par}
\vspace{1cm}
{\large Month Year \par}
\vspace{1cm}
{Submitted in partial fulfillment of the requirements \\ of the Degree of Doctor of Philosophy \par}
\vspace{1cm}
{This work was supported by [NAME of funding body] [grant NUMBER, if applicable]} % See Thesis Presentation Notes for more details.
\thispagestyle{plain} % Puts a page number on the title page
\end{center}
\end{titlepage}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Statement of Originality
\newpage \setcounter{page}{2} % Readjusts the page numbering
\section*{Statement of Originality}
\addcontentsline{toc}{chapter}{\protect\numberline{}Statement of Originality} % This adds the Statement of Originality to the table of contents as an unnumbered chapter
I, [insert name as recorded in QMUL records], confirm that the research included within this thesis is my own work or that where it has been carried out in collaboration with, or supported by other, that this is duly acknowledged below and my contribution indicated. Previously published material is also acknowledged below. \\ \\
\noindent I attest that I have exercised reasonable care to ensure that the work is original and does not to the best of my knowledge break any UK law, infringe any third party’s copyright or other Intellectual Property Right, or contain any confidential material. \\ \\
\noindent I accept that Queen Mary University of London has the right to use plagiarism detection software to check the electronic version of the thesis. \\ \\
\noindent I confirm that this thesis has not been previously submitted for the award of a degree by this or any other university. \\ \\
\noindent The copyright of this thesis rests with the author and no quotation from it or information derived from it may be published without the prior written consent of the author. \\ \\
\noindent Signature: digital signature [OR write name in full if you do not wish your signature to be published] \\ \\
\noindent Date:\\ \\
\noindent Details of collaboration and publications:\\
\begin{enumerate}
\item The contents in Chapter 1 will form the paper [Paper], arXiv:abcd.efghi, 20XX.
\item ...
\end{enumerate}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Abstract
\newpage
\chapter*{Abstract}
\addcontentsline{toc}{chapter}{\protect\numberline{}Abstract} % This adds the abstract to the table of contents as an unnumbered chapter
Insert abstract here. No more than 300 words.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Acknowledgements
\newpage
\chapter*{Acknowledgements}
\addcontentsline{toc}{chapter}{\protect\numberline{}Acknowledgements} % This adds the acknowledgements to the table of contents as an unnumbered chapter
Cheers.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Table of contents; list of tables; list of figures
\newpage
\tableofcontents
\listoftables
\listoffigures
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Sample text / real work goes here.
\newpage
\chapter{Sample Text}
This is a sample text. Here's a useful definition:
\begin{definition}[A cool person]
A cool person is a person who uses this thesis template.
\end{definition}
We can now state and prove the following theorem:
\begin{theorem}[True Theorem]
Cool people get PhDs.
\end{theorem}
\begin{proof}
I have discovered a truly marvellous proof of this, which this margin is too narrow to contain.
\end{proof}
We can use the self-defined commands $\C$ and $\arctg(\pi)$ as above.
You can make a table, and it'll appear in the list of tables above, after the table of contents.
\begin{table}[h]
\centering
\begin{tabular}{c|c}
A & B \\
C & D
\end{tabular}
\caption{First Table}
\label{tab:first_table}
\end{table}
Note that the tabular environment on its own is not enough, you need the table environment for it to show up.
\newpage
You can also make figures, which will appear in the list of figures above, after the list of tables.
\begin{figure}[h]
\centering
\includegraphics[width=0.5\linewidth]{QM_logo_Blue_CMYK.png}
\caption{First Figure}
\label{fig:first_figure}
\end{figure}
You can also cite a book \cite{jamesliebeck2001representations} or an article \cite{bacon2006operator} or whatever you like, which will show in the bibliography at the end.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Bibliography
\newpage
\printbibliography[title={Bibliography}]
\addcontentsline{toc}{chapter}{\protect\numberline{}Bibliography} % This adds the bibliography to the table of contents as an unnumbered chapter
\end{document}