make latex work with graphviz

This commit is contained in:
ndwarshuis 2019-04-01 23:52:14 -04:00
parent fcf67bfca3
commit 5d91770668
1 changed files with 6 additions and 0 deletions

View File

@ -793,6 +793,12 @@ I like having my lines short and readable (also easier to git). Turn on autofill
(add-hook 'LaTeX-mode-hook #'nd/turn-on-auto-fill-maybe)
(add-hook 'LaTeX-mode-hook #'fci-mode)
#+END_SRC
**** local variables
#+BEGIN_SRC emacs-lisp
(with-eval-after-load 'tex
(add-to-list 'safe-local-variable-values
'(TeX-command-extra-options . "-shell-escape")))
#+END_SRC
**** BibTeX
***** database management
#+BEGIN_SRC emacs-lisp