Variable: bibtex-autokey-titleword-ignore

bibtex-autokey-titleword-ignore is a customizable variable defined in bibtex.el.gz.

Value

("A" "An" "On" "The" "Eine?" "Der" "Die" "Das" "[^[:upper:]].*" ".*[^[:upper:][:lower:]0-9].*")

Documentation

Determines words from the title that are not to be used in the key.

Each item of the list is a regexp. If a word of the title matches a regexp from that list, it is not included in the title part of the key. Case is significant. See bibtex-generate-autokey for details.

Probably introduced at or before Emacs version 20.3.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defcustom bibtex-autokey-titleword-ignore
  '("A" "An" "On" "The" "Eine?" "Der" "Die" "Das"
    "[^[:upper:]].*" ".*[^[:upper:][:lower:]0-9].*")
  "Determines words from the title that are not to be used in the key.
Each item of the list is a regexp.  If a word of the title matches a
regexp from that list, it is not included in the title part of the key.
Case is significant.  See `bibtex-generate-autokey' for details."
  :group 'bibtex-autokey
  :type '(repeat regexp))