diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2021-09-28 14:36:51 +0200 |
---|---|---|
committer | Andreas Müller <andreas.mueller@ost.ch> | 2021-09-28 14:36:51 +0200 |
commit | ea0870aa497127ed3947d65255030b07a1798c59 (patch) | |
tree | 56da0ea7b03f1873e67c856440a41ddae9867d75 /vorlesungen/slides/Makefile | |
parent | slide infrastructure for MathSem (diff) | |
download | SeminarSpezielleFunktionen-ea0870aa497127ed3947d65255030b07a1798c59.tar.gz SeminarSpezielleFunktionen-ea0870aa497127ed3947d65255030b07a1798c59.zip |
add slide infrastructure
Diffstat (limited to 'vorlesungen/slides/Makefile')
-rw-r--r-- | vorlesungen/slides/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/vorlesungen/slides/Makefile b/vorlesungen/slides/Makefile new file mode 100644 index 0000000..e48b3ed --- /dev/null +++ b/vorlesungen/slides/Makefile @@ -0,0 +1,34 @@ +# +# Makefile -- build the slide collection +# +# (c) 2019 Prof Dr Andreas Müller, Hochschule Rapeprswil +# +test: test-handout.pdf test-presentation.pdf + +slides: slides-handout.pdf slides-presentation.pdf + +include Makefile.inc + +files = common.tex $(slides) + +catalog: slides-catalog.pdf +presentation: slides-presentation.pdf +handout: slides-handout.pdf + +slides-handout.pdf: slides-handout.tex slides.tex $(files) + pdflatex slides-handout.tex + +slides-catalog.pdf: slides-handout.pdf + pdfjam --outfile slides-catalog.pdf \ + --paper a4paper --nup 2x5 \ + slides-handout.pdf + +slides-presentation.pdf: slides-presentation.tex slides.tex $(files) + pdflatex slides-presentation.tex + +test-handout.pdf: test-handout.tex test.tex $(files) + pdflatex test-handout.tex + +test-presentation.pdf: test-presentation.tex test.tex $(files) + pdflatex test-presentation.tex + |