diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2022-01-25 16:36:09 +0100 |
---|---|---|
committer | Andreas Müller <andreas.mueller@ost.ch> | 2022-01-25 16:36:09 +0100 |
commit | 2f27506e4f8102b6c68321211a2b2059bd92df74 (patch) | |
tree | 5c139fca4fb6fa49a6cbbd5388305b3355bfbdad /buch/Makefile | |
parent | build two different files for printer and students (diff) | |
download | SeminarSpezielleFunktionen-2f27506e4f8102b6c68321211a2b2059bd92df74.tar.gz SeminarSpezielleFunktionen-2f27506e4f8102b6c68321211a2b2059bd92df74.zip |
typos
Diffstat (limited to 'buch/Makefile')
-rwxr-xr-x | buch/Makefile | 29 |
1 files changed, 20 insertions, 9 deletions
diff --git a/buch/Makefile b/buch/Makefile index 7014b97..e2ad4c0 100755 --- a/buch/Makefile +++ b/buch/Makefile @@ -14,6 +14,9 @@ include papers/common/includes.inc ALLTEXFILES = $(TEXFILES) $(CHAPTERFILES) +# +# Buchblock für Druckerei +# buch.pdf: buch.tex $(TEXFILES) buch.ind $(BLXFILES) pdflatex buch.tex bibtex buch @@ -25,19 +28,27 @@ buch.idx: buch.tex $(TEXFILES) images buch.ind: buch.idx makeindex buch.idx +# +# Papers in einzelne PDF-Files separieren für digitales Feedback +# separate: buch.aux buch.pdf bash splitpapers -speziellefunktionen.pdf: - pdfjam --outfile speziellefunktionen.pdf \ - ../cover/front.pdf 1,{} \ - buch.pdf 1-20 \ - ../cover/back.pdf {},1 - +# +# Version mit Buchdeckeln für Release/Website +# SeminarSpezielleFunktionen.pdf: SeminarSpezielleFunktionen.tex $(TEXFILES) \ - buch.ind $(BLXFILES) - pdflatex buch.tex - bibtex buch + SeminarSpezielleFunktionen.ind $(BLXFILES) + pdflatex SeminarSpezielleFunktionen.tex + bibtex SeminarSpezielleFunktionen + +SeminarSpezielleFunktionen.idx: SeminarSpezielleFunktionen.tex $(TEXFILES) \ + images + touch SeminarSpezielleFunktionen.ind + pdflatex SeminarSpezielleFunktionen.tex + +SeminarSpezielleFunktionen.ind: SeminarSpezielleFunktionen.idx + makeindex SeminarSpezielleFunktionen # # This Makefile can also construct the short tests |