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

13 lines
373 B
JSON
Raw Permalink 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-07-20 19:35:18 +07:00
"command": "latexmk -pdf thesis.tex && latexmk -pdf -silent -c thesis.tex",
2021-03-18 17:40:00 +07:00
"problemMatcher": []
2021-07-25 07:25:50 +07:00
}
2021-02-25 09:43:51 +07:00
]
}