From: Thomas Pietrzak Date: Thu, 27 May 2021 09:37:37 +0000 (+0200) Subject: Update VSCode settings X-Git-Tag: first-full-draft~176 X-Git-Url: https://git.thomaspietrzak.com/?a=commitdiff_plain;h=82b924473676bd7cc6367a1762ebe053d9d44763;p=hdr.git Update VSCode settings --- diff --git a/ .pdf b/ .pdf deleted file mode 100644 index 19e81a0..0000000 Binary files a/ .pdf and /dev/null differ diff --git a/.vscode/settings.json b/.vscode/settings.json index 0eee5f7..5feed87 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,36 @@ { - "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", @@ -33,5 +63,27 @@ "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