Is there a way to integrate Arara as a way to automate the building process of a LaTeX document in Emacs/AUCTex?
Asked
Active
Viewed 619 times
1 Answers
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
-
1Better `("Arara" "arara --verbose %s" TeX-run-Tex nil t :help "Run Arara.")` The `--verbose` flag allows auctex to parse the output and avoids spurious errors. – Paul Stanley Jan 20 '19 at 18:16
-
Once I've added this code to my init file, how do I run it? `C-c C-a`? – Evan Aad Mar 18 '19 at 19:39
-
`C-c C-c Arara RET` should work – giordano Mar 19 '19 at 10:27