diff options
| author | Albert Krewinkel <[email protected]> | 2022-06-21 19:22:34 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-06-21 10:22:34 -0700 |
| commit | f49bee5c31bf7c9eff0156374d66d8c1eae60334 (patch) | |
| tree | b3ed4a32491874f57c399ceca766ca2b613273de /data | |
| parent | ab712246f06e35478372c6ce624eb79d0c76a155 (diff) | |
ConTeXt writer: support complex table structures. (#8116)
The following table feature are now supported in ConTeXt:
- colspans,
- rowspans,
- multiple bodies,
- row headers, and
- multi-row table head and foot.
The wrapping `placetable` environment is also given a `reference` option
with the table identifier, enabling referencing of the table from within
the document.
Diffstat (limited to 'data')
| -rw-r--r-- | data/templates/default.context | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/data/templates/default.context b/data/templates/default.context index 78055daed..c7aca89cb 100644 --- a/data/templates/default.context +++ b/data/templates/default.context @@ -109,9 +109,10 @@ $endif$ \setupfloat[table][default={here,nonumber}] \setupxtable[frame=off] -\setupxtable[head][topframe=on,bottomframe=on] +\setupxtable[head][topframe=on] \setupxtable[body][] -\setupxtable[foot][bottomframe=on] +\setupxtable[foot][] +\setupxtable[lastrow][bottomframe=on] $if(csl-refs)$ \definemeasure[cslhangindent][1.5em] |
