blob: 72223361393f2143d6da1104251cef888ae0f417 (
plain)
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
|
@default_files = ('tlmgr-intro-zh-cn.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 thm toe ist idx";
# Preview mode & Auto complie after save.
$preview_continuous_mode = 0;
# Set XeLaTeX option.
$pdflatex = "xelatex -halt-on-error -interaction=nonstopmode -synctex=1 %O %S";
# Process index. [Use Chinese index program]
# $makeindex = '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;
|