My Dissertation
My Dissertation
My Dissertation
Smokey Volunteer
May 2017
c by Smokey Volunteer, 2017
All Rights Reserved.
ii
dedication...
iii
Acknowledgments
iv
Abstract
v
Table of Contents
1 Introduction 1
1.1 Disclaimer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.2 Getting started . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
1.3 References . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
1.4 Theorem environments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
1.5 Figures and Tables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
1.5.1 General Rules . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
1.5.2 Single figures . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
1.5.3 Multipart figures . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
1.5.4 Tables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
4 Conclusions 13
Bibliography 14
Appendices 16
A Summary of Equations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
A.1 Cartesian . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
A.2 Cylindrical . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
B Summary of Stuff . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
vi
B.1 More Things . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
B.2 Other Aspects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
Vita 19
vii
List of Tables
viii
List of Figures
ix
Chapter 1
Introduction
This is a very short guide to an unofficial thesis/dissertation template for the University
of Tennessee. It has been updated to meet the specifications as of 2017 but can be easily
altered as the guidelines are changed. This template requires a basic knowledge of LATEX
and should cover the basic requirements in terms of required packages and functionality.
1.1 Disclaimer
This template is distributed with ABSOLUTELY NO WARRANTY. It serves
as a guideline and constitutes a basic structure for a thesis/dissertation. The
user assumes full responsibility for formatting and typesetting their document
and for verifying that all the thesis requirements set by the University
of Tennessee are met. Please refer to the most recent UT thesis guide
http://gradschool.utk.edu/thesesdissertations/formatting/ or contact the thesis
consultant (http://gradschool.utk.edu/thesesdissertations/). Please report any
bugs to the thesis consultant.
1
Figure 1.1: UT thesis template folder structure.
2
the “front-matter” folder. The “my-dissertation.tex” file is the file you compile to make your
dissertation. It’ll call all of the included files and compile the document properly. You may
want to change the name of the file to something like “my-name-dissertation.tex”. Next,
invoke the proper options for the “utthesis” document class. This class will take all the
options for the report class in addition to two options: thesis/dissertation and monochrome.
If you are writing a thesis, you must use ”thesis” otherwise, use ”dissertation” or omit that
option because dissertation is the default setting. The monochrome option converts all your
document to monochrome - except figures. This is very useful when printing your document.
Because this dissertation has colored hyperlinks, these will look washed out when printed on
a monochrome printer. Therefore, it is handy to have a monochrome copy of your thesis for
print.
Now you are ready to fill in the proper values corresponding to your title, name, degree,
etc. This can be done in the following section:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% TO DO: FILL IN YOUR INFORMATION BELOW - READ THIS SECTION CAREFULLY
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title{My Thesis or Dissertation Title} % title of thesis/dissertation
\author{Smokey Volunteer} % author’s name
\copyrightYear{2017} % copyright year of your
thesis/dissertation
\graduationMonth{May} % month of graduation for your
thesis/dissertation
\degree{Doctor of Philosophy} % degree: Doctor of Philosophy, Master of
Science, Master of Engineering...
\university{The University of Tennessee, Knoxville} % school name
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3
1.3 References
The bibliography style used in this template is ”apalike”. It is an author-year style based on
the APA specification. Here are a few examples. T. Hungerford wrote a book on Algebra,
[4]. In 1999, D. F. Anderson and P. S. Livingston wrote the defining paper on zero-divisor
graphs of commutative rings in [3]. You can also point out specific theorems in papers,
such as the fact that the zero-divisor graph always has diameter less than or equal to 3,
[3, Theorem 2.3]. You can also list several references at once. For example, for more on
zero-divisor graphs see [1, 2]. However, you can change this style to any format you’d like.
The code in the “my-dissertation.tex” file is
\utbiblio{#1}{apalike}{references-dissertation}
The first entry (“#1”) must remain there. It deletes the title “Bibliography” from being
printed again at the top of the bibliography page. The title “Bibliography” should only
appear on the title page. The second entry can be changed to any natbib style you’d like.
For example, plainnat, humannat, etc. The third entry is the name of your bibliography
.tex file. Remember to run BibTeX in order to compile the bibliography correctly. For more
information, visit http://merkel.texture.rocks/Latex/natbib.php.
Proof. This is the proof for this lemma that requires Theorem 1.3.
4
1.5 Figures and Tables
To comply with the 2017 dissertation formatting, figure captions should be placed below
the figure and table captions should be placed above the table. Also, if a table or figure
takes up more than half the page, then there should be no text on that page (except for
the caption of course). Lastly, you must allow tables and figures to float. DO NOT HARD
CODE POSITIONS. In addition, no table or figure should go into the margins. If a table or
figure does creep into the margins you can either resize it so that it properly fits within the
margins, or put it on its own page and make that specific page landscape. See Figure 1.5 for
an example. Note the page number location in the example. The code for this is given by:
\begin{landscape}
\thispagestyle{mylandscape}
\begin{figure}[h]
\centering
\includegraphics[width=9in]{32303-TheHill-byJoshQueener.jpg}
\caption{This view of The Hill is too wide for a portrait page.}
\label{fig:wide-pic}
\end{figure}
\end{landscape}
Be careful about where you place this landscape page, as well as all figures and tables.
These objects are not considered part of the text, and thus their placement should not be
assigned to a precise location. The general rule to follow is that no text page should have
significant white space, with the exception being the last page of a chapter. So if you mention
a figure in some paragraph but the figure will not fit on the remainder of the page, continue
the text (even if it’s a new section) to fill the current page with text and then place the
figure on the next page. To see an example of this, consider this page you are reading now.
We’ve mentioned Figure 1.5 in the previous paragraph. However, it requires a new page
5
and since there is plenty of space on this page, we’ve filled it with text and delayed the
\begin{landscape} section of code until the appropriate position.
For multipart figures, you need to use the package ”subfig”. here’s an example:
\begin{figure}[h]
6
\centering
\subfloat[Circle]{\label{fig:figure-a}\includegraphics[width=1.1in]
{fig02a-circle}}
\subfloat[Rectangle]{\label{fig:figure-b}\includegraphics[width=1.1in]
{fig02b-rectangle}}
\subfloat[Cube]{\label{fig:figure-c}\includegraphics[width=1.1in]
{fig02c-cube}}
\caption{Geometric shapes.}
\label{fig:multipart-figure}
\end{figure}
To add some space between the figures above, one can use the usual spacing commands such
as “\qquad”. For example,
\begin{figure}[h]
\centering
\subfloat[Circle]{\label{fig:fig-a-space}\includegraphics[width=1in]
{fig02a-circle}} \qquad
\subfloat[Rectangle]{\label{fig:fig-b-space}\includegraphics[width=1in]
{fig02b-rectangle}}\qquad
\subfloat[Cube]{\label{fig:fig-c-space}\includegraphics[width=1in]
{fig02c-cube}}\qquad
\caption{Geometric shapes with space between images.}
\label{fig:multipart-figure-space}
7
\end{figure}
8
Figure 1.5: This view of The Hill is too wide for a portrait page.
9
1.5.4 Tables
Again, table captions should be placed above the table. See Table 1.1 for an ex-
ample and to learn about Smokey’s history1 . For more information about tables, see
https://en.wikibooks.org/wiki/LaTeX/Tables.
1
According to Wikipedia: https://en.wikipedia.org/wiki/Smokey (mascot)
10
Chapter 2
11
Chapter 3
12
Chapter 4
Conclusions
13
Bibliography
14
[1] Anderson, D. F., Axtell, M., and Stickles, J. (2011). Zero-Divisor Graphs in Commutative
Rings, pages 23–45. Springer New York, New York, NY. 4
[2] Anderson, D. F., Frazier, A., Lauve, A., and Livingston, P. S. (2001). The zero-divisor
graph of a commutative ring, ii. Lecture Notes in Pure and Applied Mathematics, 220:61–
72. 4
15
Appendices
16
A Summary of Equations
some text here
A.1 Cartesian
A.2 Cylindrical
17
B Summary of Stuff
some text here
18
Vita
Vita goes here. The vita should be a brief biography about the author written in third
person and paragraph format. It should not be the author’s resume or CV.
19