VSCode build configuration
authorThomas Pietrzak <thomas.pietrzak@gmail.com>
Thu, 27 May 2021 08:18:32 +0000 (10:18 +0200)
committerThomas Pietrzak <thomas.pietrzak@gmail.com>
Thu, 27 May 2021 08:18:32 +0000 (10:18 +0200)
.vscode/settings.json [new file with mode: 0644]

diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644 (file)
index 0000000..0eee5f7
--- /dev/null
@@ -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