1<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
2                xmlns:fo="http://www.w3.org/1999/XSL/Format"
3                version="1.0">
4<xsl:attribute-set name="title.properties">
5  <xsl:attribute name="font-size">14pt</xsl:attribute>
6  <xsl:attribute name="font-weight">bold</xsl:attribute>
7  <xsl:attribute name="hyphenate">false</xsl:attribute>
8  <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute>
9</xsl:attribute-set>
10
11<xsl:template match="/title">
12    <fo:block xsl:use-attribute-sets="title.properties">
13        <xsl:apply-templates/>
14    </fo:block>
15</xsl:template>
16
17</xsl:stylesheet>
18
19
20