Variable: org-cite-biblatex-options

org-cite-biblatex-options is a customizable variable defined in oc-biblatex.el.gz.

Value

nil

Documentation

Options added to "biblatex" package.

If "biblatex" package is already required in the document, e.g., through org-latex-packages-alist variable, these options are ignored.

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/oc-biblatex.el.gz
;;; Customization
(defcustom org-cite-biblatex-options nil
  "Options added to \"biblatex\" package.
If \"biblatex\" package is already required in the document, e.g., through
`org-latex-packages-alist' variable, these options are ignored."
  :group 'org-cite
  :package-version '(Org . "9.5")
  :type '(choice
          (string :tag "Options (key=value,key2=value2...)")
          (const :tag "No option" nil))
  :safe #'string-or-null-p)