Variable: bibtex-biblatex-aux-opt-alist

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

Value

nil

Documentation

Alist of auxiliary optional fields for all biblatex entries.

Elements should be of the same form as the elements of the OPTIONAL alist in bibtex-BibTeX-entry-alist (which see). These fields take precedence over optional fields in bibtex-biblatex-entry-alist. See also bibtex-aux-opt-alist whose fields are always present. Use this, e.g., for custom fields, see Sec. 2.2.4 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-opt-alist nil
  "Alist of auxiliary optional fields for all biblatex entries.
Elements should be of the same form as the elements of the OPTIONAL alist
in `bibtex-BibTeX-entry-alist' (which see).  These fields take precedence
over optional fields in `bibtex-biblatex-entry-alist'.
See also `bibtex-aux-opt-alist' whose fields are always present.
Use this, e.g., for custom fields, see Sec. 2.2.4 of the biblatex manual."
  :group 'bibtex
  :version "31.1"
  :type '(repeat (bibtex-field-list))
  :risky t)