dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 69eff8bd02ac5b63a1a170ba2c147674d17b4d1f
parent 9131a5a6ddf8a2d320efefd2862f1b39e1c6e5db
Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date:   Fri,  2 May 2014 12:37:00 +0200

changed to explicit latex call

Diffstat:
M.emacs.d/init.el | 10+++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/.emacs.d/init.el b/.emacs.d/init.el @@ -166,7 +166,15 @@ (setq reftex-default-bibliography '("/home/adc/owncloud/articles/adc-articles/BIBnew.bib")) -(setq org-latex-pdf-process (list "latexmk -pdf -bibtex %f")) +;; automatic LaTeX make, sometimes causes problems with references +;(setq org-latex-pdf-process (list "latexmk -pdf -bibtex %f")) + +;; explicit call +(setq org-latex-pdf-process + '("pdflatex -interaction nonstopmode -output-directory %o %f" + "bibtex %b" + "pdflatex -interaction nonstopmode -output-directory %o %f" + "pdflatex -interaction nonstopmode -output-directory %o %f")) ;; render special characters using UTF-8 character set (setq org-pretty-entities t)