Variable: org-bibtex-headline-format-function

org-bibtex-headline-format-function is a customizable variable defined in ol-bibtex.el.gz.

Value

#[257 "\300\236A\207"
      [:title]
      3 "\n\n(fn ENTRY)"]

Documentation

Function returning the headline text for org-bibtex-write.

It should take a single argument, the bibtex entry (an alist as returned by org-bibtex-read). The default value simply returns the entry title.

This variable was added, or its default value changed, in Org version
9.1.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ol-bibtex.el.gz
(defcustom org-bibtex-headline-format-function
  (lambda (entry) (cdr (assq :title entry)))
  "Function returning the headline text for `org-bibtex-write'.
It should take a single argument, the bibtex entry (an alist as
returned by `org-bibtex-read').  The default value simply returns
the entry title."
  :group 'org-bibtex
  :version "26.1"
  :package-version '(Org . "9.1")
  :type 'function)