TexStudio 如何引用自定义包(本地 texmf 树)?

TexStudio 如何引用自定义包(本地 texmf 树)?

在我的项目文件夹中,我创建了文件project/texmf/tex/latex/mymacros.sty。从命令行,我可以使用export TEXMFHOME=texmf ,然后一切都正常工作,pdflatex识别mymacros.sty之后定义的所有命令\usepackage{mymacros}

我该如何设置 TexStudio 以便它识别位于该文件夹中的文件?我尝试将其包含export TEXMFHOME=texmf在预编译中,但它会引发错误:

Error: Could not start the command: export TEXMFHOME=texmf

有关的:

答案1

使用当前的 texlive 2019,我建议这样做

tlmgr conf auxtrees add path/to/project/texmf

使用当前的 miktex,您可以

initexmf --register-root=path/to/project/texmf

相关内容