Tex Font Metric Article Index for
Tex
Website Links For
Tex
 

Information About

Tex Font Metric




  Extension <code>tfm</code>
  Mime application/x-tex-tfm </code>(unofficial)<code>
  Owner Donald E Knuth
  Genre Font metric


TeX font metric, or '''TFM''', is a Font File Format used by the TeX Typesetting system. It is a font metric format, not an outline font format like TrueType , because it provides only the information necessary to typeset the font such as each character's width, height and depth. The actual Glyphs are stored elsewhere. This is not unique to TeX; Adobe's AFM files and Windows' PFM files use the same technique.

TFM files contain all of the information TeX needs to produce its device-independent ( distribution, every font's TFM file is smaller than 2kb.1


SPECIFICATION

The canonical specification of the TFM format is embedded in the Source Code of the program ''TFtoPL''.2

A TFM file is broken down into a series of four-byte Word s, which can contain data fields of various lengths. Any data fields that are more than one byte long are held in Big Endian order. (The exact same file will be generated, regardless of architecture of the computer generating it.) The six-word (24-byte) file header contains twelve unsigned 16-bit integers which describe the length of the file, the range of character codes contained in the font, and the size of each of the tables. A single TFM file describes between 0 and 256 characters, inclusive.

The body of the TFM file consists of a series of ten tables, each one except for the first laid out as an array of fixed-length fields. A 32-bit signed Fixed-point Number with 12 bits to the left of the decimal point, referred to as a fix_word, is used heavily. The first table, header, contains a checksum designed to prevent a document compiled into a DVI with one set of fonts from being printed with a different set, as well as ASCII descriptions of the character coding scheme (e.g., ASCII or TeX text) and the font family. It also contains the font's design size; all following fix_word values are interpreted as multiplication factors for this.

The next table, char_info, consists of one word per character, and contains indexes into the width, height, depth and italic correction tables. This is a device to save space, because width values, for instance, are frequently duplicated. Because height and depth values are duplicated more frequently, to fit all of these values into a single word, the indexes are limited to four bits. Because of this, there is a limit of sixteen different character heights and sixteen different character depths in any given TFM file. Also, there is a limit of sixty-four different italic corrections. There is also one more index which can point into the lig_kern table, or to information about extensible characters, depending on a two-bit tag value. Extensible characters use a series of repeated characters to construct a single large one of arbitrary size, usually large delimiters such as parentheses or brackets.

There then follow the four tables width, height, depth and italic, which contain values (in fix_char format) referred to by indexes in char_info.

Ligature s and Kerning are represented using a simple programming language consisting of fixed-length four-byte operations in the lig_kern table; it makes use of kerning values (specified as fix_words) in the kern table, which follows it.