2013-04-10 22:43:41 -07:00
|
|
|
<xsl:template name="compare">
|
|
|
|
|
<xsl:param name="a" select="1"/>
|
|
|
|
|
<xsl:param name="b" select="2"/>
|
|
|
|
|
<fo:block>
|
|
|
|
|
<xsl:choose>
|
|
|
|
|
<xsl:when test="$a < $b">a < b</xsl:when>
|
|
|
|
|
<xsl:when test="$a > $b">a > b</xsl:when>
|
|
|
|
|
<xsl:when test="$a = $b">a = b</xsl:when>
|
|
|
|
|
</xsl:choose>
|
|
|
|
|
</fo:block>
|
2015-11-18 06:14:39 +00:00
|
|
|
</xsl:template>
|