90 lines
1.4 KiB
JSON
90 lines
1.4 KiB
JSON
{
|
|
"latex-workshop.latex.recipes": [{
|
|
"name": "xelatex",
|
|
"tools": [
|
|
"xelatex"
|
|
]
|
|
}, {
|
|
"name": "latexmk",
|
|
"tools": [
|
|
"latexmk"
|
|
]
|
|
},
|
|
|
|
{
|
|
"name": "pdflatex -> bibtex -> pdflatex*2",
|
|
"tools": [
|
|
"pdflatex",
|
|
"bibtex",
|
|
"pdflatex",
|
|
"pdflatex"
|
|
]
|
|
}
|
|
{
|
|
"name": "BIT_thesis",
|
|
"tools": [
|
|
"xelatex",
|
|
"bibtex",
|
|
"xelatex",
|
|
"xelatex"
|
|
]
|
|
}
|
|
],
|
|
"latex-workshop.latex.tools": [{
|
|
"name": "latexmk",
|
|
"command": "latexmk",
|
|
"args": [
|
|
"-synctex=1",
|
|
"-interaction=nonstopmode",
|
|
"-file-line-error",
|
|
"-pdf",
|
|
"%DOC%"
|
|
]
|
|
}, {
|
|
"name": "xelatex",
|
|
"command": "xelatex",
|
|
"args": [
|
|
"-synctex=1",
|
|
"-interaction=nonstopmode",
|
|
"-file-line-error",
|
|
"%DOC%"
|
|
]
|
|
}, {
|
|
"name": "pdflatex",
|
|
"command": "pdflatex",
|
|
"args": [
|
|
"-synctex=1",
|
|
"-interaction=nonstopmode",
|
|
"-file-line-error",
|
|
"%DOC%"
|
|
]
|
|
}, {
|
|
"name": "bibtex",
|
|
"command": "bibtex",
|
|
"args": [
|
|
"%DOCFILE%"
|
|
]
|
|
}],
|
|
"latex-workshop.view.pdf.viewer": "tab",
|
|
"latex-workshop.latex.clean.fileTypes": [
|
|
"*.aux",
|
|
"*.bbl",
|
|
"*.blg",
|
|
"*.idx",
|
|
"*.ind",
|
|
"*.lof",
|
|
"*.lot",
|
|
"*.out",
|
|
"*.toc",
|
|
"*.acn",
|
|
"*.acr",
|
|
"*.alg",
|
|
"*.glg",
|
|
"*.glo",
|
|
"*.gls",
|
|
"*.ist",
|
|
"*.fls",
|
|
"*.log",
|
|
"*.fdb_latexmk"
|
|
],
|
|
} |