Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
GuillaumeLaplante-Anfossi
GitHub Repository: GuillaumeLaplante-Anfossi/Poissons
Path: blob/main/paper/figures/PosetB3.tex
1017 views
1
%author : berenice delcroix-oger
2
3
\documentclass[border=2pt]{standalone}
4
\usepackage{tikz}
5
\usetikzlibrary{positioning, fit, shapes, arrows, calc}
6
7
\pgfdeclarelayer{bg} % declare background layer
8
\pgfsetlayers{bg,main} % set the order of the layers (main is the standard layer)
9
10
\newcommand{\coula}{0785F2}
11
\newcommand{\coulb}{F29F05}
12
\newcommand{\coulc}{F21313}
13
\newcommand{\could}{E6F21F}
14
15
16
17
\definecolor{part1}{HTML}{\coula}
18
\definecolor{part2}{HTML}{\coulb}
19
\definecolor{part3}{HTML}{\coulc}
20
\definecolor{part4}{HTML}{\could}
21
22
\begin{document}
23
24
\begin{tikzpicture}
25
\node (min) at (0,0){};
26
\node[above=1cm of min] (2) {
27
\begin{tikzpicture}[scale=0.3]
28
\coordinate (A) at (0:2);
29
\coordinate (B) at (60:2);
30
\coordinate (C) at (120:2);
31
\coordinate (D) at (180:2);
32
\coordinate (E) at (240:2);
33
\coordinate (F) at (300:2);
34
%\draw[part1, very thick] (A)--(D);
35
\draw[part2, very thick] (B)--(E);
36
%\draw[part4, very thick] (C)--(F);
37
\end{tikzpicture}
38
};
39
\node[left=1cm of 2] (1) {
40
\begin{tikzpicture}[scale=0.3]
41
\coordinate (A) at (0:2);
42
\coordinate (B) at (60:2);
43
\coordinate (C) at (120:2);
44
\coordinate (D) at (180:2);
45
\coordinate (E) at (240:2);
46
\coordinate (F) at (300:2);
47
\draw[part1, very thick] (A)--(D);
48
%\draw[part2, very thick] (B)--(E);
49
%\draw[part4, very thick] (C)--(F);
50
\end{tikzpicture}};
51
\node[right=1cm of 2] (3) {
52
\begin{tikzpicture}[scale=0.3]
53
\coordinate (A) at (0:2);
54
\coordinate (B) at (60:2);
55
\coordinate (C) at (120:2);
56
\coordinate (D) at (180:2);
57
\coordinate (E) at (240:2);
58
\coordinate (F) at (300:2);
59
%\draw[part1, very thick] (A)--(D);
60
%\draw[part2, very thick] (B)--(E);
61
\draw[part4, very thick] (C)--(F);
62
\end{tikzpicture}};
63
\node[above=1cm of 2] (max) {
64
\begin{tikzpicture}[scale=0.3]
65
\coordinate (A) at (0:2);
66
\coordinate (B) at (60:2);
67
\coordinate (C) at (120:2);
68
\coordinate (D) at (180:2);
69
\coordinate (E) at (240:2);
70
\coordinate (F) at (300:2);
71
\draw[part1, very thick] (A)--(D);
72
\draw[part2, very thick] (B)--(E);
73
\draw[part4, very thick] (C)--(F);
74
\end{tikzpicture}};
75
\draw (min)--(1);
76
\draw (min)--(2);
77
\draw (min)--(3);
78
\draw (max)--(1);
79
\draw (max)--(2);
80
\draw (max)--(3);
81
\end{tikzpicture}
82
83
\end{document}
84
85