8f426dafe87ef1338210bf5fa8bf223d627220c0
[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 tabsize=2,
20 }
21
22 \newcommand{\cvartitle}{Adaptable crawler specification generation system for %
23 leisure activity RSS feeds}
24
25 % Setup hyperlink formatting
26 \hypersetup{
27 pdftitle={\cvartitle},
28 pdfauthor={Mart Lubbers},
29 pdfsubject={Artificial Intelligence}
30 }
31
32 % Describe the frontpage
33 \author{
34 Mart Lubbers\\
35 s4109053\\
36 Artificial Intelligence\\
37 Radboud University Nijmegen\\
38 \strut\\
39 External supervisor: Alessandro Paula\\
40 Internal supervisor: Franc Grootjen
41 }
42 \title{\cvartitle}
43 \date{\today}
44
45 \begin{document}
46 \maketitle
47 \tableofcontents
48
49 % Surrogate abstract
50 \chapter*{
51 \centering
52 \begin{large}
53 Abstract
54 \end{large}
55 }
56 \begin{quotation}
57 \noindent
58 \onehalfspacing
59 \input{abstract.tex}
60 \end{quotation}
61 \clearpage
62
63 \chapter{Introduction}
64 \input{1.introduction.tex}
65
66 \chapter{Requirements and design}
67 \input{2.requirementsanddesign.tex}
68
69 \chapter{Algorithm}
70 \input{3.methods.tex}
71
72 \chapter{Conclusion \& Discussion}
73 \input{4.discussion.tex}
74
75 \chapter{Appendices}
76 \input{5.appendices.tex}
77
78 \bibliographystyle{ieeetr}
79 \bibliography{thesis}
80
81 \end{document}