I am trying to insert a line feed after an element value is displayed in a fo:table-cell.
I have tried inserting <xsl:text> </xsl:text> but that translates into just a space in the pdf output. The line feed must come after the "SHIP_UNIT_COUNT"
<fo:block line-height="16pt" font-size="10pt">
<xsl:for-each select="SHIP_UNIT/ROW">
<xsl:value-of select="SHIP_UNIT_COUNT"/><xsl:text> </xsl:text>
</xsl:for-each>
</fo:block>
Is there some way to do this?
Thanks so much, in advance!
Linda