\documentclass[a4paper, 12pt]{article}
\usepackage{template} % Load your custom thesis package
\usepackage[backend=biber,style=numeric,sorting=none, url=false,maxnames=5,minnames=1]{biblatex}
\addbibresource{references.bib} % Your .bib file
\defbibheading{bibliography}{} % Remove the heading of bibliography
\begin{document}
% Title Page
\mytitlepage{THE TITLE OF YOUR DEGREE}{THE TITLE OF YOUR THESIS}{INTERNAL SUPERVISOR'S NAME}{EXTERNAL SUPERVISOR'S NAME}{YOUR NAME}{STUDENT NUMBER}{--------} % Define title page based on your information
\clearpage
% Leave an empty page after the title page
\phantom{}
\pagestyle{empty}
\clearpage
% Acknowledgement
\section*{Acknowledgement}
\noindent WRITE DOWN YOUR APPRECIATION
\thispagestyle{empty} % Remove all styles for this page to keep it plain
\clearpage
% Abstract
\pagenumbering{roman} % Roman page numbering
\section*{Abstract}
THIS SECTION IS FOR WRITING THE ABSTRACT OF YOUR THESIS.
% Table of Contents
\clearpage
\tableofcontents
\listoffigures
\listoftables
\clearpage
% Reapply the page style to ensure consistency
\pagestyle{fancy}
\pagenumbering{arabic} % Switch to Arabic numerals for the main content
% Introduction
\section{Introduction}
THIS IS THE SECTION FOR INTRODUCTION.\cite{knuth1984texbook}
\textit{\noindent A quick help on sectioning the body of your thesis: \\
use \textbackslash section for HEADING ONE (1.XXX)\\
use \textbackslash subsection for HEADING TWO (1.1.XXX)\\
use \textbackslash subsubsection for HEADING THREE (1.1.1.XXX)}
Here is how to cite your references.\cite{lamport1986latex}
Here is how to reference table \ref{tab:tab1}.
Here is how to reference Figure \ref{fig:fig1}.
\begin{figure}[H]
\centering
\includegraphics[width=0.7\textwidth]{example-image-a.jpg}
\caption{\small \textbf{\textit{TITLE OF THE FIGURE}}}
\footnotesize \textit{You can write a description for the figure here.\cite{website2023example}}
\label{fig:fig1}
\end{figure}
\begin{table}[h!]
\centering
\caption{\textit{TITLE OF YOUR TABLE.}}
\label{tab:tab1}
\begin{tabular}{llccccll}
\toprule
\textbf{Sample 1} & \textbf{Sample 2} & \textbf{Sample 3} & \textbf{Sample 4} & \textbf{Sample 5} & \textbf{Sample 6} \\
\midrule
Data 1 & Data 2 & Data 3 & Data 4 & Data 5 & Data 6 \\
Data 1 & Data 2 & Data 3 & Data 4 & Data 5 & Data 6 \\
Data 1 & Data 2 & Data 3 & Data 4 & Data 5 & Data 6 \\
Data 1 & Data 2 & Data 3 & Data 4 & Data 5 & Data 6 \\
Data 1 & Data 2 & Data 3 & Data 4 & Data 5 & Data 6 \\
\bottomrule
\end{tabular}
\caption*{\textit{Note: Write the footnote of the table here.}}
\end{table}
% Results
\clearpage
\section{Results}
THIS IS THE SECTION FOR RESULTS.
% Discussion
\clearpage
\section{Discussion and Future Perspectives}
THIS IS THE SECTION FOR DISCUSSION.
% Conclusion
\clearpage
\section{Conclusion}
THIS IS THE SECTION FOR THE CONCLUSION.
% Materials and Methods
\clearpage
\section{Materials and Methods}
THIS IS THE SECTION FOR MATERIALS AND METHODS.
% Bibliography
\clearpage
\section{Bibliography}
\textbf{Make sure you have created your \textit{'references.bib'} file based on the desired bibliography style (e.g. APA). }
\printbibliography
\clearpage
\section*{}
\thispagestyle{empty}
\phantom{}
\end{document}