131 lines
3.1 KiB
Plaintext
131 lines
3.1 KiB
Plaintext
{
|
|
"folders": [
|
|
{
|
|
"path": "."
|
|
}
|
|
],
|
|
"settings": {
|
|
"latex-workshop.latex.outDir": "%DIR%/cache",
|
|
"latex-workshop.latex.recipes": [
|
|
{
|
|
"name": "pdflatex",
|
|
"tools": [
|
|
"pdflatex"
|
|
]
|
|
},
|
|
{
|
|
"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",
|
|
"-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": {}
|
|
},
|
|
],
|
|
"latex-workshop.latex.rootFile.indicator": "\\begin{document}",
|
|
"latex-workshop.latex.watch.files.ignore": [
|
|
"**/*.bbx",
|
|
"**/*.bbl",
|
|
"**/*.cbx",
|
|
"**/*.cfg",
|
|
"**/*.clo",
|
|
"**/*.cnf",
|
|
"**/*.def",
|
|
"**/*.dfu",
|
|
"**/*.enc",
|
|
"**/*.fd",
|
|
"**/*.fmt",
|
|
"**/*.lbx",
|
|
"**/*.map",
|
|
"**/*.mkii",
|
|
"**/*.pfb",
|
|
"**/*.tfm",
|
|
"**/*.vf",
|
|
"**/*.code.tex",
|
|
"**/*.sty",
|
|
"**/texmf-{dist,var}/**",
|
|
"**/Local/MiKTeX/**",
|
|
"**/Local/Programs/MiKTeX/**",
|
|
"**/Roaming/MiKTeX/**",
|
|
"**/Program*/MiKTeX*/**",
|
|
"**/.miktex/texmfs/**",
|
|
"/var/cache/miktex-texmf/**",
|
|
"/usr/local/share/miktex-texmf/**",
|
|
"**/Library/Application Support/MiKTeX/texmfs/**",
|
|
"/dev/null",
|
|
"**/*.fls"
|
|
],
|
|
}
|
|
}
|