From: Thomas Pietrzak Date: Thu, 27 May 2021 08:18:32 +0000 (+0200) Subject: VSCode build configuration X-Git-Tag: first-full-draft~178 X-Git-Url: https://git.thomaspietrzak.com/?a=commitdiff_plain;h=1e11eedd942bf286e17849e3297ad5f3e8729c62;p=hdr.git VSCode build configuration --- diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..0eee5f7 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,37 @@ +{ + "latex-workshop.latex.recipe.default": "latexmk (xelatex)", + "latex-workshop.latex.tools": [ + { + "name": "xelatexmk", + "command": "latexmk", + "args": [ + "-xelatex", + //"-outdir=out", + "hdrmain.tex" + ] + } + ], + "latex-workshop.latex.recipes": [ + { + "name": "latexmk (xelatex)", + "tools": [ + "xelatexmk" + ] + }, + { + "name": "xelatex", + "tools": [ + "xelatex" + ] + }, + { + "name": "xelatex bibtex", + "tools": [ + "xelatex", + "bibtex", + "xelatex", + "xelatex" + ] + } + ] +} \ No newline at end of file