diff options
author | Lukaszogg <82384106+Lukaszogg@users.noreply.github.com> | 2021-07-08 20:10:11 +0200 |
---|---|---|
committer | Lukaszogg <82384106+Lukaszogg@users.noreply.github.com> | 2021-07-08 20:10:11 +0200 |
commit | 14033ca595b5c933caea3b214d2246529e6845b8 (patch) | |
tree | 0d6d2b2eb34e5ef5df3c517be5c1c9d803fa066c /vorlesungen/12_msewkeitsmatrizen/Makefile | |
parent | Update teil1.tex (diff) | |
parent | Only include buch.ind if it exists. (diff) | |
download | SeminarMatrizen-14033ca595b5c933caea3b214d2246529e6845b8.tar.gz SeminarMatrizen-14033ca595b5c933caea3b214d2246529e6845b8.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'vorlesungen/12_msewkeitsmatrizen/Makefile')
-rw-r--r-- | vorlesungen/12_msewkeitsmatrizen/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/vorlesungen/12_msewkeitsmatrizen/Makefile b/vorlesungen/12_msewkeitsmatrizen/Makefile new file mode 100644 index 0000000..ec420cd --- /dev/null +++ b/vorlesungen/12_msewkeitsmatrizen/Makefile @@ -0,0 +1,42 @@ +# +# Makefile -- wkeitsmatrizen +# +# (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +# +all: wkeitsmatrizen-handout.pdf MathSemMSE-12-wkeitsmatrizen.pdf + +include ../slides/Makefile.inc + +SOURCES = common.tex slides.tex $(slides) + +MathSemMSE-12-wkeitsmatrizen.pdf: MathSemMSE-12-wkeitsmatrizen.tex $(SOURCES) + pdflatex MathSemMSE-12-wkeitsmatrizen.tex + +wkeitsmatrizen-handout.pdf: wkeitsmatrizen-handout.tex $(SOURCES) + pdflatex wkeitsmatrizen-handout.tex + +thumbnail: thumbnail.jpg # fix1.jpg + +thumbnail.pdf: MathSemMSE-12-wkeitsmatrizen.pdf + pdfjam --outfile thumbnail.pdf --papersize '{16cm,9cm}' \ + MathSemMSE-12-wkeitsmatrizen.pdf 1 +thumbnail.jpg: thumbnail.pdf + convert -density 300 thumbnail.pdf \ + -resize 1920x1080 -units PixelsPerInch thumbnail.jpg + +fix1.pdf: MathSemMSE-12-wkeitsmatrizen.pdf + pdfjam --outfile fix1.pdf --papersize '{16cm,9cm}' \ + MathSemMSE-12-wkeitsmatrizen.pdf 1 +fix1.jpg: fix1.pdf + convert -density 300 fix1.pdf \ + -resize 1920x1080 -units PixelsPerInch fix1.jpg + +parts: part1.pdf part2.pdf + +part1.pdf: MathSemMSE-12-wkeitsmatrizen.pdf + pdfjam --outfile part1.pdf --papersize '{16cm,9cm}' \ + MathSemMSE-12-wkeitsmatrizen.pdf 1-160 + +part2.pdf: MathSemMSE-12-wkeitsmatrizen.pdf + pdfjam --outfile part2.pdf --papersize '{16cm,9cm}' \ + MathSemMSE-12-wkeitsmatrizen.pdf 161-211 |