Variable: org-latex-default-table-mode
org-latex-default-table-mode is a customizable variable defined in
ox-latex.el.gz.
Value
table
Documentation
Default mode for tables.
Value can be a symbol among:
table Regular LaTeX table.
math In this mode, every cell is considered as being in math
mode and the complete table will be wrapped within a math
environment. It is particularly useful to write matrices.
inline-math This mode is almost the same as math, but the
math environment will be inlined.
verbatim The table is exported as it appears in the Org
buffer, within a verbatim environment.
This value can be overridden locally with, i.e. ":mode math" in LaTeX attributes.
When modifying this variable, it may be useful to change
org-latex-default-table-environment accordingly.
This variable was added, or its default value changed, in Org version
8.0.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
(defcustom org-latex-default-table-mode 'table
"Default mode for tables.
Value can be a symbol among:
`table' Regular LaTeX table.
`math' In this mode, every cell is considered as being in math
mode and the complete table will be wrapped within a math
environment. It is particularly useful to write matrices.
`inline-math' This mode is almost the same as `math', but the
math environment will be inlined.
`verbatim' The table is exported as it appears in the Org
buffer, within a verbatim environment.
This value can be overridden locally with, i.e. \":mode math\" in
LaTeX attributes.
When modifying this variable, it may be useful to change
`org-latex-default-table-environment' accordingly."
:group 'org-export-latex
:version "24.4"
:package-version '(Org . "8.0")
:type '(choice (const :tag "Table" table)
(const :tag "Matrix" math)
(const :tag "Inline matrix" inline-math)
(const :tag "Verbatim" verbatim))
:safe (lambda (s) (memq s '(table math inline-math verbatim))))