Variable: org-cite-adjust-note-numbers

org-cite-adjust-note-numbers is a customizable variable defined in oc.el.gz.

Value

t

Documentation

When non-nil, allow process to modify location of note numbers.

When this variable is non-nil, it is possible to swap between author-date and note style without modifying the document. To that effect, citations should always be located as in an author-date style. Prior to turning the citation into a footnote, the citation processor moves the citation (i.e., the future note number), and the surrounding punctuation, according to rules defined in org-cite-note-rules.

When nil, the note number is not moved.

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/oc.el.gz
(defcustom org-cite-adjust-note-numbers t
  "When non-nil, allow process to modify location of note numbers.

When this variable is non-nil, it is possible to swap between author-date and
note style without modifying the document.  To that effect, citations should
always be located as in an author-date style.  Prior to turning the citation
into a footnote, the citation processor moves the citation (i.e., the future
note number), and the surrounding punctuation, according to rules defined in
`org-cite-note-rules'.

When nil, the note number is not moved."
  :group 'org-cite
  :package-version '(Org . "9.5")
  :type '(choice (const :tag "Automatic note number location" t)
                 (const :tag "Place note numbers manually" nil))
  :safe #'booleanp)