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

13 lines
388 B
JSON
Raw Normal View History

2021-02-25 09:43:51 +07:00
{
// 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",
2021-03-02 15:46:30 +07:00
"command": "latexmk -pdf thesis.tex article.tex && latexmk -pdf -c thesis.tex article.tex",
"problemMatcher": []
2021-02-25 09:43:51 +07:00
}
]
}