diff options
author | n-peugnet <n.peugnet@free.fr> | 2021-10-25 14:48:36 +0200 |
---|---|---|
committer | n-peugnet <n.peugnet@free.fr> | 2021-10-25 14:48:36 +0200 |
commit | c772b8b1ec4c835c20630471a9e1208eb98adc55 (patch) | |
tree | 55b7ed575179f9339a65d5aab3b20f4dc146ce0d /pdf/Makefile | |
parent | 71b9fc3fad0d7b8e551bb925e340c53a06e3afe8 (diff) | |
download | dna-backup-c772b8b1ec4c835c20630471a9e1208eb98adc55.tar.gz dna-backup-c772b8b1ec4c835c20630471a9e1208eb98adc55.zip |
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
Diffstat (limited to 'pdf/Makefile')
-rw-r--r-- | pdf/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
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) |