1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
<!-- HTML by default -->
<!ENTITY % html "INCLUDE">
<!ENTITY % print "IGNORE">
<![%print;[
<!ENTITY % html "IGNORE">
<!ENTITY docbook.dsl PUBLIC
"-//Norman Walsh//DOCUMENT DocBook Print Stylesheet//EN" CDATA DSSSL>
]]>
<![%html;[
<!ENTITY docbook.dsl PUBLIC
"-//Norman Walsh//DOCUMENT DocBook HTML Stylesheet//EN" CDATA DSSSL>
]]>
]>
<!-- $Progeny$ -->
<style-sheet>
<style-specification id="html" use="docbook">
<style-specification-body>
<!-- When we chunk, it would be nice to have predictable filenames for the
components. This variable lets the DocBook stylesheet know to look for
id attributes on sections, chapters, etc. to use as filenames. -->
(define %use-id-as-filename% #t)
</style-specification-body>
</style-specification>
<style-specification id="print" use="docbook">
<style-specification-body>
<!-- DSSSL for print output, i.e., TeX, RTF, MIF, goes here -->
</style-specification-body>
</style-specification>
<external-specification id="docbook" document="docbook.dsl">
</style-sheet>
|