\documentclass[a4paper,12pt, PhD]{stb-thesis}
\include{imports}
% Words to not be capitalised by \capitalisewords
\MFUnocap{of}
\MFUnocap{using}
\MFUnocap{vs.}
\MFUnocap{for}
\MFUnocap{and}
\MFUnocap{the}
% Words to not be capitalised by \titlecap
\Addlcwords{of using vs. for and the}
% Editing
\definecolor{reviewercolor}{HTML}{008000}
\definecolor{candidatecolor}{HTML}{6699CC}
\newcommand{\reviewer}[1]{\textcolor{reviewercolor}{#1}}
\newcommand{\candidate}[1]{\textcolor{candidatecolor}{#1}}
\newcommand{\revtodo}[1]{\todo[color=reviewercolor]{Reviewer: #1}}
\newcommand{\candidatetodo}[1]{\todo[color=candidatecolor]{Candidate: #1}}
% Name
\title{Some thesis title}
\author{Name Surname}{Name Surname}
\newcommand{\Studentnumber}{12345678}
\faculty{Faculty of Engineering}
\degree{PhD (Electronic Engineering)}{Doctor of Philosophy (Electronic Engineering)}
\supervisor[c]{Prof.\ Name Surname}
\input{frontmatter/defined_acronyms}
\input{frontmatter/definitions}
\makenoidxglossaries
\begin{document}
% Front matter
\input{frontmatter/title_page}
\input{frontmatter/dedication}
\pagenumbering{roman}
\input{frontmatter/acknowledgements}
\input{frontmatter/declaration}
\input{frontmatter/abstract}
\acuseall
\clearpage
\renewcommand{\contentsname}{Table of Contents}
\addcontentsline{toc}{chapter}{Table of contents}
\tableofcontents
\newpage
\addcontentsline{toc}{chapter}{List of figures}
\listoffigures
\addcontentsline{toc}{chapter}{List of tables}
\listoftables
\clearpage
\input{frontmatter/nomenclature}
\pagenumbering{arabic}
\acresetall
% Contents
\input{chapters/introduction}
\acresetall
\input{chapters/literature}
\input{chapters/conclusion}
% Bibliography
\chapter*{References}\markboth{}{\scshape References}
\addcontentsline{toc}{chapter}{References}
\renewcommand{\bibsection}{}
\bibliography{mybib}
% End matter
\appendix
\input{appendices/appendices}
\end{document}