-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
65 lines (52 loc) · 1.98 KB
/
main.tex
File metadata and controls
65 lines (52 loc) · 1.98 KB
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
\documentclass[a4paper, twoside]{report}
%% Language and font encodings
\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
%% Sets page size and margins
\usepackage[a4paper,top=2cm,bottom=2.5cm,left=2cm,right=2cm,marginparwidth=1cm]{geometry}
%% Useful packages
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{listings}
\usepackage{color}
\usepackage{float}
\usepackage{caption}
\lstset{basicstyle=\small\ttfamily,
keywordstyle=\color{purple}}
\usepackage{tikz}
\usetikzlibrary{calc,positioning,shapes,arrows}
\usepackage{tabularx}
\newcolumntype{L}{>{\hsize=0.7\hsize\raggedright\arraybackslash}X}
\newcolumntype{H}{>{\raggedright\arraybackslash}X}
\def\arraystretch{1.2}
\usepackage{booktabs}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage[colorlinks=true, allcolors=blue]{hyperref}
\usepackage{enumitem}
\setlist[enumerate]{leftmargin=*}
\title{Building an Efficient Query Processor \\ by Generating OpenCL Code \\ from Voodoo Vector Algebra}
\author{Alexander Clarke \\ Qiang Feng \\ Mayeul Fournial \\ Pranav Kalidindi \\ Jordan Spooner \\ Laurence Squires}
% Update supervisor and other title stuff in title/title.tex
%% Our own style changes
\setlength{\parindent}{0pt}
\setlength{\parskip}{\medskipamount}
\usepackage{tgpagella}
\begin{document}
\input{title/title.tex}
\renewcommand{\abstractname}{Acknowledgements}
\begin{abstract}
We would like to thank Holger Pirk for his continuous guidance and support. We would also like to thank Robert Chatley for the invaluable advice from each of our software engineering consultations.
\end{abstract}
\tableofcontents
\input{executive-summary/executive-summary.tex}
\input{introduction/introduction.tex}
\input{project-management/project-management.tex}
\input{design-and-implementation/design-and-implementation.tex}
\input{evaluation/evaluation.tex}
\input{reflection/reflection.tex}
\bibliographystyle{alpha}
\bibliography{bibs/references}
\input{appendix/appendix.tex}
\end{document}