\documentclass[12pt,twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage[a4paper, width=150mm, top=30mm, bottom=30mm, bindingoffset=6mm]{geometry}
% Add landscape page in LaTeX
\usepackage{lscape}
\usepackage{setspace}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[LO,LE]{\leftmark}
\fancyfoot{}
\fancyfoot[CO,CE]{\thepage}
\renewcommand{\headrulewidth}{0.25pt}
\renewcommand{\footrulewidth}{0.25pt}
\usepackage{epsfig,epic,eepic,units}
\usepackage{hyperref} %allows to add hyperlinks and cross reference in-text
\usepackage{textcomp} %this is for symbols such as copyright etc
\usepackage{url} %for adding urls obvs so they appear always in one line without breaks
\usepackage{longtable} %allows you to make tables of two or more pages
\usepackage{mathrsfs} %maths fonts, might not need
\usepackage{array} %extends array and tabular environments
\usepackage{multirow} %for tables again
\usepackage{bigstrut} %tables
\usepackage{booktabs}
\usepackage{amssymb} %adding arrows tbh for chemistry you can just use chemmacros \begin{reaction} environment
\usepackage{amsmath} %for writing maths
\usepackage{adjustbox}%supplement to graphics package
\usepackage{graphicx}
\usepackage{lscape} %allows to add certain pages in landscape
\usepackage{notoccite} %keeps rogue citations in check
%\usepackage{natbib} %When in doubt, this is your bibliography management package, feel free to sub for biblatex but you will need to change this, Overleaf has instructions in the Help manuals
\usepackage[
backend=biber,
style=apa,
]{biblatex}
\addbibresource{References.bib}
\usepackage[nottoc]{tocbibind} %this adds bibliography to your ToC
\usepackage{chemmacros} %for chem people read the manual for this
\usepackage{textgreek} %for upright greek letters
\usepackage{siunitx}
%you can declare the units you want as necessary read documentation
\begin{document}
\sloppy
\setlength{\headheight}{15pt}
\include{title} %title file for the front page
\hypersetup{pdfborder=0 0 0}
\doublespacing
\include{Thanks-abstact} % Abstract and Acknowledgements
\renewcommand*\contentsname{Table of Contents} %this is to have the correct heading on the ToC
\tableofcontents %make table of contents
\listoffigures
\listoftables
%edit these to suit you, add/remove as necessary. Use \include{filetitle} to add a .tex for each chapter
\include{intro}
\include{Chapter2}
\include{Chapter3}
\include{Chapter4}
\include{Conclusions}
\addcontentsline{toc}{chapter}{Bibliography}
\printbibliography
\include{Appendices}
%remember to either sync with Mendeley or Zotero or upload a .bib file exported from those cite using \cite{CitationTagXXXX} there will be a list it's ok
\end{document}