Variable: reftex-default-label-alist-entries

reftex-default-label-alist-entries is a customizable variable defined in reftex-vars.el.gz.

Value

(amsmath endnotes fancybox floatfig longtable picinpar rotating sidecap subfigure supertab wrapfig listings minted ctable LaTeX)

Documentation

Default label alist specifications. LaTeX should always be the last entry.

The value of this variable is a list of symbols with associations in the constant reftex-label-alist-builtin. Check that constant for a full list of options.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-vars.el.gz
(defcustom reftex-default-label-alist-entries
  '(amsmath endnotes fancybox floatfig longtable picinpar
            rotating sidecap subfigure supertab wrapfig
	    listings minted ctable LaTeX)
  "Default label alist specifications.  LaTeX should always be the last entry.
The value of this variable is a list of symbols with associations in the
constant `reftex-label-alist-builtin'.  Check that constant for a full list
of options."
  :group 'reftex-defining-label-environments
  :set   #'reftex-set-dirty
  :type `(set
          :indent 4
          :inline t
          :greedy t
          ,@(mapcar
             (lambda (x)
               (list 'const :tag (concat (symbol-name (nth 0 x))
                                         ": " (nth 1 x))
                     (nth 0 x)))
             reftex-label-alist-builtin)))