% main.tex — Master file for University of Melbourne thesis
% University of Melbourne thesis guidelines:
% https://gradresearch.unimelb.edu.au/processes/preparation-of-graduate-research-theses
\documentclass[oneside]{uomthesis}
%--------------------------------------------%
%% Metadata %%
%--------------------------------------------%
\ThesisTitle{Thesis Title Here}
\ThesisAuthor{Your Name}
% \ThesisOrcid{000000-000X}
\ThesisDegree{Doctor of Philosophy}
\ThesisDate{Jun 2025}
% \ThesisResubmissionDate{Sep 2025}
\ThesisDepartment{Department of Physics}
\ThesisUniversity{The University Of Melbourne}
% \ThesisJointInstitution{}
\ThesisSupervisor{Your Supervisor Name}
\begin{document}
\maketitle
%--------------------------------------------%
%% Front matter %%
%--------------------------------------------%
\frontmatter
\include{frontmatter/abstract}
\include{frontmatter/declaration}
\include{frontmatter/preface}
\include{frontmatter/dedication}
\include{frontmatter/acknowledgements}
\tableofcontents
\listoffigures
\listoftables
% \include{frontmatter/copyright}
%%% Acronyms and Glossaries %%%
% \PrintAcronym{frontmatter/acronyms}
% \PrintGlossary{frontmatter/glossaries}
%%% Print Nomenclatures %%%
% \PrintNomenclature{frontmatter/nomenclature}
%--------------------------------------------%
%% Load chapters %%
%--------------------------------------------%
\mainmatter
\include{chapters/01_introduction}
\include{chapters/02_theory}
%--------------------------------------------%
%% Appendices %%
%--------------------------------------------%
\appendix
\include{appendix/additional_data}
%--------------------------------------------%
%% Bibliography %%
%--------------------------------------------%
\bibliographystyle{unsrt} % bib style
\bibliography{bibliography/refs} % load bib file
\end{document}