home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / unixtex-6.1b-src.tgz / tar.out / contrib / unixtex / texmf / fonts / public / cm / src / readme < prev    next >
Text File  |  1996-09-28  |  440b  |  19 lines

  1. If you want a Makefile to generate bitmap fonts in advance, instead of
  2. generating them on the fly with MakeTeXPK, take a look at Makefile.gf in
  3. this directory.
  4.  
  5. Or you can try the following minimal shell script:
  6.  
  7. #!/bin/sh
  8. if test $# -eq 0; then
  9.   files=`echo *[0123456789].mf`
  10. else
  11.   files="$*"
  12. fi
  13. for f in $files; do
  14.   echo $f...
  15.   mf '\mode:=ljfour; input '$f
  16.   gf_file=`basename $f .mf`.600gf
  17.   test -r $gf_file && gftopk $gf_file
  18. done
  19.