Variable: LaTeX-math-mode
LaTeX-math-mode is a buffer-local variable defined in latex.el.
Documentation
Non-nil if Latex-Math mode is enabled.
Use the command LaTeX-math-mode(var)/LaTeX-math-mode(fun) to change this variable.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(define-minor-mode LaTeX-math-mode
"A minor mode with easy access to TeX math macros.
Easy insertion of LaTeX math symbols. If you give a prefix argument,
the symbols will be surrounded by dollar signs. The following
commands are defined:
\\{LaTeX-math-mode-map}"
:init-value nil
:lighter nil
:keymap (list (cons (LaTeX-math-abbrev-prefix) LaTeX-math-keymap))
(TeX-set-mode-name))