>
> you need an xsl as well...
>
the xml with Nikos does not knwo which font to use:
> my xsl contains explicit calls to the xml:
>

This is exactly the reason it didn't work. Thank you Spyros!

I edited name2fo.xsl. It was:

<fo:block>
            Hello, <xsl:value-of select="name"/>!
</fo:block>

and i changed it to:

<fo:block font-family="arial">
            Hello, <xsl:value-of select="name"/>!
</fo:block>

So the font family must be explicitly defined in the XSLT stylesheet too.

Finally, problem solved.

Glenn, thank you for your reply too.

Regards,
Nikos

Reply via email to