Variable: org-cite-biblatex-style-shortcuts

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

Value

(("a" . "author") ("b" . "bare") ("bc" . "bare-caps") ("c" . "caps")
 ("cf" . "caps-full") ("f" . "full") ("l" . "locators")
 ("n" . "nocite") ("na" . "noauthor") ("t" . "text"))

Documentation

List of shortcuts associated to style or variant names.

Each entry is a pair (NAME . STYLE-NAME) where NAME is the name of the shortcut, as a string, and STYLE-NAME is the name of a style in org-cite-biblatex-styles.

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/oc-biblatex.el.gz
(defcustom org-cite-biblatex-style-shortcuts
  '(("a"  . "author")
    ("b"  . "bare")
    ("bc" . "bare-caps")
    ("c"  . "caps")
    ("cf" . "caps-full")
    ("f"  . "full")
    ("l"  . "locators")
    ("n"  . "nocite")
    ("na" . "noauthor")
    ("t"  . "text"))
  "List of shortcuts associated to style or variant names.

Each entry is a pair (NAME . STYLE-NAME) where NAME is the name
of the shortcut, as a string, and STYLE-NAME is the name of
a style in `org-cite-biblatex-styles'."
  :group 'org-cite
  :package-version '(Org . "9.6")
  :type '(repeat
          (cons :tag "Shortcut"
                (string :tag "Name")
                (string :tag "Full name")))
  :safe t)