Variable: org-odt-with-latex
org-odt-with-latex is a customizable variable defined in ox-odt.el.gz.
Value
t
Documentation
Non-nil means process LaTeX math snippets.
When set, the exporter will process LaTeX environments and fragments.
This option can also be set with the +OPTIONS line, e.g. "tex:mathjax". Allowed values are:
nil Ignore math snippets.
verbatim Keep everything in verbatim
dvipng Process the LaTeX fragments to images. This will also
include processing of non-math environments.
imagemagick Convert the LaTeX fragments to pdf files and use
imagemagick to convert pdf files to png files.
mathjax Do MathJax preprocessing and arrange for MathJax.js to
be loaded.
Any other symbol is a synonym for mathjax.
This variable was added, or its default value changed, in Org version
8.0.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
;;;; LaTeX
(defcustom org-odt-with-latex org-export-with-latex
"Non-nil means process LaTeX math snippets.
When set, the exporter will process LaTeX environments and
fragments.
This option can also be set with the +OPTIONS line,
e.g. \"tex:mathjax\". Allowed values are:
nil Ignore math snippets.
`verbatim' Keep everything in verbatim
`dvipng' Process the LaTeX fragments to images. This will also
include processing of non-math environments.
`imagemagick' Convert the LaTeX fragments to pdf files and use
imagemagick to convert pdf files to png files.
`mathjax' Do MathJax preprocessing and arrange for MathJax.js to
be loaded.
Any other symbol is a synonym for `mathjax'."
:version "24.4"
:package-version '(Org . "8.0")
:type '(choice
(const :tag "Do not process math in any way" nil)
(const :tag "Leave math verbatim" verbatim)
(const :tag "Use dvipng to make images" dvipng)
(const :tag "Use imagemagick to make images" imagemagick)
(other :tag "Use MathJax to display math" mathjax)))