%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Template for CWRU CDS Qualify Exam
% Version 1.0 (10-Jul-2023)
%
% Original author:
% Mengying Wang
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% QE written report requirements of the CDS department: 11 pt font, single-spaced, single column, 1" margins.
% Fill in your title, name, and committee members in commands.tex.
\documentclass[11pt, letterpaper]{article}
% Load necessary packages
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{graphicx}
\usepackage{float}
\usepackage{setspace}
\usepackage{xspace}
\usepackage{lipsum} % For generating dummy text. 
\usepackage[margin=1in]{geometry}
\usepackage{titlesec} % For customizing section titles
\usepackage{abstract} % For customizing abstract
\usepackage[numbers]{natbib} % For bibliography
\usepackage{hyperref} % Create link for content
\usepackage{multibib}
\usepackage{tcolorbox}
\newcites{mypub}{Published}
\newcites{review}{Under Review}
\newcites{prepare}{In Preparation}
\singlespacing % Set single spacing
\setlength{\parskip}{0.25\baselineskip} % Set paragraph spacing
\hypersetup{
    colorlinks=true,
    citecolor=black,
    filecolor=black,
    linkcolor=black,
    urlcolor=black
}
\input{commands}
\begin{document}
\pagenumbering{roman}
% Title page
\begin{titlepage}
    \begin{center}
        \vspace*{0.3in}
        \Huge{\textbf{\MakeUppercase{\qetitle}}}
        \vspace{0.45in}
        \Large{\textbf{by}}
        
        \vspace{0.45in}
        \Large{\textbf{\MakeUppercase{\name}}}
        
        \vspace{0.5in}
        \Large{A qualifying examination submitted in partial fulfillment \\
        of the requirements for the degree of \\
        \degreeaward}
        \vspace{0.8in}
        \large{Committee Members: \\
        Prof. \chair (Chair)\\
        Prof. \advisor (Advisor) \\
        Prof. \committee}
        \vspace{0.75in}
        \includegraphics[width=0.55\textwidth]{fig/cwru_logo.eps} 
        \vspace{0.7in}
        \Large{\department \\
        \university \\
        \monthyeardate}
    \end{center}
\end{titlepage}
% Abstract page
\thispagestyle{plain}
\begin{center}
    \Large
    \textbf{\qetitle}
        
    \vspace{0.13in}
    \textbf{\name}
    
    \vspace{0.13in}
    \normalsize{Committee: Dr. \chair(Chair), Dr. \advisor(Advisor), Dr. \committee}
       
    \vspace{0.3in}
    \large
    \textbf{Abstract}
\end{center}
\input{sections/abstract}
\newpage
% Table of contents
\tableofcontents
\newpage
\pagenumbering{arabic}
\input{sections/introduction}
\input{sections/literature}
\input{sections/method}
\input{sections/benchmark}
\input{sections/future}
% Acknowledgments
\phantomsection
\addcontentsline{toc}{section}{Acknowledgments}
\input{sections/acknowledgements}
\newpage
% References
\phantomsection
\addcontentsline{toc}{section}{References}
\bibliographystyle{unsrtnat}
\bibliography{bib/refer, bib/mypub}
\newpage
% Paper records
\phantomsection
\addcontentsline{toc}{section}{Appendix: Publications}
\input{sections/publications}
\end{document}