LaTeX math snippets
LaTeX math snippets (see LaTeX fragments) can be embedded in the ODT document in one of the following ways:
MathML
Add this line to the Org file. This option is activated on a per-file basis.
#+OPTIONS: tex:tWith this option, LaTeX fragments are first converted into MathML fragments using an external LaTeX-to-MathML converter program. The resulting MathML fragments are then embedded as an OpenDocument Formula in the exported document.
You can specify the LaTeX-to-MathML converter by customizing the variables org-latex-to-mathml-convert-command and org-latex-to-mathml-jar-file.
If you prefer to use MathToWeb[1] as your converter, you can configure the above variables as shown below.
(setq org-latex-to-mathml-convert-command
"java -jar %j -unicode -force -df %o %I"
org-latex-to-mathml-jar-file
"/path/to/mathtoweb.jar")or, to use LaTeXML[2] instead,
(setq org-latex-to-mathml-convert-command
"latexmlmath %i --presentationmathml=%o")To quickly verify the reliability of the LaTeX-to-MathML converter, use the following commands:
M-x org-export-as-odf
Convert a LaTeX math snippet to an OpenDocument formula (‘.odf’) file.
M-x org-export-as-odf-and-open
Convert a LaTeX math snippet to an OpenDocument formula (‘.odf’) file and open the formula file with the system-registered application.
PNG images
Add this line to the Org file. This option is activated on a per-file basis.
#+OPTIONS: tex:dvipng#+OPTIONS: tex:dvisvgmor
#+OPTIONS: tex:imagemagickUnder this option, LaTeX fragments are processed into PNG or SVG images and the resulting images are embedded in the exported document. This method requires dvipng program, dvisvgm or ImageMagick programs.