Function: LaTeX-math-mode
LaTeX-math-mode is an interactive and byte-compiled function defined
in latex.el.
Signature
(LaTeX-math-mode &optional ARG)
Documentation
A minor mode with easy access to TeX math macros.
This is a minor mode. If called interactively, toggle the
Latex-Math mode mode. If the prefix argument is positive,
enable the mode, and if it is zero or negative, disable the mode.
If called from Lisp, toggle the mode if ARG is toggle. Enable
the mode if ARG is nil, omitted, or is a positive number.
Disable the mode if ARG is a negative number.
To check whether the minor mode is enabled in the current buffer,
evaluate LaTeX-math-mode(var)/LaTeX-math-mode(fun).
The mode's hook is called both when the mode is enabled and when it is disabled.
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-wedge
` ( LaTeX-math-langle
` ) LaTeX-math-rangle
` * LaTeX-math-times
` + LaTeX-math-cup
` - LaTeX-math-cap
` . LaTeX-math-cdot
` / LaTeX-math-not
` 0 LaTeX-math-emptyset
` : LaTeX-math-colon
` < LaTeX-math-leq
` > LaTeX-math-geq
` A LaTeX-math-forall
` C-^ LaTeX-math-sup
` C-_ LaTeX-math-inf
` C-b LaTeX-math-leftarrow
` C-c LaTeX-math-cos
` C-d LaTeX-math-det
` C-e LaTeX-math-exp
` C-f LaTeX-math-rightarrow
` C-l LaTeX-math-lim
` C-n LaTeX-math-downarrow
` C-p LaTeX-math-uparrow
` C-s LaTeX-math-sin
` C-t LaTeX-math-tan
` D LaTeX-math-Delta
` E LaTeX-math-exists
` F LaTeX-math-Phi
` G LaTeX-math-Gamma
` I LaTeX-math-infty
` J LaTeX-math-Theta
` L LaTeX-math-Lambda
` N LaTeX-math-nabla
` P LaTeX-math-Pi
` S LaTeX-math-Sigma
` U LaTeX-math-Upsilon
` W LaTeX-math-Omega
` X LaTeX-math-Xi
` Y LaTeX-math-Psi
` [ LaTeX-math-subseteq
` \ LaTeX-math-setminus
` ] LaTeX-math-supseteq
` ^ LaTeX-math-hat
` ` self-insert-command
` a LaTeX-math-alpha
` b LaTeX-math-beta
` c LaTeX-math-cal
` d LaTeX-math-delta
` e LaTeX-math-epsilon
` f LaTeX-math-phi
` g LaTeX-math-gamma
` h LaTeX-math-eta
` i LaTeX-math-in
` j LaTeX-math-theta
` k LaTeX-math-kappa
` l LaTeX-math-lambda
` m LaTeX-math-mu
` n LaTeX-math-nu
` p LaTeX-math-pi
` q LaTeX-math-chi
` r LaTeX-math-rho
` s LaTeX-math-sigma
` t LaTeX-math-tau
` u LaTeX-math-upsilon
` v D LaTeX-math-varDelta
` v F LaTeX-math-varPhi
` v G LaTeX-math-varGamma
` v J LaTeX-math-varTheta
` v L LaTeX-math-varLambda
` v P LaTeX-math-varPi
` v S LaTeX-math-varSigma
` v U LaTeX-math-varUpsilon
` v W LaTeX-math-varOmega
` v X LaTeX-math-varXi
` v Y LaTeX-math-varPsi
` v e LaTeX-math-varepsilon
` v f LaTeX-math-varphi
` v j LaTeX-math-vartheta
` v k LaTeX-math-varkappa
` v p LaTeX-math-varpi
` v r LaTeX-math-varrho
` v s LaTeX-math-varsigma
` w LaTeX-math-omega
` x LaTeX-math-xi
` y LaTeX-math-psi
` z LaTeX-math-zeta
` { LaTeX-math-subset
` | LaTeX-math-vee
` } LaTeX-math-supset
` ~ LaTeX-math-tilde
Key Bindings
Aliases
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))