-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.tex
279 lines (174 loc) · 3.72 KB
/
setup.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
%
% PROJECT: <ETD> Electronic Thesis and Dissertation Initiative
% TITLE: LaTeX report template for ETDs in LaTeX
% AUTHOR: Neill Kipp, [email protected]
% URL: http://etd.vt.edu/latex/
% SAVE AS: etd.tex
% REVISED: September 6, 1997 [GMc 8/30/10]
%
% Ported to MultiMarkdown by various members of TREC in 2014-2015.
% Instructions: Remove the data from this document and replace it with your own,
% keeping the style and formatting information intact. More instructions
% appear on the Web site listed above.
\documentclass[12pt]{report}
\usepackage{graphics}
\usepackage{graphicx}
\usepackage{pdflscape}
\usepackage{geometry}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{verbatim}
\usepackage{url}
\usepackage{hyperref}
\usepackage{booktabs} % Better tables
\usepackage{tabulary} % Support longer table cells
\usepackage[title,titletoc]{appendix}
\ifdefined\myglossary
\usepackage[acronym,xindy,nonumberlist,nopostdot]{glossaries}
\makeglossaries
\fi
\renewcommand*{\chapterautorefname}{Chapter}
%Allow for importation of custom packages on a per-user basis
\ifx\mypackages\undefined
\else
\input{\mypackages}
\fi
%Correctly reacting to definition of bibliography to optionally enable biber
\ifx\bibliocommand\undefined
\else
\usepackage[
backend=biber,
natbib=true,
sorting=none,
safeinputenc=true
]{biblatex}
\renewcommand{\bibliography}[1]{\addbibresource{#1.bib}}
\bibliocommand
\fi
\renewcommand\[{\begin{equation}}
\renewcommand\]{\end{equation}}
\usepackage[utf8]{inputenc}
\usepackage{setspace} % Set desired linespacing
\setlength{\textwidth}{6.5in}
\setlength{\textheight}{8.5in}
\setlength{\evensidemargin}{0in}
\setlength{\oddsidemargin}{0in}
\setlength{\topmargin}{0in}
\setlength{\parindent}{0pt}
\setlength{\parskip}{0.1in}
\begin{document}
\thispagestyle{empty}
\pagenumbering{roman}
\begin{center}
% Title
{\Large
\mytitle
}
\vfill
% Author name
\myauthor
\vfill
% Type of submission (e.g., Thesis or Dissertation)
\myreporttype \,submitted to the Faculty of the \\
Virginia Polytechnic Institute and State University \\
in partial fulfillment of the requirements for the degree of
\vfill
% Type of Degree
\mydegree \\
in \\
\mydepartment
\vfill
% List of commitee members
\mycommittee
\vfill
% Date and Location
\ifx\mydate\undefined
\def\mydate{\today}
\fi
\mydate \\
\ifx\mydefenselocation\undefined
Blacksburg, Virginia
\else
\fi
\vfill
%If year is undefined, use the current year
\ifx\myyear\undefined
\def\myyear{\the\year}
\fi
% List of keywords
Keywords: \mykeywords \\
Copyright \myyear, \myauthor
\end{center}
\pagebreak
\thispagestyle{empty}
\begin{center}
{\large \mytitle}
\vfill
\myauthor
\vfill
% Abstract
Academic Abstract
\vfill
\end{center}
% If myabstract is defined, use it
\ifx\myabstract\undefined
\else
\input{\myabstract}
\fi
\ifx\mypublicabstract\undefined
\else
\vfill
\pagebreak
\thispagestyle{empty}
\begin{center}
{\large \mytitle}
\vfill
\myauthor
\vfill
% Abstract
General Audience Abstract
\vfill
\end{center}
\input{\mypublicabstract}
\vfill
\fi
% Grant Information
\ifx\mygrants\undefined
\else
\mygrants
\fi
\pagebreak
% Dedication and Acknowledgments are both optional
\ifx\mydedication\undefined
\else
\chapter*{Dedication}
\mydedication
\fi
\ifx\myacknowledgements\undefined
\else
\chapter*{Acknowledgments}
\myacknowledgements
\fi
\pagebreak
% Table of Contents
\tableofcontents
\pagebreak
% List of Figures
\listoffigures
\pagebreak
% List of Tables
\listoftables
\pagebreak
\ifdefined\myglossary
\input{\myglossary}
% Glossaries
\printglossaries
\pagebreak
\fi
\pagenumbering{arabic}
\pagestyle{myheadings}
% Set line spacing after front matter
\ifx\mylinespace\undefined
\else
\mylinespace
\fi