vscode中配置latex

Eilene ·
更新时间:2024-11-10
· 912 次阅读

这是我的的配置,做个参考吧。 { "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", "%DOCFILE%" ] }, { "name": "makeindex", "command": "makeindex", "args": [ "%DOCFILE%.nlo", "-s", "nomencl.ist", "-o", "%DOCFILE%.nls" ] }, { "name": "biber", "command": "biber", "args": [ "%DOCFILE%" ] } ], "latex-workshop.latex.recipes": [ // { // "name": "latexmk", // "tools": [ // "latexmk" // ] // }, { "name": "xelatex", "tools": [ "xelatex" ] }, { "name": "xe->mkind->bib->xe*2", "tools": [ "xelatex", "makeindex", "biber", "xelatex", "xelatex" ] }, { "name": "pdf->mkind->bib->pdf*2", "tools": [ "pdflatex", "makeindex", "biber", "pdflatex", "pdflatex" ] }, { "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.latex.clean.fileTypes": [ "*.aux", "*.bbl", "*.blg", "*.idx", "*.ind", "*.lof", "*.lot", "*.out", "*.toc", "*.acn", "*.acr", "*.alg", "*.glg", "*.glo", "*.gls", "*.ist", "*.fls", "*.log", "*.fdb_latexmk" ], }

2.下面是配置外部pdf阅读器SumatraPDF以及一些自动存储等命令的开关。

"latex-workshop.view.pdf.viewer": "external", "latex-workshop.view.pdf.external.viewer.command": "C:/software for WORK/SumatrPDF/SumatraPDF/SumatraPDF.exe", // 注意修改路径 "latex-workshop.view.pdf.external.viewer.args": [ "%PDF%" ], "latex-workshop.view.pdf.external.synctex.command": "C:/software for WORK/SumatrPDF/SumatraPDF/SumatraPDF.exe", // 注意修改路径 "latex-workshop.view.pdf.external.synctex.args": [ "-forward-search", "%TEX%", "%LINE%", "-reuse-instance", "-inverse-search", "code \"C:\\software for WORK\\vs code\\Microsoft VS Code\\resources\\app\\out\\cli.js\" -r -g \"%f:%l\"", // 注意修改路径 "%PDF%", ], "latex-workshop.latex.recipe.default": "lastUsed", "latex-workshop.showContextMenu":true, "liveServer.settings.donotShowInfoMsg": true, "[markdown]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, }

第一次写CSDN,同样也是第一次用markdown,可能有一些不足,有一些内容可能没写清楚,还望见谅。


作者:qq_45890199



latex vscode

需要 登录 后方可回复, 如果你还没有账号请 注册新账号
相关文章