|
@@ -14,7 +14,21 @@
|
|
|
|
|
|
<!-- Global admonitions properties -->
|
|
|
<xsl:attribute-set name="graphical.admonition.properties">
|
|
|
- <xsl:attribute name="keep-together.within-column">always</xsl:attribute>
|
|
|
+ <xsl:attribute name="keep-together.within-column">
|
|
|
+ <xsl:variable name="keep.together">
|
|
|
+ <xsl:call-template name="dbfo-attribute">
|
|
|
+ <xsl:with-param name="pis"
|
|
|
+ select="processing-instruction('dbfo')"/>
|
|
|
+ <xsl:with-param name="attribute" select="'keep-together'"/>
|
|
|
+ </xsl:call-template>
|
|
|
+ </xsl:variable>
|
|
|
+ <xsl:choose>
|
|
|
+ <xsl:when test="$keep.together != ''">
|
|
|
+ <xsl:value-of select="$keep.together"/>
|
|
|
+ </xsl:when>
|
|
|
+ <xsl:otherwise>always</xsl:otherwise>
|
|
|
+ </xsl:choose>
|
|
|
+ </xsl:attribute>
|
|
|
<xsl:attribute name="space-before.optimum">0.6em</xsl:attribute>
|
|
|
<xsl:attribute name="space-before.minimum">0.4em</xsl:attribute>
|
|
|
<xsl:attribute name="space-before.maximum">0.8em</xsl:attribute>
|