vscode setting
This commit is contained in:
parent
60e4ff50bf
commit
db1d9395c1
|
|
@ -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,
|
||||
}
|
||||
Loading…
Reference in New Issue