From 1001d7e685fbf99051c5cfe26abc800aa1ae1c2f Mon Sep 17 00:00:00 2001 From: Joshua Baer Date: Mon, 18 Jul 2022 17:15:22 +0200 Subject: save --- buch/papers/fm/Makefile | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) (limited to 'buch/papers/fm/Makefile') 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 -- cgit v1.2.1 From 6c23215c9ad1209bee5d1d2704579b4761341b71 Mon Sep 17 00:00:00 2001 From: Joshua Baer Date: Tue, 19 Jul 2022 14:36:41 +0200 Subject: add gitignore --- buch/papers/fm/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'buch/papers/fm/Makefile') diff --git a/buch/papers/fm/Makefile b/buch/papers/fm/Makefile index fb42942..c84963f 100644 --- a/buch/papers/fm/Makefile +++ b/buch/papers/fm/Makefile @@ -7,16 +7,16 @@ SOURCES := \ 01_AM-FM.tex \ 02_frequenzyspectrum.tex \ - main.tex \ 03_bessel.tex \ - 04_fazit.tex + 04_fazit.tex \ + main.tex #TIKZFIGURES := \ tikz/atoms-grid-still.tex \ #FIGURES := $(patsubst tikz/%.tex, figures/%.pdf, $(TIKZFIGURES)) -.PHONY: images +#.PHONY: images #images: $(FIGURES) #figures/%.pdf: tikz/%.tex -- cgit v1.2.1 From e7f4d8d568bf62c76f4bf0ffdc0fe009134c184d Mon Sep 17 00:00:00 2001 From: Joshua Baer Date: Wed, 27 Jul 2022 17:45:10 +0200 Subject: Herleitung Kapitel Bessel --- buch/papers/fm/Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'buch/papers/fm/Makefile') diff --git a/buch/papers/fm/Makefile b/buch/papers/fm/Makefile index c84963f..aee954f 100644 --- a/buch/papers/fm/Makefile +++ b/buch/papers/fm/Makefile @@ -16,15 +16,17 @@ SOURCES := \ #FIGURES := $(patsubst tikz/%.tex, figures/%.pdf, $(TIKZFIGURES)) -#.PHONY: images -#images: $(FIGURES) +all: images standalone + +.PHONY: images +images: $(FIGURES) #figures/%.pdf: tikz/%.tex # mkdir -p figures # pdflatex --output-directory=figures $< .PHONY: standalone -standalone: standalone.tex $(SOURCES) #$(FIGURES) +standalone: standalone.tex $(SOURCES) $(FIGURES) mkdir -p standalone cd ../..; \ pdflatex \ -- cgit v1.2.1 From 166573a69495056cfeaf76624373a74326374170 Mon Sep 17 00:00:00 2001 From: Joshua Baer Date: Wed, 27 Jul 2022 19:28:06 +0200 Subject: Reorganized Kapitel --- buch/papers/fm/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'buch/papers/fm/Makefile') diff --git a/buch/papers/fm/Makefile b/buch/papers/fm/Makefile index aee954f..f30c4a9 100644 --- a/buch/papers/fm/Makefile +++ b/buch/papers/fm/Makefile @@ -5,8 +5,9 @@ # SOURCES := \ - 01_AM-FM.tex \ - 02_frequenzyspectrum.tex \ + 00_modulation.tex \ + 01_AM.tex \ + 02_FM.tex \ 03_bessel.tex \ 04_fazit.tex \ main.tex -- cgit v1.2.1