-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththesis.tex
executable file
·135 lines (115 loc) · 4.94 KB
/
thesis.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
%!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
%!NOTE: This example file has been prepared according to the University of
%! Hawaii Style & Policy Manual for Theses and Dissertations dated
%! "Revised September 2010". If you have one with a later date, you may
%! need to make revisions to this document as well. In any event, making
%! sure your thesis complies with Graduate Education guidelines is
%! ultimately your responsibility. Caveat LaTeXtor. :)
%!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
%% The options are (you can only choose one from each group):
%%
%% 10pt, 11pt, 12pt: chooses the point size for the document. "11pt" is the
%% default.
%%
%% oneside, twoside: whether you want your document onesided or twosided. Note
%% that twosided is not guaranteed to work, and style
%% guidelines prohibit double sided printouts on final
%% copy. "oneside" is the default.
%%
%% draft, final: when printing drafts you can save a lot of paper by using the
%% "draft" option. It switches to single spacing, displays overful
%% hboxes with a black box, prints a version number on title page
%% and omits signature page. Of course for the final copy make
%% sure to use the "final" option! "final" is the default.
%%
%% thesis, dissertation: switches between the style for a master's thesis and a
%% Ph.D. dissertation. The differences are fairly minor
%% and limited to the front matter. "thesis" is the
%% default.
%%
%% actual, proposal: switches between actual document and proposal mode. In
%% proposal mode: the title page is simplified and the
%% version number is always printed.
%%
%%% Load the new uhthesis document class
\documentclass[11pt]{uhthesis}
%%% Load some useful packages:
%% New LaTeX2e graphics support
\usepackage{graphicx}
%% Package to linebreak URLs in a sane manner.
\usepackage{url}
%%% Declarations for Front Matter. Capitalize all of these values
%%% "normally". This allows the document class to format them properly.
%% Full title of thesis or dissertation, capitalized like a title should be.
\title{The Elements of Theses}
%% Your name, capitalized normally. Do not include any titles like Dr.
\author{Perry H. Disdainful}
%% Month in which you intend to receive your degree (i.e. graduation).
%% Presumably this will be one of: May, August, or December.
\degreemonth{May}
%% Year of expected graduation.
\degreeyear{2015}
%% Type of degree to be conferred.
\degree{Master of Science}
%% This is the chairperson of your committee. Do not use titles like Dr.
\chair{Rap Replinger}
%% The other members of your committee, seperated by "\\". Again, no titles,
%% and it is customary to list the outside committee member (if you have one)
%% last.
\othermembers{Andy Bumatai\\
Frank DeLima\\
Joseph B. Bogus}
%% The field in which you are obtaining your degree, capitalized normally.
\field{Computer Science}
%% If your discipline allows subfields, you can add it here. Note that this
%% is strictly controlled, so consult the Style & Policy guide before adding
%% a subfield.
%\subfield{Bioinformatics}
%% 4-6 optional keywords/phrases for use in indexing or as search terms
\keywords{theses, dissertations, graduating, misery}
%% The version number of your document. Consistent use of this will enable you
%% to tell old drafts from new ones. Final actual documents omit this
%% automatically so you can use it without fear of submission problems at the
%% end. If you do not define this parameter, it defaults to "1.0.0".
\versionnum{4.0.0}
%%% End of preamble
\begin{document}
\maketitle
\begin{frontmatter}
%%% Note, there is no longer a signature page included in the document, it
%%% has been replaced by Form IV
%%% Create the copyright page (optional)
\copyrightpage
%%% Bring in the dedication page from external file (optional)
\include{dedication}
%%% Bring in the acknowledgments section from external file (optional)
\include{acknowledgments}
%%% Bring in the abstract section from external file
\include{abstract}
%%% Generate table of contents
\tableofcontents
%%% Generate list of tables
\listoftables
%%% Generate list of figures
\listoffigures
\end{frontmatter}
%\normalsize
%%% Bring in the body of the thesis from external file
\include{introduction}
\include{related-work}
\include{design}
\include{results}
\include{conclusion}
%%% Switch to appendix mode
\appendix
%%% Bring in any appendices from external file (optional)
\include{appendix}
%% Just for demo purposes, include all entries from bib file
\nocite{*}
%%% Input file for bibliography
\bibliography{references}
%% Use this for an alphabetically organized bibliography
\bibliographystyle{plain}
%% Use this for a reference order organized bibliography
%\bibliographystyle{unsrt}
\end{document}