annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
a193b4ff3909 prepare graph outputs (but not implement)
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 #!/bin/sh
a193b4ff3909 prepare graph outputs (but not implement)
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 neato -Txdot $1.dot | dot2tex -ftikz --tikzedgelabels -tmath --styleonly > $1.tex
a193b4ff3909 prepare graph outputs (but not implement)
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 platex $1.tex
a193b4ff3909 prepare graph outputs (but not implement)
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 platex $1.tex
a193b4ff3909 prepare graph outputs (but not implement)
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 dvips $1.dvi
a193b4ff3909 prepare graph outputs (but not implement)
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 dvipdf $1.dvi
a193b4ff3909 prepare graph outputs (but not implement)
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 rm -f $1.dvi $1.tex $1.dvi $1.aux $1.ps $1.log