in reply to Latex to XML

I've been using LaTeXML (which is second result from a web search on LaTeX to XML) and it works for my purposes. It takes particular care of handling equations and has hooks for writing your own handlers for unusual style files.

perl -e 'print qq(Just another Perl Hacker\n)' # where's the irony switch?

Replies are listed 'Best First'.
Re^2: Latex to XML
by Anonymous Monk on Mar 19, 2012 at 04:16 UTC
    Hi, I want to convert tex file content to xml format. I tried to install latexml but not even able to install prerequisites modules. Please guide. thanks

      I would start by installing the prerequisites.

      Hmmm ... if you're struggling to install standard modules, you'd best go to the basic documentation on How to install CPAN modules and use that to help you install the prerequisits It assumes that you have these 2 xml libraries on your system, libxml2 and libxslt. These libraries are not perl. You will need to install them if they are not already on your system.

      perl -e 'print qq(Just another Perl Hacker\n)' # where's the irony switch?