From 19a6f887225d8efd3a15e5a2296fa9d792019f0e Mon Sep 17 00:00:00 2001 From: Thomas NOEL Date: Wed, 18 Feb 2015 18:39:28 +0100 Subject: [PATCH] rendu pdf via xelatex --- documentation/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/Makefile b/documentation/Makefile index 43ad7c6..12cfdf4 100644 --- a/documentation/Makefile +++ b/documentation/Makefile @@ -9,10 +9,10 @@ ALL=installation-base.pdf installation-base.html \ all: $(ALL) %.pdf: %.md - $(PANDOC) $(PANDOCFLAGS) --variable lang=french $< -o $@ + $(PANDOC) $(PANDOCFLAGS) --latex-engine=xelatex --variable lang=french $< -o $@ %.tex: %.md - $(PANDOC) $(PANDOCFLAGS) --variable lang=french $< -o $@ + $(PANDOC) $(PANDOCFLAGS) --latex-engine=xelatex --variable lang=french $< -o $@ %.html: %.md $(PANDOC) $(PANDOCFLAGS) $< -o $@