Stylesheet für XSL:FO
<xsl:template match="/">
<fo:root
xmlns:fo="http://www.w3.org/1999/XSL/Format">
<!-- Hier Seitenformat festlegen (fehlt!) -->
<fo:page-sequence master-name="all">
<fo:static-content
flow-name="xsl-region-after"/>
<fo:flow flow-name="xsl-region-body">
<fo:block font-size="36pt"
space-before.optimum="24pt"
text-align="center">Seminare</fo:block>
<xsl:apply-templates/>
</fo:flow>
</fo:page-sequence>
</fo:root>
</xsl:template>
<xsl:template match="seminar">
<fo:block font-size="12pt"
space-before.optimum="12pt"
text-align="left">
<xsl:value-of
select="name"/></fo:block>
</xsl:template>
...