Loren Cahlander <[email protected]> writes: > I found Norm Walsh’s grade DocBookTask in his article > https://so.nwalsh.com/2018/03/05/easy […] > I need to find the settings for generating a PDF.
I’ve been exploring the answer to that question recently. There are
two obvious avenues: through XSL-FO or through CSS. I’ve made both
work, though the DocBook 2.0 stylesheets for FO aren’t really as well
developed as the HTML ones.
Something as simple as this, should produce FO:
task myPdfDocument(type: DocBookTask) {
// And tell the pipeline to validate with the schema
option("schema", "https://docbook.org/xml/5.1/rng/docbook.rng")
input("source", "document.xml")
output("result", "output.fo")
option("format", "print")
}
I’ve produced PDF with CSS (via AntennaHouse) recently, see the xproc_pdf
task in build.gradle in github.com/xproc/3.0-specification/
Be seeing you,
norm
--
Norman Walsh <[email protected]> | Waste no more time arguing what a good
http://nwalsh.com/ | man should be. Be one.--Marcus Aurelius
signature.asc
Description: PGP signature
