Function: reftex-toc-toggle-labels
reftex-toc-toggle-labels is an interactive and byte-compiled function
defined in reftex-toc.el.gz.
Signature
(reftex-toc-toggle-labels ARG)
Documentation
Toggle inclusion of labels in *toc* buffer.
With prefix ARG, prompt for a label type and include only labels of that specific type.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-toc.el.gz
(defun reftex-toc-toggle-labels (arg)
"Toggle inclusion of labels in *toc* buffer.
With prefix ARG, prompt for a label type and include only labels of
that specific type."
(interactive "P")
(setq reftex-toc-include-labels
(if arg (reftex-query-label-type)
(not reftex-toc-include-labels)))
(reftex-toc-revert))