\documentclass[12pt]{report} %Use to change global font size
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Import various packages needed for formatting
%You can generally ignore this section
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{graphicx} % Used for additional options for importing figures
\usepackage[letterpaper,margin=1in, headsep=0.04in, headheight=0.21in]{geometry} %Use for margins
\usepackage{indentfirst}
\usepackage{amsmath}
\usepackage[version=3]{mhchem}
\usepackage{textalpha} %fix error if there are greek characters in .bib
\usepackage{longtable} %use for tables that extend past one page
\usepackage[explicit,compact]{titlesec}
\titleformat{\chapter}[block]
{\bfseries\normalsize}{\normalsize\thechapter.}{1ex}{\normalsize\centering #1}
\titleformat{\section}[block]
{\bfseries\normalsize}{\normalsize\thesection.}{1ex}{\normalsize\filright #1}
\titleformat{\subsection}[block]
{\bfseries\normalsize}{\normalsize\thesubsection.}{1ex}{\normalsize\filright #1}
\titlespacing{\chapter}{0pt}{-0.3in}{0.05in}
\usepackage{fancyhdr}
\fancypagestyle{plain}{\pagestyle{fancy}}
\pagestyle{fancy}
\fancyhf{} % clear existing header and footer
\fancyhead[R]{\thepage}
\renewcommand{\headrulewidth}{0pt}
\usepackage[title,titletoc]{appendix}
\usepackage[titles]{tocloft}
\renewcommand{\cftchapdotsep}{\cftdotsep}% Chapters should use dots in ToC
\usepackage{setspace}
\doublespacing
%Change bibliography style as needed
\usepackage[backend=biber,style=chem-acs]{biblatex}
\addbibresource{MyLibrary.bib} %Export from Zotero, no spaces in file name
\AtBeginBibliography{\vspace*{45pt}}
\title{Thesis Title}
\author{YOUR FULL NAME}
\date{DATE}
\pagenumbering{roman}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%main document begins below
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\input{TitlePage}
\newpage
\thispagestyle{empty}
\ \vspace{3in}
\begin{center}
\copyright \ Copyright 2025\\
YOUR NAME. All Rights Reserved.
\end{center}
\chapter*{Dedications}
To...
\chapter*{Acknowledgements}
\input{Acknowledgements}
% Table of Contents
\renewcommand{\cftchapleader}{\cftdotfill{\cftdotsep}}
\tableofcontents
% List of Tables
\newpage
\addcontentsline{toc}{chapter}{List of Tables}
\listoftables
% List of Figures
\newpage
\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures
%Abstract
\newpage
\addcontentsline{toc}{chapter}{Abstract}
\input{Abstract}
\newpage
\ \thispagestyle{empty} % Blank Page (not counted or numbered) has been inserted after the abstract
\newpage
\chapter{Background}
\pagenumbering{arabic}
\input{Chapters/Background}
\chapter{CHAPTER 1 TITLE}
\input{Chapters/Chapter01}
\chapter{CHAPTER 2 TITLE}
\input{Chapters/Chapter02}
\chapter{CHAPTER 3 TITLE}
\input{Chapters/Chapter03}
\chapter{CHAPTER 4 TITLE}
\input{Chapters/Chapter04}
\chapter{Summary and Future Work}
\input{Chapters/Conclusion}
%References/Bibliography
%Will not show up until you have citations in your writing
%Use \autocite{} not \cite{} in order to change styles in \usepackage[]{biblatex}
\begingroup
\addcontentsline{toc}{chapter}{Bibliography}
\setlength\bibitemsep{10pt} %Spacing between individual items
\setstretch{1} %Spacing within single item
\printbibliography
\endgroup
\begin{appendices}
\titleformat{\chapter}[block]
{\bfseries\normalsize}{\normalsize\appendixname{} \thechapter.}{1ex}{\normalsize\centering #1}
\chapter{APPENDIX 1}
\input{Chapters/Appendix}
\end{appendices}
\newpage
\addcontentsline{toc}{chapter}{Vita}
\chapter*{Vita}
About the author...
\newpage
\ \thispagestyle{empty} % Blank Page (not counted or numbered) has been inserted after the abstract
\newpage
\end{document}