Docbook to PDF?
The procedure is quite simple and I will try to list all the packages required for it under Gentoo:
- passivetex
- tetex (>= 3.0-r2)
Why tetex >= 3.0-r2? Previously I think I had 3.0-r1 installed and somehow ended up without pdftex which I now have after updating, so perhaps it was really missing back then
I won't list the requirements for the "docbook to xhtml" process here, simply because I think if you work with docbook you should know what you need for it
In the first step we have to generate a .fo file using the print-stylesheet for docbook and xsltproc:
xsltproc /usr/share/sgml/docbook/xsl-stylesheets-1.66.1/fo/docbook.xsl index.xml > index.fo
Now that we have the index.fo, we can transform it into a PDF:
pdfxmltex index.fo
Now you should have a PDF version of your docbook. The quality isn't really great, but it's IMO good enough for what I need
Troubleshooting
After the generation of the fo-file, I tried pdfxmltex to transform it into a PDF but code following error:! TeX capacity exceeded, sorry [save size=5000].
Here I thought about just changing this value in the /etc/texmf/texmf.cnf which is quite futile under Gentoo since this file isn't used. If you want to change any settings better try it in /usr/share/texmf/web2c/texmf.cnf. For my documentation I tried it with save_size=10000 which worked.
