\documentclass[final]{ukthesis} %you must include these 2 packages. \usepackage[pdfauthor={your name}, pdftitle={The Title}, pdfsubject={The Subject}, pdfkeywords={Some Keywords}, pdfproducer={Latex with hyperref}, pdfcreator={latex->dvips->ps2pdf}, pdfpagemode=UseOutlines, bookmarksopen=true, letterpaper, bookmarksnumbered=true]{hyperref} \usepackage{memhfixc} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \begin{document} %author data \author{your name} \title{THE TITLE} \abstract{an abstract} \advisor{your advisor} \keywords{keywords go here} \dgs{DGS name here} %the title pages \frontmatter \maketitle \begin{acknowledgments} Acknowledge people/things here \end{acknowledgments} \begin{dedication} Dedicated to things (optional) \end{dedication} \tableofcontents\clearpage \listoffigures\clearpage \listoftables\clearpage %---------------------------------------------- \mainmatter \chapter{The First Chapter} \section{The First Section} Math goes here. \begin{figure}[h] \centering Here's a figure \caption{A Simple Figure} \end{figure} \begin{table}[h] \centering \begin{tabular}{c|c} Here & is \\ \hline a & table \end{tabular} \caption{A Simple Table} \end{table} \copyrightnotice \chapter{The Second Chapter} Note the copyright notice at the end of each chapter. \copyrightnotice %----------------------------------------------- \backmatter put your bibliography/references here. Appendices go here as well. \chapter{Vita} A brief vita goes here. \end{document}