diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2021-09-28 14:27:37 +0200 |
---|---|---|
committer | Andreas Müller <andreas.mueller@ost.ch> | 2021-09-28 14:27:37 +0200 |
commit | 1a8e870f8f4c7e9d402ab7b867699ed999fec7dc (patch) | |
tree | 153f3c8d24c580db8c19ffc30d5879bd50705536 /vorlesungen/00_template/Makefile | |
parent | analogie-Abschnitt (diff) | |
download | SeminarSpezielleFunktionen-1a8e870f8f4c7e9d402ab7b867699ed999fec7dc.tar.gz SeminarSpezielleFunktionen-1a8e870f8f4c7e9d402ab7b867699ed999fec7dc.zip |
slide infrastructure for MathSem
Diffstat (limited to '')
-rw-r--r-- | vorlesungen/00_template/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/vorlesungen/00_template/Makefile b/vorlesungen/00_template/Makefile new file mode 100644 index 0000000..14c254d --- /dev/null +++ b/vorlesungen/00_template/Makefile @@ -0,0 +1,33 @@ +# +# Makefile -- xxx +# +# (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +# +all: xxx-handout.pdf MathSem-yyy-xxx.pdf + +include ../slides/Makefile.inc + +SOURCES = common.tex slides.tex $(slides) + +MathSem-yyy-xxx.pdf: MathSem-yyy-xxx.tex $(SOURCES) + pdflatex MathSem-yyy-xxx.tex + +xxx-handout.pdf: xxx-handout.tex $(SOURCES) + pdflatex xxx-handout.tex + +thumbnail: thumbnail.jpg # fix1.jpg + +thumbnail.pdf: MathSem-yyy-xxx.pdf + pdfjam --outfile thumbnail.pdf --papersize '{16cm,9cm}' \ + MathSem-yyy-xxx.pdf 1 +thumbnail.jpg: thumbnail.pdf + convert -density 300 thumbnail.pdf \ + -resize 1920x1080 -units PixelsPerInch thumbnail.jpg + +fix1.pdf: MathSem-yyy-xxx.pdf + pdfjam --outfile fix1.pdf --papersize '{16cm,9cm}' \ + MathSem-yyy-xxx.pdf 1 +fix1.jpg: fix1.pdf + convert -density 300 fix1.pdf \ + -resize 1920x1080 -units PixelsPerInch fix1.jpg + |