Blame xsl/part.xsl

Packit 0f19cf
Packit 0f19cf
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
Packit 0f19cf
Packit 0f19cf
Packit 0f19cf
    XSLT Stylesheet DocBook -> LaTeX 
Packit 0f19cf
    ############################################################################ -->
Packit 0f19cf
Packit 0f19cf
<xsl:template match="part">
Packit 0f19cf
  <xsl:text>%
</xsl:text>
Packit 0f19cf
  <xsl:text>% PART
</xsl:text>
Packit 0f19cf
  <xsl:text>%
</xsl:text>
Packit 0f19cf
  <xsl:apply-templates select="." mode="endnotes"/>
Packit 0f19cf
  <xsl:call-template name="mapheading"/>
Packit 0f19cf
  <xsl:apply-templates/>
Packit 0f19cf
  
Packit 0f19cf
  <xsl:if test="not(following-sibling::part)">
Packit 0f19cf
    <xsl:text>\bookmarksetup{startatroot}
</xsl:text>
Packit 0f19cf
  </xsl:if>
Packit 0f19cf
</xsl:template>
Packit 0f19cf
Packit 0f19cf
<xsl:template match="part/docinfo"/>
Packit 0f19cf
<xsl:template match="part/title"/>
Packit 0f19cf
<xsl:template match="part/subtitle"/>
Packit 0f19cf
Packit 0f19cf
<xsl:template match="partintro">
Packit 0f19cf
  <xsl:apply-templates/>
Packit 0f19cf
</xsl:template>
Packit 0f19cf
Packit 0f19cf
<xsl:template match="partintro/title"/>
Packit 0f19cf
<xsl:template match="partintro/subtitle"/>
Packit 0f19cf
<xsl:template match="partintro/titleabbrev"/>
Packit 0f19cf
Packit 0f19cf
</xsl:stylesheet>