[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Groff] Tbl - repeating column titles
From: |
Blake McBride |
Subject: |
Re: [Groff] Tbl - repeating column titles |
Date: |
Thu, 24 Sep 2015 10:28:31 -0500 |
That did it. Thanks!
Didn't know about TS with H and TH. Where is that best documented? (The
man page mentions them in the bugs section but it is incomplete.)
Thanks.
Blake
On Thu, Sep 24, 2015 at 9:12 AM, <address@hidden> wrote:
> Blake McBride <address@hidden> wrote:
>
> > I have a table that spans several pages. I would like the tbl column
> > titles to repeat at the top of each page (*independently *of the page
> > title). Can tbl do this?
>
> At least with -ms or -mm you can write something like
>
> .TS H
> box;
> cb cb cb
> l l l.
> Column 1<tab>Column 2
> .TH N
> a<tab>b
> ...
> y<tab>z
> .TE
>
> So "Column 1<tab>Column 2" should appear on each page. groff_mm(7) does
> document these macros.
>