diff options
author | Roy Seitz <roy.seitz@ost.ch> | 2021-02-22 08:48:36 +0100 |
---|---|---|
committer | Roy Seitz <roy.seitz@ost.ch> | 2021-02-22 08:48:36 +0100 |
commit | a82da67587b049e54dcd53e76b4220d22a60d842 (patch) | |
tree | 8b0717987839cf0e6cac6c4297f95f94f695f247 /vorlesungen/00_template/Makefile | |
parent | Typos. (diff) | |
parent | add ende (diff) | |
download | SeminarMatrizen-a82da67587b049e54dcd53e76b4220d22a60d842.tar.gz SeminarMatrizen-a82da67587b049e54dcd53e76b4220d22a60d842.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'vorlesungen/00_template/Makefile')
-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 + |