Arara是否集成到Emacs中?


Answers:


9

将适当的条目添加到中TeX-command-list。将以下代码插入您的init文件中:

(eval-after-load "tex"
  '(add-to-list 'TeX-command-list
        '("Arara" "arara --verbose %s" TeX-run-TeX nil t :help "Run Arara.")))

保罗·斯坦利(Paul Stanley)建议使用--verbose标志。


1
更好("Arara" "arara --verbose %s" TeX-run-Tex nil t :help "Run Arara.")--verbose标志允许auctex解析输出并避免虚假错误。
Paul Stanley,

将代码添加到初始化文件后,如何运行它?C-c C-a
埃文·阿德

C-c C-c Arara RET应该工作
佐丹奴
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.