Variable: texmathp-tex-commands-default

texmathp-tex-commands-default is a variable defined in texmathp.el.

Value

(("$$" sw-toggle) ("$" sw-toggle) ("\\hbox" arg-off)
 ("\\vbox" arg-off) ("\\vtop" arg-off) ("\\vcenter" arg-off)
 ("equation" env-on) ("eqnarray" env-on) ("eqnarray*" env-on)
 ("math" env-on) ("displaymath" env-on) ("minipage" env-off)
 ("\\fbox" arg-off) ("\\mbox" arg-off) ("\\framebox" arg-off)
 ("\\label" arg-off) ("\\textrm" arg-off) ("\\(" sw-on) ("\\)" sw-off)
 ("\\[" sw-on) ("\\]" sw-off) ("\\ensuremath" arg-on)
 ("equation*" env-on) ("align" env-on) ("align*" env-on)
 ("gather" env-on) ("gather*" env-on) ("multline" env-on)
 ("multline*" env-on) ("flalign" env-on) ("flalign*" env-on)
 ("alignat" env-on) ("alignat*" env-on) ("xalignat" env-on)
 ("xalignat*" env-on) ("xxalignat" env-on) ("\\boxed" arg-on)
 ("\\text" arg-off) ("\\intertext" arg-off) ("\\tag" arg-off)
 ("\\tag*" arg-off) ("\\shortintertext" arg-off) ("empheq" env-on)
 ("AmSequation" env-on) ("AmSequation*" env-on) ("AmSalign" env-on)
 ("AmSalign*" env-on) ("AmSgather" env-on) ("AmSgather*" env-on)
 ("AmSmultline" env-on) ("AmSmultline*" env-on) ("AmSflalign" env-on)
 ("AmSflalign*" env-on) ("AmSalignat" env-on) ("AmSalignat*" env-on)
 ("dmath" env-on) ("dmath*" env-on) ("dseries" env-on)
 ("dseries*" env-on) ("dgroup" env-on) ("dgroup*" env-on)
 ("darray" env-on) ("darray*" env-on) ("dsuspend" env-off))

Documentation

The default entries for texmathp-tex-commands, which see.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/texmathp.el
(defvar texmathp-tex-commands)          ; silence the compiler

(defvar texmathp-tex-commands-default
  '(;; Plain TeX
    ("$$"            sw-toggle)   ("$"             sw-toggle)
    ("\\hbox"        arg-off)
    ("\\vbox"        arg-off)
    ("\\vtop"        arg-off)
    ("\\vcenter"     arg-off)

    ;; Standard LaTeX
    ("equation"      env-on)
    ("eqnarray"      env-on)      ("eqnarray*"     env-on)
    ("math"          env-on)
    ("displaymath"   env-on)
    ("minipage"      env-off)
    ("\\fbox"        arg-off)
    ("\\mbox"        arg-off)
    ("\\framebox"    arg-off)
    ("\\label"       arg-off)
    ("\\textrm"      arg-off)
    ("\\("           sw-on)       ("\\)"           sw-off)
    ("\\["           sw-on)       ("\\]"           sw-off)
    ("\\ensuremath"  arg-on)

    ;; AMS-LaTeX
    ("equation*"     env-on)
    ("align"         env-on)      ("align*"        env-on)
    ("gather"        env-on)      ("gather*"       env-on)
    ("multline"      env-on)      ("multline*"     env-on)
    ("flalign"       env-on)      ("flalign*"      env-on)
    ("alignat"       env-on)      ("alignat*"      env-on)
    ("xalignat"      env-on)      ("xalignat*"     env-on)
    ("xxalignat"     env-on)      ("\\boxed"       arg-on)
    ("\\text"        arg-off)     ("\\intertext"   arg-off)
    ("\\tag"         arg-off)     ("\\tag*"        arg-off)

    ;; mathtools
    ("\\shortintertext"   arg-off)

    ;; empheq
    ("empheq"        env-on)
    ("AmSequation"   env-on)      ("AmSequation*"  env-on)
    ("AmSalign"      env-on)      ("AmSalign*"     env-on)
    ("AmSgather"     env-on)      ("AmSgather*"    env-on)
    ("AmSmultline"   env-on)      ("AmSmultline*"  env-on)
    ("AmSflalign"    env-on)      ("AmSflalign*"   env-on)
    ("AmSalignat"    env-on)      ("AmSalignat*"   env-on)

    ;; breqn
    ("dmath"         env-on)      ("dmath*"        env-on)
    ("dseries"       env-on)      ("dseries*"      env-on)
    ("dgroup"        env-on)      ("dgroup*"       env-on)
    ("darray"        env-on)      ("darray*"       env-on)
    ("dsuspend"      env-off))
  "The default entries for `texmathp-tex-commands', which see.")