Variable: bibtex-BibTeX-field-alist

bibtex-BibTeX-field-alist is a customizable variable defined in bibtex.el.gz.

Value

(("author" "Author1 [and Author2 ...] [and others]")
 ("editor" "Editor1 [and Editor2 ...] [and others]")
 ("journal" "Name of the journal (use string, remove braces)")
 ("year" "Year of publication")
 ("month" "Month of the publication as a string (remove braces)")
 ("note" "Remarks to be put at the end of the \\bibitem")
 ("publisher" "Publishing company")
 ("address" "Address of the publisher")
 ("crossref" "Reference key of the cross-referenced entry")
 ("key" "Used as label with certain BibTeX styles"))

Documentation

Alist of BibTeX fields.

Each element is a list (FIELD COMMENT). COMMENT is a comment used with bibtex-print-help-message as a default if bibtex-BibTeX-entry-alist does not define a comment for FIELD.

This variable was added, or its default value changed, in Emacs 31.1.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defcustom bibtex-BibTeX-field-alist
  '(("author" "Author1 [and Author2 ...] [and others]")
    ("editor" "Editor1 [and Editor2 ...] [and others]")
    ("journal" "Name of the journal (use string, remove braces)")
    ("year" "Year of publication")
    ("month" "Month of the publication as a string (remove braces)")
    ("note" "Remarks to be put at the end of the \\bibitem")
    ("publisher" "Publishing company")
    ("address" "Address of the publisher")
    ("crossref" "Reference key of the cross-referenced entry")
    ("key" "Used as label with certain BibTeX styles"))
    "Alist of BibTeX fields.
Each element is a list (FIELD COMMENT).  COMMENT is a comment used with
`bibtex-print-help-message' as a default if `bibtex-BibTeX-entry-alist'
does not define a comment for FIELD."
  :group 'bibtex
  :version "31.1"
  :type 'bibtex-field-alist)