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 65
|
digraph "g" {
graph [
concentrate="true" /* Edges are merged and have common endpoints*/
charset=latin1
fontsize = "14"
fontname = "Helvetica"
fontcolor = "black"
color = "black"
rankdir="LR"
ratio="compress"
]
node [
fontsize = "14"
fontname = "Helvetica"
fontcolor = "black"
shape = "plaintext"
color = "black"
]
edge [
fontsize = "14"
fontname = "Times-Roman"
fontcolor = "black"
color = "black"
]
/*generation*/
Torwaechter [label="Torwchter"];
Torschluessel [label="Torschlssel"]; /* tests the */
Schluesseloel [label="Schluessell"]; /* tests the */
Schluesseltraeger [label="Schlueeltrger"]; /*tests the */
Tor -> Schlosstor ;
Tor -> Torfenster;
Tor -> Torschluessel ;
Tor -> Torwaechter;
Torschluessel -> Schluesselbund;
Torschluessel -> Schluesseltraeger;
Torschluessel -> Schluesseloel;
Torwaechter -> Torwaechterhaeuschen;
/*Derivation with plaintext*/
Prefix[label="ge\nPrfix"];
Stem[label="legen\nStamm"];
Suffix[label="heit\nSuffix"];
Prefix->Wort[style="invis"];
Stem->Wort;
Suffix->Wort[style="invis"];
Dieb -> Wort;
/* mit records und node ports*/
creation[shape="record",label="<f0>ge\nPrfix|<f1>legen\nStamm|<f2>heit\nSuffix", style="invis"]
creation1[shape="record",label="<f0>ge\nPrfix|<f1>Dieb\nStamm|<f2>heit\nSuffix", style="invis"]
"creation":f1 -> Fragewort
"creation1":f1 ->Fragewort
}
|