layout: post
#+begin_src dot :file digraph2.png :cmdline -Kdot -Tpng
digraph D {
size="8,6"
node [ shape = polygon,
sides = 4,
distortion = "0.0",
orientation = "0.0",
skew = "0.0",
color = "#aaaaaa",
style = filled,
fontname = "Helvetica-Outline" ];
apocalypse [sides=9 skew=".32" color="purple"]
apocalypse -> zombie
apocalypse -> zombies
shovel [skew=".56" color="#aa2222"]
subgraph singular {
label="one"
color=purple
zombie -> shovel [color="#440000"]
shovel -> run
}
run [sides=9, color=salmon2];
subgraph plural {
label="many"
color=red
zombies -> run [color="#00a4d4"]
}
}
#+end_src