> I need white space between fields, how do I do that?
...
>     <xsl:value-of select="city" />, <!--I NEED A WHITE SPACE HERE-->
>     <xsl:value-of select="state" /> <!--I NEED WHITE SPACE

The canonical solution is to use xsl:text
     <xsl:value-of select="city" />
     <xsl:text>, </xsl:text>
     <xsl:value-of select="state" />
     <xsl:text> </xsl:text>
     <xsl:value-of select="zipcode" />

This is actually a XSLT questio, not directly related to FOP.
Read the XSLT spec http://www.w3.org/TR/xslt or any of the good
books for more about whitespace handling during an XSL transformation.
XSLFO has some specialities as well.

HTH
J.Pietschmann

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to