How to match <sup>value</sup> in XSL-FO
问题 I'm using xsl-fo and trying to style xref content within a <sup> eg I want to make the 2 superscript. <sup id="FNB-0002"><xref href="#Comp_CLJONLINE_CLJ_2010_04_2/FN-0002">2</xref></sup> I am using the following code which I think should work. <xsl:template match="sup[@id='*']"> <fo:inline font-size="24pt" font-weight="bold" text-indent="2em" text-transform="uppercase" > <xsl:apply-templates/> </fo:inline> </xsl:template> But none of the styles I am applying are being recognised. I'm