From 2b9577f10526fa1730eee7cd4401ef6e6cf798d5 Mon Sep 17 00:00:00 2001 From: ntakahas Date: Tue, 7 Sep 2010 08:37:07 +0000 Subject: [PATCH] Reconstructed. truetype.fst = generic.fst + tested free truetype fonts. --- truetype.fst | 175 ++++++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 151 insertions(+), 24 deletions(-) diff --git a/truetype.fst b/truetype.fst index e7306ca..6747054 100644 --- a/truetype.fst +++ b/truetype.fst @@ -1,11 +1,142 @@ ;; truetype.fst -- Fontset using only TrueType fonts ;; Copyright (C) 2003, 2004, 2005, 2006, 2010 AIST (H15PRO112) +;; See the end for copying conditions. ;;;
  • truetype.fst ;;; -;;; Fontset using only freely available TrueType fonts. See the -;;; documentation of the fontset "default" for the information about -;;; each font. +;;; Fontset using only freely available TrueType fonts. +;;; (latin (vi @@ -13,33 +144,33 @@ ((nil nil unicode-bmp :lang=vi))) (nil ((nil dejavu\ sans unicode-bmp)) - ((nil nil unicode-bmp :lang=en)))) + ((nil nil unicode-bmp :script=latin)))) (hebrew (nil ((nil ezra\ sil unicode-bmp) hebr-otf) - ((nil nil unicode-bmp :otf=hebr) hebr-otf))) + ((nil nil unicode-bmp :otf=hebr) hebr-otf) + ((nil nil unicode-bmp :script=hebrew)))) (arabic (nil ((nil scheherazade unicode-bmp) arab-otf) ((nil nil unicode-bmp :otf=arab) arab-otf) - ((nil bitstream\ cyberbase unicode-bmp) arab))) + ((nil nil unicode-bmp :script=arabic) arab))) (syriac (nil ((nil estrangelo\ talada unicode-bmp) syrc-otf) ((nil serto\ jerusalem unicode-bmp) syrc-otf) - ((nil east\ syriac adiabene unicode-bmp) syrc-otf) + ((nil east\ syriac\ adiabene unicode-bmp) syrc-otf) ((nil nil unicode-bmp :otf=syrc) syrc-otf))) (thaana (nil - ((nil thaana\ unicode\ akeh unicode-bmp) thaa-otf) + ((nil mv\ boli unicode-bmp) thaa-otf) ((nil nil unicode-bmp :otf=thaa) thaa-otf))) (devanagari (nil ((nil gargi unicode-bmp) deva-otf) - ((nil lohit\ hind unicode-bmp) deva-otf) + ((nil lohit\ hindi unicode-bmp) deva-otf) ((nil nil unicode-bmp :otf=dev2) dev2-otf) - ((nil nil unicode-bmp :otf=deva) deva-otf) - ((nil dv-ttyogesh apple-roman) deva-cdac))) + ((nil nil unicode-bmp :otf=deva) deva-otf))) (bengali (nil ((nil lohit\ bengali unicode-bmp) beng-otf) @@ -71,7 +202,7 @@ (telugu (nil ((nil pothana2000 unicode-bmp) telu-otf) - ((nil venama2000 unicode-bmp) telu-otf) + ((nil vemana2000 unicode-bmp) telu-otf) ((nil nil unicode-bmp :otf=tel2) tel2-otf) ((nil nil unicode-bmp :otf=telu) telu-otf))) (kannada @@ -93,33 +224,29 @@ (tibetan (nil ((nil tibetan\ machine\ uni unicode-bmp) tibt-otf) - ((nil nil unicode-bmp :otf=tibt) tibt-otf) - ((nil mtib unicode-bmp) tibt-mtib))) + ((nil nil unicode-bmp :otf=tibt) tibt-otf))) (thai (nil - ((nil norasi unicode-bmp) thai-norasi) + ((nil norasi unicode-bmp) thai-otf) ((nil nil unicode-bmp :otf=thai) thai-otf))) (lao (nil ((nil phetsarath\ ot unicode-bmp) laoo-otf) - ((nil nil unicode-bmp :otf=laoo) laoo-otf) - ((nil alice0\ lao apple-roman) laoo-alice))) + ((nil nil unicode-bmp :otf=laoo) laoo-otf))) (myanmar (nil - ((nil padauk unicode-bmp) mymr-sil) - ((nil myazedi_m17n unicode-bmp) mymr-myazedi))) + ((nil padauk unicode-bmp) mymr-sil))) (khmer (nil ((nil khmer\ os unicode-bmp) khmr-otf) - ((nil nil unicode-bmp :otf=khmr) khmr-otf) - ((nil anlongvill\ khek apple-roman) khmr-anlong))) + ((nil nil unicode-bmp :otf=khmr) khmr-otf))) (han - (ja - ((nil takaogothic unicode-bmp)) - ((nil nil unicode-bmp :lang=ja))) (zh ((nil wenquanyi\ zen\ hei unicode-bmp)) ((nil nil unicode-bmp :lang=zh))) + (ja + ((nil takaogothic unicode-bmp)) + ((nil nil unicode-bmp :lang=ja))) (ko ((nil undotum unicode-bmp)) ((nil nil unicode-bmp :lang=ko)))) -- 1.7.10.4