Variable: latex-standard-block-names

latex-standard-block-names is a variable defined in tex-mode.el.gz.

Value

("abstract" "array" "center" "description" "displaymath" "document"
 "enumerate" "eqnarray" "eqnarray*" "equation" "figure" "figure*"
 "flushleft" "flushright" "itemize" "letter" "list" "minipage"
 "picture" "quotation" "quote" "slide" "sloppypar" "tabbing" "table"
 "table*" "tabular" "tabular*" "thebibliography" "theindex*"
 "titlepage" "trivlist" "verbatim" "verbatim*" "verse" "math")

Documentation

Standard LaTeX block names.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/tex-mode.el.gz
(defvar latex-standard-block-names
  '("abstract"		"array"		"center"	"description"
    "displaymath"	"document"	"enumerate"	"eqnarray"
    "eqnarray*"		"equation"	"figure"	"figure*"
    "flushleft"		"flushright"	"itemize"	"letter"
    "list"		"minipage"	"picture"	"quotation"
    "quote"		"slide"		"sloppypar"	"tabbing"
    "table"		"table*"	"tabular"	"tabular*"
    "thebibliography"	"theindex*"	"titlepage"	"trivlist"
    "verbatim"		"verbatim*"	"verse"		"math")
  "Standard LaTeX block names.")