Function: reftex-toggle-plug-into-AUCTeX

reftex-toggle-plug-into-AUCTeX is an autoloaded, interactive and byte-compiled function defined in reftex-auc.el.gz.

Signature

(reftex-toggle-plug-into-AUCTeX)

Documentation

Toggle Interface between AUCTeX and RefTeX on and off.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-auc.el.gz
;;;###autoload
(defun reftex-toggle-plug-into-AUCTeX ()
  "Toggle Interface between AUCTeX and RefTeX on and off."
  (interactive)
  (unless (and (featurep 'tex-site) (featurep 'latex))
    (error "AUCTeX's LaTeX mode does not seem to be loaded"))
  (setq reftex-plug-into-AUCTeX (not reftex-plug-into-AUCTeX))
  (reftex-plug-into-AUCTeX)
  (if reftex-plug-into-AUCTeX
      (message "RefTeX has been plugged into AUCTeX.")
    (message "RefTeX no longer interacts with AUCTeX.")))