-
Notifications
You must be signed in to change notification settings - Fork 1
/
diagram.dot
61 lines (52 loc) · 1.25 KB
/
diagram.dot
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
digraph G {
// Template : diagram
// Usage :
//rankdir=LR
splines=true
//splines=curved
bgcolor=grey98
pad=0.3
style=filled
edge[minlen=4]
node[style=filled, fontcolor=white]
ranksep=0.1
nodesep=0.2
// NIVEAU 1
node[fillcolor=grey2, fontsize=18]
a1[label=""]
// NIVEAU 2
node[fillcolor=red4, fontsize=16]
a1->{
b1[label=""]
b2[label=""]
}[headport=n]
node[fontcolor=black]
// NIVEAU 3 (sans intermédiaire)
node [shape=box, fillcolor=white, color=grey50]
// c1[label=""]
b1->c1
c1[label=""]
b2->c2
c2[label=""]
// INTERMÉDIAIRE AVANT NIVEAU 3
node[fillcolor=grey78, shape=oval]
// [arrowhead=none]
// bc1[label=""]
// NIVEAU 3 (avec intermédiaire)
node[fillcolor=white, shape=box, color=grey50]
// c1[label=""]
// NIVEAU 4
node[style="filled,rounded", fillcolor=white, shape=box, color=grey50]
// d1[label=""]
// ÉTIQUETTES EN ROUGE
node[shape=plaintext, fontcolor=firebrick3, fillcolor=grey98]
// e1[label=< <B>= Titre</B><BR /><BR />Contenu<BR /> >]
// e1[label=""]
// ->e1[minlen=1, style=invis]
// REMARQUES EN BLEU
node[color=blue, shape=box, margin=0.07, fontcolor=black, fontsize=12, style="dashed", penwidth=0.6]
edge[color=blue, arrowhead="none", xlabel="", style="dashed", penwidth=0.6]
// r1[label=""]
// {rank=same;->r1}
// {rank=same;r1->[dir=back]}
}