From 8d3f5416af1f8a5ce30db4eb275be3cdae67c8eb Mon Sep 17 00:00:00 2001 From: haddoucher Date: Tue, 26 Jul 2022 13:53:12 +0200 Subject: makefile makefile --- buch/papers/sturmliouville/Makefile | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) (limited to 'buch/papers/sturmliouville/Makefile') diff --git a/buch/papers/sturmliouville/Makefile b/buch/papers/sturmliouville/Makefile index da902e7..70de9fc 100644 --- a/buch/papers/sturmliouville/Makefile +++ b/buch/papers/sturmliouville/Makefile @@ -1,9 +1,37 @@ # -# Makefile -- make file for the paper sturmliouville +# Makefile -- make file for the paper fm # # (c) 2020 Prof Dr Andreas Mueller # -images: - @echo "no images to be created in sturmliouville" +SOURCES := \ + einleitung.tex\ + teil1.tex \ + teil2.tex \ + teil3.tex \ + main.tex +#TIKZFIGURES := \ + tikz/atoms-grid-still.tex \ + +#FIGURES := $(patsubst tikz/%.tex, figures/%.pdf, $(TIKZFIGURES)) + +#.PHONY: images +#images: $(FIGURES) + +#figures/%.pdf: tikz/%.tex +# mkdir -p figures +# pdflatex --output-directory=figures $< + +.PHONY: standalone +standalone: standalone.tex $(SOURCES) #$(FIGURES) + mkdir -p standalone + cd ../..; \ + pdflatex \ + --halt-on-error \ + --shell-escape \ + --output-directory=papers/sturmliouville/standalone \ + papers/sturmliouville/standalone.tex; + cd standalone; \ + bibtex standalone; \ + makeindex standalone; \ No newline at end of file -- cgit v1.2.1 From 08931fd248fc0c14173b5ee9bb34e545d7d4bf03 Mon Sep 17 00:00:00 2001 From: haddoucher Date: Tue, 26 Jul 2022 15:05:25 +0200 Subject: struktur verbessert --- buch/papers/sturmliouville/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'buch/papers/sturmliouville/Makefile') diff --git a/buch/papers/sturmliouville/Makefile b/buch/papers/sturmliouville/Makefile index 70de9fc..23214a2 100644 --- a/buch/papers/sturmliouville/Makefile +++ b/buch/papers/sturmliouville/Makefile @@ -31,6 +31,7 @@ standalone: standalone.tex $(SOURCES) #$(FIGURES) --halt-on-error \ --shell-escape \ --output-directory=papers/sturmliouville/standalone \ + --extra-mem-top=10000000 \ papers/sturmliouville/standalone.tex; cd standalone; \ bibtex standalone; \ -- cgit v1.2.1 From 26ed6c0f968b723821c92606a1c5aa53fa274754 Mon Sep 17 00:00:00 2001 From: haddoucher Date: Tue, 26 Jul 2022 15:44:27 +0200 Subject: Update Makefile --- buch/papers/sturmliouville/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'buch/papers/sturmliouville/Makefile') diff --git a/buch/papers/sturmliouville/Makefile b/buch/papers/sturmliouville/Makefile index 23214a2..8d3e0af 100644 --- a/buch/papers/sturmliouville/Makefile +++ b/buch/papers/sturmliouville/Makefile @@ -6,9 +6,8 @@ SOURCES := \ einleitung.tex\ - teil1.tex \ - teil2.tex \ - teil3.tex \ + eigenschaften.tex \ + beispiele.tex \ main.tex #TIKZFIGURES := \ -- cgit v1.2.1