-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy paththesis.tex
195 lines (137 loc) · 4.56 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
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
% Cal Poly Thesis
%
% based on UC Thesis format
%
% modified by Mark Barry 2/07.
%
\documentclass[12pt]{ucthesis}
\usepackage{ifpdf}
\newif\ifpdf
\ifx\pdfoutput\undefined
\pdffalse % we are not running PDFLaTeX
\else
\pdfoutput=1 % we are running PDFLaTeX
\pdftrue \fi
\usepackage{url}
\usepackage{multicol}
\usepackage{cite}
\ifpdf
\usepackage[pdftex]{graphicx}
% Update title and author below...
\usepackage[pdftex,plainpages=false,breaklinks=true,colorlinks=true,urlcolor=blue,citecolor=blue,
linkcolor=blue,bookmarks=true,bookmarksopen=true,%
bookmarksopenlevel=3,pdfstartview=FitV,
pdfauthor={Kevin Schapansky},
pdftitle={Jester: A Device Abstraction and Data Fusion API for Skeletal Tracking Sensors},
pdfkeywords={thesis, masters, cal poly}]{hyperref}
%Options with pdfstartview are FitV, FitB and FitH
\pdfcompresslevel=1
\else
\usepackage{graphicx}
\fi
\usepackage{hyperref}
\hypersetup{
linktoc=all,
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}
\usepackage{titlesec}
% \titleformat{\chapter}[display]% OLD
% {\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\Huge}% OLD
% \titlespacing*{\chapter}{0pt}{50pt}{40pt}% OLD
\titleformat{\chapter}[display]% NEW
{\normalfont\centering}{\chaptertitlename\ \thechapter}{12pt}{}% NEW
\titlespacing*{\chapter}{0pt}{30pt}{20pt}% NEW
%\titleformat{\section}[block]{first}{label}{12pt}
\titleformat{\section}{}{\thesection}{1em}{}
\titleformat{\subsection}{}{\thesubsection}{1em}{}
\titleformat{\subsubsection}{}{\thesubsubsection}{1em}{}
\titleformat{\paragraph}{}{\theparagraph}{1em}{}
\usepackage[font={}]{caption}
%\renewcommand{\cftchapleader}{\cftdotfill{\cftdotsep}} % for chapters
%\renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage[letterpaper,papersize={8.5in,11in}]{geometry}
\usepackage[overload]{textcase}
\usepackage[toc,page]{appendix}
\usepackage{tabularx}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{enumitem}
\setlist{nolistsep}
\floatstyle{boxed}
\restylefloat{table}
%\bibliographystyle{abbrv}
\setlength{\parindent}{0.25in} \setlength{\parskip}{6pt}
\geometry{verbose,nohead,tmargin=1.0in,bmargin=1.0in,lmargin=1.5in,rmargin=1.0in}
\setcounter{tocdepth}{3}
\setcounter{secnumdepth}{3}
% Different font in captions (single-spaced, bold) ------------
%\newcommand{\captionfonts}{\small\bf\ssp}
\newcommand{\captionfonts}{}
\makeatletter % Allow the use of @ in command names
\long\def\@makecaption#1#2{%
\vskip\abovecaptionskip
\sbox\@tempboxa{{\captionfonts #1: #2}}%
\ifdim \wd\@tempboxa >\hsize
{\captionfonts #1: #2\par}
\else
\hbox to\hsize{\hfil\box\@tempboxa\hfil}%
\fi
\vskip\belowcaptionskip}
\makeatother % Cancel the effect of \makeatletter
% ---------------------------------------
\begin{document}
% Declarations for Front Matter
% Update fields below!
\title{Jester:
A Device Abstraction and Data Fusion API
for Skeletal Tracking Sensors}
\author{Kevin Schapansky}
\degreemonth{June} \degreeyear{2014} \degree{Master of Science}
\defensemonth{June} \defenseyear{2014}
\numberofmembers{3} \chair{Professor Zo{\"e} Wood, Ph.D.,\newline Department of Computer Science} \othermemberA{Assistant Professor Chris Lupo, Ph.D.,\newline Department of Computer Science} \othermemberB{Professor Franz Kurfess, Ph.D.,\newline Department of Computer Science} \field{Computer Science} \campus{San Luis Obispo}
\copyrightyears{seven}
\maketitle
\begin{frontmatter}
% Custom made for Cal Poly (by Mark Barry, modified by Andrew Tsui).
\copyrightpage
% Custom made for Cal Poly (by Andrew Tsui).
\committeemembershippage
\begin{abstract}
\input{chapters/Abstract}
\end{abstract}
\begin{acknowledgements}
Thanks to:
\begin{itemize}
\item My advisor Zo{\"e} Wood, for being literally the coolest.
\item My parents for years of amazing support.
\end{itemize}
\end{acknowledgements}
\tableofcontents
\listoftables
\listoffigures
\end{frontmatter}
\pagestyle{plain}
\renewcommand{\baselinestretch}{1.66}
% ------------- Main chapters here --------------------
\include{chapters/Introduction}
\include{chapters/Background}
\include{chapters/RelatedWorks}
\include{chapters/APIDesignImpl}
\include{chapters/ModuleImplementation}
\include{chapters/Results}
\include{chapters/ConclusionFutureWork}
% ------------- End main chapters ----------------------
\clearpage
\bibliographystyle{plain}
\bibliography{Bibliography}
%\begin{appendix}
%%\addcontentsline{toc}{chapter}{\appendixnamelower}
%\include{Appendix}
%\end{appendix}
\end{document}