OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: RE: [docbook-apps] Table and Border Columns do not Appear


>> Can you provide an example of a DocBook table that you expect to have borders but doesn't? <<

 

A horizontal border should appear over the top, bottom and inside columns (no “end caps”) of the first table:

Works for html/docbook.xsl and chunk.xsl but not fo/docbook.xsl (fop xep-4.4).

   [

        …

        …

        <!ENTITY colSpanSpecReferences     

            '<colspec colwidth="1*" align="left" colname="c1"/>

            <colspec colwidth="4*" align="left" colname="c2"/>

            <colspec colwidth="1.75*" align="left" colname="c3"/>

            <colspec colwidth="2*" align="left" colname="c4"/>

            <spanspec namest="c1" nameend="c4" spanname="c1c4"/>'

         >

        …

        …

    ]

informaltable frame="topbot" rowsep="0" colsep="1" pgwide="1">

            <tgroup cols="4"> &colSpanSpecReferences; <tbody valign="top">

                    <row>

                        <entry align="center">

                            <emphasis role="strong">Date</emphasis>

                        </entry>

                        <entry align="center">

                            <emphasis role="strong">Title</emphasis>

                        </entry>

                        <entry align="center">

                            <emphasis role="strong">Author</emphasis>

                        </entry>

                        <entry align="center">

                            <emphasis role="strong">Publisher</emphasis>

                        </entry>

                    </row>

                </tbody>

            </tgroup>

        </informaltable>

        <informaltable frame="none" rowsep="0" colsep="0" pgwide="1">

            <tgroup cols="4"> &colSpanSpecReferences; <tbody valign="top">

                    <row>

                        <entry>foo</entry>

                        <entry>foo</entry>

                        <entry>Object Management Group</entry>

                        <entry>Foo</entry>

                    </row>

                    <row>

                        <entry>20MAY1994</entry>

                        <entry>foo</entry>

                        <entry>OIT</entry>

                        <entry>Foo</entry>

                    </row>

                </tbody>

            </tgroup>

        </informaltable>



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]