
git-svn-id: https://mathjax.svn.sourceforge.net/svnroot/mathjax/trunk@546 b8fd5906-0fad-46e2-a0d3-10d94ff285d1
12 lines
233 B
Tcsh
Executable File
12 lines
233 B
Tcsh
Executable File
#! /bin/csh -f
|
|
|
|
# Creates .afm files from the STIX .otf fonts
|
|
#
|
|
# Usage: ./makeAFM
|
|
|
|
foreach file (~/Library/Fonts/STIX*.*tf)
|
|
echo ""
|
|
echo $file:t
|
|
fontforge -lang=ff -c 'Open("'$file'");Generate("afm/'$file:t:r'.afm")'
|
|
end
|