% University of Nebraska at Omaha Thesis/Dissertation Template
%   VERSION: September 8, 2020
%
% This template was initially adapted to comply with UNO's format requirements by
% Ian Koeppe, with further updates by Brian Dorn.
%
% It is based on the Graduate Thesis template created by Sunil Patel
% (https://www.overleaf.com/latex/templates/easy-thesis-template/syvqzhcjnsxh), 
% who in turn adapted the ecsthesis template by Steve Gunn, under the LaTeX Project Public License
% which can be found here: http://latex-project.org/lppl/.
% Instructions are written inline...
\documentclass[letterpaper,11pt,oneside]{template/styles/thesis}
\input{template/styles/packages.tex}
\input{properties.tex} % 1. Update properties with title, name, etc...
\begin{document}
  \frontmatter
  \input{template/sections/title.tex}
  \input{sections/abstract.tex}         % 2. Complete the abstract.
  \input{sections/dedication.tex}       % 3. Complete the optional dedication, or comment this line out.
  \input{sections/acknowledgements.tex} % 4. Complete the optional acknowledgements, or comment this line out.
  \input{template/sections/tableOfContents.tex}
  \input{template/sections/listOfFigures.tex}
  \input{template/sections/listOfTables.tex}
  
  \doublespacing
  \mainmatter
  \pagestyle{fancy}
  \input{sections/chapters/01_introduction.tex} % 5. Create and add chapters as needed.
  
  
  \clearpage
  \label{Bibliography}
  \addcontentsline{toc}{chapter}{Bibliography}
  \bibliographystyle{apalike}   % 6. Update your desired reference style
  \singlespacing
  \begingroup
    \raggedright
    \sloppy
    \bibliography{references} % 7. Include your references in references.bib.
  \endgroup 
  
  \doublespacing
  \appendix
  \input{sections/appendices/a_sample.tex} % 8. Create and add appendices as needed.
\end{document}