diff options
author | Matt Dew <marcoz@osource.org> | 2012-01-16 16:24:32 -0700 |
---|---|---|
committer | Matt Dew <marcoz@osource.org> | 2012-01-16 16:24:32 -0700 |
commit | aa0f30641769968e0453a7d02f3f8e5955641336 (patch) | |
tree | 792ff6cd392dc2b09d21b6541a3c58c8e2705d77 | |
parent | 70bb9e28d37fff4ead4d0a2c672af77059765fa4 (diff) |
informaltable cleanup
On certain tables, add top and bottom borders to table header
and a bottom border to the table. This matches what those
tables in the old pdfs looked like.
the <?dbfo keep-together='always'> prevents tables from
splitting across pages. Useful for tiny tables.
Converting the colwidth to a floating point, IE, 1* -> 1.0*
cleans up these build errors:
WARNING: table-layout="fixed" and column-width unspecified =>
falling back to proportional-column-width(1)
Signed-off-by: Matt Dew <marcoz@osource.org>
-rw-r--r-- | specs/CH01.xml | 8 | ||||
-rw-r--r-- | specs/CH09.xml | 2 | ||||
-rw-r--r-- | specs/appE.xml | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/specs/CH01.xml b/specs/CH01.xml index 2f6a36f..df2f96f 100644 --- a/specs/CH01.xml +++ b/specs/CH01.xml @@ -816,16 +816,16 @@ initialize procedure, are </row> </thead> <tbody> - <row rowsep='0'> + <row> <entry>children</entry><entry>NULL</entry> </row> - <row rowsep='0'> + <row> <entry>num_children</entry><entry>0</entry> </row> - <row rowsep='0'> + <row> <entry>num_slots</entry><entry>0</entry> </row> - <row rowsep='0'> + <row> <entry>insert_position</entry><entry>Internal function to insert at end</entry> </row> </tbody> diff --git a/specs/CH09.xml b/specs/CH09.xml index 324fd2c..1f64de5 100644 --- a/specs/CH09.xml +++ b/specs/CH09.xml @@ -1323,7 +1323,7 @@ input values of representation type <informaltable frame='topbot'> <?dbfo keep-together="auto" ?> <tgroup cols='3' align='left' rowsep='0' colsep='0'> - <colspec colwidth='0.8*' colname='c1'/> + <colspec colwidth='0.7*' colname='c1'/> <colspec colwidth='1.0*' colname='c2'/> <colspec colwidth='0.6*' colname='c3'/> <thead> diff --git a/specs/appE.xml b/specs/appE.xml index fca8ca8..574cf15 100644 --- a/specs/appE.xml +++ b/specs/appE.xml @@ -701,7 +701,7 @@ class, and representation type symbolic constants. <colspec colwidth='1.0*' colname='c1'/> <colspec colwidth='1.0*' colname='c2'/> <thead> - <row rowsep='0'> + <row rowsep='1'> <entry>Symbol</entry> <entry>Definition</entry> </row> |