LaTeXML(3pm) | User Contributed Perl Documentation | LaTeXML(3pm) |
"LaTeXML" - A converter that transforms TeX and LaTeX into XML/HTML/MathML
use LaTeXML; my $converter = LaTeXML->get_converter($config); my $converter = LaTeXML->new($config); $converter->prepare_session($opts); $converter->initialize_session; # SHOULD BE INTERNAL $hashref = $converter->convert($tex); my ($result,$log,$status) = map {$hashref->{$_}} qw(result log status);
LaTeXML is a converter that transforms TeX and LaTeX into XML/HTML/MathML and other formats.
A LaTeXML object represents a converter instance and can convert files on demand, until dismissed.
Contains optimization checks that skip initializations unless necessary.
Also adds support for partial option specifications during
daemon runtime,
falling back on the option defaults given when converter object was
created.
Supplies detailed information of the conversion log ($log),
as well as a brief conversion status summary ($status).
Sets the "ready" flag to true, making a subsequent "convert" call immediately possible.
Typically used only internally by "convert".
Bruce Miller <bruce.miller@nist.gov> Deyan Ginev <deyan.ginev@nist.gov>
Public domain software, produced as part of work done by the United States Government & not subject to copyright in the US. You may consider this as released under the CC0 License.
2023-02-03 | perl v5.36.0 |