blob: 4962fe7b436ec6dac0bec15a88fbe134354662f0 (
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
|
\documentclass[12pt]{uthesis-v12} % [invariant]
% packages
\usepackage{hyperref}
\usepackage{epigraph}
\usepackage{listings}
\usepackage[dvips]{graphicx}
\graphicspath{{images/}}
\DeclareGraphicsExtensions{.eps}
% pdf output config
\hypersetup{pdftitle={combox report - 2016/05},
pdfauthor={Siddharth Ravikumar}}
\begin{document}
\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
% abstract
\include{prologue/abstract}
% dedication
\include{prologue/dedication}
% acknowledgments
\include{prologue/ack}
\tableofcontents
\listoftables \listoffigures
\captionformat{hang}
% abbreviations
\include{prologue/abbrev}
% preface
\include{prologue/preface}
\makebody % [invariant]
% chapters
%% 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}
|