Sophie

Sophie

distrib > Mageia > 5 > x86_64 > by-pkgid > a0babef5ed92fe7ce2556a303dae95b3 > files > 17

dot2tex-2.8.7-12.mga5.noarch.rpm

// This graph uses special PGF/TikZ styles to create some interesting
// visual effects. To get the snaked edges run dot2tex with the -s option
// to force straight edges. Example
// $ fdp -Txdot balls.dot | dot2tex -s > balls.tex
graph G {
	node [shape=circle, fixedsize=True, width="0.2", style="ball color = green", label=""];
	edge [style="snake=zigzag, green"];
	a_1 -- c -- a_2;
	c [style="ball color=black"];
	edge [style="snake=snake, blue", color=red];
	node [style="ball color = red", label=""];
	a_3 -- c -- a_4 --a_3;
}