I want to draw two graphs like the picture below? How to achieve it?
Asked
Active
Viewed 455 times
0
-
Have you looked at [how to draw a graph in latex](http://stackoverflow.com/questions/2985507/how-to-draw-a-graph-in-latex) – Anthon Mar 24 '13 at 08:17
-
There’s a specialized [Stack Exchange site for TeX users](http://tex.stackexchange.com), your question might fit better there. (And may get moved automatically after a while.) – zoul Mar 24 '13 at 08:18
1 Answers
1
you can use Graphviz (http://www.graphviz.org/), it exports a manual script like
digraph vis{
rankdir=LR;
"P"->"Q";
"P"->"R";
"Q"->"S";
"S"->"T";
}
as a *.eps file (and many other types), JUST LIKE THE ONE YOU POSTED HERE, which you can reference in your {figure} block in your tex

Shockley
- 307
- 2
- 14