blob: c10543eff4e5de08fe88bcbd080bba0f01a3910d (
plain)
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
|
Readme of grapher
What is it
----------
grapher This is a utility very useful for doing
graphs, state machine, data flow diagrams and so on.
Given a python specification of a graph
this translates it into gpic code, that can be
translated into TeX code.
How to run it.
---------------
Take a look at the end of grapher.py, there you'll see good examples.
You need python to run it. It generates gpic code that you
convert into TeX doing:
gpic -t something.gpic > anotherthing.tex
Once you have converted it:
\input{anotherthing}
\centerline{\box\graph}
How to make the documentation.
------------------------------
Run "latex grapher.tex".
|