latex-suite 中的编译因 lualatex 错误而停止,未找到模式

latex-suite 中的编译因 lualatex 错误而停止,未找到模式

因此,在使用导入编译 .tex 文件后,我收到此错误

\usetikzlibrary{graphdrawing.force}

,ll并在 vim 的 latex-suite 中进行编译。

Pattern not found: \Vn LuaTeX to use the graph drawing library

lualatex这个错误非常令人困惑。我不知道如何检查 latex-suite 是否在正确的位置查找。如果我lualatex在 shell 中运行,一切都很好。

答案1

只需将其添加到您的vimrc。使用打开文件vim ~/.vimrc并粘贴以下内容:

" Compile with LuaLaTex by default for PDF       
-let g:Tex_CompileRule_pdf = 'lualatex -synctex=1 -interaction=nonstopmode $*'

相关内容