comparison code/graph/makepdf.sh @ 6:168d60b03e2c

add dotTranslator(Translator), that can translate from DFA or NFA into Dot-file(Dot is graph generater using tex.)
author ryoma <shinya@firefly.cr.ie.u-ryukyu.ac.jp>
date Fri, 02 Jul 2010 02:43:28 +0900
parents code/graph/makepng.sh@a193b4ff3909
children
comparison
equal deleted inserted replaced
5:11fba907c0af 6:168d60b03e2c
1 #!/bin/sh
2 neato -Txdot $1.dot | dot2tex -ftikz --tikzedgelabels -tmath --styleonly > $1.tex
3 platex $1.tex
4 platex $1.tex
5 dvips $1.dvi
6 dvipdf $1.dvi
7 rm -f $1.dvi $1.tex $1.dvi $1.aux $1.ps $1.log