1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
#treetool X to postscript font mapping file
#format:
# xname,lasername,font name,style abbreviation,mac number,mac style number,
# [size,]*size;
# xname is how it is query'ed on X: xlsfonts -fn "xname*"
# lasername is name to send thru postscript
# font name is name to show in font menu
# style abbreviation is name in style menu
# mac number is the Quickdraw number of the font for PICT files
# mac style number is the Quickdraw style set for PICT files
# or (|) together the appropriate ones of these:
# Bold: 1
# Italic: 2
# Underline: 4
# Outline: 8
# Shadow: 16
# Extended: 32
# then, list of sizes available in X
# the style menu is a collection of all the styles listed in here
-adobe-courier-medium-r-normal,
Courier,Courier,Normal,22,0,
8,10,11,12,14,17,18,20,24,25,34;
-adobe-courier-medium-o-normal,
Courier-Oblique,Courier,Italic,22,2,
8,10,11,12,14,17,18,20,24,25,34;
-adobe-courier-bold-r-normal,
Courier-Bold,Courier,Bold,22,1,
8,10,11,12,14,17,18,20,24,25,34;
-adobe-courier-bold-o-normal,
Courier-BoldOblique,Courier,BoldItalic,22,3,
8,10,11,12,14,17,18,20,24,25,34;
-adobe-helvetica-medium-r-normal,
Helvetica,Helvetica,Normal,21,0,
8,10,11,12,14,17,18,20,24,25,34;
-adobe-helvetica-medium-o-normal,
Helvetica-Oblique,Helvetica,Italic,21,2,
8,10,11,12,14,17,18,20,24,25,34;
-adobe-helvetica-bold-r-normal,
Helvetica-Bold,Helvetica,Bold,21,1,
8,10,11,12,14,17,18,20,24,25,34;
-adobe-helvetica-bold-o-normal,
Helvetica-BoldOblique,Helvetica,BoldItalic,21,3,
8,10,11,12,14,17,18,20,24,25,34;
-adobe-new century schoolbook-medium-r-normal,
NewCenturySchlbk,New Century Schoolbook,Normal,20,0,
8,10,11,12,14,17,18,20,24,25,34;
-adobe-new century schoolbook-medium-i-normal,
NewCenturySchlbk-Italic,New Century Schoolbook,Italic,20,2,
8,10,11,12,14,17,18,20,24,25,34;
-adobe-new century schoolbook-bold-r-normal,
NewCenturySchlbk-Bold,New Century Schoolbook,Bold,20,1,
8,10,11,12,14,17,18,20,24,25,34;
-adobe-new century schoolbook-bold-i-normal,
NewCenturySchlbk-BoldItalic,New Century Schoolbook,BoldItalic,20,3,
8,10,11,12,14,17,18,20,24,25,34;
-adobe-symbol-medium-r-normal,
Symbol,Symbol,Normal,23,0,
8,10,11,12,14,17,18,20,24,25,34;
-adobe-times-medium-r-normal,
Times-Roman,Times,Normal,20,0,
8,10,11,12,14,17,18,20,24,25,34;
-adobe-times-medium-i-normal,
Times-Italic,Times,Italic,20,2,
8,10,11,12,14,17,18,20,24,25,34;
-adobe-times-bold-r-normal,
Times-Bold,Times,Bold,20,1,
8,10,11,12,14,17,18,20,24,25,34;
-adobe-times-bold-i-normal,
Times-BoldItalic,Times,BoldItalic,20,3,
8,10,11,12,14,17,18,20,24,25,34;
|