/ Martin Stemplinger <[EMAIL PROTECTED]> was heard to say:
| I have a document with an appendix containing some large tables and graphics and
| I'd prefer to see them on a separate page each.
|
| Is there a simple way to customize the fo-stylsheets to insert a pagebreak
| before or after an element?
|
| Any hints appreciated!

Something like...

<xsl:stylesheet...>
<xsl:import href="...docbook.xsl">

<xsl:template match="appendix/table">
  <fo:block break-before="page">
    <xsl:apply-imports/>
  </fo:block>
</xsl:template>

...

                                        Be seeing you,
                                          norm

-- 
Norman Walsh <[EMAIL PROTECTED]>      | Oh well, no matter what happens,
http://www.oasis-open.org/docbook/ | there's always death.--Napoleon
Chair, DocBook Technical Committee |

Reply via email to