#!/bin/sh
# A quick hack to make pk files.
# Usage: makefont <fontfile>.
# Makefont will delete all gf-files in the working directory.
# This file is an example of how to generate the loggates font
# (tfm- and pk-files). Consult your local TeX-guru if you have
# problems doing this.
for MAG in 0 # 0.5 1 2 3 4 5
do
   mf "\mode=localfont; mag=magstep${MAG}; input" $1
done
for GF in *gf
do
   gftopk -v $GF
   rm $GF
done