diff options
author | Andreas Müller <andreas.mueller@othello.ch> | 2021-02-19 16:45:39 +0100 |
---|---|---|
committer | Andreas Müller <andreas.mueller@othello.ch> | 2021-02-19 16:45:39 +0100 |
commit | ea812658422730db2440c458330f0487d9dc823e (patch) | |
tree | f0fbc273a21d59e3ff4675432688971029dbeb91 /vorlesungen/00_template/Makefile | |
parent | chapter 1 slides (diff) | |
download | SeminarMatrizen-ea812658422730db2440c458330f0487d9dc823e.tar.gz SeminarMatrizen-ea812658422730db2440c458330f0487d9dc823e.zip |
new slides
Diffstat (limited to '')
-rw-r--r-- | vorlesungen/00_template/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/vorlesungen/00_template/Makefile b/vorlesungen/00_template/Makefile new file mode 100644 index 0000000..fe6bbb7 --- /dev/null +++ b/vorlesungen/00_template/Makefile @@ -0,0 +1,26 @@ +# +# Makefile -- xxx +# +# (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +# +all: xxx-handout.pdf MathSem-yyy-xxx.pdf + +include ../slides/Makefile.inc + +SOURCES = common.tex slides.tex $(slides) + +MathSem-yyy-xxx.pdf: MathSem-yyy-xxx.tex $(SOURCES) + pdflatex MathSem-yyy-xxx.tex + +xxx-handout.pdf: xxx-handout.tex $(SOURCES) + pdflatex xxx-handout.tex + +thumbnail: thumbnail.jpg + +thumbnail.pdf: MathSem-yyy-xxx.pdf + pdfjam --outfile thumbnail.pdf --papersize '{16cm,9cm}' \ + MathSem-yyy-xxx.pdf 1 +thumbnail.jpg: thumbnail.pdf + convert -density 300 thumbnail.pdf \ + -resize 1920x1080 -units PixelsPerInch thumbnail.jpg + |