Variable: org-export-with-latex
org-export-with-latex is a customizable variable defined in ox.el.gz.
Value
t
Documentation
Non-nil means process LaTeX environments and fragments.
This option can also be set with the OPTIONS line, e.g. "tex:verbatim". Allowed values are:
nil Ignore math snippets.
verbatim Keep everything in verbatim.
t Allow export of math snippets.
This variable was added, or its default value changed, in Org version
8.0.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defcustom org-export-with-latex t
"Non-nil means process LaTeX environments and fragments.
This option can also be set with the OPTIONS line,
e.g. \"tex:verbatim\". Allowed values are:
nil Ignore math snippets.
`verbatim' Keep everything in verbatim.
t Allow export of math snippets."
:group 'org-export-general
:version "24.4"
:package-version '(Org . "8.0")
:type '(choice
(const :tag "Do not process math in any way" nil)
(const :tag "Interpret math snippets" t)
(const :tag "Leave math verbatim" verbatim))
:safe (lambda (x) (memq x '(t nil verbatim))))