% here's the UCD web page for the thesis format % http://gradstudies.ucdavis.edu/continuing/filingprint.htm \documentclass[12pt, oneside]{amsart} \usepackage{epsfig, amssymb, amsfonts} \usepackage[left=1.5in, right=1in, top=1in, bottom=1in]{geometry} % DEFINE THEOREM ENVIRONMENTS, COMMAND ABBREVIATIONS, ETC. \newtheorem{lemma}{Lemma}[section] \newtheorem{proposition}[lemma]{Proposition} \newtheorem{theorem}[lemma]{Theorem} \newtheorem{claim}[lemma]{Claim} \newtheorem{conjecture}[lemma]{Conjecture} \newtheorem{corollary}[lemma]{Corollary} \newtheorem*{special theorem}{My Specially-Named Theorem} \newcommand{\bd}{\partial} \newcommand{\N} { {\mathbb N} } \newcommand{\Z} { {\mathbb Z} } % you can use this command to skip chunks of your document % just put the command around the chunk like this % \comment{ ...the chunk... } \newcommand{\comment}[1]{} \newcommand{\skipline}{\vspace{12pt}} \begin{document} % this starts the page-numbering at the bottom-center with roman numerals, % like you're supposed to for the beginning pages \pagenumbering{roman} \pagestyle{plain} % DOCUMENT INFO \title{A Short Proof of the Riemann Hypothesis} \author{Joseph Benjamin Schmoe} \date{\today} % TITLE PAGE \begin{center} \begin{Large}A Short Proof of the Riemann Hypothesis\end{Large}\\ \skipline By\\ \skipline JOSEPH BENJAMIN SCHMOE\\ A.B. (Whatever University) 2000\\ \skipline DISSERTATION\\ \skipline Submitted in partial satisfaction of the requirements for the degree of\\ \skipline DOCTOR OF PHILOSOPHY\\ \skipline in\\ \skipline MATHEMATICS\\ \skipline in the\\ \skipline OFFICE OF GRADUATE STUDIES\\ \skipline of the\\ \skipline UNIVERSITY OF CALIFORNIA,\\ \skipline DAVIS\\ \vspace{1in} Approved:\\ \skipline \rule{2.5in}{1pt}\\ \skipline \rule{2.5in}{1pt}\\ \skipline \rule{2.5in}{1pt}\\ \skipline \rule{2.5in}{1pt}\\ \skipline Committee in Charge\\ \skipline 2004\\ \end{center} % this starts the double-spacing \renewcommand{\baselinestretch}{1.6}\small\normalsize % TABLE OF CONTENTS \newpage \tableofcontents % ABSTRACT \newpage \section*{Abstract} Your abstract here. % ACKNOWLEDGMENTS \newpage \section*{Acknowledgments} Your words of thanks here. % BEGIN TEXT OF THESIS % here you start page-numbering in the upper right \newpage \pagestyle{headings} \pagenumbering{arabic} \section{Introduction} % \input{introduction.tex} \newpage \section{Preliminary Results} % \input{preliminary.tex} % BIBLIOGRAPHY \newpage \begin{thebibliography}{Th} \bibitem[Th]{Th} W.~Thurston, {\em Three-dimensional geometry and topology}, vol. 1, Princeton Mathematical Series, no. 35, Princeton University Press, 1997. \end{thebibliography} \end{document} )