Variable: org-latex-compiler

org-latex-compiler is a customizable variable defined in ox-latex.el.gz.

Value

"pdflatex"

Documentation

LaTeX compiler to use.

Must be an element in org-latex-compilers or the empty quote. Can also be set in buffers via #+LATEX_COMPILER. See also org-latex-compiler-file-string.

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-compiler "pdflatex"
  "LaTeX compiler to use.

Must be an element in `org-latex-compilers' or the empty quote.
Can also be set in buffers via #+LATEX_COMPILER.  See also
`org-latex-compiler-file-string'."
  :group 'org-export-latex
  :type '(choice
	  (const :tag "pdfLaTeX" "pdflatex")
	  (const :tag "XeLaTeX"  "xelatex")
	  (const :tag "LuaLaTeX" "lualatex")
	  (const :tag "Unset" ""))
  :version "26.1"
  :package-version '(Org . "9.0"))