Variable: LaTeX-float

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

Documentation

Default float position for figures and tables.

If nil, act like the empty string is given, but do not prompt.
(The standard LaTeX classes use [tbp] as float position if the
optional argument is omitted.)

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defcustom LaTeX-float ""
  "Default float position for figures and tables.
If nil, act like the empty string is given, but do not prompt.
\(The standard LaTeX classes use [tbp] as float position if the
optional argument is omitted.)"
  :group 'LaTeX-environment
  :type '(choice (const :tag "Do not prompt" nil)
                 (const :tag "Empty" "")
                 (string :format "%v"))
  :local t)