-
Notifications
You must be signed in to change notification settings - Fork 1
/
thesis.tex
88 lines (61 loc) · 1.7 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
\documentclass[a4paper]{article}
%%%%%%%% PACKAGES %%%%%%%%
\usepackage{graphicx}
\usepackage{url}
\usepackage[numbers,sort]{natbib}
%\usepackage{showkeys} % Shows citation and reference keys on your pdf
% Algorithms
\usepackage{algorithmic}
% This gives floating, captioned algorithms
\usepackage{algorithm}
% Tables
\usepackage{booktabs}
\usepackage{multirow}
% Equals-aligned equations
\usepackage{amsmath}
%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%% MACROS %%%%%%%%%
% This LaTeX file contains some macros for the CC license page.
\input{aux/creativecommons}
% My self defined commands
\input{aux/commands}
%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%% SETTINGS %%%%%%%%
% The paths to the graphics files:
\graphicspath{{images/}{generated/}}
% Section counting
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\title{Multiary Wavelet Trees in Practice}
\author{Alex Bowe\\
\texttt{alex.bowe@rmit.edu.au} \\ \\
Honours Thesis \\ \\
\textbf{Supervisor:} Simon Puglisi\\ \\ \\
School of Computer Science and Information Technology \\
RMIT University\\
Melbourne, AUSTRALIA}
\date{November 2010}
\maketitle
\begin{abstract}
\input{chapters/abstract} \\ \\
\end{abstract}
\textbf{Keywords:} data structures, algorithms, string search, compression, indexes
%\include{chapters/LicenseDisclaimer}
\newpage
\tableofcontents
\newpage
\include{chapters/introduction}
\include{chapters/preliminaries}
\include{chapters/wtrrr}
\include{chapters/multiarywtgrrr}
\include{chapters/experiments}
\include{chapters/results}
\include{chapters/conclusion}
\include{chapters/acknowledgements}
%\appendix
%\include{chapters/tables}
\bibliographystyle{abbrv}
\bibliography{bibliography}
\end{document}