diff options
author | Andreas Müller <andreas.mueller@hsr.ch> | 2020-12-03 17:18:03 +0100 |
---|---|---|
committer | Andreas Müller <andreas.mueller@hsr.ch> | 2020-12-03 17:18:03 +0100 |
commit | ac4b80be810fc615b426557ad86f0cb8092f5304 (patch) | |
tree | 2afe81a7f8a178fa479a91bec4cf61a54f8eae9f /buch/Makefile | |
parent | some more ideas (diff) | |
download | SeminarMatrizen-ac4b80be810fc615b426557ad86f0cb8092f5304.tar.gz SeminarMatrizen-ac4b80be810fc615b426557ad86f0cb8092f5304.zip |
add files
Diffstat (limited to 'buch/Makefile')
-rwxr-xr-x | buch/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/buch/Makefile b/buch/Makefile new file mode 100755 index 0000000..722c177 --- /dev/null +++ b/buch/Makefile @@ -0,0 +1,35 @@ +# +# Makefile zum Skript ueber Matrizen +# +# (c) 2020 Prof Dr Andreas Mueller, Hochschule Rapperswil +# +all: buch.pdf + +papers/common/Makefile.inc: papers/common/paperlist + +include common/Makefile.inc +include chapters/Makefile.inc +include papers/common/Makefile.inc +include papers/common/includes.inc + +ALLTEXFILES = $(TEXFILES) $(CHAPTERFILES) + +buch.pdf: buch.tex $(TEXFILES) buch.ind $(BLXFILES) + pdflatex buch.tex + bibtex buch + +buch.idx: buch.tex $(TEXFILES) images + touch buch.ind + pdflatex buch.tex + +buch.ind: buch.idx + makeindex buch.idx + +separate: buch.aux buch.pdf + bash splitpapers + +numerik.pdf: + pdfjam --outfile numerik.pdf \ + ../cover/front.pdf 1,{} \ + buch.pdf 1-504 \ + ../cover/back.pdf {},1 |