Variable: table-latex-environment

table-latex-environment is a customizable variable defined in table.el.gz.

Value

"tabular"

Documentation

Tabular-compatible environment to use when generating latex.

The value should be a string suitable for use as a LaTeX environment that's compatible with the "tabular" protocol, such as "tabular" and "longtable".

This variable was added, or its default value changed, in Emacs 29.1.

Probably introduced at or before Emacs version 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defcustom table-latex-environment "tabular"
  "Tabular-compatible environment to use when generating latex.
The value should be a string suitable for use as a LaTeX environment
that's compatible with the \"tabular\" protocol, such as \"tabular\"
and \"longtable\"."
  :tag "Latex environment used to export tables"
  :type '(choice
	  (const :tag "tabular" "tabular")
	  (const :tag "longtable"  "longtable")
          string)
  :version "29.1")