update abstract
[bsc-thesis1415.git] / thesis2 / thesis.tex
1 \documentclass[twopage,titlepage]{book}
2
3 \usepackage{algorithm2e}
4 \usepackage{a4wide}
5 \usepackage{courier}
6 \usepackage{graphicx}
7 \usepackage{float}
8 \usepackage{minted}
9 \usepackage{xcolor}
10 \usepackage[dvipdfmx,hidelinks]{hyperref}
11 \usepackage{graphviz}
12 \usepackage{amssymb}
13 \usepackage{amsmath}
14 \usepackage{marvosym}
15 \usepackage{setspace}
16
17 % Set listings settings
18 \definecolor{mintedbackground}{rgb}{0.95,0.95,0.95}
19 \newmintedfile[xmlcode]{xml}{
20 bgcolor=mintedbackground,
21 fontfamily=tt,
22 fontsize=\scriptsize,
23 frame=leftline,
24 framerule=0.4pt,
25 framesep=2mm,
26 funcnamehighlighting=true,
27 gobble=0,
28 linenos=true,
29 mathescape=false
30 numberblanklines=true,
31 numbersep=10pt,
32 numbersep=5pt,
33 obeytabs=false,
34 showspaces=false,
35 samepage=false,
36 showtabs =false,
37 tabsize=1,
38 texcl=false,
39 }
40
41 \newcommand{\cvartitle}{Adaptable crawler specification generation system for
42 leisure activity RSS feeds}
43 % Setup hyperlink formatting
44 \hypersetup{
45 pdftitle={\cvartitle},
46 pdfauthor={Mart Lubbers},
47 pdfsubject={Artificial Intelligence},
48 }
49
50 % Describe the frontpage
51 \author{
52 Mart Lubbers\\
53 s4109053\\
54 Artificial Intelligence\\
55 Radboud University Nijmegen\\
56 \strut\\
57 External supervisor: Alessandro Paula\\
58 Internal supervisor: Franc Grootjen\\
59 }
60 \title{\cvartitle}
61 \date{\today}
62
63 \begin{document}
64 \maketitle
65 \tableofcontents
66
67 % Surrogate abstract
68 \chapter*{
69 \centering
70 \begin{large}
71 Abstract
72 \end{large}
73 }
74 \begin{quotation}
75 \noindent
76 \onehalfspacing
77 \input{abstract.tex}
78 \end{quotation}
79 \clearpage
80
81 \chapter{Introduction}
82 \input{1.introduction.tex}
83
84 \chapter{Requirements and design}
85 \input{2.requirementsanddesign.tex}
86
87 \chapter{Algorithm}
88 \input{3.methods.tex}
89
90 \chapter{Conclusion \& Discussion}
91 \input{4.discussion.tex}
92
93 \chapter{Appendices}
94 \input{5.appendices.tex}
95
96 \bibliographystyle{plain}
97 \bibliography{thesis}
98
99 \end{document}