diff options
author | Pascal Schmid <81317360+paschost@users.noreply.github.com> | 2021-05-30 15:08:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-30 15:08:15 +0200 |
commit | 345d5751330bc1b50cc532b8ef4634ed4f8b7560 (patch) | |
tree | 50b90c758ba9ba2312744edf98e67085be27c25f /vorlesungen/13_msegraphwavelets/Makefile | |
parent | fixed first section content (diff) | |
parent | Merge pull request #18 from TReichlin/master (diff) | |
download | SeminarMatrizen-345d5751330bc1b50cc532b8ef4634ed4f8b7560.tar.gz SeminarMatrizen-345d5751330bc1b50cc532b8ef4634ed4f8b7560.zip |
Merge branch 'master' into part_verkehr
Diffstat (limited to 'vorlesungen/13_msegraphwavelets/Makefile')
-rw-r--r-- | vorlesungen/13_msegraphwavelets/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/vorlesungen/13_msegraphwavelets/Makefile b/vorlesungen/13_msegraphwavelets/Makefile new file mode 100644 index 0000000..6dba66c --- /dev/null +++ b/vorlesungen/13_msegraphwavelets/Makefile @@ -0,0 +1,33 @@ +# +# Makefile -- graphwavelets +# +# (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +# +all: graphwavelets-handout.pdf MathSemMSE-13-graphwavelets.pdf + +include ../slides/Makefile.inc + +SOURCES = common.tex slides.tex $(slides) + +MathSemMSE-13-graphwavelets.pdf: MathSemMSE-13-graphwavelets.tex $(SOURCES) + pdflatex MathSemMSE-13-graphwavelets.tex + +graphwavelets-handout.pdf: graphwavelets-handout.tex $(SOURCES) + pdflatex graphwavelets-handout.tex + +thumbnail: thumbnail.jpg # fix1.jpg + +thumbnail.pdf: MathSemMSE-13-graphwavelets.pdf + pdfjam --outfile thumbnail.pdf --papersize '{16cm,9cm}' \ + MathSemMSE-13-graphwavelets.pdf 1 +thumbnail.jpg: thumbnail.pdf + convert -density 300 thumbnail.pdf \ + -resize 1920x1080 -units PixelsPerInch thumbnail.jpg + +fix1.pdf: MathSemMSE-13-graphwavelets.pdf + pdfjam --outfile fix1.pdf --papersize '{16cm,9cm}' \ + MathSemMSE-13-graphwavelets.pdf 1 +fix1.jpg: fix1.pdf + convert -density 300 fix1.pdf \ + -resize 1920x1080 -units PixelsPerInch fix1.jpg + |