From fde57297b3efbef28d09a532e1b3895d2b2ad917 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrik=20M=C3=BCller?= Date: Thu, 14 Jul 2022 15:03:28 +0200 Subject: Correct Makefile, add text to gamma.tex, separate python-scripts for each image --- buch/papers/laguerre/Makefile | 38 +++++++++++++++++++++++++++++++++++--- 1 file changed, 35 insertions(+), 3 deletions(-) (limited to 'buch/papers/laguerre/Makefile') diff --git a/buch/papers/laguerre/Makefile b/buch/papers/laguerre/Makefile index 0f0985a..1ed87cc 100644 --- a/buch/papers/laguerre/Makefile +++ b/buch/papers/laguerre/Makefile @@ -3,9 +3,41 @@ # # (c) 2020 Prof Dr Andreas Mueller # +IMGFOLDER := images +PRESFOLDER := presentation -images: images/laguerre_polynomes.pdf +FIGURES := \ + images/targets.pdf \ + images/estimates.pgf \ + images/integrand.pgf \ + images/integrand_exp.pgf \ + images/laguerre_poly.pgf \ + images/rel_error_mirror.pgf \ + images/rel_error_range.pgf \ + images/rel_error_shifted.pgf \ + images/rel_error_simple.pgf \ + images/gammaplot.pdf -images/laguerre_polynomes.pdf: scripts/laguerre_plot.py - python3 scripts/laguerre_plot.py +.PHONY: all +all: images presentation +.PHONY: images +images: $(FIGURES) + +.PHONY: presentation +presentation: $(PRESFOLDER)/presentation.pdf + +images/%.pdf images/%.pgf: scripts/%.py + python3 $< + +images/gammaplot.pdf: images/gammaplot.tex images/gammapaths.tex + cd $(IMGFOLDER) && latexmk -quiet -pdf gammaplot.tex + +$(PRESFOLDER)/%.pdf: $(PRESFOLDER)/%.tex $(FIGURES) + cd $(PRESFOLDER) && latexmk -quiet -pdf $( Date: Fri, 15 Jul 2022 16:24:48 +0200 Subject: Change image scripts to PDF format, update Makefile, add complex plane plot --- buch/papers/laguerre/Makefile | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'buch/papers/laguerre/Makefile') diff --git a/buch/papers/laguerre/Makefile b/buch/papers/laguerre/Makefile index 1ed87cc..48f8066 100644 --- a/buch/papers/laguerre/Makefile +++ b/buch/papers/laguerre/Makefile @@ -8,14 +8,15 @@ PRESFOLDER := presentation FIGURES := \ images/targets.pdf \ - images/estimates.pgf \ - images/integrand.pgf \ - images/integrand_exp.pgf \ - images/laguerre_poly.pgf \ - images/rel_error_mirror.pgf \ - images/rel_error_range.pgf \ - images/rel_error_shifted.pgf \ - images/rel_error_simple.pgf \ + images/rel_error_complex.pdf \ + images/estimates.pdf \ + images/integrand.pdf \ + images/integrand_exp.pdf \ + images/laguerre_poly.pdf \ + images/rel_error_mirror.pdf \ + images/rel_error_range.pdf \ + images/rel_error_shifted.pdf \ + images/rel_error_simple.pdf \ images/gammaplot.pdf .PHONY: all -- cgit v1.2.1 From e1f5d6267540ea8dc758696fb08cb7540362cf8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrik=20M=C3=BCller?= Date: Mon, 18 Jul 2022 17:34:37 +0200 Subject: First complete draft of Laguerre chapter --- buch/papers/laguerre/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'buch/papers/laguerre/Makefile') diff --git a/buch/papers/laguerre/Makefile b/buch/papers/laguerre/Makefile index 48f8066..85a1b83 100644 --- a/buch/papers/laguerre/Makefile +++ b/buch/papers/laguerre/Makefile @@ -28,7 +28,7 @@ images: $(FIGURES) .PHONY: presentation presentation: $(PRESFOLDER)/presentation.pdf -images/%.pdf images/%.pgf: scripts/%.py +images/%.pdf images/%.pgf: scripts/%.py scripts/gamma_approx.py python3 $< images/gammaplot.pdf: images/gammaplot.tex images/gammapaths.tex -- cgit v1.2.1