summaryrefslogtreecommitdiff
path: root/graphics/dot2tex/examples/ex1.dot
blob: 5ae471d14fdfa9904a2af0729ea1f59aeb1f79d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
:Title: Basic example
:Tags: PGF

A basic example.

Generated with::

    $ dot2tex.py --preproc -tmath ex1.dot | dot2tex.py > ex1.tex
    
*/
digraph G {
	a_1-> a_2 -> a_3 -> a_1;
}