Variable: TeX-engine

TeX-engine is a customizable and buffer-local variable defined in tex.el.

Documentation

Type of TeX engine to use.

It should be one of the following symbols:

* default
* luatex
* omega
* xetex

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defcustom TeX-engine 'default
  (concat "Type of TeX engine to use.
It should be one of the following symbols:\n\n"
          (mapconcat (lambda (x) (format "* `%s'" (car x)))
                     (TeX-engine-alist) "\n"))
  :group 'TeX-command
  :type `(choice ,@(mapcar (lambda (x)
                             `(const :tag ,(nth 1 x) ,(car x)))
                           (TeX-engine-alist)))
  :safe (lambda (arg) (memq arg (mapcar #'car TeX-engine-alist-builtin)))
  :local t)