Variable: bibtex-BibTeX-aux-entry-alist
bibtex-BibTeX-aux-entry-alist is a customizable variable defined in
bibtex.el.gz.
Value
(("Conference" "Article in Conference Proceedings" "InProceedings"))
Documentation
Auxiliary alist of BibTeX entry types and their associated fields.
Its entries take precedence over the entries in bibtex-BibTeX-entry-alist.
This alist has the same format as bibtex-BibTeX-entry-alist.
This variable was added, or its default value changed, in Emacs 31.1.
Probably introduced at or before Emacs version 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defcustom bibtex-BibTeX-aux-entry-alist
'(("Conference" "Article in Conference Proceedings" "InProceedings"))
"Auxiliary alist of BibTeX entry types and their associated fields.
Its entries take precedence over the entries in `bibtex-BibTeX-entry-alist'.
This alist has the same format as `bibtex-BibTeX-entry-alist'."
:group 'bibtex
:version "31.1"
:set (lambda (symbol value)
(set-default symbol value)
;; `bibtex-init-dialect' is undefined during loading (no problem).
(if (fboundp 'bibtex-init-dialect)
(bibtex-init-dialect 'BibTeX)))
:type 'bibtex-entry-alist
:risky t)