/**
@prefix : .
<> a ;
:title "焼きたて!!ジャぱんの橋口家の家系図"@ja;
:dependencies "焼きたて!!ジャぱんの橋口家の家系図をDOT言語で書いたものです。"@ja;
:created "2014-03-30"^^:W3CDTF;
:modified "2014-04-03"^^:W3CDTF;
:identifier "urn:uuid:a14fa95d-7539-4277-9f65-14e2713d8afd"^^:URI;
:license ;
:creator ;
:conformsTo ; .
*/
digraph HashiguchiFamilyTree {
graph [
label = "焼きたて!!ジャぱんの橋口家の家系図",
labelloc = "t",
fontname = "IPAPGothic bold",
splines = "polyline",
nodesep = "0.8",
ranksep = "0.8"
];
node [
shape = "box",
style = "filled",
fontname = "IPAPGothic"
];
edge [
fontname = "IPAPGothic"
];
{
rank = "same";
"橋口隆死" [fillcolor = "#DDFFFF"];
"政伸の母" [fillcolor = "#FFDDDD"];
"茂の母" [fillcolor = "#FFDDDD"];
}
{
rank = "same";
"堤政伸" [fillcolor = "#DDFFFF"];
"冠茂" [fillcolor = "#DDFFFF"];
}
hashiguchi1 [shape = "point"];
hashiguchi2 [shape = "point"];
"橋口隆死" -> hashiguchi1;
"政伸の母" -> hashiguchi1;
"橋口隆死" -> hashiguchi2;
"茂の母" -> hashiguchi2;
hashiguchi1 -> "堤政伸" [label = "1"];
hashiguchi2 -> "冠茂" [label = "2"];
}