78 lines
2.0 KiB
JSON
78 lines
2.0 KiB
JSON
|
{
|
||
|
"latex-workshop.latex.autoBuild.run": "never",
|
||
|
"latex-workshop.showContextMenu": true,
|
||
|
"latex-workshop.intellisense.package.enabled": true,
|
||
|
"latex-workshop.message.error.show": false,
|
||
|
"latex-workshop.message.warning.show": false,
|
||
|
"latex-workshop.latex.outDir": "%DIR%/out",
|
||
|
"latex-workshop.latex.tools": [
|
||
|
{
|
||
|
"name": "xelatex",
|
||
|
"command": "xelatex",
|
||
|
"args": [
|
||
|
"-synctex=1",
|
||
|
"-interaction=nonstopmode",
|
||
|
"-file-line-error",
|
||
|
"--output-directory=%OUTDIR%",
|
||
|
"main.tex"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"name": "latexmk",
|
||
|
"command": "latexmk",
|
||
|
"args": [
|
||
|
"-synctex=1",
|
||
|
"-interaction=nonstopmode",
|
||
|
"-file-line-error",
|
||
|
"-pdf",
|
||
|
"-outdir=%OUTDIR%",
|
||
|
"%DOCFILE%"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"name": "bibtex",
|
||
|
"command": "bibtex",
|
||
|
"args": [
|
||
|
"%DOCFILE%"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"latex-workshop.latex.recipes": [
|
||
|
{
|
||
|
"name": "XeLaTeX",
|
||
|
"tools": [
|
||
|
"xelatex"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"name": "PDFLaTeX",
|
||
|
"tools": [
|
||
|
"pdflatex"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"name": "BibTeX",
|
||
|
"tools": [
|
||
|
"bibtex"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"name": "LaTeXmk",
|
||
|
"tools": [
|
||
|
"latexmk"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"name": "xelatex -> bibtex -> xelatex*2",
|
||
|
"tools": [
|
||
|
"xelatex",
|
||
|
"bibtex",
|
||
|
"xelatex",
|
||
|
"xelatex"
|
||
|
]
|
||
|
},
|
||
|
],
|
||
|
"latex-workshop.latex.autoClean.run": "onFailed",
|
||
|
"latex-workshop.latex.recipe.default": "lastUsed",
|
||
|
"latex-workshop.view.pdf.internal.synctex.keybinding": "double-click"
|
||
|
}
|