Function: reftex-set-cite-format

reftex-set-cite-format is a byte-compiled function defined in reftex.el.gz.

Signature

(reftex-set-cite-format VALUE)

Documentation

Set the document-local VALUE of reftex-cite-format.

When such a value exists, it overwrites the setting given with reftex-cite-format. See the documentation of reftex-cite-format for possible values. This function should be used from AUCTeX style files.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex.el.gz
(defun reftex-set-cite-format (value)
  "Set the document-local VALUE of `reftex-cite-format'.
When such a value exists, it overwrites the setting given with
`reftex-cite-format'.  See the documentation of `reftex-cite-format'
for possible values.  This function should be used from AUCTeX style files."
  (unless reftex-docstruct-symbol
    (reftex-tie-multifile-symbols))
  (when (and reftex-docstruct-symbol
             (symbolp reftex-docstruct-symbol))
    (put reftex-docstruct-symbol 'reftex-cite-format value)))