From 3c038ec7e9cde48292b07a55c63f3e8f7516bccb Mon Sep 17 00:00:00 2001 From: Sergiu Ivanov Date: Sun, 31 May 2020 16:55:20 +0200 Subject: [PATCH] Use LuaLaTeX to compile my dossier. --- _shake/Build.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_shake/Build.hs b/_shake/Build.hs index 0e03759..eb897b4 100644 --- a/_shake/Build.hs +++ b/_shake/Build.hs @@ -11,7 +11,7 @@ fullTarget :: FilePath fullTarget = buildDir target <.> "pdf" pdflatexCmd :: [String] -pdflatexCmd = ["xelatex", "-halt-on-error", "-output-directory=" ++ buildDir, target] +pdflatexCmd = ["lualatex", "-halt-on-error", "-output-directory=" ++ buildDir, target] -- | Filters out the files which contain '#'. noEmacsFiles :: [FilePath] -> [FilePath]