#DOCS-TT-2019-B052 Project docs TT-2019-B052
If you want to compile this project in VSCode with the extension LaTeX Workshop you must use this configuration in the settings.json for the compile steps:
// XeLaTeX + Biber recipe
"latex-workshop.latex.tools": [
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-shell-escape",
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
},
{
"name": "biber",
"command": "biber",
"args": ["%DOCFILE%"]
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-shell-escape",
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
}
],
"latex-workshop.latex.recipes": [
{
"name": "xelatex -> biber -> xelatex*2",
//"name": "xelatex",
"tools": [
"xelatex",
"biber",
"xelatex",
"xelatex"
]
}
]