feature/intelligent-build #1

Merged
pcabral merged 3 commits from feature/intelligent-build into main 2026-02-21 00:20:09 +01:00
4 changed files with 88 additions and 1 deletions
Showing only changes of commit 2de6dccfa8 - Show all commits

34
.vscode/tasks.json vendored Normal file
View File

@@ -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": []
}
]
}