mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
d5667e93bf
conjunction with Jade, and the DocBook DTD) to convert DocBook documents to HTML, RTF and TeX (in conjunction with jadetex macros, which I have yet to submit/commit). The name is a bit long but is, I think, relatively future proof. DSSSL is not the only mechanism that can be used to format SGML, DocBook is not the only DTD with a DSSSL stylesheet, and the modular stylesheets are not the only stylesheets available for DocBook. . . This is my first port commit, I hope I haven't screwed anything up too much. . . PR: 6043 Submitted by: Jun Kuriyama, kuriyama@opt.phys.waseda.ac.jp
17 lines
731 B
Plaintext
17 lines
731 B
Plaintext
These are DSSSL stylesheets for the DocBook DTD by Norm Walsh. Use them
|
|
in conjunction with a DSSSL processor (such as jade) to convert documents
|
|
marked up as DocBook to other formats.
|
|
|
|
For example (assume $DBPATH = /usr/local/share/sgml/docbook/dsssl/modular)
|
|
|
|
jade -t sgml -d $DBPATH/html/docbook.dsl filename.sgml (DocBook -> HTML)
|
|
jade -t rtf -d $DBPATH/print/docbook.dsl filename.sgml (DocBook -> RTF )
|
|
jade -t tex -d $DBPATH/print/docbook.dsl filename.sgml (DocBook -> TeX )
|
|
|
|
To further parse the output of the 'tex' transformation you will need the
|
|
'jadetex' macros, which may not yet have been ported.
|
|
|
|
More documentation (in HTML format) is available in
|
|
|
|
/usr/local/share/sgml/docbook/dsssl/modular/doc/
|