diff options
-rw-r--r-- | smart-documents.org | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/smart-documents.org b/smart-documents.org index 0af265f..1c3c9ee 100644 --- a/smart-documents.org +++ b/smart-documents.org @@ -1231,11 +1231,20 @@ green in Org's LaTeX exports. Very stylish, much flair! *** AUCTEX #+BEGIN_SRC emacs-lisp :tangle yes -(use-package tex - :defer t - :ensure auctex - :config - (setq TeX-auto-save t)) + (use-package tex + :defer t + :ensure auctex + :ensure auctex-latexmk + :config + (setq TeX-auto-save t)) + + (auctex-latexmk-setup) +#+END_SRC + +*** Groff export + +#+BEGIN_SRC emacs-lisp :tangle no + (require 'ox-groff) #+END_SRC ** TODO Org links |