diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2021-03-16 15:48:10 +0100 |
---|---|---|
committer | Andreas Müller <andreas.mueller@ost.ch> | 2021-03-16 15:48:10 +0100 |
commit | 4614294614e6f6b38e0ca86e77871e75b4c26071 (patch) | |
tree | 23ac9079936fd3b79e790897c690146dec577eb0 /vorlesungen/05_spektral1/Makefile | |
parent | add new slide (diff) | |
download | SeminarMatrizen-4614294614e6f6b38e0ca86e77871e75b4c26071.tar.gz SeminarMatrizen-4614294614e6f6b38e0ca86e77871e75b4c26071.zip |
add new slides
Diffstat (limited to 'vorlesungen/05_spektral1/Makefile')
-rw-r--r-- | vorlesungen/05_spektral1/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/vorlesungen/05_spektral1/Makefile b/vorlesungen/05_spektral1/Makefile new file mode 100644 index 0000000..3e195bd --- /dev/null +++ b/vorlesungen/05_spektral1/Makefile @@ -0,0 +1,33 @@ +# +# Makefile -- spektral1 +# +# (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +# +all: spektral1-handout.pdf MathSem-05-spektral1.pdf + +include ../slides/Makefile.inc + +SOURCES = common.tex slides.tex $(slides) + +MathSem-05-spektral1.pdf: MathSem-05-spektral1.tex $(SOURCES) + pdflatex MathSem-05-spektral1.tex + +spektral1-handout.pdf: spektral1-handout.tex $(SOURCES) + pdflatex spektral1-handout.tex + +thumbnail: thumbnail.jpg # fix1.jpg + +thumbnail.pdf: MathSem-05-spektral1.pdf + pdfjam --outfile thumbnail.pdf --papersize '{16cm,9cm}' \ + MathSem-05-spektral1.pdf 1 +thumbnail.jpg: thumbnail.pdf + convert -density 300 thumbnail.pdf \ + -resize 1920x1080 -units PixelsPerInch thumbnail.jpg + +fix1.pdf: MathSem-05-spektral1.pdf + pdfjam --outfile fix1.pdf --papersize '{16cm,9cm}' \ + MathSem-05-spektral1.pdf 1 +fix1.jpg: fix1.pdf + convert -density 300 fix1.pdf \ + -resize 1920x1080 -units PixelsPerInch fix1.jpg + |