-
Notifications
You must be signed in to change notification settings - Fork 12
/
.latexmkrc
36 lines (22 loc) · 855 Bytes
/
.latexmkrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@default_files = ('2019Fall_FA.tex');
# Cleanup mode
# [2 is for doing aux files cleanup before building, ex]
# [1 is for doing ALL output files cleanup]
# [0 is for not doing cleanup]
$cleanup_mode = 0;
# Use XeLaTeX to compile.
# [5 is XeLaTeX]
$pdf_mode = 1;
$clean_ext = "synctex.gz acn acr alg aux bbl bcf blg brf fdb_latexmk glg glo gls idx ilg ind lof log lot out run.xml toc pdf thm toe ist idx";
# Preview mode & Auto complie after save.
$preview_continuous_mode = 1;
# Set XeLaTeX option.
$pdflatex = "xelatex -file-line-error -halt-on-error -interaction=nonstopmode -synctex=1 %O %S";
# Process index. [Use Chinese index program]
$makeindex = './zhmakeindex/zhmakeindex %O -o %D %S';
# Preview mode
# [1 is for running a previewer after building]
# [0 is for not running it]
# $preview_mode = 1;
$show_time=1;
$sleep_time=1;