\documentclass[12pt,oneside]{book}
\usepackage{setspace}
\onehalfspacing
\usepackage[margin=1in, headsep=1cm, bottom=5cm]{geometry}
% A conventional font, size 12-point, 12 characters per inch must be used. Line spacing must be double or 1.5. Left and right hand margins should be 1 inch.
\usepackage{graphicx} % Required for inserting images
\usepackage{subcaption}
\usepackage[hidelinks]{hyperref} % for hyperlinks
\usepackage{url}
\usepackage{amsmath,bm}
\usepackage{amssymb}
\usepackage{amsfonts} % blackboard math symbols
\usepackage{bbold}
\usepackage{multicol}
\usepackage{multirow}
\usepackage{longtable}
\usepackage{nameref}
\input{math_commands}
\input{title_page}
\usepackage{natbib}
% \bibliographystyle{unsrtnat}
\bibliographystyle{plainnat}
% \bibliographystyle{IEEEtran}
% Title formats
\usepackage{fix-cm}
\usepackage[bf,rm,medium]{titlesec}
\renewcommand\chaptername{Chapter}
\titleformat{\chapter}[display]{\Huge\bfseries}{\chaptername~\thechapter\vspace*{-2ex}\newline\rule{\textwidth}{1pt}}{-1.5ex}{
\vspace{1ex}
}[
\vspace{-1.5ex}%
]%
\title{Your Awesome \\ Thesis Title \\ Here}
\author{Name Surname}
\begin{document}
%%%%% Big title page %%%%%
\maketitle
%%%%% Technical content %%%%%
\pagestyle{plain}
\pagenumbering{roman}
%% GENERATED list of contents, figures and tables.
\tableofcontents
\listoffigures
\listoftables
\include{content/glossaries}
\clearpage
%% Abstracts on English and French
\include{content/abstract}
%% Acknowledgements
\include{content/acknowledgements}
%%%%% Chapters %%%%%
\pagenumbering{arabic}
\include{content/chapters/01_introduction}
\include{content/chapters/02_lit_review}
\include{content/chapters/03_chapter_name}
\include{content/chapters/04_other_chapter}
\include{content/chapters/05_another_chapter}
\include{content/chapters/06_conclusion}
\bibliography{bibliography/my_papers, bibliography/intro, bibliography/conclusion}
\appendix
\renewcommand\chaptername{Appendix}
\include{content/appendices/appendix}
% Formatting notes as of 2025
\include{content/appendices/format_notes}
\end{document}