-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaper.tex
89 lines (75 loc) · 2.41 KB
/
paper.tex
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
\documentclass{report}
% Packages
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[frenchb]{babel}
% \usepackage[english]{babel}
\usepackage[a4paper,width=170mm,top=18mm,bottom=22mm,includeheadfoot]{geometry}
\usepackage{titlepic}
\usepackage{titlesec}
\usepackage{graphicx}
\usepackage{listings}
\usepackage{color}
\usepackage{amsmath}
\usepackage{hyperref}
\definecolor{lightgray}{gray}{0.75}
\titleformat{\chapter}[hang]{\Huge\bfseries}{\thechapter\hspace{20pt}\textcolor{lightgray}{|}\hspace{20pt}}{0pt}{\Huge\bfseries}
\lstset{
language=C,
basicstyle=\small\sffamily,
numbers=left,
numberstyle=\tiny,
frame=tb,
tabsize=4,
columns=fixed,
showstringspaces=false,
showtabs=false,
keepspaces,
showtabs=false,
morekeywords={*, include, GET, POST, PUT, DELETE, let, u8, u16, u32, u64, use, pub, mut, trait, where, fn, self, Result, new, var, using, public, namespace, foreach},
commentstyle={\color{gray}\textit},
keywordstyle=\color{blue},
stringstyle=\color{green}
}
\hypersetup{
colorlinks=true,
linkcolor=black, % color of internal links (change box color with linkbordercolor)
citecolor=black, % color of links to bibliography
filecolor=black, % color of file links
urlcolor=blue % color of external links
}
% Document metadata
\title{
\huge Données centralisées et intelligences interconnectées \\
\LARGE Un Système pour les gouverner tous
}
\author{
Valentin \textsc{Fries} \\ Master Architecture des Logiciels
\and
Vincent \textsc{Milano} \\ Master Architecture des Logiciels
\and
Benjamin \textsc{Raynal} \\ Docteur en Vision par ordinateur \\ Maître de mémoire
}
%\date{} % Defaults to compilation date.
\titlepic{
\vfill
\includegraphics[width=4cm]{preludes/images/esgi.png}
\includegraphics[width=7cm]{preludes/images/reseauges.png}
}
% Document
\begin{document}
\pagenumbering{gobble}
\maketitle
%\include{preludes/acknowledgment}
\include{preludes/abstract}
\tableofcontents
\pagenumbering{arabic}
\include{chapters/00/00_introduction}
\include{chapters/01/00_les_technosocietes}
\include{chapters/02/00_un_systeme}
\include{chapters/03/00_l_intelligence}
\include{chapters/04/00_conclusion}
\pagenumbering{roman}
\include{appendix/appendix}
\include{appendix/bibliography}
\end{document}