You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"latex-workshop.intellisense.package.enabled": true,
|
|
"latex-workshop.latex.tools": [
|
|
{
|
|
"name": "xelatex",
|
|
"command": "xelatex",
|
|
"args": [
|
|
"-synctex=1",
|
|
"-interaction=nonstopmode",
|
|
"-file-line-error",
|
|
"%DOCFILE%"
|
|
]
|
|
},
|
|
{
|
|
"name": "pdflatex",
|
|
"command": "pdflatex",
|
|
"args": [
|
|
"-synctex=1",
|
|
"-interaction=nonstopmode",
|
|
"-file-line-error",
|
|
"%DOCFILE%"
|
|
]
|
|
},
|
|
{
|
|
"name": "bibtex",
|
|
"command": "bibtex",
|
|
"args": [
|
|
"%DOCFILE%"
|
|
]
|
|
}
|
|
],
|
|
"latex-workshop.latex.recipes": [
|
|
{
|
|
"name": "xelatex",
|
|
"tools": [
|
|
"xelatex"
|
|
]
|
|
},
|
|
{
|
|
"name": "xe->bib->xe->xe",
|
|
"tools": [
|
|
"xelatex",
|
|
"bibtex",
|
|
"xelatex",
|
|
"xelatex"
|
|
]
|
|
}
|
|
],
|
|
} |