Olá!
A tag fo:block não está funcionando no meu XSL. O texto é impresso sem qualquer formatação. Falta algo?
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version = "1.0" xmlns:xsl = "http://www.w3.org/1999/XSL/Transform"
xmlns:fo = "http://www.w3.org/1999/XSL/Format">
<xsl:output method = "html" omit-xml-declaration = "no"
doctype-system = "www.w3c.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
doctype-public = "-//W3C//DTD XHTML 1.0 Strict//EN"/>
<fo:block font-size="14pt" font-family="verdana" color="red"
space-before="5mm" space-after="5mm">W3Schools</fo:block>
<fo:block text-indent="5mm" font-family="verdana" font-size="12pt"
space-before="5mm" space-after="5mm">
At W3Schools you will find all the Web-building tutorials you
need, from basic HTML and XHTML to advanced XML, XSL, Multimedia
and WAP.
</fo:block>
</xsl:stylesheet>