vscode setting

This commit is contained in:
DansYU 2019-06-23 12:59:50 +08:00 committed by GitHub
parent 60e4ff50bf
commit db1d9395c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 102 additions and 0 deletions

102
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,102 @@
{
"latex-workshop.latex.tools": [
// {
// "name": "latexmk",
// "command": "latexmk",
// "args": [
// "-pdfxe",
// "--shell-escape",
// "-pvc",
// "-cd",
// "-time",
// "%DOCFILE%"
// ]
// },
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"%DOCFILE%"
]
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
},
{
"name": "biber",
"command": "biber",
"args": [
"%DOCFILE%"
]
}
],
"latex-workshop.latex.recipes": [
// {
// "name": "latexmk",
// "tools": [
// "latexmk"
// ]
// },
{
"name": "xelatex",
"tools": [
"xelatex"
]
},
{
"name": "xe->bib->xe->xe",
"tools": [
"xelatex",
"biber",
"xelatex",
"xelatex"
]
},
{
"name": "pdflatex",
"tools": [
"pdflatex"
]
},
{
"name": "pdf->bib->pdf->pdf",
"tools": [
"pdflatex",
"biber",
"pdflatex",
"pdflatex"
]
}
],
"latex-workshop.view.pdf.viewer": "external",
"latex-workshop.view.pdf.external.command": { // **********
"command": "F:/Program Files/SumatraPDF/SumatraPDF.exe", //
"args": [ // **********
"%PDF%"
]
},
"latex-workshop.view.pdf.external.synctex": { // **********
"command": "F:/Program Files/SumatraPDF/SumatraPDF.exe", //
"args": [ // **********
"-forward-search",
"%TEX%",
"%LINE%",
"%PDF%"
]
},
"files.autoGuessEncoding": true,
}