-
Notifications
You must be signed in to change notification settings - Fork 1
/
argument2.dot
64 lines (41 loc) · 1.38 KB
/
argument2.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
62
63
64
digraph G {
splines=true
newrank=true
compound=true
node[color=red3, style="rounded, filled", shape="box", fillcolor=white, penwidth=1, fontcolor=black, fontsize=16, margin=0.1]
o1[label="Objection contre
cette prémisse"]
node[shape=box, fillcolor=white, style="filled,rounded", color=black, fontsize=24, penwidth=1,fontcolor=black, margin=0.1]
edge[minlen=2,color=red3, penwidth=0.8, arrowsize=0.8, label=" Mais …", fontcolor=red4,fontsize=12]
{rank=same;o1->p1[dir=back]}
subgraph cluster_0 {
bgcolor=grey90
style=rounded
color=grey50
margin=40
node[shape=box, fillcolor=white, style="filled,rounded", color=black]
edge[label="",xlabel="Par
conséquent …",fontcolor=grey40;fontsize=15,minlen=3,color=black,penwidth=1, arrowsize=1]
subgraph cluster_1 {
style="box"
margin=15
bgcolor=grey73
color=grey73
p1[label="(1) Prémisse A"]
p2[label="(2) Prémisse B"]
}
p1->p2[style=invis,xlabel="",minlen=1]
//{rank=same;p1->p2[style=invis,xlabel="",minlen=1]}
p2:s->p3:n[ltail=cluster_1]
//p2:w->p3:n[ltail=cluster_1]
p3[label="(3) Lemme 1"]
{rank=same;p3->p4[style=invis]}
p4[label="(4) Prémisse 3"]
{p3,p4}->C
C[label="Conclusion",fillcolor=black, fontcolor=white, color=black, shape=ellipse]
}
node[color=red3, style="rounded, filled", shape="box", fillcolor=white, penwidth=1, fontcolor=black, fontsize=16, margin=0.1]
o2[label="Objection contre
cette prémisse"]
{rank=same;p4->o2}
}