Variable: org-latex-to-mathml-convert-command
org-latex-to-mathml-convert-command is a customizable variable defined
in org.el.gz.
Value
nil
Documentation
Command to convert LaTeX fragments to MathML.
Replace format-specifiers in the command as noted below and use
shell-command to convert LaTeX to MathML.
%j: Executable file in fully expanded form as specified by
org-latex-to-mathml-jar-file.
%I: Input LaTeX file in fully expanded form.
%i: The latex fragment to be converted.
%o: Output MathML file.
This command is used by org-create-math-formula.
When using MathToWeb as the converter, set this option to
"java -jar %j -unicode -force -df %o %I".
When using LaTeXML set this option to
"latexmlmath "%i" --presentationmathml=%o".
This variable was added, or its default value changed, in Emacs 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-latex-to-mathml-convert-command nil
"Command to convert LaTeX fragments to MathML.
Replace format-specifiers in the command as noted below and use
`shell-command' to convert LaTeX to MathML.
%j: Executable file in fully expanded form as specified by
`org-latex-to-mathml-jar-file'.
%I: Input LaTeX file in fully expanded form.
%i: The latex fragment to be converted.
%o: Output MathML file.
This command is used by `org-create-math-formula'.
When using MathToWeb as the converter, set this option to
\"java -jar %j -unicode -force -df %o %I\".
When using LaTeXML set this option to
\"latexmlmath \"%i\" --presentationmathml=%o\"."
:group 'org-latex
:version "24.1"
:type '(choice
(const :tag "None" nil)
(string :tag "\nShell command")))