% !TEX program = xelatex
\documentclass[12pt,twoside,cjk,appendixtocprefix]{ruthesis}
% NOTE: The following packages are ALREADY loaded by ruthesis.cls:
% - geometry, setspace, graphicx, xcolor, rotating
% - amsmath, amssymb, amsthm, bm
% - hyperref, caption, subcaption
% - algorithm, algpseudocode, listings
% - biblatex
% --------------------------------------------------------
% 1. Preamble: Add extra packages only if needed
% --------------------------------------------------------
\usepackage{csquotes} % Recommended for BibLaTeX
\usepackage{epigraph} % Chapter-start quotations
\usepackage{booktabs} % Professional tables
\usepackage[inline]{enumitem} % Enhanced list support
\usepackage{ifdraft} % Logic for draft mode
% FixMe Package (Useful for "To Do" notes during drafting)
\usepackage{fixme}
\fxsetup{theme=color, mode=multiuser}
\FXRegisterAuthor{rm}{arm}{RM} % Register author "RM" (Randall Munroe)
% CleverRef is loaded by ruthesis.cls (after hyperref)
% --------------------------------------------------------
% 2. Bibliography Setup
% --------------------------------------------------------
% Point this to your .bib file
\addbibresource{thesis.bib}
% --------------------------------------------------------
% 3. Thesis Metadata
% --------------------------------------------------------
\title{Everybody Out: Moving All Humans Off-Planet}
\author{The Landlord}
\department{Office of Lease Termination \& Evictions}
\school{Rice University}
\degree{Doctor of Philosophy}
% Committee Members
\committee{
Person One, Chair \\
Professor of Physics \\
Professor of Electrical and Computer Engineering
\and
Person Two \\
Professor of Physics
\and
Person Three \\
Professor of Electrical and Computer Engineering
}
\address{Houston, Texas}
\donemonth{May}
\doneyear{2026}
% --------------------------------------------------------
% 4. Document Body
% --------------------------------------------------------
\begin{document}
% -- Front Matter (Roman numerals, Title pages) --
\begin{frontmatter}
\makecover % The abstract/cover shield page
\maketitle % The signature page
% Include frontmatter content files
\include{frontmatter/dedication}
\include{frontmatter/abstract}
\include{frontmatter/ack}
\tableofcontents
\listoffigures
\listoftables
\end{frontmatter}
% -- Main Matter (Arabic numerals) --
\include{chapters/intro}
\include{chapters/analysis}
\include{chapters/conclusions}
% -- Appendices --
\appendix
\include{appendices/ink}
% -- Bibliography --
\nocite{*}
\printbibliography[heading=bibintoc, title=References]
\end{document}