From 329896625377fb41dded7c6ccb96c6235d1837e6 Mon Sep 17 00:00:00 2001 From: ranwang Date: Sat, 28 Feb 2026 13:51:41 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=20build.lua=20=E7=9A=84=20sy?= =?UTF-8?q?nctex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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