Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
osak
materials
Commits
621d889a
Commit
621d889a
authored
Apr 12, 2016
by
Julian Rother
Browse files
lumi-handout: Make compile.py call pdflatex twice
parent
8c624583
Pipeline
#44
skipped
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
installparty/lumi-handout/compile.py
View file @
621d889a
...
...
@@ -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
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment