diff options
author | Jan Aalmoes <jan.aalmoes@inria.fr> | 2024-09-21 16:33:51 +0200 |
---|---|---|
committer | Jan Aalmoes <jan.aalmoes@inria.fr> | 2024-09-21 16:33:51 +0200 |
commit | b8504c330be30ccf771d6745a34f395a83395ea5 (patch) | |
tree | 9bbd9285d530381e3e743266fbf62be35df3a7c8 /contexte/figure/tikz/function.tex | |
parent | 00ec61946ddf3a7c2abf7d7e0730fc8e21b50f37 (diff) | |
parent | 06c724f61e746772dc46aaf7e11c96abc1a49dd1 (diff) |
merge with brouillon
Diffstat (limited to 'contexte/figure/tikz/function.tex')
-rw-r--r-- | contexte/figure/tikz/function.tex | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/contexte/figure/tikz/function.tex b/contexte/figure/tikz/function.tex new file mode 100644 index 0000000..93d2a58 --- /dev/null +++ b/contexte/figure/tikz/function.tex @@ -0,0 +1,14 @@ +\begin{tikzpicture} + \node[rectangle,draw] (ia) at (0,0) {IA}; + \node (ent) at (-2,0) {Entrée}; + \node (sor) at (2,0) {Sorties}; + \node (par) at (0,-1) {Paramètres}; + + \draw[->] (ent) to (ia); + \draw[->] (ia) to (sor); + \draw[->] (par) to (ia); + + \node[align=left] (par) at (4,0) {Prédiction\\Décision\\Contenu}; + \draw [decorate,decoration = {brace}] (3,-0.6) -- (3,0.6); + +\end{tikzpicture} |