lib/isodoc/mpfa/mpfa.circular.xsl in metanorma-mpfa-0.6.12 vs lib/isodoc/mpfa/mpfa.circular.xsl in metanorma-mpfa-0.6.13
- old
+ new
@@ -1150,10 +1150,15 @@
+ </xsl:attribute-set><xsl:attribute-set name="table-note-name-style">
+
+
+
+
</xsl:attribute-set><xsl:attribute-set name="note-p-style">
@@ -2229,13 +2234,12 @@
<!-- Table's note name (NOTE, for example) -->
- <fo:inline padding-right="2mm">
+ <fo:inline padding-right="2mm" xsl:use-attribute-sets="table-note-name-style">
-
<xsl:apply-templates select="*[local-name() = 'name']" mode="presentation"/>
@@ -2839,10 +2843,12 @@
</xsl:variable>
<xsl:variable name="font-size" select="normalize-space($_font-size)"/>
<xsl:if test="$font-size != ''">
<xsl:attribute name="font-size">
<xsl:choose>
+ <xsl:when test="$font-size = 'inherit'"><xsl:value-of select="$font-size"/></xsl:when>
+ <xsl:when test="contains($font-size, '%')"><xsl:value-of select="$font-size"/></xsl:when>
<xsl:when test="ancestor::*[local-name()='note']"><xsl:value-of select="$font-size * 0.91"/>pt</xsl:when>
<xsl:otherwise><xsl:value-of select="$font-size"/>pt</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
</xsl:if>
@@ -4295,14 +4301,18 @@
</xsl:variable>
<xsl:variable name="font-size" select="normalize-space($_font-size)"/>
<xsl:if test="$font-size != ''">
<xsl:attribute name="font-size">
<xsl:choose>
+ <xsl:when test="$font-size = 'inherit'"><xsl:value-of select="$font-size"/></xsl:when>
+ <xsl:when test="contains($font-size, '%')"><xsl:value-of select="$font-size"/></xsl:when>
<xsl:when test="ancestor::*[local-name()='note']"><xsl:value-of select="$font-size * 0.91"/>pt</xsl:when>
<xsl:otherwise><xsl:value-of select="$font-size"/>pt</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
</xsl:if>
+
+
<xsl:apply-templates/>
</fo:block>
\ No newline at end of file