Linda,

If you actually need a linefeed character (
) try this:

        <xsl:value-of select="SHIP_UNIT_COUNT"/>
               <fo:inline white-space-collapse="false">
                   &#10;
               </fo:inline>

-dd
 

Linda Zammit wrote:

 

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>&#10;</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>&#10;</xsl:text>
        </xsl:for-each>
</fo:block>

Is there some way to do this?

Thanks so much, in advance!

Linda

Reply via email to