rcrc1
[bsc-thesis1415.git] / thesis2 / thesis.tex
1 \documentclass[twopage,titlepage]{book}
2
3 \usepackage{algorithm2e} % Pseudocode
4 \usepackage{a4wide} % Paper size
5 \usepackage{graphicx} % Eps inclusion
6 \usepackage{float} % Floating placement of figures
7 \usepackage{listings} % Source code formatting
8 \usepackage{setspace} % Line spacing abstract
9 \usepackage[dvipdfmx,hidelinks]{hyperref} % Hyperlinks
10 \usepackage{amssymb} % nexists and much more
11 \usepackage{amsmath} % Rightarrow and much more
12 \usepackage{marvosym} % For euro sign
13
14 \lstset{%
15 basicstyle=\footnotesize,
16 numbers=left,
17 numberstyle=\tiny,
18 breaklines=true,
19 showspaces=false,
20 showstringspaces=false,
21 tabsize=2,
22 }
23
24 \newcommand{\cvartitle}{Adaptable crawler specification generation system for %
25 leisure activity RSS feeds}
26
27 % Setup hyperlink formatting
28 \hypersetup{
29 pdftitle={\cvartitle},
30 pdfauthor={Mart Lubbers},
31 pdfsubject={Artificial Intelligence}
32 }
33
34 % Describe the frontpage
35 \author{
36 Mart Lubbers\\
37 s4109053\\
38 Artificial Intelligence\\
39 Radboud University Nijmegen\\
40 \strut\\
41 External supervisor: Alessandro Paula\\
42 Internal supervisor: Franc Grootjen
43 }
44 \title{\cvartitle}
45 \date{\today}
46
47 \begin{document}
48 \maketitle
49 \tableofcontents
50
51 % Surrogate abstract
52 \chapter*{
53 \centering
54 \begin{large}
55 Abstract
56 \end{large}
57 }
58 \begin{quotation}
59 \noindent
60 \onehalfspacing
61 \input{abstract.tex}
62 \end{quotation}
63 \clearpage
64
65 \chapter{Introduction}
66 \input{1.introduction.tex}
67
68 \chapter{Requirements and design}
69 \input{2.requirementsanddesign.tex}
70
71 \chapter{Algorithm}
72 \input{3.methods.tex}
73
74 \chapter{Conclusion \& Discussion}
75 \input{4.discussion.tex}
76
77 \chapter{Appendices}
78 \input{5.appendices.tex}
79
80 \bibliographystyle{ieeetr}
81 \bibliography{thesis}
82
83 \end{document}