Variable: TeX-braces-association
TeX-braces-association is a variable defined in latex.el.
Value
(("[" . "]") ("\\{" . "\\}") ("(" . ")") ("|" . "|") ("\\|" . "\\|")
("/" . "/") ("\\backslash" . "\\backslash") ("\\lfloor" . "\\rfloor")
("\\lceil" . "\\rceil") ("\\langle" . "\\rangle"))
Documentation
A list of association of brace symbols for \left and \right.
The car of each entry is the brace used with \left, the cdr is the brace used with \right.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defvar TeX-braces-association
(append TeX-braces-user-association
TeX-braces-default-association)
"A list of association of brace symbols for \\left and \\right.
The car of each entry is the brace used with \\left,
the cdr is the brace used with \\right.")