% !TEX TS-program = pdflatex
%% uothesis-memoir v.1.4 (October 2, 2023)
%% Note: TexLive 2022 is required. I did not check the compatibility with MikTeX (Apr 2, 2023) -> In fact MikTeX is also compatible (checked).
\documentclass[12pt, letterpaper, oneside]{memoir} % For these and other possible options, see the memoir manual.
%% According to the style manual, 10pt is minimum, but no specifications on two-sided option and paper size.
%% Load packages and other preamble part.
\input{packages}
\input{preamble-after-pkg}
%% For the information of your thesis/dissertation
\settitle{Dissertation Title Here} % Title
\setauthor{A. N. Author} % Your full name here
\setdoctype{Dissertation} % Thesis/dissertation
\setdegree{Doctor of Philosophy} % Your *official* degree name
\setgradyear{2021} % Graduation year
\setgradmonth{June} % Graduation month
\setdept{Department of Somethings} % Your *official* department name
\setmajor{Somethings} % Your *official* major name
%% Beginning the document.
\begin{document}
% Do NOT use \frontmatter and \mainmatter divisions for the correct pagination.
% Load TeX file for prepatory pages
\input{prefatory}
\pagestyle{uothesis}
%% Main texts and appendices
%% For this part use \include instead of \input
% Main
\include{Text-tex/chapter1}
% Appendices
\include{Text-tex/appendix-single} % for single appendix chapter
%\include{Text-tex/appendix-multiple} % for multiple appendix chapters
%% For endnotes, you can use \makepagenote and \printpagenotes; see the memoir manual.
%% References using BibLaTeX
\begin{SingleSpace} % for single spacing in each entry
% for Rerences Cited section
\printbibliography[title={REFERENCES CITED}, category=cited]
% for Bibliography section
%\printbibliography[title={BIBLIOGRAPHY}]
%
\end{SingleSpace}
%% Ending document
\end{document}