diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2022-02-18 08:44:06 +0100 |
---|---|---|
committer | Andreas Müller <andreas.mueller@ost.ch> | 2022-02-18 08:44:06 +0100 |
commit | a611f5b86b6575435e4e8fc3abea98529e8a7b60 (patch) | |
tree | e74c737b9c1ddacb69e889a09ac68a3ca32fcd64 /vorlesungen/01_start/Makefile | |
parent | Vorlesungsnotizen für Sitzung 1 (diff) | |
download | SeminarSpezielleFunktionen-a611f5b86b6575435e4e8fc3abea98529e8a7b60.tar.gz SeminarSpezielleFunktionen-a611f5b86b6575435e4e8fc3abea98529e8a7b60.zip |
Startpräsentation
Diffstat (limited to 'vorlesungen/01_start/Makefile')
-rw-r--r-- | vorlesungen/01_start/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
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 + |