Variable: LaTeX-default-position

LaTeX-default-position is a customizable and buffer-local variable defined in latex.el.

Documentation

Default position for array and tabular environments.

If nil, act like the empty string is given, but do not prompt.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defcustom LaTeX-default-position ""
  "Default position for array and tabular environments.
If nil, act like the empty string is given, but do not prompt."
  :group 'LaTeX-environment
  :type '(choice (const :tag "Do not prompt" nil)
                 (const :tag "Empty" "")
                 string)
  :local t)