From 8080f48d82554f32afb2c935a155d723bce1c118 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Mon, 8 Mar 2021 15:22:21 +0100 Subject: start working on MSE week 3 --- vorlesungen/03_mseanalysis/Makefile | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 vorlesungen/03_mseanalysis/Makefile (limited to 'vorlesungen/03_mseanalysis/Makefile') diff --git a/vorlesungen/03_mseanalysis/Makefile b/vorlesungen/03_mseanalysis/Makefile new file mode 100644 index 0000000..4f8e482 --- /dev/null +++ b/vorlesungen/03_mseanalysis/Makefile @@ -0,0 +1,33 @@ +# +# Makefile -- analysis +# +# (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +# +all: analysis-handout.pdf MathSemMSE-03-analysis.pdf + +include ../slides/Makefile.inc + +SOURCES = common.tex slides.tex $(slides) + +MathSemMSE-03-analysis.pdf: MathSemMSE-03-analysis.tex $(SOURCES) + pdflatex MathSemMSE-03-analysis.tex + +analysis-handout.pdf: analysis-handout.tex $(SOURCES) + pdflatex analysis-handout.tex + +thumbnail: thumbnail.jpg # fix1.jpg + +thumbnail.pdf: MathSemMSE-03-analysis.pdf + pdfjam --outfile thumbnail.pdf --papersize '{16cm,9cm}' \ + MathSemMSE-03-analysis.pdf 1 +thumbnail.jpg: thumbnail.pdf + convert -density 300 thumbnail.pdf \ + -resize 1920x1080 -units PixelsPerInch thumbnail.jpg + +fix1.pdf: MathSemMSE-03-analysis.pdf + pdfjam --outfile fix1.pdf --papersize '{16cm,9cm}' \ + MathSemMSE-03-analysis.pdf 1 +fix1.jpg: fix1.pdf + convert -density 300 fix1.pdf \ + -resize 1920x1080 -units PixelsPerInch fix1.jpg + -- cgit v1.2.1