diff options
author | Camil Staps | 2017-10-16 18:56:09 +0200 |
---|---|---|
committer | Camil Staps | 2017-10-16 18:56:09 +0200 |
commit | 34564d2c25b706dda51635ff81c44d316fa4c8ab (patch) | |
tree | 7d371ca9e8d6b25c9daef1a49c3110299c64faea /assignments/assignment2/.latexmkrc | |
parent | Merge branch 'master' of gitlab.science.ru.nl:eveen/Testing-Techniques (diff) |
Remove PNGs
Diffstat (limited to 'assignments/assignment2/.latexmkrc')
-rw-r--r-- | assignments/assignment2/.latexmkrc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/assignments/assignment2/.latexmkrc b/assignments/assignment2/.latexmkrc new file mode 100644 index 0000000..a5c2a05 --- /dev/null +++ b/assignments/assignment2/.latexmkrc @@ -0,0 +1,9 @@ +# vim: syntax=perl: +$pdflatex = 'internal pdflatexwithdot %R %O %S'; + +sub pdflatexwithdot { + for (my $i = 0; $i <= 4; $i++) { + system("dot -Tpng LStar_hypothesis" . $i . ".dot > LStar_hypothesis" . $i . ".png"); + } + return system("pdflatex -shell-escape @_"); +} |