Dear All,

I am having a dl list in which the text is more.

<duoList>
<first><italic>The Cambridge Companion to Greek Tragedy</italic></first>
<second>edited by P. E. Easterling</second>
<first><italic>The Cambridge Companion to Roman Satire</italic></first>
<second>edited by Kirk Freudenburg</second>
</duoList>

This is the code for conversion this format into list. But the problem is
when you convert to PDF the <second> text is overwriting on first one. Plus
italic is not coming. When I try to adde label-end and body-start functions
it showing an error that area is full. Can anybody tell me how to solve this
problem. One option table! any other option in the list itself.


<xsl:template match="c:duoList">
  <fo:list-block>
    <xsl:for-each select="c:first">
      <fo:list-item>
        <fo:list-item-label>
          <fo:block>
            <xsl:value-of select="c:paragraph"/>
          </fo:block>
        </fo:list-item-label>
        <fo:list-item-body>
          <fo:block>
            <xsl:value-of select="../c:second/c:paragraph"/>
          </fo:block>
        </fo:list-item-body>
      </fo:list-item>
    </xsl:for-each>
  </fo:list-block>


Regards,
Ganesh


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

Reply via email to