blob: 3b534e5c8fb3859081288960c416a89599754b09 (
plain) (
blame)
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
|
\documentclass[12pt]{uthesis-v12} %---> DO NOT ALTER THIS COMMAND
\usepackage{hyperref}
\usepackage{epigraph}
\usepackage{listings}
\usepackage[dvips]{graphicx}
\graphicspath{{images/}}
\DeclareGraphicsExtensions{.eps}
\begin{document} %---> %---> %---> %---> DO NOT ALTER THIS COMMAND
\title{combox}
\author{Siddharth Ravikumar}
\copyrightpage{yes}
\mydocument{Project}
\degree{Masters of Science}{Computer Science}
\conferraldate{May}{2016}
\advisor{Dr.~Robert C. Green II}
\graduatedean{Dr.~Michael Ogawa}{Dean}
\maketitle %----> -----> ----> ----> DO NOT ALTER THIS COMMAND
% abstract
\include{prologue/abstract}
% dedication
\include{prologue/dedication}
% acknowledgments
\include{prologue/ack}
\tableofcontents %-----> -----> ----> DO NOT ALTER THIS COMMAND
\listoftables \listoffigures
\captionformat{hang}
\include{prologue/abbrev}
\include{prologue/preface}
%--------+----------------------------------------------------------+
% | \makebody (REQUIRED) |
% | |
% | See section 3.16 of "Read_Me_First_(v12).pdf" |
% | |
% | This is a *required* UThesis command; again, bad |
% | things will happen if this command is not included in |
% | your document at this particular location --- see the |
% | file "Read_Me_First_(v12).pdf" for details. |
% +----------------------------------------------------------+
\makebody %-------> -------> -------> DO NOT ALTER THIS COMMAND
%XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
%XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
%XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
%XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
%--------+----------------------------------------------------------+
% | \chapter{} (REQUIRED) |
% | |
% | See section 3.17 of "Read_Me_First_(v12).pdf" |
% | |
% | For guidance on using the commands \chapter{}, |
% | \section{}, \subsection{}, \subsubsection{}, etc., see |
% | Leslie Lamport's "LaTeX: A Document Preparation |
% | System." Addison Wesley: Reading Massachusetts, 1985. |
% +----------------------------------------------------------+
%% 1
\include{chapters/1-intr}
%% 2
\include{chapters/2-lit-r}
%% 3
\include{chapters/3-arch-d}
%% 4
\include{chapters/4-testing}
%% 5
\include{chapters/5-con-f}
%% references
\bibliographystyle{IEEEtran}
\bibliography{bib/combox}
%% appendix
\appendix
\include{appendix/combox-2to3}
\end{document} %---> ---> ---> ---> DO NOT ALTER THIS COMMAND
%XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
%XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
%XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
%XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
|