{
"editor.wordWrap": "on",
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.synctex.afterBuild.enabled": true,
"latex-workshop.latex.tools": [
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"--interaction=nonstopmode",
"-file-line-error",
"-pdf",
"%DOCFILES%"
]
},
{
"name": "xe1",
"command": "xelatex",
"args": [
"-no-pdf",
"--interaction=nonstopmode",
"-synctex=1",
"main"
]
},
{
"name": "xe2",
"command": "xelatex",
"args": [
"--interaction=nonstopmode",
"-synctex=1",
"main"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"main"
]
}
],
"latex-workshop.latex.recipes": [
{
"name": "xe_bib_xe_xe",
"tools": [
"xe1",
"bibtex",
"xe1",
"xe2"
]
}
]
}