GROFF_HDTBL
Section: Environments, Tables, and Troff Macros (7)
Updated: 4 November 2014
Page Index
NAME
groff_hdtbl - groff `hdtbl' macros for generation of tables
DESCRIPTION
The
hdtbl
macros consist of four base and three optional macros, controlled by about
twenty arguments.
The syntax is simple and similar to the
HTML
table model and nearly as flexible: You can write sequences of tokens (macro
calls with their arguments and content data), separated by blanks and
beginning with a macro call, into the same line to get compact and cleanly
arrranged input.
An advantage of
hdtbl
is that the tables are constructed without calling a preprocessor; this
means that
groff's
full macro capabilities are available.
On the other hand, table processing with
hdtbl
is much slower than using the
tbl(1)
preprocessor.
A further advantage is that the HTML-like syntax of
hdtbl
will be easily converted to HTML; this is not implemented yet.
USAGE
In this and the next section, we present examples to help users
understand the basic workflow of
hdtbl.
First of all, you must load the
hdtbl.tmac
file.
As with nearly all other groff macro packages, there are two possibilities
to do so:
Either add the line
-
to your
roff
file before using any macros of the
hdtbl
package, or add the option
-
to the command line of groff (before the document file which contains
hdtbl
macros).
Then you can include on or more tables in your document, where each one
must be started and ended with the
and
macros, respectively.
In this man page, we approximate the result of each example in the
tty
format to be as generic as possible since
hdtbl
currently only supports the PS and PDF output devices.
The simplest well-formed table consists of just single calls to the
four base table macros in the right order.
Here we construct a table with only one cell.
-
A
tty
representation is
- +------------------------------------------------------+
| contents-of-the-table-cell |
+------------------------------------------------------+
Equivalent to the above is the following notation.
-
By default, the formatted table is inserted into the surrounding text
at the place of its definition.
If the vertical space isn't sufficient, it is placed at the top of
the next page.
Tables can also be stored for later insertion.
Using
as the data for the table cells, a table with two rows and two columns
can be written as
-
A
tty
representation is
- +--------------------------+---------------------------+
| 1*1 | 1*2 |
+--------------------------+---------------------------+
| 2*1 | 2*2 |
+--------------------------+---------------------------+
Here we see a difference to HTML tables: The number of columns must be
explicitly specified using the
argument (or indirectly via the
argument, see below).
The contents of a table cell is arbitrary; for example, it can be another
table, without restriction to the nesting depth.
A given table layout can be either constructed with suitably nested tables
or with proper arguments to
and
, controlling column and row spanning.
Note, however, that this table
-
and this table
-
are similar but not identical (the use of
is purely cosmetic to get proper indentation).
The first table looks like
- +------------------------------------------------------+
| 1*1 1*2 |
+------------------------------------------------------+
| |
| 2*1 2*2 |
| |
+------------------------------------------------------+
and the second one like
- +------------------------------------------------------+
| 1*1 1*2 |
+---------------------------+--------------------------+
| 2*1 | 2*2 |
+---------------------------+--------------------------+
Here the latter table in a more compact form.
-
If a macro has one or more arguments (see below), and it is not starting a
line, everything belonging to this macro including the macro itself must be
enclosed in double quotes.
MACROS AND ARGUMENTS
The order of macro calls and other tokens follows the HTML model.
In the following list, valid predecessors and successors of all
hdtbl
macros are given, together with the possible arguments.
Macro arguments are separated by blanks.
The order of arguments is arbitrary; they are of the form
-
or
-
with the only exception of the optional argument of the macro
, which is the string
.
Another possible form is
-
However, this is limited to the case where the macro is the first one in the
line and not already enclosed in double quotes.
Argument values specified below as~
are colors predefined by
groff
or colors defined by the user with the
request.
Argument values~
are decimal numbers with or without decimal point.
Argument values~
are natural numbers.
Argument values~
are numerical values with the usual
groff
scaling indicators.
Some of the arguments are specific to one or two macros, but most of
them can be specified with
,
,
, and
These common arguments are explained in the next subsection.
Most of the argument default values can be changed by the user by
setting corresponding default registers or strings, as listed below.
-
-
Begin a new table.
-
-
predecessor:
successor:
arguments:
-
-
- Thickness of the surrounding box border.
(no value) means neither a surrounding box border nor any horizontal or
vertical separator lines between the table rows and cells.
suppresses the surrounding box border, but still allows separator lines
between cells and rows.
Default:
-
- Border color.
Default:
-
- Number of table columns.
This argument is necessary if more than one column is in the table and no
arguments are present.
Default:
-
- Cell padding, i.e., the extra space between the cell space border and
the cell contents.
Default:
-
- Cell spacing, i.e., the extra space between the table border or
vertical or horizontal lines between cells and the cellspace.
Default:
-
- Horizontal alignment of the table, if it is smaller than the line width.
: left alignment.
: centered alignment.
: right alignment.
Default:
-
- Widths of table cells.
,
, ll are either numbers of type~
or natural numbers with the pseudo-scaling indicator
, with the meaning "percent of the actual line length (or column length
for inner tables, respectively)".
If there are less width values than table columns, the last width value is
used for the remaining cells.
The argument
-
-
-
for example indicates that the first column is 1.5~inches wide; the
remaining columns take 1/10 of the column length each.
Default:
The table width equals the outer line length or column length; the columns
have equal widths.
-
- Height of the table.
If the table with its contents is lower than~
, the last row is stretched to this value.
-
-
Text of caption.
-
The (optionally numbered) table caption.
is optional.
-
-
predecessor:
successor:
arguments:
-
-
- Vertical alignment of the table caption.
: The caption is placed above the table.
: The caption is placed below the table.
Default:
-
-
Begin a new table row.
-
-
predecessor:
successor:
arguments:
-
-
- The height of the row.
If a cell in the row is higher than~
this value is ignored; otherwise the row height is stretched to~
.
-
-
Begin a table data cell.
-
- Begin a table header cell.
-
Arguments and cell contents can be mixed.
The macro
is not really necessary and differs from
only in three default settings, similar to the
and
HTML tags: The contents of
is horizontally and vertically centered and typeset in boldface.
-
-
predecessor:
successor:
arguments:
-
-
- The width of this cell is the sum of the widths of the~
cells above and below this row.
-
- The height of this cell is the sum of the heights of the
cells left and right of this column.
-
Remark:
Overlapping of column and row spanning, as in the following table fragment
(the overlapping happens in the second cell in the second row), is invalid
and causes incorrect results.
-
-
A working example for headers and cells with
colspan
is
-
This looks like
-
+------------------------------+---------------+
| header1+2 | header3 |
+--------------+---------------+---------------+
| 1*1 | 1*2 | 1*3 |
+--------------+---------------+---------------+
| 2*1 | 2*2+3 |
+--------------+-------------------------------+
A working example with
rowspan
is
-
which looks like
-
+--------------+---------------+---------------+
| 1*1 | 1+2*2 | 1*3 |
+--------------+ +---------------+
| 2*1 | | 2*3 |
+--------------+---------------+---------------+
-
-
End of the table.
-
This macro finishes a table.
It causes one of the following actions.
-
- •
-
If the argument
is given, the table is held until it is freed by calling the macro
, which in turn prints the table immediately, either at the current position
or at the top of the next page if its height is larger than the remaining
space on the page.
- •
-
Otherwise, if the table is higher than the remaining space on the page,
it is printed at the top of the next page.
- •
-
If none of the two above constraints hold, the table is printed immediately
at the place of its definition.
-
-
predecessor:
successor:
arguments:
-
-
- Prevent the table from being printed until it is freed by calling the
macro
.
This argument is ignored for inner (nested) tables.
-
-
Free the next held table or
~held tables.
Call this utility macro to print tables which are held by using the
argument of the
macro.
Arguments common to .TBL, .TR, .TD, and .TH
The arguments described in this section can be specified with the
and
macros, but they are eventually passed on to the table cells.
If omitted, the defaults take place, which the user can change by setting
the corresponding default registers or strings, as documented below.
Setting an argument with the
macro has the same effect as setting it for all rows in the table.
Setting an argument with a
macro has the same effect as setting it for all the
or
macro in this row.
-
-
- The background color of the table cells.
This includes the area specified with the
argument.
The argument
(no value) suppresses a background color; this makes the background
transparent.
Default:
-
- The foreground color of the cell contents.
Default:
-
- The font family for the table.
is one of the groff font families, for example
for the AvantGarde fonts or
for Helvetica-Narrow.
Default:
The font family found before the table (string
).
-
- The font style for the table.
One of
,
,
, or
for roman,
bold,
italic,
or bold italic, respectively.
As with
roff's
request the
argument can be used to specify the font family and font style together, for
example
instead of
and
.
Default:
The font style in use right before the table (string
).
-
- A decimal or fractional factor
, by which the point size for the table is changed, and
, by which the vertical line spacing is changed.
If
is omitted, value
is taken for both.
Default:
-
- Horizontal alignment of the cell contents in the table.
: left alignment.
: centered alignment.
: both (left and right) alignment.
: right alignment.
Default:
-
- Vertical alignment of the cell contents in the table for cells lower
than the current row.
: alignment below the top of the cell.
: alignment in the middle of the cell.
: alignment above the cell bottom.
Default:
-
- Horizontal line between the rows.
If specified with
or
this is a separator line to the cell below.
(no value): no separator line.
: a single separator line between the rows.
: a double separator line.
-
The thickness of the separator lines is the half of the border thickness,
but at least 0.1~inches.
The distance between the double lines is equal to the line thickness.
-
Remark:
Together with
for proper formatting the value of
must be at least .05~inches for single separator lines and .15~inches for
double separator lines.
Default:
-
- Vertical separator line between the cells.
If specified with
or
this is a separator line to the cell on the right.
: a single separator line between the cells.
: a double separator line.
(no value): no vertical cell separator lines.
For more information see the documentation of the
argument above.
Default:
HDTBL CUSTOMIZATION
Before creating the first table, you should configure default values
to minimize the markup needed in each table.
The following example sets up defaults suitable for typical papers:
-
The file
examples/common.roff
provides another example setup
in the ``minimal Page setup'' section.
A table which does not fit on a partially filled page is printed
automatically on the top of the next page if you append the little
utility macro
to the page header macro of your document's main macro package.
For example, say
-
if you use the
ms
macro package.
The macro
checks for held or kept tables,
and for missing
macros (table not closed).
You can append this macro
to the ``end'' macro of your document's main macro package.
For example:
-
If you use the
ms
macro package.
BUGS AND SUGGESTIONS
Please send your commments to the
groff mailing list
or directly to the author.
COPYING
Copyright © 2005-2014 Free Software Foundation, Inc.
This file is part of groff, the groff.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with the
Invariant Sections being this .ig-section and AUTHORS, with no
Front-Cover Texts, and with no Back-Cover Texts.
A copy of the Free Documentation License is included as a file called
FDL in the main directory of the groff source package.
AUTHORS
This document was written by
Joachim Walsdorff