fix latexmkrc and texlab

This commit is contained in:
2025-08-21 10:53:23 +08:00
parent 10e0fa2052
commit 91f688e71b
4 changed files with 32 additions and 9 deletions

View File

@@ -1,2 +1,15 @@
$pdflatex = 'xelatex %O %S';
$pdf_mode = 1;
$pdf_mode = 1;
$pdflatex = 'pdflatex -interaction=nonstopmode %O %S';
# Check the name of the file being compiled.
# The filename is stored in the first argument, $ARGV[0].
if ( $ARGV[0] =~ /ijcai25\.tex$/i ) {
print "--- Found ijcai25.tex, using pdflatex ---\n";
$pdf_mode = 1;
$pdflatex = 'pdflatex -interaction=nonstopmode %O %S';
}
else {
$pdf_mode = 4;
$pdflatex = 'xelatex -interaction=nonstopmode %O %S';
}