From 621d889ae3d58016c39c3d0af861c93abae15785 Mon Sep 17 00:00:00 2001 From: Julian Rother <julianr@fsmpi.rwth-aachen.de> Date: Tue, 12 Apr 2016 16:11:16 +0200 Subject: [PATCH] lumi-handout: Make compile.py call pdflatex twice --- installparty/lumi-handout/compile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installparty/lumi-handout/compile.py b/installparty/lumi-handout/compile.py index 447fe33..bf6772f 100755 --- a/installparty/lumi-handout/compile.py +++ b/installparty/lumi-handout/compile.py @@ -15,4 +15,4 @@ if __name__ == "__main__": template = env.get_template("handout.tex.template") with open("handout.tex","w") as fd: fd.write(template.render({"registration":registration,"sticks":sticks,"cleanhandout":True})) - subprocess.call("pdflatex handout.tex", shell=True) + subprocess.call("pdflatex handout.tex && pdflatex handout.tex", shell=True) -- GitLab