fix latexmkrc and texlab
This commit is contained in:
17
latexmkrc
17
latexmkrc
@@ -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';
|
||||
}
|
||||
|
Reference in New Issue
Block a user