University of Utah Dissertation Class
From charlesreid1
University of Utah Thesis Class
This document describes how to utilize the University of Utah Thesis Class to write your University of Utah dissertation in LyX. The procedure described has been confirmed to work on both Windows and Mac.
You can download the class file here:
You can download the layout file here:
You can download the example LyX file illustrating use of the dissertation class here:
Introduction
This document assumes you have a working knowledge of both TeX/LaTeX and LyX, and a working, up-to-date copy installed on your system. At the time of this writing, that was LyX 2.0.1. See http://www.lyx.org for a copy, or google "mactex" if you need a tex distribution on your computer.
You can also visit my LaTeX page and my LyX page. I wrote up a detailed guide on how I figured out how to meet the absurd requirements of the thesis office.
This document has two parts.
First, there is a guide on how to use it in your dissertation LyX file and recognized by LaTeX.
Second, there is an example LyX file, and an explanation of the exmaple file.
These two parts are woven together, so each step of the user guide is illustrated with the example LyX file.
Usage Guide
Before You Begin
As mentioned in the introduction, it is assumed you have a TeX distribution and LyX installed on your machine.
To use the University of Utah thesis class, you will first need to download all of the necessary files:
- Thesis class file: http://www.charlesmartinreid.com/cmr_uuthesis.cls
- Example LyX file: http://www.charlesmartinreid.com/disseration_class_example.lyx
Macros
A couple of LaTeX macros define some important things, like who is on your committee and such. The important ones are included in the example file. You can add straight TeX into a LyX document by picking "Insert > TeX Code...". Use this to put macros into your dissertation. Also, see the example file.
Title and Author
You'll have to enter the title of the dissertation in all caps, but that's just about the only tricky thing you'll have to do for the title and author.
Front Matter
There are more LaTeX macros after the title and author, but these macros actually insert pages (as opposed to just defining important things).
The order of these pages is dictated by the University of Utah Thesis Office. See the dissertation handbook on the University of Utah Thesis Office web page for more info.
Table of Contents, List of Tables and Figures
There is some code before the table of contents that dictates the level of information displayed in the table of contents:
% Set the depth of the Table of Contents numbering
\setcounter{tocdepth}{1}
% 0 = chapter titles only
% 1 = chapter & section titles
% 2 = chapter, section, & subsection titles
% etc.
The Table of Contents is required. The List of Figures and List of Tables is only required if you have LESS THAN 25 ITEMS in each list. If you have more than 25 items in either of these lists, that list is optional.
Start of the Document
The document begins with \body in this block of text:
\body
\parindent 2em
\parskip 0pt
% This fixes some problems with equation spacing
\setlength{\abovedisplayskip}{0pt}
\setlength{\abovedisplayshortskip}{0pt}
\setlength{\belowdisplayskip}{15pt}
\setlength{\belowdisplayshortskip}{15pt}
As with any dissertation, I had to include some kludges to get this class to work (these four lines are a kludge for equation spacing). Fortunately there were very few kludges required.
Files
- Thesis class file: http://www.charlesmartinreid.com/cmr_uuthesis.cls
- Example LyX file: http://www.charlesmartinreid.com/disseration_class_example.lyx