Function: org-cdlatex-math-modify
org-cdlatex-math-modify is an interactive and byte-compiled function
defined in org.el.gz.
Signature
(org-cdlatex-math-modify &optional ARG)
Documentation
Execute cdlatex-math-modify 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-math-modify (&optional _arg)
"Execute `cdlatex-math-modify' in LaTeX fragments.
Revert to the normal definition outside of these fragments."
(interactive "P")
(if (org-inside-LaTeX-fragment-p)
(call-interactively 'cdlatex-math-modify)
(let (org-cdlatex-mode)
(call-interactively (key-binding (vector last-input-event))))))