diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2021-06-04 17:01:20 +0200 |
---|---|---|
committer | Andreas Müller <andreas.mueller@ost.ch> | 2021-06-04 17:01:20 +0200 |
commit | 592148b17104f513bb00c3d99ddc62e44648fc63 (patch) | |
tree | dc61de2e6b3dd3d3250d1392a9474c42181552cf /cover/Makefile | |
parent | add basic file infrastructure for special function book (diff) | |
download | SeminarSpezielleFunktionen-592148b17104f513bb00c3d99ddc62e44648fc63.tar.gz SeminarSpezielleFunktionen-592148b17104f513bb00c3d99ddc62e44648fc63.zip |
add cover
Diffstat (limited to 'cover/Makefile')
-rw-r--r-- | cover/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cover/Makefile b/cover/Makefile new file mode 100644 index 0000000..c23a70f --- /dev/null +++ b/cover/Makefile @@ -0,0 +1,19 @@ +# +# Makefile -- build the book cover +# +# (c) 2018 Prof Dr Andreas Müller, Hochschule Rapperswil +# +all: buchcover.png front.pdf back.pdf + +buchcover.pdf: buchcover.tex + pdflatex buchcover.tex + +buchcover.png: buchcover.pdf + convert -density 300 -extract 1966x2900+2630+190 buchcover.pdf \ + buchcover.png + +front.pdf: front.tex buchcover.pdf + pdflatex front.tex + +back.pdf: back.tex buchcover.pdf + pdflatex back.tex |