fjh: Anfänger und die W3C Doku

Beitrag lesen

Hallo Jan,

Wenn ich als W3C-Beispiel ein

<xsl:template match="document">
  fo:block
    <fo:initial-property-set font-variant="small-caps"/>
    xsl:apply-templates/
  </fo:block>
</xsl:template>

angeboten bekomme hab ich bisher keine Ahnung wie ich diese tollen fo-Tags umsetzen soll.

Dazu benötigst du einen XSL-FO-Prozessor (bzw. Formatter):
Klassisch: FOP von der XML-apache-Group unter http://xml.apache.org/fop. Der IE kann das noch nicht (falls du es mit dem probiert hast)
Ein grafischer XSL-FO-Formatter ist dieser hier
http://www.antennahouse.com/xslformatter.html

<xsl:template match="document">
<H1><xsl:value-of select="//title"/></H1>
</xsl:template>
</xsl:stylesheet>

Gruß
Franz