From c772b8b1ec4c835c20630471a9e1208eb98adc55 Mon Sep 17 00:00:00 2001 From: n-peugnet Date: Mon, 25 Oct 2021 14:48:36 +0200 Subject: generate LaTeX tables summary from ext and input it in pdf using LC_NUMERIC=fr_FR.UTF-8 we get space separated thousands, but the separator is an unicode charracter so we must declare it in the LaTeX header. The full tables will be generated later --- pdf/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pdf/Makefile') diff --git a/pdf/Makefile b/pdf/Makefile index b2b3ab9..72c81fe 100644 --- a/pdf/Makefile +++ b/pdf/Makefile @@ -11,12 +11,13 @@ endif all pdf: $(PDF) -%.pdf: %.tex +%.pdf: %.tex assets/*.tex latexmk $(LATEXMK_FLAGS) -pdf -f $< mostlyclean: latexmk $(LATEXMK_FLAGS) -c rm -f $(FILES:%=%.synctex.*) + rm -f assets/*.aux clean: mostlyclean rm -f $(PDF) -- cgit v1.2.3