forked from LaTeXing/LaTeXing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LaTeX (TikZ).sublime-build
46 lines (46 loc) · 1.25 KB
/
LaTeX (TikZ).sublime-build
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
36
37
38
39
40
41
42
43
44
45
46
{
"linux": {
"cmd": [
"pdflatex",
"-interaction=nonstopmode",
"-interaction=batchmode",
"-jobname={pdfname}",
"-output-directory={outdir}",
"{file}"
],
"file_regex": "^(?:W|E|B):\\s(.*):([0-9]+)",
"path": "$PATH:/usr/texbin:/usr/local/bin:/opt/local/bin"
},
"osx": {
"cmd": [
"pdflatex",
"-interaction=nonstopmode",
"-interaction=batchmode",
"-jobname={pdfname}",
"-output-directory={outdir}",
"{file}"
],
"file_regex": "^(?:W|E|B):\\s(.*):([0-9]+)",
"path": "$PATH:/usr/texbin:/usr/local/bin:/opt/local/bin"
},
"selector": "text.tex.latex.tikz",
"target": "ltx_tikz_compiler",
"variants": [
{
"name": "Clean up Files",
"target": "ltx_clean"
}
],
"windows": {
"cmd": [
"pdflatex",
"-interaction=nonstopmode",
"-interaction=batchmode",
"-jobname={pdfname}",
"-output-directory={outdir}",
"{file}"
],
"file_regex": "^(?:W|E|B):\\s(.*):([0-9]+)",
"path": "C:\\MikTeX\\miktex\\bin;$PATH"
}
}