Pablo Rodriguez
13. Februar 2016 um 11:55

Many thanks for your reply, Wolfgang.

I’m afraid that spaceinbetween isn’t what I need, It adds extra space to
each row, when I only need it after the table header (of before the
table body, if you prefer).
You can increase the height of the cells in the header.

\starttext

\startxtable%[frame=off]
    \startxtablehead
        \startxrow[boffset=1ex]
            \startxcell
                Head
            \stopxcell
        \stopxrow
    \stopxtablehead
    \startxtablebody
        \startxrow
            \startxcell
                One
            \stopxcell
        \stopxrow
        \startxrow
            \startxcell
                Two
            \stopxcell
        \stopxrow
    \stopxtablebody
\stopxtable

\stoptext

Wolfgang