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-18 17:40:00 +07:00
|
|
|
"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",
|
2021-03-02 15:46:30 +07:00
|
|
|
"problemMatcher": []
|
2021-02-25 09:43:51 +07:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|