Function: reftex-mouse-view-crossref

reftex-mouse-view-crossref is an autoloaded, interactive and byte-compiled function defined in reftex-dcr.el.gz.

Signature

(reftex-mouse-view-crossref EV)

Documentation

View cross reference of \ref or \cite macro where you click.

If the macro at point is a \ref, show the corresponding label definition. If it is a \cite, show the BibTeX database entry. If there is no such macro at point, search forward to find one. With argument, actually select the window showing the cross reference.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-dcr.el.gz
;;;###autoload
(defun reftex-mouse-view-crossref (ev)
  "View cross reference of \\ref or \\cite macro where you click.
If the macro at point is a \\ref, show the corresponding label definition.
If it is a \\cite, show the BibTeX database entry.
If there is no such macro at point, search forward to find one.
With argument, actually select the window showing the cross reference."
  (interactive "e")
  ;; Make sure the referencing macro stays visible in the original window.
  (mouse-set-point ev)
  (reftex-view-crossref current-prefix-arg))