summaryrefslogtreecommitdiff
path: root/assignments/assignment2/.latexmkrc
blob: 4eed047cb663c58bc87232fb27d417d090398657 (plain) (blame)
1
2
3
4
5
6
7
8
9
# 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 @_");
}