48 lines
976 B
JSON
48 lines
976 B
JSON
|
{
|
||
|
"latex-workshop.latex.tools": [
|
||
|
{
|
||
|
"name": "latexmk",
|
||
|
"command": "xelatex",
|
||
|
"args": [
|
||
|
"-synctex=1",
|
||
|
"-interaction=nonstopmode",
|
||
|
"-file-line-error",
|
||
|
"-pdf",
|
||
|
"-outdir=%OUTDIR%",
|
||
|
"%DOC%"
|
||
|
],
|
||
|
"env": {}
|
||
|
},
|
||
|
{
|
||
|
"name": "xelatex",
|
||
|
"command": "xelatex",
|
||
|
"args": [
|
||
|
"-synctex=1",
|
||
|
"-interaction=nonstopmode",
|
||
|
"-file-line-error",
|
||
|
"%DOC%"
|
||
|
],
|
||
|
"env": {}
|
||
|
},
|
||
|
{
|
||
|
"name": "pdflatex",
|
||
|
"command": "pdflatex",
|
||
|
"args": [
|
||
|
"-synctex=1",
|
||
|
"-interaction=nonstopmode",
|
||
|
"-file-line-error",
|
||
|
"%DOC%"
|
||
|
],
|
||
|
"env": {}
|
||
|
},
|
||
|
{
|
||
|
"name": "bibtex",
|
||
|
"command": "bibtex",
|
||
|
"args": [
|
||
|
"%DOCFILE%"
|
||
|
],
|
||
|
"env": {}
|
||
|
}
|
||
|
],
|
||
|
|
||
|
}
|