aboutsummaryrefslogtreecommitdiffstats
path: root/vorlesungen/08_dgl/Makefile
diff options
context:
space:
mode:
authorAndreas Müller <andreas.mueller@ost.ch>2021-04-15 11:13:50 +0200
committerAndreas Müller <andreas.mueller@ost.ch>2021-04-15 11:13:50 +0200
commit9685524959fd0c5e3b2b5ced4f9569cbabcf028f (patch)
treed029ee1a7cd134e73380ad4f4bc8a4b00b44e8a3 /vorlesungen/08_dgl/Makefile
parentadd devide and conquor slides (diff)
parentSlides für Vorlesung DGL begonnen. (diff)
downloadSeminarMatrizen-9685524959fd0c5e3b2b5ced4f9569cbabcf028f.tar.gz
SeminarMatrizen-9685524959fd0c5e3b2b5ced4f9569cbabcf028f.zip
Merge branch 'master' of github.com:AndreasFMueller/SeminarMatrizen
Diffstat (limited to 'vorlesungen/08_dgl/Makefile')
-rw-r--r--vorlesungen/08_dgl/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/vorlesungen/08_dgl/Makefile b/vorlesungen/08_dgl/Makefile
new file mode 100644
index 0000000..613a5d9
--- /dev/null
+++ b/vorlesungen/08_dgl/Makefile
@@ -0,0 +1,33 @@
+#
+# Makefile -- dgl
+#
+# (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil
+#
+all: dgl-handout.pdf MathSem-08-dgl.pdf
+
+include ../slides/Makefile.inc
+
+SOURCES = common.tex slides.tex $(slides)
+
+MathSem-08-dgl.pdf: MathSem-08-dgl.tex $(SOURCES)
+ pdflatex MathSem-08-dgl.tex
+
+dgl-handout.pdf: dgl-handout.tex $(SOURCES)
+ pdflatex dgl-handout.tex
+
+thumbnail: thumbnail.jpg # fix1.jpg
+
+thumbnail.pdf: MathSem-08-dgl.pdf
+ pdfjam --outfile thumbnail.pdf --papersize '{16cm,9cm}' \
+ MathSem-08-dgl.pdf 1
+thumbnail.jpg: thumbnail.pdf
+ convert -density 300 thumbnail.pdf \
+ -resize 1920x1080 -units PixelsPerInch thumbnail.jpg
+
+fix1.pdf: MathSem-08-dgl.pdf
+ pdfjam --outfile fix1.pdf --papersize '{16cm,9cm}' \
+ MathSem-08-dgl.pdf 1
+fix1.jpg: fix1.pdf
+ convert -density 300 fix1.pdf \
+ -resize 1920x1080 -units PixelsPerInch fix1.jpg
+