aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/fm/Makefile
diff options
context:
space:
mode:
authorAndreas Müller <andreas.mueller@ost.ch>2022-07-19 18:56:38 +0200
committerGitHub <noreply@github.com>2022-07-19 18:56:38 +0200
commit70b15bf286ba09102e865977a5e9248f28e881cc (patch)
treea945540ee6a4e86b37df2f01e3a91584b4797c4f /buch/papers/fm/Makefile
parentMerge pull request #24 from daHugen/master (diff)
parentnot finished (diff)
downloadSeminarSpezielleFunktionen-70b15bf286ba09102e865977a5e9248f28e881cc.tar.gz
SeminarSpezielleFunktionen-70b15bf286ba09102e865977a5e9248f28e881cc.zip
Merge pull request #25 from JODBaer/master
Erstes Kapitel, jedoch noch nicht zum lesen
Diffstat (limited to 'buch/papers/fm/Makefile')
-rw-r--r--buch/papers/fm/Makefile32
1 files changed, 30 insertions, 2 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