DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦46d77ef19⟧ TextFile

    Length: 306 (0x132)
    Types: TextFile
    Names: »TF_to_PL«

Derivation

└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./amsfonts/TF_to_PL« 

TextFile

#!/bin/csh
# This file is MF79.gf300
# Convert all the pk300 fonts to gf format
# This file selects the AMS m-series fonts.
set verbose
set tfmnames=/src/tex/amsfonts/tfm
foreach f (`find $tfmnames -name 'm*tfm' -print` )
  set g=`echo $f:t`
  echo $g
  set h=`echo $g:r`
  echo $h
  tftopl $f ./$h.pl
end