From 1413d259c88b3a0bfc027ca3a3c0bf5c5bca1de9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sun, 3 Oct 2021 14:24:28 +0200 Subject: add ad presentation --- vorlesungen/00_ad/Makefile | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 vorlesungen/00_ad/Makefile (limited to 'vorlesungen/00_ad/Makefile') diff --git a/vorlesungen/00_ad/Makefile b/vorlesungen/00_ad/Makefile new file mode 100644 index 0000000..f0a2d14 --- /dev/null +++ b/vorlesungen/00_ad/Makefile @@ -0,0 +1,33 @@ +# +# Makefile -- ad +# +# (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +# +all: ad-handout.pdf MathSem-00-ad.pdf + +include ../slides/Makefile.inc + +SOURCES = common.tex slides.tex $(slides) + +MathSem-00-ad.pdf: MathSem-00-ad.tex $(SOURCES) + pdflatex MathSem-00-ad.tex + +ad-handout.pdf: ad-handout.tex $(SOURCES) + pdflatex ad-handout.tex + +thumbnail: thumbnail.jpg # fix1.jpg + +thumbnail.pdf: MathSem-00-ad.pdf + pdfjam --outfile thumbnail.pdf --papersize '{16cm,9cm}' \ + MathSem-00-ad.pdf 1 +thumbnail.jpg: thumbnail.pdf + convert -density 300 thumbnail.pdf \ + -resize 1920x1080 -units PixelsPerInch thumbnail.jpg + +fix1.pdf: MathSem-00-ad.pdf + pdfjam --outfile fix1.pdf --papersize '{16cm,9cm}' \ + MathSem-00-ad.pdf 16 +fix1.jpg: fix1.pdf + convert -density 300 fix1.pdf \ + -resize 1920x1080 -units PixelsPerInch fix1.jpg + -- cgit v1.2.1