\documentclass[12pt,a4paper]{report}
% Formatting
\input{formatting}
% Start of Document
\begin{document}
\pagenumbering{Roman}
% Title page
\input{0a_titlepage}
% Abstract
\input{0b_abstract}
% Table of Contents
\tableofcontents
% List of Figures
\listoffigures
% List of Tables
\listoftables
% List of Abbreviations
\input{0c_abbreviations}
\cleardoublepage
\setcounter{savepage}{\arabic{page}}
% Chapters
\input{01_introduction}
\pagenumbering{arabic}
\input{02_methodology}
\input{03_chapter3}
\input{04_chapter4}
%\input{05_chapter5}
%\input{06_chapter6}
%\input{07_chapter7}
%\input{08_chapter8}
%\input{09_chapter9}
% Authors
\input{10_5authors}
% References
\bibliographystyle{apalike} % define style
\bibliography{sources.bib}
% Appendix
\input{12_appendix}
% Statuatory Declaration / Affidavit
\input{13_statutoryDeclaration}
\end{document}