Function: reftex-get-cite-format
reftex-get-cite-format is a byte-compiled function defined in
reftex.el.gz.
Signature
(reftex-get-cite-format)
Documentation
Return the current citation format.
Either the document-local value in reftex-cite-format-symbol, or the
global value in reftex-cite-format.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex.el.gz
(defun reftex-get-cite-format ()
"Return the current citation format.
Either the document-local value in `reftex-cite-format-symbol', or the
global value in `reftex-cite-format'."
(if (and reftex-docstruct-symbol
(symbolp reftex-docstruct-symbol)
(get reftex-docstruct-symbol 'reftex-cite-format))
(get reftex-docstruct-symbol 'reftex-cite-format)
reftex-cite-format))