diff options
author | Karl Berry <karl@freefriends.org> | 2007-08-27 00:56:12 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2007-08-27 00:56:12 +0000 |
commit | 2634eed29f03f9adb96f535dc64ed873c7fed2a2 (patch) | |
tree | 3c6685dd253d5eb9976f12a8cc9b87386dbf9092 /Master/texmf-dist/source/fonts/fpl/TeXPalladioL-ItalicOsF.pe | |
parent | 355513331b6d259e73e320e3ec7256018f865a0a (diff) |
fpl update for README, etc. (20 Jul 2007 17:17:36, Debian 433137)
git-svn-id: svn://tug.org/texlive/trunk@4825 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/fonts/fpl/TeXPalladioL-ItalicOsF.pe')
-rw-r--r-- | Master/texmf-dist/source/fonts/fpl/TeXPalladioL-ItalicOsF.pe | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/fonts/fpl/TeXPalladioL-ItalicOsF.pe b/Master/texmf-dist/source/fonts/fpl/TeXPalladioL-ItalicOsF.pe new file mode 100644 index 00000000000..fa55e360053 --- /dev/null +++ b/Master/texmf-dist/source/fonts/fpl/TeXPalladioL-ItalicOsF.pe @@ -0,0 +1,59 @@ +#!/usr/bin/env fontforge +# Time-stamp: <2005-02-11 13:16:55 ralf> +# Copyright 2004, 2005 Ralf Stubner +# See the file COPYING (GNU General Public License) for license +# conditions. + +Open("uplri8a.pfb"); +# proper setup with names etc +fontname="TeXPalladioL-ItalicOsF"; +fontfamily="TeX Palladio L"; +fullname="TeX Palladio L Italic Old Style Figures"; +copyright=$copyright+", Copyright 2004, 2005 Ralf Stubner."; +copyright=AddGPL(copyright); +copyright=AddException(copyright); +fontversion="1.002"; + +SetFontNames(fontname,fontfamily,fullname,"",copyright,fontversion); +# No UniqueID (needs recent ff to work properly) +SetUniqueID(-1); +# use OtherSubrs from URW (needs recent ff to work properly) +ReadOtherSubrsFile("URW-OtherSubrs.ps"); + +# copy OsF and SC +Select("zero","nine"); +Clear(); +MergeFonts("Palladio-ItalicOsF.sfd"); + +# underscore +Select("underscore"); +Scale(100,116,0,0); +Move(0,-15); + +# emdash +Select("emdash"); +Scale(75,100,0,0); +Move(125,0); +SetWidth(1000); +RoundToInt(); + +# dotaccent +Select("dotaccent"); +Move(-50,0); +SetWidth(333); + +# kerning +RemoveAllKerns(); +MergeKern("pplri9d-kern.afm"); + +# hinting +ChangePrivateEntry("StemSnapV","[72 76 78 88]"); + +Save("TeXPalladioL-ItalicOsF.sfd"); +# generte Type1, scale generate TTF +Generate("fplrij8a.pfb","",3); +# ScaleToEm(2048); +# Generate("fplrij8a.ttf","",0x80); + +Quit(0); + |