Variable: reftex-index-macros-builtin

reftex-index-macros-builtin is a variable defined in reftex-vars.el.gz.

Value

((default "Default \\index and \\glossary macros"
	  (("\\index{*}" "idx" 105 "" nil t)
	   ("\\glossary{*}" "glo" 103 "" nil t)))
 (multind "The multind.sty package"
	  (("\\index{}{*}" 1 105 "" nil t)))
 (index "The index.sty package"
	(("\\index[]{*}" 1 105 "" nil t)
	 ("\\index*[]{*}" 1 73 "" nil nil)))
 (Index-Shortcut "index.sty with \\shortindexingon"
		 (("\\index[]{*}" 1 105 "" nil t)
		  ("\\index*[]{*}" 1 73 "" nil nil)
		  ("^[]{*}" 1 94 "" texmathp t)
		  ("_[]{*}" 1 95 "" texmathp nil))))

Documentation

Builtin stuff for reftex-index-macros.

Lower-case symbols correspond to a style file of the same name in the LaTeX distribution. Mixed-case symbols are convenience aliases.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-vars.el.gz
(defconst reftex-index-macros-builtin
  '((default "Default \\index and \\glossary macros"
      (("\\index{*}" "idx" ?i "" nil t)
       ("\\glossary{*}" "glo" ?g "" nil t)))
    (multind "The multind.sty package"
       (("\\index{}{*}" 1 ?i "" nil t)))
    (index "The index.sty package"
           (("\\index[]{*}" 1 ?i "" nil t)
            ("\\index*[]{*}" 1 ?I "" nil nil)))
    (Index-Shortcut "index.sty with \\shortindexingon"
       (("\\index[]{*}" 1 ?i "" nil t)
        ("\\index*[]{*}" 1 ?I "" nil nil)
        ("^[]{*}" 1 ?^ "" texmathp t)
        ("_[]{*}" 1 ?_ "" texmathp nil))))
  "Builtin stuff for `reftex-index-macros'.
Lower-case symbols correspond to a style file of the same name in the LaTeX
distribution.  Mixed-case symbols are convenience aliases.")