Re: [docbook-apps] Spanning tables/figures over two column layout

From
maria jones <>
Date
2004-08-11T13:08:14+00:00
ID
Thread
Re: [docbook-apps] Spanning tables/figures over two column layout
On Wednesday 11 August 2004 02:43, Pool 475-1 FRD TE-N wrote:
> Hi,
>
> Is there a way to define tables and figures spanning over two columns.
>
> Best regards,
> Bjoern

The COLSPAN attribute should work for you. As in the following snippett, you 
will notice that the TD element utilizes this attribute. Thusly, it should 
then span two columns ---- which it does.
<code>
					<TD COLSPAN="2" CLASS="main">
                    <xsl:apply-templates select="child::*[name(.) != 
'webpage']" />
                    <xsl:call-template name="process.footnotes" />
                    <BR />
                    </TD>
</code>