Mac vscode 设置latex setting.json 位置
Posted 软件工程小施同学
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac vscode 设置latex setting.json 位置相关的知识,希望对你有一定的参考价值。
{
// "latex-workshop.latex.recipes": [
// {
// "name": "xelatex",
// "tools": [
// "xelatex"
// ]
// },
// {
// "name": "xe*2",
// "tools": [
// "xelatex",
// "xelatex"
// ]
// },
// {
// "name": "xelatex -> bibtex -> xelatex*2",
// "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": "bibtex",
// "command": "bibtex",
// "args": [
// "%DOCFILE%"
// ]
// }
// ],
"latex-workshop.latex.recipes": [{
"name": "latexmk",
"tools": [
"latexmk"
]
},
{
"name": "pdflatex -> bibtex -> pdflatex*2",
"tools": [
"pdflatex",
"bibtex",
"pdflatex",
"pdflatex"
]
}
],
"latex-workshop.latex.tools": [{
"name": "latexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"%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",
"window.zoomLevel": 2,
"git.enableSmartCommit": true,
"latex-workshop.latex.autoBuild.run": "never",
"workbench.colorTheme": "Solarized Light"
}
以上是关于Mac vscode 设置latex setting.json 位置的主要内容,如果未能解决你的问题,请参考以下文章
mac VScode LaTex Error: File “picins.sty“ not Found