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

⟦643a172d1⟧ TextFile

    Length: 273 (0x111)
    Types: TextFile
    Names: »PL_to_TF«

Derivation

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

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 plnames=./
foreach f (`find $plnames -name 'm*pl' -print` )
  set g=`echo $f:t`
  echo $g
  set h=`echo $g:r`
  echo $h
  pltotf $f ./$h.tfm
end