blob: 4eed047cb663c58bc87232fb27d417d090398657 (
plain) (
tree)
|
|
# vim: syntax=perl:
$pdflatex = 'internal pdflatexwithdot %R %O %S';
sub pdflatexwithdot {
for (my $i = 0; $i <= 6; $i++) {
system("dot -Tpng LStar_hypothesis" . $i . ".dot > LStar_hypothesis" . $i . ".png");
}
return system("pdflatex -shell-escape @_");
}
|