From e4ceaca1aaeef5b873df4d507f10664f96dbebca Mon Sep 17 00:00:00 2001 From: Bastien Dumont Date: Mon, 8 May 2023 16:21:25 +0200 Subject: [PATCH] =?UTF-8?q?Compilation=20en=20deux=20=C3=A9tapes=20pour=20?= =?UTF-8?q?le=20guide=20en=20A4=20afin=20de=20faciliter=20le=20debug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Utilitaires/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Utilitaires/Makefile b/Utilitaires/Makefile index 5477001..14217c1 100644 --- a/Utilitaires/Makefile +++ b/Utilitaires/Makefile @@ -84,7 +84,9 @@ clean: doc: docA4 docDiapo docA4: $(DOC_FILE).md TEMPLATE_Guide-CSL-Clio.latex $(CHANGELOG) - pandoc $(COMMON_DOC_OPTIONS) -o $(DOC_FILE)_A4.pdf --pdf-engine=lualatex --template=TEMPLATE_Guide-CSL-Clio.latex + pandoc $(COMMON_DOC_OPTIONS) -o $(DOC_FILE)_A4.tex --template=TEMPLATE_Guide-CSL-Clio.latex && \ + cd $(DOC_DIR) && \ + latexmk -lualatex $(DOC_FILE)_A4 docDiapo: $(DOC_FILE).md TEMPLATE_Guide-CSL-Clio.context $(CHANGELOG) pandoc $(COMMON_DOC_OPTIONS) -o $(DOC_FILE)_Diapo.tex -t context --template=TEMPLATE_Guide-CSL-Clio.context && \