summaryrefslogtreecommitdiff
path: root/init.org
diff options
context:
space:
mode:
authorrekado <rekado@elephly.net>2016-11-22 22:00:12 +0100
committerrekado <rekado@elephly.net>2016-11-23 15:32:31 +0100
commit7452428d2bc34108f4f54d1905b3308e2f9700f6 (patch)
tree04129b54882468f08aa41e010f4a44d086abdd52 /init.org
parenta57802fbdaf7877d4d30d9ec58a5d850f3b83a44 (diff)
org: Use biber for bibliography.
Diffstat (limited to 'init.org')
-rw-r--r--init.org3
1 files changed, 2 insertions, 1 deletions
diff --git a/init.org b/init.org
index 6e4850f..162f9a9 100644
--- a/init.org
+++ b/init.org
@@ -405,11 +405,12 @@ I use the capture feature to quickly record ideas and tasks, and to create links
"* Reply to %:fromname%? :email:\n [%:date]\n To: %:to\n %a")))
#+END_SRC
-For exporting org documents to PDF I use =lualatex= instead of the default =pdflatex=. This requires me to change the value of =org-latex-pdf-process=.
+For exporting org documents to PDF I use =lualatex= instead of the default =pdflatex=. I also use =biber= to refresh the bibliography. This requires me to change the value of =org-latex-pdf-process=.
#+BEGIN_SRC elisp
(setq org-latex-pdf-process
'("lualatex -interaction nonstopmode -output-directory %o %f"
+ "biber %b"
"lualatex -interaction nonstopmode -output-directory %o %f"
"lualatex -interaction nonstopmode -output-directory %o %f"))
#+END_SRC