blob: ce13a4a49ef984edf29235933bdbab74f215425e [file] [log] [blame]
wkjdfc67f92004-05-16 08:07:11 +00001.TH TBL 1
2.SH NAME
3tbl \- format tables for nroff or troff
4.SH SYNOPSIS
5.B tbl
6[
7.I file ...
8]
9.SH DESCRIPTION
10.I Tbl
11is a preprocessor for formatting tables for
12.I nroff
13or
14.IR troff (1).
15The input
16.I files
17are copied to the standard output,
18except for segments of the form
19.IP
20.nf
21.B .TS
22.IB options " ;
23.IB format " .
24.I data
25.B .T&
26.IB format " .
27.I data
28\&. . .
29.B .TE
30.fi
31.LP
32which describe tables
33and are replaced by
34.I troff
35requests to lay out the tables.
36If no arguments are given,
37.I tbl
38reads the standard input.
39.PP
40The (optional)
41.I options
42line is terminated by a semicolon and contains one or more
43of
44.RS
45.TF linesize(n)
46.TP
47.B center
48center the table; default is left-adjust
49.TP
50.B expand
51make table as wide as current line length
52.TP
53.B box
54.TP
55.B doublebox
56enclose the table in a box or double box
57.TP
58.B allbox
59enclose every item in a box
60.TP
61.BI tab( x )
62use
63.I x
64to separate input items; default is tab
65.TP
66.BI linesize( n )
67set rules in
68.IR n -point
69type
70.TP
71.BI delim( xy )
72recognize
73.I x
74and
75.I y
76as
77.IR eqn (1)
78delimiters
79.PD
80.RE
81.PP
82Each line, except the last, of the obligatory
83.I format
84describes one row of the table.
85The last line describes all rows until the next
86.BR .T& ,
87where the format changes,
88or the end of the table at
89.BR .TE .
90A format is specified by key letters, one per column, either upper or lower case:
91.RS
92.TP 0
93.B L
94Left justify: the default for
95columns without format keys.
96.PD0
97.TP
98.B R
99Right justify.
100.TP
101.B C
102Center.
103.TP
104.B N
105Numeric: align at decimal point (inferred for integers) or at
106.LR \e& .
107.TP
108.B S
109Span: extend previous column across this one.
110.TP
111.B A
112Alphabetic: left-aligned within column, widest item centered, indented relative to
113.B L
114rows.
115.TP
116.B ^
117Vertical span: continue item from previous row into this row.
118.TP
119.B -
120Draw a horizontal rule in this column.
121.TP
122.B =
123Draw a double horizontal rule in this column.
124.PD
125.RE
126.PP
127Key letters may be followed by modifiers, also either case:
128.RS
129.TP \w'\fLF\fIfont\fLXX'u
130.B |
131Draw vertical rule between columns.
132.PD0
133.TP
134.B ||
135Draw a double vertical rule between columns.
136.TP
137.I n
138Gap between column is
139.I n
140ens wide.
141Default is 3.
142.TP
143.BI F font
144Use specified
145.IR font .
146.B B
147and
148.B I
149mean
150.B FB
151and
152.BR FI .
153.TP
154.B T
155Begin vertically-spanned item at top row of range; default is
156vertical centering (with
157.LR ^ ).
158.TP
159.BI P n
160Use point size
161.IR n .
162.TP
163.BI V n
164Use
165.IR n -point
166vertical spacing in text block; signed
167.I n
168means relative change.
169.TP
170.BI W( n )
171Column width as a
172.I troff
173width specification.
174Parens are optional if
175.I n
176is a simple integer.
177.TP
178.B E
179Equalize the widths of all columns marked
180.BR E .
181.PD
182.RE
183.PP
184Each line of
185.I data
186becomes one row of the table; tabs separate items.
187Lines beginning with
188.L .
189are
190.I troff
191requests.
192Certain special data items are recognized:
193.RS
194.TP 0
195.B _
196Draw a horizontal rule in this column.
197.PD0
198.TP
199.B =
200Draw a double horizontal rule in this column.
201A data line consisting of a single
202.L _
203or
204.L =
205draws the rule across the whole table.
206.TP
207.B \e_
208Draw a rule only as wide as the contents of the column.
209.TP
210.BI \eR x
211Repeat character
212.I x
213across the column.
214.TP
215.B \e^
216Span the previous item in this column down into this row.
217.TP
218.B T{
219The item is a text block to be separately formatted
220by
221.I troff
222and placed in the table.
223The block continues to the next line beginning with
224.BR T} .
225The remainder of the data line follows at that point.
226.PD
227.RE
228.PP
229When it is used in a pipeline with
230.IR eqn ,
231the
232.I tbl
233command should be first, to minimize the volume
234of data passed through
235pipes.
236.SH EXAMPLES
237.ds tb \fR<tab>\fP
238Let \*(tb
239represent a tab (which should
240be typed as a genuine tab).
241.if t .2C
242.EX
243\&.TS
244c s s
245c c s
246c c c
247l n n.
248Household Population
249Town\*(tbHouseholds
250\*(tbNumber\*(tbSize
251Bedminster\*(tb789\*(tb3.26
252Bernards Twp.\*(tb3087\*(tb3.74
253Bernardsville\*(tb2018\*(tb3.30
254\&.TE
255.if t \{\0
256\0
257\0\}
258.if n .PP
259.TS
260c s s
261c c s
262c c c
263l n n.
264Household Population
265Town Households
266 Number Size
267Bedminster 789 3.26
268Bernards Twp. 3087 3.74
269Bernardsville 2018 3.30
270.TE
271.EE
272.if t \{.sp3
273.1C\}
274.SH SOURCE
rscc3674de2005-01-11 17:37:33 +0000275.B \*9/src/cmd/tbl
wkjdfc67f92004-05-16 08:07:11 +0000276.SH SEE ALSO
277.IR troff (1),
278.IR eqn (1),
279.IR doctype (1)
280.br
281M. E. Lesk and L. L. Cherry,
282``TBL\(ema Program to Format Tables'',
283.I
284Unix Research System Programmer's Manual,
285Tenth Edition, Volume 2.