Variable: bibtex-text-indentation
bibtex-text-indentation is a customizable variable defined in
bibtex.el.gz.
Value
17
Documentation
Starting column for the text part in BibTeX fields.
Should be equal to the space needed for the longest name part.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defcustom bibtex-text-indentation
(+ bibtex-field-indentation
(length "organization = "))
"Starting column for the text part in BibTeX fields.
Should be equal to the space needed for the longest name part."
:group 'bibtex
:type 'integer
:safe #'integerp)