Function: org-cdlatex-underscore-caret
org-cdlatex-underscore-caret is an interactive and byte-compiled
function defined in org.el.gz.
Signature
(org-cdlatex-underscore-caret &optional ARG)
Documentation
Execute cdlatex-sub-superscript in LaTeX fragments.
Revert to the normal definition outside of these fragments.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-cdlatex-underscore-caret (&optional _arg)
"Execute `cdlatex-sub-superscript' in LaTeX fragments.
Revert to the normal definition outside of these fragments."
(interactive "P")
(if (org-inside-LaTeX-fragment-p)
(call-interactively 'cdlatex-sub-superscript)
(let (org-cdlatex-mode)
(call-interactively (key-binding (vector last-input-event))))))