diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-04-20 17:01:32 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-04-20 17:01:32 +0200 |
commit | ab8dd39003414eff40ef2dbc1e3b7fc51cae81a4 (patch) | |
tree | 87dd7c305390640216acf86b7c5c6f0c6cc680af /cv/cvfonts.ld | |
parent | 6cf82d79b7b06879a68e60b9f5e0eab608505223 (diff) | |
download | meself-ab8dd39003414eff40ef2dbc1e3b7fc51cae81a4.zip meself-ab8dd39003414eff40ef2dbc1e3b7fc51cae81a4.tar.gz |
add and use LinLibertine font
Diffstat (limited to 'cv/cvfonts.ld')
-rw-r--r-- | cv/cvfonts.ld | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/cv/cvfonts.ld b/cv/cvfonts.ld new file mode 100644 index 0000000..2768026 --- /dev/null +++ b/cv/cvfonts.ld @@ -0,0 +1,57 @@ +# Name Compulsory Meaning # +# --------------------------------------------------------------- # +# @Tag Yes Must equal @Family-@Face # +# @Family Yes Font family name # +# @Face Yes Font face name # +# @Name Yes PostScript name as in @Metrics file # +# @Metrics Yes Adobe font metrics file of this font # +# @ExtraMetrics No Extra metrics # +# @Mapping Yes .LCM (Lout Character Mapping) file # +# @Recode No Recode or not (Yes or No, default Yes) # +# + +{ @FontDef + @Tag { Libertine-Base } + @Family { Libertine } + @Face { Base } + @Name { LinLibertine } + @Metrics { LinLibertine_R.afm } + @Mapping { Latin1.LCM } +} + +{ @FontDef + @Tag { Libertine-Italic } + @Family { Libertine } + @Face { Italic } + @Name { LinLibertineI } + @Metrics { LinLibertine_RI.afm } + @Mapping { Latin1.LCM } +} + +{ @FontDef + @Tag { Libertine-Bold } + @Family { Libertine } + @Face { Bold } + @Name { LinLibertineB } + @Metrics { LinLibertine_RB.afm } + @Mapping { Latin1.LCM } +} + +{ @FontDef + @Tag { Libertine-BoldItalic } + @Family { Libertine } + @Face { BoldItalic } + @Name { LinLibertine } + @Metrics { LinLibertine_RBI.afm } + @Mapping { Latin1.LCM } +} + +{ @FontDef + @Tag { Libertine-Slope } + @Family { Libertine } + @Face { Slope } + @Name { LinLibertine } + @Metrics { LinLibertine_R.afm } + @Mapping { Latin1.LCM } +} + |