Hi,

Can you confirm the role of the <entrytbl> @rowsep. AFAIK, its role is the same than for a normal <entry>, that is: if entrytbl/@rowsep=0, the cell will not have a rule below itself, whatever the tgroup/@rowsep or row/@rowsep value is. in brief, the entrytbl/@rowsep has precedence over al the enclosing elements @rowsep. Am I right?

Just to be sure: if you have the XML:

<table frame="all">
  <title>Test table with sub-tables and screen elements</title>
  <tgroup cols="1" align="left" colsep="1" rowsep="1" >
     <colspec colsep="1" rowsep="1" />
     <tbody>
           <row>
             <entrytbl cols="2" rowsep="0">
                <!-- ... -->
             </entrytbl>
           </row>
           <row>
             <entrytbl cols="2" rowsep="0">
                <!-- ... -->
             </entrytbl>
           </row>
      </tbody>
   </tgroup>
<table>

Do you confirm it should give:

  -------------
  | subtable1 |
  |           |
  | subtable2 |
  |           |
  | .......   |
  |           |
  | subtableN |
  -------------

Another question about the entrytbl/@rowsep role: is it inherited by the contained rows? For instance, if entrytbl/@rowsep=0, do the rows without @rowsep in the entrytbl have no rule below them?

Example:

<table frame="all">
  <title>Test table with sub-tables and screen elements</title>
  <tgroup cols="1" align="left" colsep="1" rowsep="1" >
     <colspec colsep="1" rowsep="1" />
     <tbody>
           <row>
             <entrytbl cols="2" rowsep="0">
                <tbody>
                  <row> ... </row> <!-- no rule below -->
                  <row> ... </row> <!-- no rule below -->
                  <row> ... </row> <!-- no rule below -->
                </tbody>
             </entrytbl>
           </row>
           <row>
             <entrytbl cols="2" rowsep="1">
                <tbody>
                  <row> ... </row> <!-- rule below -->
                  <row rowsep="0"> ... </row> <!-- no rule below -->
                  <row> ... </row> <!-- rule below -->
                </tbody>
             </entrytbl>
           </row>
      </tbody>
   </tgroup>
<table>

Thanks for your help.

Regards,
BG

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to