groff_font
GNU roff device and font description files
- Provided by: groff (Version: 1.24.1-1)
- Report a bug
GNU roff device and font description files
The groff font and output device description formats are slight extensions of those used by AT&T device-independent troff. In distinction to the AT&T implementation, groff lacks a binary format; all files are text files. (Plan 9 troff has also abandoned the binary format.) The device and font description files for a device name are stored in a devname directory. The device description file is called DESC, and, for each font supported by the device, a font description file is called f, where f is usually an abbreviation of a font's name and/or style. For example, the ps (PostScript) device has groff font description files for Times roman (TR) and Zapf Chancery Medium italic (ZCMI), among many others, while the utf8 device (for terminals) has font descriptions for the roman, italic, bold, and bold-italic styles (R, I, B, and BI, respectively).
Device and font description files are read by the formatter, troff, and by output drivers. The programs typically delegate these files' processing to an internal library, libgroff, ensuring their consistent interpretation.
The DESC file contains a series of directives; each begins a line. Their order is not important, with two exceptions: (1) the res directive must precede any papersize directive; and (2) the charset directive must come last (if at all). If a directive name is repeated, later entries in the file override previous ones (except that the paper dimensions are computed based on the res directive last seen when papersize is encountered). Spaces and/or tabs separate words and are ignored at line boundaries. Comments start with the “#” character and extend to the end of a line. Empty lines are ignored.
troff recognizes but ignores the directives spare1, spare2, and biggestfont.
The res, unitwidth, fonts, and sizes lines are mandatory. Directives not listed above are ignored by troff but may be used by postprocessors to obtain further information about the device.
On typesetting output devices, each font is typically available at multiple sizes. While paper measurements in the device description file are in absolute units, measurements applicable to fonts must be proportional to the type size. The font's unit width establishes a numerical basis that permits all of its metrics to be expressed as integers if rendered at one point. When the formatter configures a type size, it scales the metrics linearly relative to that basis. The unit width has no inherent relationship to the device resolution, and the same division procedure applies to all font metrics. Observe that whatever unit might one select for the unit width, the division operation implied by scaling cancels it out, leaving a dimensionless quantity.
For instance, groff's lbp device uses a unitwidth directive with an argument of 800. Its Times roman font TR has a spacewidth of 833; this is also the width of its comma, period, centered period, and mathematical asterisk, while its “M” has a width of 2,963. Thus, an “M” on the lbp device is 2,963 ÷ 800 times the unit width, or approximately 3.7. At a type size of 10 points, a Times roman “M” is therefore 37 units wide.
A font description file has two sections. The first is a sequence of directives, and is parsed similarly to the DESC file described above. Except for the directive names that begin the second section, their ordering is immaterial. Later directives of the same name override earlier ones, spaces and tabs are handled in the same way, and the same comment syntax is supported. Empty lines are ignored throughout.
The directives above must appear in the first section; those below are optional.
Other directives in this section are ignored by GNU troff, but may be used by postprocessors to obtain further information about the font.
The second section contains one to three subsections, which can appear in any order, and any of which starts the second section. Each starts with a directive on a line by itself. A charset subsection is mandatory unless the associated DESC file contains the unicode directive. Another subsection, kernpairs, is optional.
The directive charset starts the character set subsection. (On typesetters, this directive is misnamed since it starts a list of glyphs, not characters.) It precedes a series of glyph descriptions, one per line. Each such glyph description comprises a set of fields separated by spaces or tabs and organized as follows.
name identifies the glyph: a printable
character c corresponds to the troff ordinary
character c, and a multi-character sequence not beginning with
\, corresponds to the GNU troff special character escape
sequence “\[name]”. A name consisting of
three minus signs, “---”, indicates that the glyph is
unnamed: such glyphs can be accessed only by the \N escape sequence
in troff. A special character named “---” can
still be defined using .char and similar requests. The name
“\-” defines the minus sign glyph. Finally, name
can be the horizontal motion escape sequences, \| and \^
(“thin” and “hair” spaces, respectively), in
which case only the width metric described below is applied; a font can thus
customize the widths of these spaces.
The form of the metrics field is as follows (on one line; it may be broken here for readability).
Spaces, tabs, and newlines are prohibited between these subfields, which are expressed as decimal integers. The unit of measure is that established by the unitwidth directive and scaled to the type size. Unspecified subfields default to 0. Since there is no associated binary format, these values are not required to fit into the C language data type char as they are in AT&T device-independent troff.
The width subfield gives the width of the glyph. The height subfield gives the height of the glyph (upward is positive); if a glyph does not extend above the baseline, give it a zero height, not a negative height. The depth subfield gives the depth of the glyph—that is, the distance below the baseline to which the glyph extends (downward is positive); if a glyph does not extend below the baseline, give it a zero depth, not a negative depth. Italic corrections apply when upright and slanted (italic or oblique) styles are typeset adjacently. The italic-correction is the amount of space to add after a slanted glyph to be followed immediately by an upright glyph. The left-italic-correction is the amount of space to add before a slanted glyph to be preceded immediately by an upright glyph. The subscript-correction is the amount of space to add after a slanted glyph to be followed by a subscript; it should be less than the italic correction.
For fonts used with typesetters, the type field gives a featural description of the glyph: it is a bit mask recording whether the glyph is an ascender, descender, both, or neither. When a \w escape sequence is interpolated, these values are bitwise or-ed together for each glyph and stored in the ct register. In font descriptions for terminals, all glyphs might have a type of zero, regardless of their appearance.
The index field is an integer that uniquely identifies a glyph within the font; any integer is accepted as input, (that is, any integer parsable by the C standard library's strtol(3) function) but no practical font employs all possible values. An index is limited to the range of the system's C language data type int. In a troff document, use the indexed character escape sequence \N to specify a glyph by index.
The entity-name field defines an identifier for the glyph that the postprocessor uses to print the troff glyph name. This field is optional; it was introduced so that the grohtml output driver could encode its character set. For example, the glyph \[Po] is represented by “£” in HTML 4.0. For efficiency, these data are now compiled directly into grohtml. grops uses the field to build sub-encoding arrays for PostScript fonts containing more than 256 glyphs.
Anything on the line after the entity-name field or “--” is ignored. When afmtodit generates font description files for gropdf(1) and grops(1), it writes the UTF-16 code for the character to the comment field.
A line in the charset section can also have the form
A charset-range subsection works like the charset directive except that the glyph descriptions use a name of the form uAAAA..uFFFF, where AAAA and FFFF are hexadecimal digit sequences; the specified metrics then apply identically to all glyphs in the designated range.
The directive kernpairs starts a list of kerning adjustments to be made to adjacent glyph pairs from this font. It contains a sequence of lines formatted as follows.
Groff: The GNU Implementation of troff, by Trent A. Fisher and Werner Lemberg, is the primary groff manual. You can browse it interactively with “info groff”.
“Troff User's Manual” by Joseph F. Ossanna, 1976 (revised by Brian W. Kernighan, 1992), AT&T Bell Laboratories Computing Science Technical Report No. 54, widely called simply “CSTR #54”, documents the language, device and font description file formats, and device-independent page description language referred to collectively in groff documentation as “AT&T troff”.
“A Typesetter-independent TROFF” by Brian W. Kernighan, 1982, AT&T Bell Laboratories Computing Science Technical Report No. 97, provides additional insights into the device and font description file formats and device-independent page description language.
groff(1), subsection “Utilities”, lists programs available for describing fonts in a variety of formats such that groff output drivers can use them.
troff(1) documents the default device and font description file search path.