Use LuaLaTeX to compile my dossier.

This commit is contained in:
Sergiu Ivanov 2020-05-31 16:55:20 +02:00
parent 30266ddd6e
commit 3c038ec7e9
1 changed files with 1 additions and 1 deletions

View File

@ -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]