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"))

Documentation

Alist of BibTeX fields.

Each element is a list (FIELD COMMENT). COMMENT is used 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 24.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"))
    "Alist of BibTeX fields.
Each element is a list (FIELD COMMENT).  COMMENT is used as a default
if `bibtex-BibTeX-entry-alist' does not define a comment for FIELD."
  :group 'bibtex
  :version "24.1"
  :type 'bibtex-field-alist)