algprog/tex/.vscode/settings.json

34 lines
681 B
JSON
Raw Normal View History

2024-03-20 15:13:19 +01:00
{
"latex-workshop.latex.tools": [
{
"name": "latexmk-main",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-shell-escape",
"-pdf",
"-xelatex",
"-outdir=%OUTDIR%",
"main.tex"
],
"env": {}
}
],
"latex-workshop.latex.recipes": [
{
"name": "latexmk-main",
"tools": [
"latexmk-main"
]
}
],
"ltex.latex.commands": {
"\\customlabel{}": "ignore",
"\\setminted[]{}": "ignore",
"\\setmintedinline[]{}": "ignore",
"\\setmathfont[]{}": "ignore",
"\\setmathfont{}": "ignore"
}
2024-03-20 15:13:19 +01:00
}