diff options
author | Samuel Niederer <43746162+samnied@users.noreply.github.com> | 2022-07-24 12:17:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-24 12:17:00 +0200 |
commit | efe7c35759afb5cbae3c1683873c5159be0be09f (patch) | |
tree | 84f2e8510132352f9943bddc577ccf32cd46f2dc /buch/papers/fm/Makefile | |
parent | add current work (diff) | |
parent | Merge pull request #26 from p1mueller/master (diff) | |
download | SeminarSpezielleFunktionen-efe7c35759afb5cbae3c1683873c5159be0be09f.tar.gz SeminarSpezielleFunktionen-efe7c35759afb5cbae3c1683873c5159be0be09f.zip |
Merge branch 'AndreasFMueller:master' into master
Diffstat (limited to '')
-rw-r--r-- | buch/papers/fm/Makefile | 32 | ||||
-rw-r--r-- | buch/papers/fm/Makefile.inc | 10 |
2 files changed, 35 insertions, 7 deletions
diff --git a/buch/papers/fm/Makefile b/buch/papers/fm/Makefile index f43d497..c84963f 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 \ + 03_bessel.tex \ + 04_fazit.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/fm/standalone \ + papers/fm/standalone.tex; + cd standalone; \ + bibtex standalone; \ + makeindex standalone;
\ No newline at end of file diff --git a/buch/papers/fm/Makefile.inc b/buch/papers/fm/Makefile.inc index 0f144b6..e5cd9f6 100644 --- a/buch/papers/fm/Makefile.inc +++ b/buch/papers/fm/Makefile.inc @@ -6,9 +6,9 @@ dependencies-fm = \ papers/fm/packages.tex \ papers/fm/main.tex \ - papers/fm/references.bib \ - papers/fm/teil0.tex \ - papers/fm/teil1.tex \ - papers/fm/teil2.tex \ - papers/fm/teil3.tex + papers/fm/01_AM-FM.tex \ + papers/fm/02_frequenzyspectrum.tex \ + papers/fm/03_bessel.tex \ + papers/fm/04_fazit.tex \ + papers/fm/references.bib |