Difference between revisions of "TeXfont - Old Content"

From Wiki
Jump to navigation Jump to search
(extra option, and option 2 can be shortcutted)
(Hint about overlong AFM lines)
Line 21: Line 21:
  
 
After you have done this to all the <tt>.afm</tt> files, <tt>afm2tfm</tt> should work and texfont should complete successfully.
 
After you have done this to all the <tt>.afm</tt> files, <tt>afm2tfm</tt> should work and texfont should complete successfully.
 +
 +
== texfont fails on overlong AFM lines ==
 +
 +
afm2tfm chokes on lines in AFM files that are longer than 256 characters; these shouldn't occur, but e.g. Linotype's lawyers forced endless copyright notices in their AFM files.
 +
Just delete the lines starting with <tt>Comment Copyright</tt>, and you're done.
 +
(Maybe newer versions of afm2tfm fix this also.)

Revision as of 11:55, 3 August 2005

texfont fails with syntax error

(Tested on: TeXFont version 2.2.1; afm2tfm version 8.1 (dvips(k) 5.94b); Windows XP)

If you are installing a Type 1 font (.pfb and .afm files) using texfont, and you come up against an error message like this:

; expected: ! syntax error
CC Aacute 2; PCC A 0 0; PCC acute 182 150;

                 ^

then you have probably run into a bug in your version of afm2tfm, which is a program called by the texfont script. This happened to me with Monotype's Century Gothic font family. You have 3 options:

  1. get a fixed version of afm2tfm (NB I don't know if this exists yet);
  2. edit the AFM files to work around the problem.
  3. install [afm2pl] and use texfont's --afmpl switch

To take the second option, open a copy of each .afm file in a text editor and find the section headed StartComposites. Delete this entire section, up to and including the line EndComposites

After you have done this to all the .afm files, afm2tfm should work and texfont should complete successfully.

texfont fails on overlong AFM lines

afm2tfm chokes on lines in AFM files that are longer than 256 characters; these shouldn't occur, but e.g. Linotype's lawyers forced endless copyright notices in their AFM files. Just delete the lines starting with Comment Copyright, and you're done. (Maybe newer versions of afm2tfm fix this also.)