1TFMTODIT(1)                 General Commands Manual                TFMTODIT(1)
2
3
4

NAME

6       tfmtodit - create font files for use with groff -Tdvi
7

SYNOPSIS

9       tfmtodit [ -sv ] [ -ggf_file ] [ -kskewchar ] tfm_file map_file font
10
11       It is possible to have whitespace between a command line option and its
12       parameter.
13

DESCRIPTION

15       tfmtodit creates a font file for use with groff -Tdvi.  tfm_file is the
16       name of the TeX font metric file for the font.  map_file is a file giv‐
17       ing the groff names for characters in the font; this file  should  con‐
18       sist of a sequence of lines of the form:
19
20              n c1 c2 ...
21
22       where  n  is  a decimal integer giving the position of the character in
23       the font, and c1, c2,...  are the groff names of the character.   If  a
24       character  has  no groff names but exists in the tfm file, then it will
25       be put in the groff font file as an unnamed  character.   font  is  the
26       name of the groff font file.  The groff font file is written to font.
27
28       The -s option should be given if the font is special (a font is special
29       if troff should search it whenever a character is not found in the cur‐
30       rent  font.)   If the font is special, it should be listed in the fonts
31       command in the DESC file; if it is not special, there  is  no  need  to
32       list it, since troff can automatically mount it when it's first used.
33
34       To do a good job of math typesetting, groff requires font metric infor‐
35       mation not present in the tfm file.  The reason for this  is  that  TeX
36       has  separate  math italic fonts whereas groff uses normal italic fonts
37       for math.  The additional information required by groff is given by the
38       two  arguments  to  the math_fit macro in the Metafont programs for the
39       Computer Modern fonts.  In a text font (a font for  which  math_fitting
40       is false), Metafont normally ignores these two arguments.  Metafont can
41       be made to put this information in the gf file by loading the following
42       definition after cmbase when creating cm.base:
43
44              def ignore_math_fit(expr left_adjustment,right_adjustment) =
45                  special "adjustment";
46                  numspecial left_adjustment*16/designsize;
47                  numspecial right_adjustment*16/designsize;
48                  enddef;
49
50       For  the EC font family, load the following definition after exbase (it
51       is probably easiest to patch exbase.mf locally):
52
53              def ignore_math_fit(expr left_adjustment,right_adjustment) =
54                  ori_special "adjustment";
55                  ori_numspecial left_adjustment*16/designsize;
56                  ori_numspecial right_adjustment*16/designsize;
57                  enddef;
58
59       The gf file created using this modified cm.base  or  exbase  should  be
60       specified  with the -g option.  The -g option should not be given for a
61       font for which math_fitting is true.
62

OPTIONS

64       -v     Print the version number.
65
66       -s     The font is special.  The effect of this option is  to  add  the
67              special command to the font file.
68
69       -kn    The  skewchar  of  this  font  is at position n.  n should be an
70              integer; it may be given in decimal, or  with  a  leading  0  in
71              octal,  or with a leading 0x in hexadecimal.  The effect of this
72              option is to ignore any kerns  whose  second  component  is  the
73              specified character.
74
75       -ggf_file
76              gf_file is a gf file produced by Metafont containing special and
77              numspecial commands giving additional font metric information.
78

FILES

80       /usr/share/groff/1.20.1/font/devdvi/DESC
81              Device description file.
82
83       /usr/share/groff/1.20.1/font/devdvi/F
84              Font description file for font F.
85

SEE ALSO

87       groff(1), grodvi(1), groff_font(5)
88
89
90
91Groff Version 1.20.1            9 January 2009                     TFMTODIT(1)
Impressum