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]

[docbook-apps] Nested table: separator problem


Hi,

another question: why does my table (FO output) in the example below look
like this (although I set colsep's for the inner table to 0)? If I set
colsep on tgroup to 0, it works. Does anybody have an explanation for this?

----------------------------
|                          |
| test   | test     test   |
|                          |
----------------------------


Greetings,
Bjoern

Example:

<informaltable>
  <tgroup cols="1">
    <colspec colname="col1"/>
    <tbody>
      <row>
        <entry>
          <para>
            <informaltable frame="none">
              <tgroup cols="3">
                <colspec colname="col1" colsep="0"/>
                <colspec colname="col2" colsep="0"/>
                <colspec colname="col3" colsep="0"/>
                <tbody>
                  <row>
                    <entry>test</entry>
                    <entry>test</entry>
                    <entry>test</entry>
                  </row>
                </tbody>
              </tgroup>
            </informaltable>
          </para>
        </entry>
      </row>
    </tbody>
  </tgroup>
</informaltable>


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