\documentclass{article}
\usepackage{graphicx} % Required for inserting images
\usepackage[a4paper, total={6.27in, 9.69in}]{geometry}
\renewcommand{\baselinestretch}{1.5}
\usepackage{blindtext}
\graphicspath{ {figures/} }
\usepackage{array}
\usepackage[
backend=biber,
style=authoryear ,
sorting=ynt
]{biblatex}
\usepackage[nottoc,numbib]{tocbibind}
\addbibresource{references.bib}
\title{Thesis Template}
\author{kb3917 }
\date{May 2024}
\begin{document}
\pagenumbering{roman}
% Adds the title page
\input{titlepage}
% Adds the abstract
\input{Abstract}
% Adds the acknowledgements
\newpage
\input{Acknowledgements}
% Adds the table of contents
\newpage
\tableofcontents
% Adds the list of figures
\newpage
\listoffigures
% Adds the list of tables
\newpage
\listoftables
\newpage
\begin{center}
\Large \textbf{Glossary}
\end{center}
\begin{itemize}
\item \underline{COMSOL Multiphysics} - modelling software that is used to simulate physical processes.
\item \underline{Concentration} - – the amount of matter per unit volume.
\end{itemize}
\newpage
\pagenumbering{arabic}
\section{Introduction}
\subsection{test}
\blindtext
\begin{figure}[h]
\centering
\includegraphics{figures/CH3NH3PbI3_structure.png}
\caption{Perovskite crystalline structure}
\label{fig:enter-label}
\end{figure}
hello (\cite{beepat2024simulation}) and another citation (\cite{beepat2023comsol}).
\blindtext
\blindtext
\section{Method}
\blindtext
\begin{table}[h]
\centering
\begin{tabular}{|c|c|}
\hline
parameter 1 & 100 \\
\hline
parameter 2 & 101 \\
\hline
\end{tabular}
\caption{Example table}
\label{tab:my_label}
\end{table}
\newpage
\addcontentsline{toc}{section}{References}
\printbibliography
\end{document}