Variable: bibtex-biblatex-aux-entry-alist

bibtex-biblatex-aux-entry-alist is a customizable variable defined in bibtex.el.gz.

Value

nil

Documentation

Auxiliary alist of biblatex entry types and their associated fields.

Its entries take precedence over the entries in bibtex-biblatex-entry-alist. This alist has the same format as bibtex-BibTeX-entry-alist. Use this, e.g., for non-standard types, see Sec. 2.1.3 of the biblatex manual.

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-biblatex-aux-entry-alist nil
  "Auxiliary alist of biblatex entry types and their associated fields.
Its entries take precedence over the entries in `bibtex-biblatex-entry-alist'.
This alist has the same format as `bibtex-BibTeX-entry-alist'.
Use this, e.g., for non-standard types, see Sec. 2.1.3 of the biblatex manual."
  :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 'biblatex)))
  :type 'bibtex-entry-alist
  :risky t)