mirror of
https://github.com/Wessel/nhl-levenshtein.git
synced 2026-06-05 23:55:45 +02:00
113 lines
2.2 KiB
JSON
113 lines
2.2 KiB
JSON
{
|
|
"latex-workshop.latex.autoBuild.cleanAndRetry.enabled": true,
|
|
"latex-workshop.latex.clean.subfolder.enabled": true,
|
|
"latex-workshop.latex.external.build.args": [ "--shell-escape" ],
|
|
"latex-workshop.latex.outDir": "tmp",
|
|
"latex-workshop.latex.tools": [
|
|
{
|
|
"name": "latexmk",
|
|
"command": "latexmk",
|
|
"args": [
|
|
"-synctex=1",
|
|
"-interaction=nonstopmode",
|
|
"-file-line-error",
|
|
"-pdf",
|
|
"-outdir=%OUTDIR%",
|
|
"%DOC%",
|
|
"--shell-escape",
|
|
],
|
|
"env": {}
|
|
},
|
|
{
|
|
"name": "lualatexmk",
|
|
"command": "latexmk",
|
|
"args": [
|
|
"-synctex=1",
|
|
"-interaction=nonstopmode",
|
|
"-file-line-error",
|
|
"-lualatex",
|
|
"-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",
|
|
"-interaction=nonstopmode",
|
|
"-file-line-error",
|
|
"%DOC%"
|
|
],
|
|
"env": {}
|
|
},
|
|
{
|
|
"name": "bibtex",
|
|
"command": "bibtex",
|
|
"args": [
|
|
"%DOCFILE%"
|
|
],
|
|
"env": {}
|
|
},
|
|
{
|
|
"name": "rnw2tex",
|
|
"command": "Rscript",
|
|
"args": [
|
|
"-e",
|
|
"knitr::opts_knit$set(concordance = TRUE); knitr::knit('%DOCFILE_EXT%')"
|
|
],
|
|
"env": {}
|
|
},
|
|
{
|
|
"name": "jnw2tex",
|
|
"command": "julia",
|
|
"args": [
|
|
"-e",
|
|
"using Weave; weave(\"%DOC_EXT%\", doctype=\"tex\")"
|
|
],
|
|
"env": {}
|
|
},
|
|
{
|
|
"name": "jnw2texmintex",
|
|
"command": "julia",
|
|
"args": [
|
|
"-e",
|
|
"using Weave; weave(\"%DOC_EXT%\", doctype=\"texminted\")"
|
|
],
|
|
"env": {}
|
|
},
|
|
{
|
|
"name": "tectonic",
|
|
"command": "tectonic",
|
|
"args": [
|
|
"--synctex",
|
|
"--keep-logs",
|
|
"%DOC%.tex"
|
|
],
|
|
"env": {}
|
|
}
|
|
]
|
|
}
|