Advertisement
kaiux

latex to epub

Nov 1st, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. Convert Latex to EPUB
  2.  
  3. latexml --dest=$1.xml $1.tex
  4. latexmlpost -dest=$1.html $1.xml
  5. ebook-convert $1.html $1.epub --language en --no-default-epub-cover
  6.  
  7. It makes use of latexml and ebook-converter (the command line tool that comes with calibre). This works very well with lots of formulas. Once mathML is encoded in newer epub versions things will even get prettier by using latexmlpost -dest=$1.xhtml $1.xml instead of the second line of my script.
  8.  
  9. http://tex.stackexchange.com/questions/1551/use-latex-to-produce-epub
  10.  
  11. Converting using no UTF-8
  12. latexml --inputencoding=ISO8859-1 --includestyles --dest=book.xml sample-bookchapter.tex
  13. latexmlpost -dest=book.html book.xml
  14. ebook-convert book.html book.epub --language pt --no-default-epub-cover
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement