I am working on converting my book into XHTML with nice looking graphics. The first attempts to make a .epub from .pdf caused a mess of a book. The symbols go all over the page when they aren't locked into position.
The way I solved this was to convert all math equations into graphics - inline and display formulas - and then reinclude graphics into the .tex file rather than equations.
I found the svg package that acts like the graphicsx allowing you to
\includesvg[<options>]{<svg filename>}
include svg image directly.
You can find the svg package on CTAN here
For Ubuntu and Fedora, this BASH shellscript should install and reconfigure texmf
#!/bin/sh # svg standard install script # must be run inside the top svg directory # must be run as root or sudo root mkdir /usr/share/texmf/tex/latex/svg cp -rf * /usr/share/texmf/tex/latex/svg texhash
No comments:
Post a Comment