Variable: LaTeX-version

LaTeX-version is a customizable variable defined in tex.el.

Value

"2e"

Documentation

Default LaTeX version. Currently recognized is "2" and "2e".

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
;; You may want to change the default LaTeX version for your site.
(defcustom LaTeX-version "2e"
  "Default LaTeX version.  Currently recognized is \"2\" and \"2e\"."
  :group 'LaTeX
  :type '(radio (const :format "%v\n%h"
                       :doc "\
The executable `latex' is LaTeX version 2."
                       "2")
                (const :format "%v\n%h"
                       :doc "\
The executable `latex' is LaTeX version 2e."
                       "2e")
                (string :tag "Other")))