Variable: bibtex-predefined-month-strings

bibtex-predefined-month-strings is a customizable variable defined in bibtex.el.gz.

Value

(("jan" . "January") ("feb" . "February") ("mar" . "March")
 ("apr" . "April") ("may" . "May") ("jun" . "June") ("jul" . "July")
 ("aug" . "August") ("sep" . "September") ("oct" . "October")
 ("nov" . "November") ("dec" . "December"))

Documentation

Alist of month string definitions used in the BibTeX style files.

Each element is a pair of strings (ABBREVIATION . EXPANSION).

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defcustom bibtex-predefined-month-strings
  '(("jan" . "January")
    ("feb" . "February")
    ("mar" . "March")
    ("apr" . "April")
    ("may" . "May")
    ("jun" . "June")
    ("jul" . "July")
    ("aug" . "August")
    ("sep" . "September")
    ("oct" . "October")
    ("nov" . "November")
    ("dec" . "December"))
  "Alist of month string definitions used in the BibTeX style files.
Each element is a pair of strings (ABBREVIATION . EXPANSION)."
  :group 'bibtex
  :type '(repeat (cons (string :tag "Month abbreviation")
                       (string :tag "Month expansion"))))