ajout relations

This commit is contained in:
François Pelletier 2020-01-22 20:30:40 -05:00
parent cccf166324
commit 26157090d5

View file

@ -0,0 +1,99 @@
digraph G {
ratio=0.65;
margin=0;
colorscheme=puor8;
bgcolor=7;
label="Relations entre les commentaires\nHalté (2018)";
fontsize=24;
fontcolor=5;
subgraph cluster_1 {
bgcolor=8;
label="";
node [colorscheme=puor8,
color=2,
shape = box,
style = filled,
fontsize=20];
rel[label="Relations"]
node[color=3]
rel_it[label="intertextualité"]
rel_id[label="interdiscursivité"]
rel_mm[label="multimodalité"]
rel->rel_it
rel->rel_id
rel->rel_mm
}
subgraph cluster_2 {
bgcolor=8;
label="Commentaires en lien\navec le titre et\nles autres commentaires";
node [colorscheme=puor8,
color=2,
shape = box,
style = filled,
fontsize=20];
com1[label="commentaire"]
node[color=3]
com0[label="commentaire\nprécédent"]
t0[label="titre"]
com1->com0
com1->t0
}
subgraph cluster_3 {
bgcolor=8;
label="Conversations entrecroisées";
node [colorscheme=puor8,
color=2,
shape = box,
style = filled,
fontsize=20];
comx1[label="commentaire 1"]
comx3[label="commentaire 3"]
tx0[label="titre"]
node[color=3]
comx2[label="commentaire 2"]
comx4[label="commentaire 4"]
comx1->comx3
comx2->comx4
tx0->comx1
tx0->comx2
}
subgraph cluster_4 {
bgcolor=8;
label="Multimédia";
node [colorscheme=puor8,
color=2,
shape = box,
style = filled,
fontsize=20];
mm1[label="vidéo"]
mm2[label="images"]
mm3[label="texte"]
mm4[label="liens"]
}
rel_it -> com1
rel_id -> tx0
rel_mm -> mm1
rel_mm -> mm2
rel_mm -> mm3
rel_mm -> mm4
}