Created
April 26, 2013 19:10
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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