diff --git a/build.lua b/build.lua index 4cd29da..0e887bd 100644 --- a/build.lua +++ b/build.lua @@ -59,9 +59,9 @@ function typeset(file, dir, exe) dir = dir or typesetdir local cmd if string.match(file, "%-cn%.tex$") then - cmd = "latexmk -pdfxe -synctex=1 -interaction=nonstopmode " + cmd = "latexmk -pdfxe -interaction=nonstopmode " else - cmd = "latexmk -pdf -synctex=1 -interaction=nonstopmode " + cmd = "latexmk -pdf -interaction=nonstopmode " end return run(dir, cmd .. file) end