summaryrefslogtreecommitdiff
path: root/macros/latex209/contrib/loggates/makefont
blob: 9d0100083dc4cb9d5bfdebdfcfb23d5aece1b0b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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