Variable: bibtex-include-OPTkey
bibtex-include-OPTkey is a customizable variable defined in
bibtex.el.gz.
Value
t
Documentation
If non-nil, all newly created entries get an OPTkey field.
If this is a string, use it as the initial field text. If this is a function, call it to generate the initial field text.
Probably introduced at or before Emacs version 20.1.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defcustom bibtex-include-OPTkey t
"If non-nil, all newly created entries get an OPTkey field.
If this is a string, use it as the initial field text.
If this is a function, call it to generate the initial field text."
:group 'bibtex
:type '(choice (const :tag "None" nil)
(string :tag "Initial text")
(function :tag "Initialize Function")
(const :tag "Default" t))
:risky t)