-
Notifications
You must be signed in to change notification settings - Fork 3
/
report.latex
65 lines (53 loc) · 1.49 KB
/
report.latex
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,12pt]{report}
\usepackage{amsmath} % mathematics
\usepackage{amssymb}
\usepackage{array}
\usepackage[british]{babel}
\usepackage[usenames,dvips]{color}
\usepackage[a4paper,margin=1.5cm,bottom=2.25cm]{geometry}
\usepackage{graphicx}
\usepackage{float}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{pbox}
\usepackage{rotating}
\usepackage{url}
\usepackage{wrapfig}
\usepackage{subfig}
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}
\lstset{
basicstyle=\mdseries\footnotesize,
keywordstyle=\color{BlueViolet}\bfseries,
identifierstyle=\color{black},
commentstyle=\color{OliveGreen},
morecomment=[s][\color{OliveGreen}]{/**}{*/},
stringstyle=\color{RedOrange},
showstringspaces=false,
tabsize=2
}
\newfloat{program}{tbhp}{lop}
\floatname{program}{Code Extract}
\renewcommand{\baselinestretch}{1.3}
\newcommand{\pgraphic}[1]{\includegraphics[width=\textwidth,height=\textheight,keepaspectratio=true]{figures/#1}}
\title{MACE: Multi-Agent Community Evolution}
\author{ISE 2011}
\begin{document}
\maketitle
\tableofcontents
\input{1-Introduction/introduction.latex}
\input{2-Research/research.latex}
\input{3-Design/design.latex}
\input{4-Simulations/simulations.latex}
\input{6-Conclusion/conclusion.latex}
\input{6-Conclusion/furtherwork.latex}
\input{7-Appendices/appendix.latex}
\bibliographystyle{IEEEtran}
\bibliography{references}
\end{document}
% vim: set nospell nolist: