diff options
author | Joshua Baer <joshua.baer@ost.ch> | 2022-07-18 17:15:22 +0200 |
---|---|---|
committer | Joshua Baer <joshua.baer@ost.ch> | 2022-07-18 17:15:22 +0200 |
commit | 1001d7e685fbf99051c5cfe26abc800aa1ae1c2f (patch) | |
tree | 543cea40ffebf5801caeb34ced4625f6458f8a05 /buch/papers/fm/Makefile | |
parent | save (diff) | |
download | SeminarSpezielleFunktionen-1001d7e685fbf99051c5cfe26abc800aa1ae1c2f.tar.gz SeminarSpezielleFunktionen-1001d7e685fbf99051c5cfe26abc800aa1ae1c2f.zip |
save
Diffstat (limited to 'buch/papers/fm/Makefile')
-rw-r--r-- | buch/papers/fm/Makefile | 32 |
1 files changed, 30 insertions, 2 deletions
diff --git a/buch/papers/fm/Makefile b/buch/papers/fm/Makefile index f43d497..fb42942 100644 --- a/buch/papers/fm/Makefile +++ b/buch/papers/fm/Makefile @@ -4,6 +4,34 @@ # (c) 2020 Prof Dr Andreas Mueller # -images: - @echo "no images to be created in fm" +SOURCES := \ + 01_AM-FM.tex \ + 02_frequenzyspectrum.tex \ + main.tex \ + 03_bessel.tex \ + 04_fazit.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/fm/standalone \ + papers/fm/standalone.tex; + cd standalone; \ + bibtex standalone; \ + makeindex standalone;
\ No newline at end of file |