University of New Mexico (UNM) MS Thesis
Author
N/A
Last Updated
2 years ago
License
Creative Commons CC BY 4.0
Abstract
MS thesis template for the University of New Mexico, last updated in 2022.
\documentclass[letterpaper,12pt]{article}
\usepackage{setspace}
\usepackage[top=1in,left=1.5in,right=1in,bottom=1in]{geometry}
\pdfpageheight=11in
\pdfpagewidth=8.5in
\usepackage{lipsum}
\usepackage{tocloft}
\usepackage[document]{ragged2e}
% some special formatting
\renewcommand{\contentsname}{\normalsize{TABLE OF CONTENTS}}
\usepackage{etoolbox}
\patchcmd{\thebibliography}{\section*{\refname}}{}{}{}
\usepackage{titlesec}
\usepackage{indentfirst}
\usepackage{graphicx}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
urlcolor=blue,
linkcolor=black,
citecolor=black,
pdftitle={<Title>} % Add your title here
}
% section formatting
\titleformat*{\section}{\centering\normalsize\bfseries}
\titleformat*{\subsection}{\raggedright\normalsize\bfseries}
\titleformat*{\subsubsection}{\raggedright\normalsize\bfseries}
\renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}}
\begin{document}
% Roman page numbers
\renewcommand{\thepage}{\roman{page}}
\input{thesis/front_matter/approval.tex}
\input{thesis/front_matter/title.tex}
\input{thesis/front_matter/dedication.tex}
\input{thesis/front_matter/acknowledgment.tex}
\input{thesis/front_matter/abstract.tex}
% table of contents
\input{thesis/front_matter/toc.tex}
\doublespacing
% start page numbers in arabic for body
\pagenumbering{arabic}
% main body -- maybe you want to include these in other folders
\normalfont
\section{Introduction}
\vspace{.25in}
\RaggedRight
\vspace{0.1in} % Begin text
\addcontentsline{toc}{section}{References}
\section*{References}
\vspace{.15in}
\bibliographystyle{plain}
\bibliography{references}
\clearpage
\end{document}