使用LaTex Workshop插件没有xe->bib->xe->xe
这条编译链, 而在写中文论文过程中, 一方面需要使用xe
编译防止中文乱码, 另一方面需要使用bib
编译引入参考文献.
在使用VSCode编译tex文件的过程中会产生很多冗余的中间文件, 不方便文件查看和管理, 希望在VSCode只保留tex源文件和pdf文件以及实现二者的相互跳转的aux文件.
使用F1
找到VSCode的设置文件settings.json
, 修改后的配置如下, 设置的具体含义请参考https://zhuanlan.zhihu.com/p/166523064
{
"liveServer.settings.donotVerifyTags": true,
"liveServer.settings.donotShowInfoMsg": true,
"explorer.confirmDelete": false,
"files.autoSave": "afterDelay",
"explorer.confirmDragAndDrop": false,
// latex-workshop设置
"latex-workshop.latex.autoBuild.run": "onSave",
"latex-workshop.showContextMenu": true,
"latex-workshop.intellisense.package.enabled": true,
"latex-workshop.message.error.show": false,
"latex-workshop.message.warning.show": false,
"latex-workshop.latex.tools": [
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOCFILE%"
]
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOCFILE%"
]
},
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"-outdir=%OUTDIR%",
"%DOCFILE%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
]
}
],
"latex-workshop.latex.recipes": [
{
"name": "XeLaTeX",
"tools": [
"xelatex"
]
},
{
"name": "PDFLaTeX",
"tools": [
"pdflatex"
]
},
{
"name": "BibTeX",
"tools": [
"bibtex"
]
},
{
"name": "LaTeXmk",
"tools": [
"latexmk"
]
},
{
"name": "xelatex -> bibtex -> xelatex*2",
"tools": [
"xelatex",
"bibtex",
"xelatex",
"xelatex"
]
},
{
"name": "pdflatex -> bibtex -> pdflatex*2",
"tools": [
"pdflatex",
"bibtex",
"pdflatex",
"pdflatex"
]
},
],
}
之后使用xe->bib->xe->xe
这条编译链进行编译即可
网上针对该问题大多数都是采用在settings.json
文件中配置LaTex Workshop插件的参数, 参数多实现繁琐理解复杂, 并且配置后并没有达到我想要的效果.
此外看到有人是通过新建文件夹来存放生成的那些中间文件, 但是当使用编译链时会因为在默认路径中找不到中间文件而报错.
之前学习 Git 的时候有看到可以设置.gitignore
文件, 然后在VSCode的设置选项里面找到了解决方法.
选择VSCode中的Settings
→ \rightarrow →Files:Exclude
. 模仿给出的**/.git
格式添加想要隐藏的文件后缀即可