11

Is there a way to integrate Arara as a way to automate the building process of a LaTeX document in Emacs/AUCTex?

Francis
  • 113
  • 3

1 Answers1

9

Add the appropriate entry to TeX-command-list. Insert the following code in your init file:

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

The --verbose flag has been suggested by Paul Stanley.

giordano
  • 3,245
  • 13
  • 19