This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Print backend: problems with table layouts


Hi,

On order to produce a list of reference like

0001 Title 1
     21/08/2000 The Company 1

0002 Title 2
     21/07/2001 The Company 2


... I wrote the following docbook statements:


<informaltable frame="none">
  <tgroup cols="3">
    <colspec colnum="1" colname="c1" colwidth="1*"/>
    <colspec colnum="2" colname="c2" colwidth="2*"/>
    <colspec colnum="3" colname="c3" colwidth="7*"/>

    <tbody>
      <row id="ref0001">
        <entry morerows="1" valign="top">0001</entry>
        <entry namest="c2" nameend="c3" valign="top">Title 1</entry>
      </row>
      <row>
        <entry colname="c2" valign="top">21/08/2000</entry>
        <entry colname="c3" valign="top">The Company 1</entry>
      </row>

      <row id="ref0002">
        <entry morerows="1" valign="top">0002</entry>
        <entry namest="c2" nameend="c3" valign="top">Title 2</entry>
      </row>
      <row>
        <entry colname="c2" valign="top">21/08/2001</entry>
        <entry colname="c3" valign="top">The Company 2</entry>
      </row>
    </tbody>
  <tgroup>
</informaltalbe>

Unfortunately, with the print backend, I don't get the expected result
shown before. Instead, I get something like this:

0001 Title 1

   21/08/2000 The Company 1
0002 Title 2
   21/07/2001 The Company 2
 
How can I solve the problem?

Thanks,
Giuseppe


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]