-
Notifications
You must be signed in to change notification settings - Fork 3
/
utk.tex
147 lines (121 loc) · 5.79 KB
/
utk.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
%-----------------------------------------------------------------------------%
% DOCUMENT CLASS OPTIONS
%-----------------------------------------------------------------------------%
% The following is a list of the available document class options.
% The first option listed is the default, for more details see
% the "DEFAULT DOCUMENT CLASS OPTIONS" section in utk.cls
% dissertation, thesis
% 12pt, 11pt
% roman, sans, typewriter
% onehalfspace, singlespace, doublespace
% justifytext, lefttext
% lefttitle, centertitle
% centerpagenum, rightpagenum
% notes, (no option)
%\documentclass[notes, thesis]{utk}
\documentclass[notes, dissertation]{utk}
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
% PACKAGE CONFIGURATIONS
%-----------------------------------------------------------------------------%
% Fonts - choose at most one
%\usepackage{helvet} % Helvetica (sans)
%\usepackage{avant} % Avant-Garde (sans)
\usepackage{times} % Times (sans/roman)
%\usepackage{lmodern} % Latin Modern (sans/roman)
%\usepackage{tgtermes} % TeX Gyre Termes (roman)
%\usepackage{tgschola} % TeX Gyre Schola (roman)
%\usepackage{palatino} % Palatino (sans/roman)
%\usepackage{courier} % Courier (sans/roman)
%\usepackage{utopia} % Utopia (sans/roman)
%\usepackage{bookman} % Bookman (sans/roman)
%\usepackage{charter} % Charter (roman)
% Bibliography package
%\usepackage{natbib} % references without numbering
\usepackage[square,numbers,sort&compress]{natbib} % references with numbering
% Paths where figures are located and allowed file image extensions
\graphicspath{{figures/}{figures/pdf/}{figures/eps/}}
\DeclareGraphicsExtensions{.png,.pdf,.jpg,.jpeg}
% Manually correct bad/special hyphenations
%\hyphenation{op-tical net-works semi-conduc-tor}
% Custom
%\usepackage{lineno}
%\linenumbers
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
% GENERAL INFORMATION
%-----------------------------------------------------------------------------%
\title{Analysis on some data using some technique}
\author{Student A. Name} % name as registered in official student records
%\academicdegree{Master of Science}
\academicdegree{Doctor of Philosophy}
\major{Computer Science}
\department{Electrical Engineering and Computer Science}
\university{The University of Tennessee, Knoxville}
\graduationYear{2020}
\graduationMonth{December}
\majorProfessor{Jane P. Doe}
\dean{Dixie L. Thompson}
\committeeMembers{
Member A. Davis,
Member B. Miller,
Member C. Smith
}
%-----------------------------------------------------------------------------%
\begin{document}
%-----------------------------------------------------------------------------%
% COMMITTEE APPROVAL FORMS
%-----------------------------------------------------------------------------%
%{\singlespacing \makeApprovalPage} % optional, print form
%{\singlespacing \makeApprovalPageE} % optional, electronic form
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
% FRONT-MATTER
%-----------------------------------------------------------------------------%
\clearpage\pagenumbering{roman}
{\onehalfspacing \makeTitlePage}
{\singlespacing \makeCopyrightPage} % optional
\input{front-matter/dedication} % optional
\input{front-matter/acknowledgments} % optional
\input{front-matter/abstract}
\input{front-matter/preface} % optional
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
% TABLE OF CONTENTS/TABLE/FIGURES/NOMENCLATURE
%-----------------------------------------------------------------------------%
{\clearpage\onehalfspacing \tableofcontents}
{\clearpage\onehalfspacing \listoftables} % if applicable
{\clearpage\onehalfspacing \listoffigures} % if applicable
{\onehalfspacing \input{front-matter/abbreviations}} % if applicable
{\onehalfspacing \input{front-matter/symbols}} % if applicable
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
% CHAPTERS
%-----------------------------------------------------------------------------%
\clearpage\pagenumbering{arabic}
\input{chapters/chapter-1}
\input{chapters/chapter-2}
\input{chapters/chapter-3}
\input{chapters/chapter-4}
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
% BIBLIOGRAPHY
%-----------------------------------------------------------------------------%
\makeBibliography{List of References}
%\bibliographystyle{plainnat} % Plain style
%\bibliographystyle{apalike} % APA
\bibliographystyle{ieeetr} % IEEE Transactions
{\onehalfspacing \bibliography{utk}}
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
% BACK-MATTER
%-----------------------------------------------------------------------------%
\initializeAppendix[1]{Appendices} % if applicable
\input{back-matter/appendix-a} % if applicable
\input{back-matter/appendix-b} % if applicable
\finalizeAppendix % restores pre-appendix environment, used with \initializeAppendix
\fancyhead{} % always disable page header for vita
\addToTOC{Vita} % include in table of contents
\input{back-matter/vita}
%-----------------------------------------------------------------------------%
\end{document}