I'm trying to put some tabulations between some elements in this XSL-FO stylesheet. The problem is that even if I set white-space-collapse to false and white-space-treatment to preserve they still collapse into a single space.
I'm using XSL-FO stylesheets to turn some XML info into a formatted PDF. I'm using FOP 1.1 for Java.
Here is the code:
<fo:block white-space-collapse="false" white-space-treatment="preserve"
white-space="pre" wrap-option="no-wrap" linefeed-treatment="preserve">
<xsl:value-of select="VARIOS/LOC1"/> <xsl:text>	</xsl:text>
<xsl:value-of select="VARIOS/LOC2"/> <xsl:text>	</xsl:text>
<xsl:value-of select="VARIOS/LOC3"/> <xsl:text>	</xsl:text>
<xsl:value-of select="VARIOS/LOC4"/>
</fo:block>
Thanks in advice! Have a nice code!