Skip to content

Instantly share code, notes, and snippets.

@mprat
Created April 26, 2013 19:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mprat/5469635 to your computer and use it in GitHub Desktop.
Save mprat/5469635 to your computer and use it in GitHub Desktop.
A very simple GraphViz program to draw a very simple infographic sharing the message that education is not creative.
digraph school_test{
label = "Where does the education happen?";
nodesep=1.2;
node [shape=box];
overlap=false;
"School" -> "Test";
"Test" -> "School";
}
And if it is saved as a .txt, .gv, whatever, then it can be compiled with:
neato -Tpng education_system_1.gv -o school_test.png
to save the final output diagram as school_test.png.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment