shuva sinha wrote:
In pdf output below date (which is given below in xml document) line will
come. I have given fo:leader in xsl-fo for the line. But both the date & line
are not coming what is supposed to be as per xml document.

A table is a block level element. You can't use it inline without the help of an inline container, a fearture which isn't implemented yet.

It seems you could use underlining:
  <xsl:template match="date">
    <fo:wrapper text-decoration="underline">
      <xsl:apply-templates/>
    </fo:wrapper>
  </xsl:template>

J.Pietschmann


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



Reply via email to