我在 Windows 上的 VS code 中使用 latex workshop,遇到了以下问题。因此,我的参考书目在./bibliography
文件夹中,我的图表在./figures
文件夹中,样式在./styles
文件夹中,所有 tex 文件都在根目录中。编译时,我也需要 pdflatex 检查其他文件夹,但内置配方都无法做到这一点。我尝试用这个latex-workshop.latex.tools
进行更改settings.json
:
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"--shell-escape", // if you want to have the shell-escape flag
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-aux-directory=styles",
"%DOC%"
]
}
但这是一种非常不靠谱的方法,而且不适合更改文件夹名称。此外,bibtex 仍然无法使用此方法。有人解决了这个问题吗?