Variable: org-latex-bib-compiler
org-latex-bib-compiler is a customizable variable defined in
ox-latex.el.gz.
Value
"bibtex"
Documentation
Command to process a LaTeX file's bibliography.
The shorthand %bib in org-latex-pdf-process is replaced with
this value.
A better approach is to use a compiler suit such as latexmk.
This variable was added, or its default value changed, in Org version
9.0.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
(defcustom org-latex-bib-compiler "bibtex"
"Command to process a LaTeX file's bibliography.
The shorthand %bib in `org-latex-pdf-process' is replaced with
this value.
A better approach is to use a compiler suit such as `latexmk'."
:group 'org-export-latex
:type '(choice (const :tag "BibTeX" "bibtex")
(const :tag "Biber" "biber")
(string :tag "Other process"))
:version "26.1"
:package-version '(Org . "9.0"))