Next / Previous / Contents / TCC Help System / NM Tech homepage

8.5.2. The inline.smallcaps template

The next template was supposed to be for a caps-and-small-caps font, but this template is not used currently because we couldn't find an appropriate, decent-looking public-domain font.

<xsl:template name="inline.smallcaps">
  <xsl:param name="content">
    <xsl:apply-templates/>
  </xsl:param>
  <fo:inline font-variant="small-caps">
    <xsl:copy-of select="$content"/>
  </fo:inline>
</xsl:template>