From 1e11eedd942bf286e17849e3297ad5f3e8729c62 Mon Sep 17 00:00:00 2001 From: Thomas Pietrzak Date: Thu, 27 May 2021 10:18:32 +0200 Subject: [PATCH] VSCode build configuration --- .vscode/settings.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .vscode/settings.json 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 -- 2.30.2