117 lines
2.7 KiB
Plaintext
117 lines
2.7 KiB
Plaintext
{
|
|
"folders": [
|
|
{
|
|
"path": "."
|
|
}
|
|
],
|
|
"settings": {
|
|
"latex-workshop.latex.outDir": "%DIR%/cache",
|
|
"latex-workshop.latex.recipes": [
|
|
{
|
|
"name": "pdflatex",
|
|
"tools": [
|
|
"pdflatex"
|
|
]
|
|
},
|
|
{
|
|
"name": "latexmk (xelatex)",
|
|
"tools": [
|
|
"xelatexmk"
|
|
]
|
|
},
|
|
{
|
|
"name": "latexmk",
|
|
"tools": [
|
|
"latexmk"
|
|
]
|
|
},
|
|
{
|
|
"name": "latexmk (latexmkrc)",
|
|
"tools": [
|
|
"latexmk_rconly"
|
|
]
|
|
},
|
|
{
|
|
"name": "pdflatex -> bibtex -> pdflatex * 2",
|
|
"tools": [
|
|
"pdflatex",
|
|
"bibtex",
|
|
"pdflatex",
|
|
"pdflatex"
|
|
]
|
|
},
|
|
],
|
|
"latex-workshop.latex.tools": [
|
|
{
|
|
"name": "latexmk",
|
|
"command": "latexmk",
|
|
"args": [
|
|
"-synctex=1",
|
|
"-interaction=nonstopmode",
|
|
"-file-line-error",
|
|
"-pdf",
|
|
"-shell-escape",
|
|
"-outdir=%OUTDIR%",
|
|
"%DOC%"
|
|
],
|
|
"env": {}
|
|
},
|
|
{
|
|
"name": "xelatexmk",
|
|
"command": "latexmk",
|
|
"args": [
|
|
"-synctex=1",
|
|
"-interaction=nonstopmode",
|
|
"-file-line-error",
|
|
"-xelatex",
|
|
"-outdir=%OUTDIR%",
|
|
"%DOC%"
|
|
],
|
|
"env": {}
|
|
},
|
|
{
|
|
"name": "latexmk_rconly",
|
|
"command": "latexmk",
|
|
"args": [
|
|
"%DOC%"
|
|
],
|
|
"env": {}
|
|
},
|
|
{
|
|
"name": "pdflatex",
|
|
"command": "pdflatex",
|
|
"args": [
|
|
"-synctex=1",
|
|
// "-recorder",
|
|
"-shell-escape",
|
|
"-interaction=nonstopmode",
|
|
"-file-line-error",
|
|
"-output-directory=%OUTDIR%",
|
|
"%DOC%"
|
|
],
|
|
"env": {}
|
|
},
|
|
{
|
|
"name": "bibtex",
|
|
"command": "bibtex",
|
|
"args": [
|
|
"%DOCFILE%"
|
|
],
|
|
"env": {}
|
|
},
|
|
{
|
|
"name": "tectonic",
|
|
"command": "tectonic",
|
|
"args": [
|
|
"--synctex",
|
|
"--keep-logs",
|
|
"%DOC%.tex"
|
|
],
|
|
"env": {}
|
|
}
|
|
],
|
|
"latex-workshop.latex.rootFile.indicator": "\\begin{document}",
|
|
"latex-workshop.latex.recipe.default": "lastUsed",
|
|
}
|
|
}
|