spec-fo.xsl 660 B

1234567891011121314151617
  1. <?xml version='1.0'?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  3. <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl"/>
  4. <xsl:include href="spec-common.xsl"/>
  5. <xsl:param name="paper.type" select="'A4'"/>
  6. <xsl:attribute-set name="section.title.level1.properties">
  7. <xsl:attribute name="break-before">page</xsl:attribute>
  8. </xsl:attribute-set>
  9. <!-- the appendix pagebreak setting doesn't seem to be respected -->
  10. <xsl:attribute-set name="appendix.title.properties">
  11. <xsl:attribute name="break-before">page</xsl:attribute>
  12. </xsl:attribute-set>
  13. </xsl:stylesheet>