Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
GuillaumeLaplante-Anfossi
GitHub Repository: GuillaumeLaplante-Anfossi/Poissons
Path: blob/main/Talk GDRIM/w4.tex
1016 views
1
\documentclass[border=2pt]{standalone}
2
\usepackage{tikz}
3
\usetikzlibrary{positioning, fit, shapes, arrows, calc}
4
5
\pgfdeclarelayer{bg} % declare background layer
6
\pgfsetlayers{bg,main} % set the order of the layers (main is the standard layer)
7
8
\newcommand{\coula}{0785F2}
9
\newcommand{\coulb}{F29F05}
10
\newcommand{\coulc}{F21313}
11
\newcommand{\could}{E6F21F}
12
13
14
15
\definecolor{part1}{HTML}{\coula}
16
\definecolor{part2}{HTML}{\coulb}
17
\definecolor{part3}{HTML}{\coulc}
18
\definecolor{part4}{HTML}{\could}
19
20
\begin{document}
21
\begin{tikzpicture}
22
\node (1234) at (0,0) {1234};
23
\node[above left=1cm of 1234](2134) {2134};
24
\node[above=1cm of 1234](1324) {1324};
25
\node[above right=1cm of 1234](1243) {1243};
26
\node[above left=1cm of 2134](2314) {2314};
27
\node[above right=1cm of 2134](2143) {2143};
28
\node[above left=1cm of 1324](3124) {3124};
29
\node[above right=1cm of 1324](1342) {1342};
30
\node[above left=1cm of 2314](3214) {3214};
31
\node[above=1cm of 2314](2341) {2341};
32
\node[above=0.5cm of 2143](2413) {2413};
33
\node[above left=1cm of 1342](3142) {3142};
34
\node[above right=1cm of 1243](1423) {1423};
35
\node[above right=1cm of 1342](1432) {1432};
36
\node[above right=1cm of 1423](4123) {4123};
37
\node[above=1cm of 3214](3241) {3241};
38
\node[above right=1cm of 2341](2431) {2431};
39
\node[above=1cm of 3142](3412) {3412};
40
\node[above right=1cm of 3142](4213) {4213};
41
\node[above=1cm of 4123](4132) {4132};
42
\node[above left=1cm of 3412](3421) {3421};
43
\node[above right=1cm of 3412](4312) {4312};
44
\node[above left=1cm of 4213](4231) {4231};
45
\node[above=1cm of 4231](4321) {4321};
46
\draw (1234)--(2134);
47
\draw (1234)--(1324);
48
\draw (1234)--(1243);
49
\draw (2134)--(2314);
50
\draw (2134)--(2143);
51
\draw (1243)--(2143);
52
\draw (1324)--(3124);
53
\draw (1324)--(1342);
54
\draw (2314)--(3214);
55
\draw (2314)--(2341);
56
\draw (3124)--(3214);
57
\draw (3124)--(3142);
58
\draw (2143)--(2413);
59
\draw (1342)--(3142);
60
\draw (1342)--(1432);
61
\draw (1423)--(1432);
62
\draw (1423)--(1243);
63
\draw (4123)--(1423);
64
\draw (3214)--(3241)--(2341);
65
\draw (2341)--(2431)--(2413);
66
\draw (3142)--(3412);
67
\draw (3241)--(3421)--(4321)--(4312);
68
\draw (4321)--(4231)--(2431);
69
\draw (1432)--(4132)--(4312);
70
\draw (4123)--(4213)--(4231);
71
\draw (3421)--(3412)--(4312);
72
\draw (4123)--(4132);
73
\draw (4213)--(2413);
74
\end{tikzpicture}
75
76
\end{document}
77
78