From a611f5b86b6575435e4e8fc3abea98529e8a7b60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Fri, 18 Feb 2022 08:44:06 +0100 Subject: =?UTF-8?q?Startpr=C3=A4sentation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vorlesungen/01_start/Makefile | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 vorlesungen/01_start/Makefile (limited to 'vorlesungen/01_start/Makefile') diff --git a/vorlesungen/01_start/Makefile b/vorlesungen/01_start/Makefile new file mode 100644 index 0000000..0e0bac2 --- /dev/null +++ b/vorlesungen/01_start/Makefile @@ -0,0 +1,33 @@ +# +# Makefile -- start +# +# (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +# +all: start-handout.pdf MathSem-01-start.pdf + +include ../slides/Makefile.inc + +SOURCES = common.tex slides.tex $(slides) + +MathSem-01-start.pdf: MathSem-01-start.tex $(SOURCES) + pdflatex MathSem-01-start.tex + +start-handout.pdf: start-handout.tex $(SOURCES) + pdflatex start-handout.tex + +thumbnail: thumbnail.jpg # fix1.jpg + +thumbnail.pdf: MathSem-01-start.pdf + pdfjam --outfile thumbnail.pdf --papersize '{16cm,9cm}' \ + MathSem-01-start.pdf 1 +thumbnail.jpg: thumbnail.pdf + convert -density 300 thumbnail.pdf \ + -resize 1920x1080 -units PixelsPerInch thumbnail.jpg + +fix1.pdf: MathSem-01-start.pdf + pdfjam --outfile fix1.pdf --papersize '{16cm,9cm}' \ + MathSem-01-start.pdf 1 +fix1.jpg: fix1.pdf + convert -density 300 fix1.pdf \ + -resize 1920x1080 -units PixelsPerInch fix1.jpg + -- cgit v1.2.1