diff options
author | Nicolas Tobler <nicolas.tobler@ost.ch> | 2022-08-23 22:33:40 +0200 |
---|---|---|
committer | Nicolas Tobler <nicolas.tobler@ost.ch> | 2022-08-23 22:33:40 +0200 |
commit | 6ac6dd132a11abd9ec4955cd2e35e22408c982e6 (patch) | |
tree | 902445b16ec2f2b9df3b3659b6139926469c267f /buch/papers/sturmliouville/Makefile | |
parent | Added Berechnung der rationalen Funktion (diff) | |
parent | Merge pull request #63 from NaoPross/master (diff) | |
download | SeminarSpezielleFunktionen-6ac6dd132a11abd9ec4955cd2e35e22408c982e6.tar.gz SeminarSpezielleFunktionen-6ac6dd132a11abd9ec4955cd2e35e22408c982e6.zip |
Merge branch 'master' of https://github.com/AndreasFMueller/SeminarSpezielleFunktionen
Diffstat (limited to 'buch/papers/sturmliouville/Makefile')
-rw-r--r-- | buch/papers/sturmliouville/Makefile | 34 |
1 files changed, 31 insertions, 3 deletions
diff --git a/buch/papers/sturmliouville/Makefile b/buch/papers/sturmliouville/Makefile index da902e7..8d3e0af 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\ + eigenschaften.tex \ + beispiele.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 \ + --extra-mem-top=10000000 \ + papers/sturmliouville/standalone.tex; + cd standalone; \ + bibtex standalone; \ + makeindex standalone;
\ No newline at end of file |