%This thesis template is a modified version of "https://www.overleaf.com/latex/templates/university-of-melbourne-thesis-template/ngytrznvqbcg"
%
%It follows the rules specific in "https://gradresearch.unimelb.edu.au/processes/preparation-of-graduate-research-theses" as of October 2024.
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%IMPORTANT: For changing the first page details
%such as TITLE, NAME, SCHOOL, ORCID
%go to Thesis.cls lines "193--227" and enter your details.
%
%Add figures inside "Figures" directory.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%For the rest of the pages, everything is self-explanatory.
\documentclass[a4paper, 11pt, oneside]{Thesis}
\setlength\parindent{15pt}
\usepackage[square, numbers, comma, sort&compress]{natbib}
\usepackage{verbatim}
\usepackage{vector}
\hypersetup{urlcolor=blue, colorlinks=true}
\usepackage{subcaption}
\usepackage{graphicx}
\usepackage{multirow}
\usepackage{xfrac}
\usepackage{setspace}
\usepackage{algorithm2e}
\RestyleAlgo{ruled}
\usepackage{lscape}
\usepackage{booktabs}
\usepackage{afterpage}
\usepackage{colortbl}
\usepackage{CJKutf8}
\usepackage[inkscapearea=page]{svg}
\usepackage{CJKutf8}
\graphicspath{{Figures/}}
\begin{document}
\frontmatter
\UNIVERSITY{{THE UNIVERSITY OF MELBOURNE }}
\addresses {\school \\ \univname}
\date {\normalsize{\today}}
\subject {}
\keywords {}
\maketitle
\setstretch{1.3}
\fancyhead{}
\input{Preamble/Copyright}
\clearpage
\input{Preamble/Dedicate}
\clearpage
\rhead{\thepage}
\lhead{}
\pagestyle{fancy}
% The Abstract Page
\input{Preamble/Abstract.tex}
\clearpage % Abstract ended, start a new page
%% ----------------------------------------------------------------
% Declaration Page required for the Thesis, your institution may give you a different text to place here
\input{Preamble/Declaration.tex}
\clearpage % Declaration ended, now start a new page
%% ----------------------------------------------------------------
% Preface Page required for the Thesis, your institution may give you a different text to place here
\input{Preamble/Preface.tex}
\clearpage % Preface ended, now start a new page
%% ----------------------------------------------------------------
% The Acknowledgements page, for thanking everyone
\setstretch{1.3} % Reset the line-spacing to 1.3 for body text (if it has changed)
\input{Preamble/Acknowledgements.tex}
\clearpage % End of the Acknowledgements
%% ----------------------------------------------------------------
\pagestyle{fancy} %The page style headers have been "empty" all this time, now use the "fancy" headers as defined before to bring them back
%% ----------------------------------------------------------------
\lhead{\emph{Contents}} % Set the left side page header to "Contents"
\tableofcontents % Write out the Table of Contents
%% ----------------------------------------------------------------
\lhead{\emph{List of Figures}} % Set the left side page header to "List if Figures"
\listoffigures % Write out the List of Figures
%% ----------------------------------------------------------------
\lhead{\emph{List of Tables}} % Set the left side page header to "List of Tables"
\listoftables % Write out the List of Tables
%% ----------------------------------------------------------------
\setstretch{1.5} % Set the line spacing to 1.5, this makes the following tables easier to read
\clearpage % Start a new page
%% ----------------------------------------------------------------
\mainmatter % Begin normal, numeric (1,2,3...) page numbering
\pagestyle{fancy} % Return the page headers back to the "fancy" style
%%the .tex files you see inside "Chapters" directory go here. Feel free to add as many chapters you want; its your thesis. :)
\input{Chapters/Chapter1}
\input{Chapters/Chapter2}
\input{Chapters/Chapter3}
\input{Chapters/Chapter4}
\input{Chapters/Chapter5}
\input{Chapters/Chapter6}
%% ----------------------------------------------------------------
% Now begin the Appendices, including them as separate files
\addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
\appendix % Cue to tell LaTeX that the following 'chapters' are Appendices
\input{Appendices/AppendixA} % Appendix Title
\input{Appendices/AppendixB} % Appendix Title
\addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
\backmatter
%% ----------------------------------------------------------------
\label{Bibliography}
\lhead{\emph{Bibliography}} % Change the left side page header to "Bibliography"
\bibliographystyle{unsrtnat} % Use the "unsrtnat" BibTeX style for formatting the Bibliography
\bibliography{Bibliography} % The references (bibliography) information are stored in the file named "Bibliography.bib"
\end{document} % The End
%% ----------------------------------------------------------------