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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
\documentclass[a4paper,titlepage,12pt,french,twoside,openright]{report}
\usepackage{graphicx}
%\usepackage[draft]{graphicx}
\usepackage{xcolor}
\usepackage[paper=a4paper,margin=2.5cm]{geometry}% http://ctan.org/pkg/geometry
\usepackage[pdftex,colorlinks=false]{hyperref}
\usepackage[french]{babel}
\usepackage[T1]{fontenc}
\usepackage[scaled]{helvet}
\renewcommand*{\familydefault}{\sfdefault}
\usepackage{colortbl}
\usepackage{ulem}
\usepackage{lipsum}
\usepackage{upgreek}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amsfonts}
\usepackage{csquotes}
\usepackage{algpseudocode}
\usepackage{algorithm}
\usepackage{subcaption}
\usepackage{setspace}
\usepackage{tikz}
\usepackage{cite}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{multirow}
\usepackage{placeins}
\usepackage{mathabx}
\usepackage{makecell}
\lstset{
basicstyle=\small\ttfamily,
columns=flexible,
breaklines=true
}
\usetikzlibrary {shapes.geometric}
\usetikzlibrary {shapes.symbols}
\usetikzlibrary{decorations.pathreplacing}
\definecolor{tabED}{rgb}{0.90, 0.87, 0.93}
\definecolor{txtED}{rgb}{0.60, 0.28, 0.02}
\definecolor{siteED}{rgb}{0.04, 0.27, 0.47}
\usetikzlibrary {shapes.geometric}
\usetikzlibrary {shapes.symbols}
\usetikzlibrary{decorations.pathreplacing}
\input{macros}
\input{theorem}
\input{tikz_assets/data}
\input{tikz_assets/param}
\begin{document}
\hypersetup{
pdftitle={Intelligence artificielle pour des services moraux}, %informations dans le titre
pdfauthor={Jan Aalmoes}, %dans les informations du document
pdfsubject={Th\`ese} %sous Acrobat.
}
\include{garde}
\newgeometry{top=2.5cm,bottom=2.5cm,right=2.5cm,left=2.5cm}
\include{ED}
\normalsize
\normalfont
\rmfamily
\tableofcontents
\newpage
\chapter*{Remerciements}
\input{remerciements}
\chapter*{Avertissement}
\input{avertissement}
\chapter*{Note sur la langue}
\input{notes}
\chapter*{Notations}
\input{notations}
\chapter{Introduction}
\input{introduction}
\chapter{Contexte}
\label{sec:contexte}
\section{Qu'est-ce que l'Intelligence Artificielle ?}
\label{sec:contexte-ckoi}
\input{contexte/ckoi}
\section{Philosophie de l'IA}
\label{sec:contexte-phi}
\input{contexte/philo}
\section{Les stratégies IA}
\input{contexte/strat}
\section{Enjeux}
\label{sec:contexte-enjeu}
\input{contexte/enjeux}
\section{Bases legales}
\input{contexte/legal}
\label{sec:contexte-legal}
\chapter{Prérequis}
\label{sec:pre}
\input{background/main}
\chapter{Classification finie}
\label{sec:fini}
\input{classification_finie/main}
\chapter{Attaque d'inférence d'attribut sensible}
\label{sec:aia}.
\input{aia/main}
\chapter{Données synthétiques}
\label{sec:synth}
\input{synthetic/main}
\chapter{Perspectives}
\label{sec:per}
\input{perspectives}
\chapter{Conclusion}
\label{sec:conclusion}
\input{conclusion}
\bibliographystyle{plain}
\bibliography{biblio}
\appendix
\chapter{Mot clé pour la recherche projets IA}
\label{anx:mots}
\input{annexe/ai_words}
\chapter{Liste de 25 critères de discrimination}
\label{anx:discri}
\input{annexe/crit_discri}
%\chapter*{Liste des figures}
\listoffigures
%\chapter*{Liste des tableaux}
\listoftables
\newpage
\sffamily
\include{folio}
\end{document}
|