Hi Jon,
It is indeed a bug in the stylesheet. The rowsep is supposed to be
ignored for the last row in a table because the table border generates
that bottom border. The logic has to take into account @morerows when
determining the last row. But it did not do that correctly when the row
was in thead. I'll see if I can figure out how to fix it and let you know.
--
Bob Stayton
Sagehill Enterprises
bobs@sagehill.netOn 11/23/2013 3:34 AM, Jon Leech wrote:
> <refentry xmlns="http://docbook.org/ns/docbook" version="5.0" xml:id="abs">
> <refmeta>
> <refentrytitle>abs</refentrytitle>
> </refmeta>
> <refsect1>
> <informaltable>
> <tgroup cols="3">
> <colspec/>
> <colspec/>
> <colspec/>
>
> <row>
> <entry morerows="1"> head,cell(morerows=1) </entry>
> <entry>head,cell</entry>
> <entry morerows="1"> head,cell(morerows=1)</entry>
> </row>
> <row>
>
> <entry>head,cell</entry>
> </row>
>
>
> <row>
> <entry morerows="1">cell(morerows=1)</entry>
> <entry morerows="1">cell(morerows=1)</entry>
> <entry>cell</entry>
> </row>
> <row>
>
> <entry>cell</entry>
> </row>
> <row>
> <entry>cell</entry>
> <entry>cell</entry>
> <entry>cell</entry>
> </row>
>
> </tgroup>
> </informaltable>
> </refsect1>
> </refentry>