Variable: org-latex-table-scientific-notation
org-latex-table-scientific-notation is a customizable variable defined
in ox-latex.el.gz.
Value
nil
Documentation
Format string to display numbers in scientific notation.
The format should have "%s" twice, for mantissa and exponent
(i.e., "%s\\\\times10^{%s}").
When nil, no transformation is made.
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-table-scientific-notation nil
"Format string to display numbers in scientific notation.
The format should have \"%s\" twice, for mantissa and exponent
\(i.e., \"%s\\\\times10^{%s}\").
When nil, no transformation is made."
:group 'org-export-latex
:version "24.4"
:package-version '(Org . "8.0")
:type '(choice
(string :tag "Format string")
(const :tag "No formatting" nil)))