diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..3da7606 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,34 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Build Current File (XeLaTeX)", + "type": "shell", + "command": "xelatex", + "args": [ + "-synctex=1", + "-interaction=nonstopmode", + "-file-line-error", + "${file}" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [] + }, + { + "label": "Build Current File (pdfLaTeX)", + "type": "shell", + "command": "pdflatex", + "args": [ + "-synctex=1", + "-interaction=nonstopmode", + "-file-line-error", + "${file}" + ], + "group": "build", + "problemMatcher": [] + } + ] +}