TBL(1) | General Commands Manual | TBL(1) |
tbl - format tables for troff
tbl [ -Cv ] [ files... ]
This manual page describes the GNU version of tbl, which is part of the groff document formatting system. tbl compiles descriptions of tables embedded within troff input files into commands that are understood by troff. Normally, it should be invoked using the -t option of groff. It is highly compatible with Unix tbl. The output generated by GNU tbl cannot be processed with Unix troff; it must be processed with GNU troff. If no files are given on the command line, the standard input will be read. A filename of - will cause the standard input to be read.
tbl expects to find table descriptions wrapped in the .TS (table start) and .TE (table end) macros. The line immediately following the .TS macro may contain any of the following global options (ignoring the case of characters -- Unix tbl only accepts options with all characters lowercase or all characters uppercase):
The global options must end with a semicolon. There might be whitespace after an option and its argument in parentheses.
After global options come lines describing the format of each line of the table. Each such format line describes one line of the table itself, except that the last format line (which you must end with a period) describes all remaining lines of the table. A single key character describes each column of each line of the table. You may run format specs for multiple lines together on the same line by separating them with commas.
You may follow each key character with specifiers that determine the font and point size of the corresponding item, that determine column width, inter-column spacing, etc.
The longest format line defines the number of columns in the table; missing format descriptors at the end of format lines are assumed to be `L'. Extra columns in the data (which have no corresponding format entry) are ignored.
The available key characters are:
A vertical bar to the left of the first key-letter or to the right of the last one produces a line at the edge of the table.
Here are the specifiers that can appear in suffixes to column key letters:
A number suffix on a key character is interpreted as a column separation in ens (multiplied in proportion if the expand option is on). Default separation is 3n.
The format lines are followed by lines containing the actual data for the table, followed finally by .TE. Within such data lines, items are normally separated by tab characters (or the character specified with the tab option). Long input lines can be broken across multiple lines if the last character on the line is `\' (which vanishes after concatenation).
A dot starting a line, followed by anything but a digit is handled as a troff command, passed through without changes. The table position is unchanged in this case.
If a data line consists of only `_' or `=', a single or double line, respectively, is drawn across the table at that point; if a single item in a data line consists of only `_' or `=', then that item is replaced by a single or double line, joining its neighbours. If a data item consists only of `\_' or `\=', a single or double line, respectively, is drawn across the field at that point which does not join its neighbours.
A data item consisting only of `\Rx' (`x' any character) is replaced by repetitions of character `x' as wide as the column (not joining its neighbours).
A data item consisting only of `\^' indicates that the field immediately above spans downward over this row.
A text block can be used to enter data as a single entry which would be too long as a simple string between tabs. It is started with `T{' and closed with `T}'. The former must end a line, and the latter must start a line, probably followed by other data columns (separated with tabs). By default, the text block is formatted with the settings which were active before entering the table, possibly overridden by the v and w tbl specifiers. For example, to make all text blocks ragged-right, insert .na right before the starting .TS (and .ad after the table).
To change the data format within a table, use the .T& command (at the start of a line). It is followed by format and data lines (but no global options) similar to the .TS request.
tbl(1) should always be called before eqn(1) (groff(1) automatically takes care of the correct order of preprocessors).
There is no limit on the number of columns in a table, nor any limit on the number of text blocks. All the lines of a table are considered in deciding column widths, not just the first 200. Table continuation (.T&) lines are not restricted to the first 200 lines.
Numeric and alphabetic items may appear in the same column.
Numeric and alphabetic items may span horizontally.
tbl uses register, string, macro and diversion names beginning with the digit 3. When using tbl you should avoid using any names beginning with a 3.
You should use .TS H/.TH in conjunction with a supporting macro package for all multi-page boxed tables. If there is no header that you wish to appear at the top of each page of the table, place the .TH line immediately after the format section. Do not enclose a multi-page table within keep/release macros, or divert it in any other way.
A text block within a table must be able to fit on one page.
The bp request cannot be used to force a page-break in a multi-page table. Instead, define BP as follows
and use BP instead of bp.
Using \a directly in a table to get leaders will not work (except in compatibility mode). This is correct behaviour: \a is an uninterpreted leader. To get leaders use a real leader, either by using a control A or like this:
.ds a \a .TS tab(;); lw(1i) l. A\*a;B .TE
Lesk, M.E.: "TBL -- A Program to Format Tables". For copyright reasons it cannot be included in the groff distribution, but copies can be found with a title search on the World Wide Web.
groff(1), troff(1)
September 4, 2005 | Groff Version 1.19.2 |