-p-formation-control/.vscode/tasks.json

19 lines
607 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Compile thesis",
"type": "shell",
"command": "latexmk -pdf -quite thesis.tex article.tex && latexmk -pdf -quite -c thesis.tex article.tex",
"problemMatcher": []
},
{
"label": "Compile articel",
"type": "shell",
"command": "latexmk -pdf article.tex && latexmk -pdf -c article.tex",
"problemMatcher": []
}
]
}