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
|
digraph Biberdata {
compound = true;
edge [ arrowhead=open ];
graph [ style=filled, rankdir=LR ];
node [
fontsize=10,
fillcolor=white,
style=filled,
shape=box ];
subgraph "cluster_section0/BHG226e" {
fontsize="10";
label="BHG226e (BOOKINARTICLE)";
tooltip="BHG226e (BOOKINARTICLE)";
fillcolor="#a0d0ff";
"section0/BHG226e/bookauthor" [ label="BOOKAUTHOR" ]
"section0/BHG226e/bookineditor" [ label="BOOKINEDITOR" ]
"section0/BHG226e/crossref" [ label="CROSSREF" ]
"section0/BHG226e/journaltitle" [ label="JOURNALTITLE" ]
"section0/BHG226e/mainsubtitle" [ label="MAINSUBTITLE" ]
"section0/BHG226e/maintitle" [ label="MAINTITLE" ]
"section0/BHG226e/number" [ label="NUMBER" ]
"section0/BHG226e/pages" [ label="PAGES" ]
"section0/BHG226e/title" [ label="TITLE" ]
"section0/BHG226e/year" [ label="YEAR" ]
}
subgraph "cluster_section0/VanDeun1990" {
fontsize="10";
label="VanDeun1990 (ARTICLE)";
tooltip="VanDeun1990 (ARTICLE)";
fillcolor="#a0d0ff";
"section0/VanDeun1990/author" [ label="AUTHOR" ]
"section0/VanDeun1990/journaltitle" [ label="JOURNALTITLE" ]
"section0/VanDeun1990/number" [ label="NUMBER" ]
"section0/VanDeun1990/pages" [ label="PAGES" ]
"section0/VanDeun1990/subtitle" [ label="SUBTITLE" ]
"section0/VanDeun1990/title" [ label="TITLE" ]
"section0/VanDeun1990/year" [ label="YEAR" ]
}
"section0/VanDeun1990/author" -> "section0/BHG226e/bookauthor" [ penwidth="2.0", color="#7d7879", tooltip="BHG226e/BOOKAUTHOR inherited via CROSSREF from VanDeun1990/AUTHOR" ]
"section0/VanDeun1990/journaltitle" -> "section0/BHG226e/journaltitle" [ penwidth="2.0", color="#7d7879", tooltip="BHG226e/JOURNALTITLE inherited via CROSSREF from VanDeun1990/JOURNALTITLE" ]
"section0/VanDeun1990/number" -> "section0/BHG226e/number" [ penwidth="2.0", color="#7d7879", tooltip="BHG226e/NUMBER inherited via CROSSREF from VanDeun1990/NUMBER" ]
"section0/VanDeun1990/subtitle" -> "section0/BHG226e/mainsubtitle" [ penwidth="2.0", color="#7d7879", tooltip="BHG226e/MAINSUBTITLE inherited via CROSSREF from VanDeun1990/SUBTITLE" ]
"section0/VanDeun1990/title" -> "section0/BHG226e/maintitle" [ penwidth="2.0", color="#7d7879", tooltip="BHG226e/MAINTITLE inherited via CROSSREF from VanDeun1990/TITLE" ]
"section0/VanDeun1990/year" -> "section0/BHG226e/year" [ penwidth="2.0", color="#7d7879", tooltip="BHG226e/YEAR inherited via CROSSREF from VanDeun1990/YEAR" ]
}
|