\documentclass[12pt,a4paper]{report}
% Template settings (fonts, margins, macros)
\usepackage{template}
\usepackage{tabularx}
\RequirePackage{float} % enables [H]
\RequirePackage{svg}
% ---------- IGNORE STRANGE WARNINGS ----------
% this is just to ignore a superfluous warning about a package which has evidently "changed". No need to worry about it.
\usepackage{silence}
\WarningFilter{latex}{Command \showhyphens has changed}
% This is just added coz the colofon has a lot of empty space before text came and I got sick of that warning. Just ignore these two commands.
\hbadness=10000
\vbadness=10000
% ===== THESIS INFO (you should fill this in or use soft references) =====
\newcommand{\thesistype}{Doctoral Thesis}
\newcommand{\thesistitle}{If You Build It, They Will Copy: A Maastricht University PhD Thesis Template in Overleaf.}
\newcommand{\thesisauthor}{Anon E. Muzz}
\newcommand{\thesisyear}{2026}
\renewcommand{\contentsname}{Table of Contents}
% ============== MAIN DOCUMENT START ==============
\begin{document}
% ---------- TITLE ----------
\input{frontmatter/title}
% ---------- COPYRIGHT / COLOPHON ----------
\input{frontmatter/colophon}
% ---------- OFFICIAL DISSERTATION PAGE ----------
\input{frontmatter/dissertation}
% ---------- SUPERVISORY & ASSESSMENT COMMITTEE ----------
\input{frontmatter/committee}
% ---------- CONTENTS ----------
\input{frontmatter/contents}
% ---------- MAIN THESIS CHAPTERS ----------
\clearpage
\pagenumbering{arabic}
% ---------- Chapter 1 ----------
\begin{thesischapter}{General Introduction}
\input{chapters/01-introduction}
\end{thesischapter}
% ---------- Chapter 2 ----------
% note: if you cite a paper here (e.g. using cite or fullcite), it will be added below to your title page of the chapter. If you want you can change its layout in template.sty (up-to-you).
\begin{thesischapter}[%
\fullcite{muzzsubmitted}
]{The Cognitive Load of Margin Adjustment in Novice Researchers}
\input{chapters/02-Paper1}
\end{thesischapter}
% ---------- Chapter 3 ----------
% note: if you cite a paper here (e.g. using cite or fullcite), it will be added below to your title page of the chapter. If you want you can change the layout in template.sty (up-to-you).
\begin{thesischapter}[%
\fullcite{muzz2025templateexposure}
]{Longitudinal Effects of Template Exposure on Supervisory Patience}
\input{chapters/03-paper2}
\end{thesischapter}
% ---------- Chapter 4 ----------
\begin{thesischapter}{Thesis Margin Drift as a Predictor of Academic Burnout}
\input{chapters/04-paper3}
\end{thesischapter}
% ---------- Chapter 5 ----------
\begin{thesischapter}{Existential Outcomes of Prolonged Template Interaction in Early-Stage Doctoral Life}
\input{chapters/05-paper4}
\end{thesischapter}
% ---------- Chapter 5 ----------
\begin{thesischapter}{General Discussion}
\input{chapters/06-general_discussion}
\end{thesischapter}
% ---------- SUMMARIES ----------
\input{chapters/summaries}
% ---------- IMPACT STATEMENT ----------
\input{chapters/impact}
% ---------- ACKNOWLEDGEMENTS ----------
\input{chapters/acknowledgements}
% ---------- CV ----------
\input{chapters/curriculum_vitae}
% ---------- Bibliography ----------
\printbibliography
\end{document}
% ============== MAIN DOCUMENT END ==============