我正在尝试在 Vim Latex-suite 上使用 Pythontex,并使用 arara 3 进行编译。
我已经尝试了 Uwe Ziegenhagen 在这里提出的方法: Pythontex 的 Arara 规则
我将完全相同的 pythontex.yaml 文件放在正确的目录中,我已经在我的 texmf 中安装了 Pythontex……但是当我尝试这个时:
% arara: lualatex: {synctex: yes, action: nonstopmode, options: "-file-line-error-style"}
% arara: pythontex
% arara: lualatex: {synctex: yes, action: nonstopmode, options: "-file-line-error-style"}
\documentclass[a4paper]{article}
\usepackage{pythontex}
\begin{document}
\begin{pycode}
a=5
print(a)
\end{pycode}
\end{document}
什么都没有发生...我明确指出用 arara 编译是可以的(我用它来编译 luacode 或生成参考书目......)。
任何想法 ??