Hello,

I try to print a line using svg:line. After svg:line is printed, there
is some space printed under the table that contains line. My code looks
like below:

<fo:table table-layout="fixed" border-spacing="0mm" border="none"
space-before.maximum="0mm" space-after.maximum="0mm">
   <fo:table-column column-width="190mm"/>
   <fo:table-body>
      <fo:table-row>
         <fo:table-cell padding-before="0mm" padding-after="0mm"
padding-start="0mm" padding-end="0mm">
            <fo:block wrap-option="no-wrap" space-before.maximum="0mm"
space-after.maximum="0mm" keep-with-previous="always">
               <fo:instream-foreign-object space-before.maximum="0mm"
space-after.maximum="0mm">
                  <svg:svg width="190mm" height="1.5mm"
xml:preserve="true">
                     <svg:line x1="0mm" y1="0" x2="190mm" y2="0"
stroke-width="1.5mm" stroke="black"/>
                  </svg:svg>
                </fo:instream-foreign-object>
            </fo:block>
         </fo:table-cell>
      </fo:table-row>
   </fo:table-body>
</fo:table>

<fo:table table-layout="fixed" border-spacing="0mm" border="none"
space-before="0mm" space-after="0mm">
   <fo:table-column column-width="190mm"/>
   <fo:table-body>
   <fo:table-row>
      <fo:table-cell padding-before="0mm" padding-after="0mm"
padding-start="0mm" padding-end="0mm">
        ABC
      </fo:table-cell>
   </fo:table-row>
   </fo:table:body>
</fo:table>
   
I'm using FOP 0.20.5 and Batik 1.5beta4.
How can I clear away the space between two tables?

BR,
tuna


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

Reply via email to