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

DESCRIPTION

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

OPTIONS

61       It is possible to have whitespace between a command line option and its
62       parameter.
63
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.22.2/font/devdvi/DESC
81              Device description file.
82
83       /usr/share/groff/1.22.2/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.22.2            7 February 2013                    TFMTODIT(1)
Impressum