{
- "latex-workshop.latex.recipe.default": "latexmk (xelatex)",
+ "latex-workshop.latex.recipe.default": "xelatex bibtex",
+ "latex-workshop.latex.autoBuild.run": "never",
+ "latex-workshop.view.pdf.backgroundColor": "#333333",
"latex-workshop.latex.tools": [
+ {
+ "name": "xelatex",
+ "command": "xelatex",
+ "args": [
+ "-synctex=1",
+ "-interaction=nonstopmode",
+ "-file-line-error",
+ "%DOCFILE%"
+ ]
+ },
+ {
+ "name": "pdflatex",
+ "command": "pdflatex",
+ "args": [
+ "-synctex=1",
+ "-interaction=nonstopmode",
+ "-file-line-error",
+ "%DOCFILE%"
+ ]
+ },
+ {
+ "name": "bibtex",
+ "command": "bibtex",
+ "args": [
+ "-min-crossrefs=200",
+ "%DOCFILE%"
+ ]
+ },
{
"name": "xelatexmk",
"command": "latexmk",
"xelatex"
]
}
- ]
+ ],
+ "files.exclude": {
+ "**/_minted-*": true,
+ "**/*.aux": true,
+ "**/*.bbl": true,
+ "**/*.blg": true,
+ "**/*.lof": true,
+ "**/*.log": true,
+ "**/*.lol": true,
+ "**/*.lot": true,
+ "**/*.nav": true,
+ "**/*.out": true,
+ "**/*.snm": true,
+ "**/*.swp": true,
+ "**/*.toc": true,
+ "**/*.fls": true,
+ "**/*.xdv": true,
+ "**/*.synctex.gz": true,
+ "**/*.synctex(busy)": true,
+ "**/*.ist": true,
+ "**/*.fdb_latexmk": true,
+ "**/*.vrb": true
+},
}
\ No newline at end of file