diff options
author | enezerdem <105669082+enezerdem@users.noreply.github.com> | 2022-05-22 15:35:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-22 15:35:23 +0200 |
commit | 9a4d65ec7e6c5e5041d2904128b6bd202f66594b (patch) | |
tree | f460bc3b8f45399004b4a07d8d3eac13006193c9 /vorlesungen/18_hermiteintegrierbar/Makefile | |
parent | Korrektur 21.05 (diff) | |
parent | Merge pull request #14 from enezerdem/master (diff) | |
download | SeminarSpezielleFunktionen-9a4d65ec7e6c5e5041d2904128b6bd202f66594b.tar.gz SeminarSpezielleFunktionen-9a4d65ec7e6c5e5041d2904128b6bd202f66594b.zip |
Merge pull request #4 from AndreasFMueller/master
update
Diffstat (limited to '')
-rw-r--r-- | vorlesungen/18_hermiteintegrierbar/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/vorlesungen/18_hermiteintegrierbar/Makefile b/vorlesungen/18_hermiteintegrierbar/Makefile new file mode 100644 index 0000000..a2dfb87 --- /dev/null +++ b/vorlesungen/18_hermiteintegrierbar/Makefile @@ -0,0 +1,33 @@ +# +# Makefile -- hermiteintegrierbar +# +# (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +# +all: hermiteintegrierbar-handout.pdf MathSem-18-hermiteintegrierbar.pdf + +include ../slides/Makefile.inc + +SOURCES = common.tex slides.tex $(slides) + +MathSem-18-hermiteintegrierbar.pdf: MathSem-18-hermiteintegrierbar.tex $(SOURCES) + pdflatex MathSem-18-hermiteintegrierbar.tex + +hermiteintegrierbar-handout.pdf: hermiteintegrierbar-handout.tex $(SOURCES) + pdflatex hermiteintegrierbar-handout.tex + +thumbnail: thumbnail.jpg # fix1.jpg + +thumbnail.pdf: MathSem-18-hermiteintegrierbar.pdf + pdfjam --outfile thumbnail.pdf --papersize '{16cm,9cm}' \ + MathSem-18-hermiteintegrierbar.pdf 1 +thumbnail.jpg: thumbnail.pdf + convert -density 300 thumbnail.pdf \ + -resize 1920x1080 -units PixelsPerInch thumbnail.jpg + +fix1.pdf: MathSem-18-hermiteintegrierbar.pdf + pdfjam --outfile fix1.pdf --papersize '{16cm,9cm}' \ + MathSem-18-hermiteintegrierbar.pdf 1 +fix1.jpg: fix1.pdf + convert -density 300 fix1.pdf \ + -resize 1920x1080 -units PixelsPerInch fix1.jpg + |