diff options
author | LordMcFungus <mceagle117@gmail.com> | 2022-08-18 20:36:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-18 20:36:44 +0200 |
commit | 2ce7daa9275e6e43c7ec965b502a34a1b283541e (patch) | |
tree | c57fffd47e840de898e332a8c85b69a025bf058b /buch/papers/sturmliouville/Makefile | |
parent | Added graphic (diff) | |
parent | new images (diff) | |
download | SeminarSpezielleFunktionen-2ce7daa9275e6e43c7ec965b502a34a1b283541e.tar.gz SeminarSpezielleFunktionen-2ce7daa9275e6e43c7ec965b502a34a1b283541e.zip |
Merge pull request #4 from AndreasFMueller/master
update
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 |