Table column widths in CALS tables can be controlled by setting a colwidth
attribute in a colspec
element for each column inside the tgroup
element. You also assign each column a number (colnum
attribute) and an optional name (colname
attribute). The name can be used in other specifications in the table, such as spans. It is recommended that you provide colspec
elements for each column to make it easier for the processor to format the table.
The DocBook XSL stylesheets provide XSL extension functions to assist in the adjustment of table columns. These extension functions are only available for the Saxon and Xalan processors. They are enabled by setting both the use.extensions
parameter and the tablecolumns.extension
parameter to 1. If you turn on these
parameters for
other processors, then the process will halt with an error message at
the first
table.
For HTML output, the extension functions are required if you want to manually set column widths with the colwidth
attribute. That is because CALS tables permit widths to be specified in ways that cannot be translated by XSLT to HTML table values. The result of this requirement is if the two parameters are not set, then any colwidth
attributes are ignored. In general, the table columns extension is more important for
HTML output than FO output, since the major XSL-FO processors handle
table column widths without it. If you use these extensions,
don't forget to include the extensions jar file in your Java CLASSPATH.
Here is an example for a four column table:
<table><title>My table</title>
<tgroup cols="4" >
<colspec colnum="1" colname="col1" colwidth="1*"/>
<colspec colnum="2" colname="col2" colwidth="2*"/>
<colspec colnum="3" colname="col3" colwidth="1.5*"/>
<colspec colnum="4" colname="col4" colwidth="1*"/>
<thead>
...
Here is how you specify column width values:
| ||
--DocBook: The Definitive Guide |
In this example, the first and fourth columns have the same proportion, the second column is twice as wide, and third is 1.5 times as wide. The widths could also have been specified with measurement units, but then they don't adjust to the overall table width.
DocBook XSL: The Complete Guide - 3rd Edition | PDF version available | Copyright © 2002-2005 Sagehill Enterprises |