Variable: LaTeX-label-alist
LaTeX-label-alist is a customizable and buffer-local variable defined
in latex.el.
Documentation
Lookup prefixes for labels.
An alist where the CAR is the environment name, and the CDR either the prefix or a symbol referring to one.
If the name is not found, or if the CDR is nil, no label is automatically inserted for that environment.
If you want to automatically insert a label for a environment but with an empty prefix, use the empty string "" as the CDR of the corresponding entry.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defcustom LaTeX-label-alist
'(("figure" . LaTeX-figure-label)
("table" . LaTeX-table-label)
("figure*" . LaTeX-figure-label)
("table*" . LaTeX-table-label)
("equation" . LaTeX-equation-label)
("eqnarray" . LaTeX-eqnarray-label))
"Lookup prefixes for labels.
An alist where the CAR is the environment name, and the CDR
either the prefix or a symbol referring to one.
If the name is not found, or if the CDR is nil, no label is
automatically inserted for that environment.
If you want to automatically insert a label for a environment but
with an empty prefix, use the empty string \"\" as the CDR of the
corresponding entry."
:group 'LaTeX-label
:type '(repeat (cons (string :tag "Environment")
(choice (string :tag "Label prefix")
(symbol :tag "Label prefix symbol"))))
:local t)