% ---- ETD Document Class and Useful Packages ---- %
\documentclass{ucetd}
\usepackage{subfigure,epsfig,amsfonts}
\usepackage{natbib}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
%% Use these commands to set biographic information for the title page:
\title{Thesis Title}
\author{Thesis Author}
\department{Thesis Department}
\division{Thesis Division}
\degree{Type of Degree}
\date{Graduation Date}
%% Use these commands to set a dedication and epigraph text
\dedication{Dedication Text}
\epigraph{Epigraph Text}
\usepackage[pdfusetitle]{hyperref}
\hypersetup{unicode=true,
linktoc=all,
pdfsubject=subject here,
pdfkeywords=keyword1 keyword2 keyword3,
pdfborder={0 0 0},
breaklinks=true}
% See https://github.com/k4rtik/ucetd-latex/issues/1
\makeatletter
\let\ORG@hyper@linkstart\hyper@linkstart
\protected\def\hyper@linkstart#1#2{%
\lowercase{\ORG@hyper@linkstart{#1}{#2}}}
\makeatother
\begin{document}
%% Basic setup commands
% If you don't want a title page comment out the next line and uncomment the line after it:
\maketitle
%\omittitle
% These lines can be commented out to disable the copyright/dedication/epigraph pages
\makecopyright
\makededication
\makeepigraph
%% Make the various tables of contents
\tableofcontents
\listoffigures
\listoftables
\acknowledgments
% Enter Acknowledgements here
\abstract
% Enter Abstract here
\mainmatter
% Main body of text follows
\chapter{Introduction}
% Introductory stuff
\chapter{A Chapter}
\section{Introduction}
% Intro to chapter one
% Format a LaTeX bibliography
\makebibliography
\nocite{*}
% Figures and tables, if you decide to leave them to the end
%\input{figure}
%\input{table}
\end{document}