aboutsummaryrefslogtreecommitdiff
path: root/host/matelight/fonts/submission
diff options
context:
space:
mode:
authorjaseg <jaseg@jaseg.net>2013-12-30 20:16:50 +0100
committerjaseg <jaseg@jaseg.net>2013-12-30 20:16:50 +0100
commit21b9596a98fbe051b1b194bdd4c99293233b7922 (patch)
tree33d54b8e44fe4b6f496cd0c74f1b2924ed4bdf0a /host/matelight/fonts/submission
parent493863fcc0d0bc52a27631eeb76a85446f3e6760 (diff)
downloadmatelight-21b9596a98fbe051b1b194bdd4c99293233b7922.tar.gz
matelight-21b9596a98fbe051b1b194bdd4c99293233b7922.tar.bz2
matelight-21b9596a98fbe051b1b194bdd4c99293233b7922.zip
Added some bdf fonts
Diffstat (limited to 'host/matelight/fonts/submission')
-rw-r--r--host/matelight/fonts/submission/Makefile119
-rw-r--r--host/matelight/fonts/submission/README116
-rw-r--r--host/matelight/fonts/submission/fonts.alias115
3 files changed, 350 insertions, 0 deletions
diff --git a/host/matelight/fonts/submission/Makefile b/host/matelight/fonts/submission/Makefile
new file mode 100644
index 0000000..74c72af
--- /dev/null
+++ b/host/matelight/fonts/submission/Makefile
@@ -0,0 +1,119 @@
+# Makefile for generating derived BDF and PCF font files -- Markus Kuhn
+
+# use bash or ksh if the "${i%.bdf}" substitution fails with your shell
+SHELL=/bin/bash
+#SHELL=/bin/ksh
+
+# Location of the mapping files from ftp://ftp.unicode.org/Public/MAPPINGS/
+MAPPINGS=../MAPPINGS
+# Location of the ISO10646-1 source BDF files
+SRCBDF=..
+# BDF remapping tool
+UCS2ANY=../ucs2any.pl +d
+# BDF truncation tool
+BDFTRUNCATE=../bdftruncate.pl
+
+FONTS=5x7 5x8 6x9 6x10 6x12 6x13 7x13 7x14 8x13 9x15 9x18 10x20 \
+ 6x13B 6x13O 7x13B 7x13O 7x14B 8x13B 8x13O 9x15B 9x18B
+BIGFONTS=12x13ja 18x18ja 18x18ko
+
+all: pcfs
+
+# Make a small essential selection of 8-bit encoding variants
+bdfs:
+ for i in $(FONTS) ; do \
+ $(BDFTRUNCATE) U+3200 <$(SRCBDF)/$$i.bdf >$$i.bdf ; \
+ $(UCS2ANY) $(SRCBDF)/$$i.bdf \
+ $(MAPPINGS)/8859-1.TXT ISO8859-1 ; \
+ done
+ for i in 6x13 6x13B 6x13O 7x13 7x13B 7x13O 8x13 8x13B 8x13O ; do \
+ $(UCS2ANY) $(SRCBDF)/$$i.bdf \
+ $(MAPPINGS)/8859-2.TXT ISO8859-2 \
+ $(MAPPINGS)/8859-5.TXT ISO8859-5 \
+ $(MAPPINGS)/8859-7.TXT ISO8859-7 \
+ $(MAPPINGS)/8859-9.TXT ISO8859-9 \
+ $(MAPPINGS)/8859-13.TXT ISO8859-13 \
+ $(MAPPINGS)/8859-15.TXT ISO8859-15 ; \
+ done
+ for i in 6x13 7x13 8x13 ; do \
+ $(UCS2ANY) $(SRCBDF)/$$i.bdf \
+ $(MAPPINGS)/8859-3.TXT ISO8859-3 \
+ $(MAPPINGS)/8859-4.TXT ISO8859-4 \
+ $(MAPPINGS)/8859-8.TXT ISO8859-8 \
+ $(MAPPINGS)/8859-10.TXT ISO8859-10 \
+ $(MAPPINGS)/KOI8-R.TXT KOI8-R ; \
+ done
+ for i in 7x14 ; do \
+ $(UCS2ANY) $(SRCBDF)/$$i.bdf \
+ $(MAPPINGS)/JIS0201.TXT JISX0201.1976-0 ; \
+ done
+ -for i in $(BIGFONTS) ; do \
+ cp $(SRCBDF)/$$i.bdf . ; \
+ done
+
+# Make all possible 8-bit encoding variants
+all-bdfs:
+ for i in $(FONTS) ; do \
+ $(BDFTRUNCATE) U+3200 <$(SRCBDF)/$$i.bdf >$$i.bdf ; \
+ $(UCS2ANY) $(SRCBDF)/$$i.bdf \
+ $(MAPPINGS)/8859-1.TXT ISO8859-1 \
+ $(MAPPINGS)/8859-2.TXT ISO8859-2 \
+ $(MAPPINGS)/8859-3.TXT ISO8859-3 \
+ $(MAPPINGS)/8859-4.TXT ISO8859-4 \
+ $(MAPPINGS)/8859-5.TXT ISO8859-5 \
+ $(MAPPINGS)/8859-7.TXT ISO8859-7 \
+ $(MAPPINGS)/8859-8.TXT ISO8859-8 \
+ $(MAPPINGS)/8859-9.TXT ISO8859-9 \
+ $(MAPPINGS)/8859-10.TXT ISO8859-10 \
+ $(MAPPINGS)/8859-13.TXT ISO8859-13 \
+ $(MAPPINGS)/8859-14.TXT ISO8859-14 \
+ $(MAPPINGS)/8859-15.TXT ISO8859-15 \
+ $(MAPPINGS)/KOI8-R.TXT KOI8-R ; \
+ done
+ for i in 7x14 ; do \
+ $(UCS2ANY) $(SRCBDF)/$$i.bdf \
+ $(MAPPINGS)/JIS0201.TXT JISX0201.1976-0 ; \
+ done
+ -for i in $(BIGFONTS) ; do \
+ cp $(SRCBDF)/$$i.bdf . ; \
+ done
+
+pcfs: bdfs
+ for i in *.bdf ; do \
+ bdftopcf $$i >$${i%.bdf}.pcf ; \
+ done
+ gzip -9 *.pcf
+
+all-pcfs: all-bdfs
+ for i in *.bdf ; do \
+ bdftopcf $$i >$${i%.bdf}.pcf ; \
+ done
+ gzip -9 *.pcf
+
+ucs-fixed.tar.gz: pcfs
+ mkfontdir
+ tar cvf ucs-fixed.tar README fonts.alias *.bdf *.pcf.gz
+ gzip -9 ucs-fixed.tar
+
+distribution: ucs-fixed.tar.gz
+ rcsdiff -u RCS/*
+ mv ucs-fixed.tar.gz \
+ $(HOME)/.www/download/ucs-fixed-`date -u +%Y%m%d`.tar.gz
+ rm -f $(HOME)/.www/download/ucs-fixed.tar.gz
+ ln -s ucs-fixed-`date -u +%Y%m%d`.tar.gz \
+ $(HOME)/.www/download/ucs-fixed.tar.gz
+
+install: pcfs
+ mkdir -p $(HOME)/local/lib/X11/fonts/
+ mv *.pcf.gz $(HOME)/local/lib/X11/fonts/
+ cd $(HOME)/local/lib/X11/fonts/ ; mkfontdir
+ xset +fp $(HOME)/local/lib/X11/fonts
+
+clean:
+ rm -f fonts.dir *.bdf *.pcf *.gz *~ list1 list2
+
+list:
+ ls *.bdf | sort -n | \
+ perl -pe 's/^(.*).bdf$$/\tFontObj($$1) \\/;' >list1
+ ls *.bdf | sort -n | \
+ perl -pe 's/^(.*).bdf$$/FontTarget($$1)/;' >list2
diff --git a/host/matelight/fonts/submission/README b/host/matelight/fonts/submission/README
new file mode 100644
index 0000000..598e5b1
--- /dev/null
+++ b/host/matelight/fonts/submission/README
@@ -0,0 +1,116 @@
+ISO 10646-1 update of the fixed fonts
+-------------------------------------
+
+Markus Kuhn <http://www.cl.cam.ac.uk/~mgk25/> -- 2000-12-10
+
+This is an update of all -Misc-Fixed-* fonts in the subdirectory
+
+ xc/fonts/bdf/misc/
+
+We have extended all old -Misc-Fixed-* fonts from their original ISO
+646.119-IRV or ISO 8859-1 repertoire to a comprehensive repertoire in
+the ISO 10646-1 encoding (UCS, Unicode). All extended fonts have been
+carefully tested to cover a repertoire that includes all characters
+found in ISO 6937, ISO 8859-1,2,3,4,5,7,8,9,10,13,14,15,16, and
+CP1251/1252. The non-bold/italic fonts also cover the Adobe/Microsoft
+WGL4 repertoire, which includes the characters of all MS-DOS code
+pages. Some fonts (6x13, 9x15, 9x18, 10x20) cover considerably more,
+including the full European Unicode subset CEN MES-3B, which covers
+all Latin, Greek, Cyrillic, Armenian, Georgian, Thai, phonetic, and
+mathematical characters.
+
+Eight new ISO 10646-1 fonts were added, for which there was no
+equivalent version in the X11R6.4 distribution before, and which
+should be highly useful:
+
+ 6x13O.bdf -Misc-Fixed-Medium-O-Semicondensed--13-120-75-75-C-60-ISO10646-1
+ 7x13O.bdf -Misc-Fixed-Medium-O-Normal--13-120-75-75-C-70-ISO10646-1
+ 8x13O.bdf -Misc-Fixed-Medium-O-Normal--13-120-75-75-C-80-ISO10646-1
+ 9x18.bdf -Misc-Fixed-Medium-R-Normal--18-120-100-100-C-90-ISO10646-1
+ 9x18B.bdf -Misc-Fixed-Bold-R-Normal--18-120-100-100-C-90-ISO10646-1
+ 12x13ja.bdf -Misc-Fixed-Medium-R-Normal-ja-13-120-75-75-C-120-ISO10646-1
+ 18x18ja.bdf -Misc-Fixed-Medium-R-Normal-ja-18-120-100-100-C-180-ISO10646-1
+ 18x18ko.bdf -Misc-Fixed-Medium-R-Normal-ko-18-120-100-100-C-180-ISO10646-1
+
+6x13O and 8x13O are oblique/italic fonts. 9x18 is an improved variant
+of 9x15 designed to have enough space to allow the unproblematic use
+of overstriking combining characters, 18x18ja and 18x18ko provide
+Japanese and Korean doublewidth ideographic characters for 9x18, and
+12x13ja provides Japanese and Hangul doublewidth ideographic
+characters for 6x13.
+
+This update contains not only new ISO10646-1 fonts, but also a
+collection of 8-bit fonts that were automatically generated from the
+ISO10646-1 fonts. All these derived 8-bit fonts have the
+-REGISTRY-ENCODING part of the XLFD in the filename (e.g.,
+6x13-ISO8859-1.bdf). Some of these derived fonts replace old 8-bit
+fonts (with some stylistic improvements and bug fixes), others provide
+new urgently needed 8-bit encoding alternatives for very widely-used
+font sizes.
+
+The ISO10646-1 fonts in this package (except for 12x13ja, 18x18ja, and
+18x18ko) contain no characters above 0x31FF. This avoids the very
+inefficient allocation and transmission of a >700 kB large XFontStruct
+structure, which would happen if the (not very important) ligatures
+and symbols above 0xf000 were present.
+
+Installation instructions:
+
+ - Only the directory xc/fonts/bdf/misc/ (if you patch the X source
+ distribution) or /usr/X11/lib/X11/fonts/misc/ (if you patch a system
+ installation) will be affected by this update.
+
+ - Do in xc/fonts/bdf/misc/ or /usr/X11/lib/X11/fonts/misc/ a
+
+ rm 7x13euro.bdf 7x13euroB.bdf heb6x13.bdf heb8x13.bdf 7x14rk.bdf
+
+ because these old 8-bit files are now superseeded by the new
+ *-ISO8859-15.bdf, *-ISO8859-8.bdf, and *-JISX0201.1976-0 files.
+
+ - If you patch the X source tree, move from this tarball the files
+
+ *.bdf fonts.alias Imakefile
+
+ into xc/fonts/bdf/misc/.
+
+ - If you patch an installed system, move instead from this package
+ the files
+
+ *.pcf.gz fonts.alias
+
+ into /usr/X11/lib/X11/fonts/misc/ and then call "mkfontdir" there
+ and also execute "xset fp rehash".
+
+The new *-*.bdf files will not be necessary any more as soon as the
+font reencoding engine in the BDF backend is operational, because then
+these encodings can be generated by the X server automatically and
+on-the-fly from the ISO 10646-1 files (perhaps in XFree86 4.1?).
+
+The font files in this package were all automatically generated by a
+few Perl scripts. Please do not edit these font files if you want to
+make contributions. Instead, if you want to edit the fonts, please get
+the latest original BDF files in
+
+ http://www.cl.cam.ac.uk/~mgk25/download/ucs-fonts.tar.gz
+
+which also contains the ucs2any.pl and bdftruncate.pl scripts and the
+encoding mapping files that were used to generate all the font files
+found in this tarball. See also the README file in there for further
+hints on how to use these fonts.
+
+This package is available from
+
+ http://www.cl.cam.ac.uk/~mgk25/download/ucs-fixed.tar.gz
+
+Please send any feedback and patches related to these fonts to
+
+ Markus.Kuhn@cl.cam.ac.uk
+
+or to
+
+ fonts@xfree86.org
+
+Markus
+
+--
+Markus G. Kuhn, Computer Laboratory, University of Cambridge, UK
diff --git a/host/matelight/fonts/submission/fonts.alias b/host/matelight/fonts/submission/fonts.alias
new file mode 100644
index 0000000..2c271cd
--- /dev/null
+++ b/host/matelight/fonts/submission/fonts.alias
@@ -0,0 +1,115 @@
+! $TOG: fonts.alias /main/32 1998/05/20 15:10:37 kaleb $
+fixed -misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso8859-1
+ufixed -misc-fixed-medium-r-semicondensed-*-13-120-75-75-c-60-iso10646-1
+variable -*-helvetica-bold-r-normal-*-*-120-*-*-*-*-iso8859-1
+4x6 -misc-fixed-medium-r-normal--6-60-75-75-c-40-iso8859-1
+5x7 -misc-fixed-medium-r-normal--7-70-75-75-c-50-iso8859-1
+5x8 -misc-fixed-medium-r-normal--8-80-75-75-c-50-iso8859-1
+6x9 -misc-fixed-medium-r-normal--9-90-75-75-c-60-iso8859-1
+6x10 -misc-fixed-medium-r-normal--10-100-75-75-c-60-iso8859-1
+6x12 -misc-fixed-medium-r-semicondensed--12-110-75-75-c-60-iso8859-1
+6x13 -misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso8859-1
+6x13bold -misc-fixed-bold-r-semicondensed--13-120-75-75-c-60-iso8859-1
+7x13 -misc-fixed-medium-r-normal--13-120-75-75-c-70-iso8859-1
+7x13bold -misc-fixed-bold-r-normal--13-120-75-75-c-70-iso8859-1
+7x13euro -misc-fixed-medium-r-normal--13-120-75-75-c-70-iso8859-15
+7x13eurobold -misc-fixed-bold-r-normal--13-120-75-75-c-70-iso8859-15
+7x14 -misc-fixed-medium-r-normal--14-130-75-75-c-70-iso8859-1
+7x14bold -misc-fixed-bold-r-normal--14-130-75-75-c-70-iso8859-1
+8x13 -misc-fixed-medium-r-normal--13-120-75-75-c-80-iso8859-1
+8x13bold -misc-fixed-bold-r-normal--13-120-75-75-c-80-iso8859-1
+8x16 -sony-fixed-medium-r-normal--16-120-100-100-c-80-iso8859-1
+9x15 -misc-fixed-medium-r-normal--15-140-75-75-c-90-iso8859-1
+9x15bold -misc-fixed-bold-r-normal--15-140-75-75-c-90-iso8859-1
+10x20 -misc-fixed-medium-r-normal--20-200-75-75-c-100-iso8859-1
+12x24 -sony-fixed-medium-r-normal--24-170-100-100-c-120-iso8859-1
+nil2 -misc-nil-medium-r-normal--2-20-75-75-c-10-misc-fontspecific
+
+heb6x13 -misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso8859-8
+heb8x13 -misc-fixed-medium-r-normal--13-120-75-75-c-80-iso8859-8
+
+k14 -misc-fixed-medium-r-normal--14-*-*-*-*-*-jisx0208.1983-0
+a14 -misc-fixed-medium-r-normal--14-*-*-*-*-*-iso8859-1
+r14 -misc-fixed-medium-r-normal--14-*-*-*-*-*-jisx0201.1976-0
+rk14 -misc-fixed-medium-r-normal--14-*-*-*-*-*-jisx0201.1976-0
+r16 -sony-fixed-medium-r-normal--16-*-*-*-*-*-jisx0201.1976-0
+rk16 -sony-fixed-medium-r-normal--16-*-*-*-*-*-jisx0201.1976-0
+r24 -sony-fixed-medium-r-normal--24-*-*-*-*-*-jisx0201.1976-0
+rk24 -sony-fixed-medium-r-normal--24-*-*-*-*-*-jisx0201.1976-0
+kana14 -misc-fixed-medium-r-normal--14-*-*-*-*-*-jisx0201.1976-0
+8x16kana -sony-fixed-medium-r-normal--16-120-100-100-c-80-jisx0201.1976-0
+8x16romankana -sony-fixed-medium-r-normal--16-120-100-100-c-80-jisx0201.1976-0
+12x24kana -sony-fixed-medium-r-normal--24-170-100-100-c-120-jisx0201.1976-0
+12x24romankana -sony-fixed-medium-r-normal--24-170-100-100-c-120-jisx0201.1976-0
+kanji16 -jis-fixed-medium-r-normal--16-*-*-*-*-*-jisx0208.1983-0
+kanji24 -jis-fixed-medium-r-normal--24-*-*-*-*-*-jisx0208.1983-0
+
+hanzigb16st "-isas-song ti-medium-r-normal--16-160-72-72-c-160-gb2312.1980-0"
+hanzigb24st "-isas-song ti-medium-r-normal--24-240-72-72-c-240-gb2312.1980-0"
+hanzigb16fs "-isas-fangsong ti-medium-r-normal--16-160-72-72-c-160-gb2312.1980-0"
+
+olcursor "-sun-open look cursor-----12-120-75-75-p-160-sunolcursor-1"
+olglyph-10 "-sun-open look glyph-----10-100-75-75-p-101-sunolglyph-1"
+olglyph-12 "-sun-open look glyph-----12-120-75-75-p-113-sunolglyph-1"
+olglyph-14 "-sun-open look glyph-----14-140-75-75-p-128-sunolglyph-1"
+olglyph-19 "-sun-open look glyph-----19-190-75-75-p-154-sunolglyph-1"
+
+-misc-fixed-medium-r-normal--6-45-100-100-c-40-iso8859-1 -misc-fixed-medium-r-normal--6-60-75-75-c-40-iso8859-1
+-misc-fixed-medium-r-normal--7-50-100-100-c-50-iso8859-1 -misc-fixed-medium-r-normal--7-70-75-75-c-50-iso8859-1
+-misc-fixed-medium-r-normal--8-60-100-100-c-50-iso8859-1 -misc-fixed-medium-r-normal--8-80-75-75-c-50-iso8859-1
+-misc-fixed-medium-r-normal--9-80-100-100-c-60-iso8859-1 -misc-fixed-medium-r-normal--9-90-75-75-c-60-iso8859-1
+-misc-fixed-medium-r-normal--10-70-100-100-c-60-iso8859-1 -misc-fixed-medium-r-normal--10-100-75-75-c-60-iso8859-1
+-misc-fixed-medium-r-semicondensed--12-90-100-100-c-60-iso8859-1 -misc-fixed-medium-r-semicondensed--12-110-75-75-c-60-iso8859-1
+-misc-fixed-medium-r-semicondensed--13-100-100-100-c-60-iso8859-1 -misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso8859-1
+-misc-fixed-bold-r-semicondensed--13-100-100-100-c-60-iso8859-1 -misc-fixed-bold-r-semicondensed--13-120-75-75-c-60-iso8859-1
+-misc-fixed-medium-r-normal--13-100-100-100-c-70-iso8859-1 -misc-fixed-medium-r-normal--13-120-75-75-c-70-iso8859-1
+-misc-fixed-bold-r-normal--13-100-100-100-c-70-iso8859-1 -misc-fixed-bold-r-normal--13-120-75-75-c-70-iso8859-1
+-misc-fixed-medium-r-normal--13-100-100-100-c-80-iso8859-1 -misc-fixed-medium-r-normal--13-120-75-75-c-80-iso8859-1
+-misc-fixed-bold-r-normal--13-100-100-100-c-80-iso8859-1 -misc-fixed-bold-r-normal--13-120-75-75-c-80-iso8859-1
+-misc-fixed-medium-r-normal--14-110-100-100-c-70-iso8859-1 -misc-fixed-medium-r-normal--14-130-75-75-c-70-iso8859-1
+-misc-fixed-medium-r-normal--15-120-100-100-c-90-iso8859-1 -misc-fixed-medium-r-normal--15-140-75-75-c-90-iso8859-1
+-misc-fixed-bold-r-normal--15-120-100-100-c-90-iso8859-1 -misc-fixed-bold-r-normal--15-140-75-75-c-90-iso8859-1
+-misc-fixed-medium-r-normal--20-140-100-100-c-100-iso8859-1 -misc-fixed-medium-r-normal--20-200-75-75-c-100-iso8859-1
+-misc-fixed-medium-r-semicondensed--13-100-100-100-c-60-iso8859-8 -misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso8859-8
+-misc-fixed-medium-r-normal--13-100-100-100-c-80-iso8859-8 -misc-fixed-medium-r-normal--13-120-75-75-c-80-iso8859-8
+-sony-fixed-medium-r-normal--16-150-75-75-c-80-iso8859-1 -sony-fixed-medium-r-normal--16-120-100-100-c-80-iso8859-1
+-sony-fixed-medium-r-normal--16-150-75-75-c-80-jisx0201.1976-0 -sony-fixed-medium-r-normal--16-120-100-100-c-80-jisx0201.1976-0
+-sony-fixed-medium-r-normal--24-230-75-75-c-120-iso8859-1 -sony-fixed-medium-r-normal--24-170-100-100-c-120-iso8859-1
+-sony-fixed-medium-r-normal--24-230-75-75-c-120-jisx0201.1976-0 -sony-fixed-medium-r-normal--24-170-100-100-c-120-jisx0201.1976-0
+-jis-fixed-medium-r-normal--16-110-100-100-c-160-jisx0208.1983-0 -jis-fixed-medium-r-normal--16-150-75-75-c-160-jisx0208.1983-0
+-jis-fixed-medium-r-normal--24-170-100-100-c-240-jisx0208.1983-0 -jis-fixed-medium-r-normal--24-230-75-75-c-240-jisx0208.1983-0
+
+! These fonts are not really ISO8859-1, but these aliases are provided
+! for compatibility with X11R5.
+
+-schumacher-clean-medium-r-normal--12-120-75-75-c-80-iso8859-1 -schumacher-clean-medium-r-normal--12-120-75-75-c-80-iso646.1991-irv
+-schumacher-clean-medium-r-normal--13-130-75-75-c-80-iso8859-1 -schumacher-clean-medium-r-normal--13-130-75-75-c-80-iso646.1991-irv
+-schumacher-clean-medium-r-normal--10-100-75-75-c-80-iso8859-1 -schumacher-clean-medium-r-normal--10-100-75-75-c-80-iso646.1991-irv
+-schumacher-clean-medium-r-normal--16-160-75-75-c-80-iso8859-1 -schumacher-clean-medium-r-normal--16-160-75-75-c-80-iso646.1991-irv
+-schumacher-clean-medium-r-normal--14-140-75-75-c-80-iso8859-1 -schumacher-clean-medium-r-normal--14-140-75-75-c-80-iso646.1991-irv
+-schumacher-clean-medium-r-normal--8-80-75-75-c-80-iso8859-1 -schumacher-clean-medium-r-normal--8-80-75-75-c-80-iso646.1991-irv
+-schumacher-clean-medium-r-normal--15-150-75-75-c-90-iso8859-1 -schumacher-clean-medium-r-normal--15-150-75-75-c-90-iso646.1991-irv
+-schumacher-clean-medium-r-normal--8-80-75-75-c-60-iso8859-1 -schumacher-clean-medium-r-normal--8-80-75-75-c-60-iso646.1991-irv
+-schumacher-clean-medium-r-normal--6-60-75-75-c-50-iso8859-1 -schumacher-clean-medium-r-normal--6-60-75-75-c-50-iso646.1991-irv
+-schumacher-clean-medium-r-normal--8-80-75-75-c-70-iso8859-1 -schumacher-clean-medium-r-normal--8-80-75-75-c-70-iso646.1991-irv
+-schumacher-clean-medium-r-normal--6-60-75-75-c-40-iso8859-1 -schumacher-clean-medium-r-normal--6-60-75-75-c-40-iso646.1991-irv
+-schumacher-clean-medium-r-normal--8-80-75-75-c-50-iso8859-1 -schumacher-clean-medium-r-normal--8-80-75-75-c-50-iso646.1991-irv
+-schumacher-clean-medium-r-normal--6-60-75-75-c-60-iso8859-1 -schumacher-clean-medium-r-normal--6-60-75-75-c-60-iso646.1991-irv
+-schumacher-clean-medium-r-normal--12-120-75-75-c-60-iso8859-1 -schumacher-clean-medium-r-normal--12-120-75-75-c-60-iso646.1991-irv
+-schumacher-clean-medium-r-normal--13-130-75-75-c-60-iso8859-1 -schumacher-clean-medium-r-normal--13-130-75-75-c-60-iso646.1991-irv
+-schumacher-clean-medium-r-normal--10-100-75-75-c-60-iso8859-1 -schumacher-clean-medium-r-normal--10-100-75-75-c-60-iso646.1991-irv
+-schumacher-clean-medium-r-normal--12-120-75-75-c-70-iso8859-1 -schumacher-clean-medium-r-normal--12-120-75-75-c-70-iso646.1991-irv
+-schumacher-clean-medium-r-normal--10-100-75-75-c-70-iso8859-1 -schumacher-clean-medium-r-normal--10-100-75-75-c-70-iso646.1991-irv
+-schumacher-clean-medium-r-normal--14-140-75-75-c-70-iso8859-1 -schumacher-clean-medium-r-normal--14-140-75-75-c-70-iso646.1991-irv
+-schumacher-clean-medium-r-normal--10-100-75-75-c-50-iso8859-1 -schumacher-clean-medium-r-normal--10-100-75-75-c-50-iso646.1991-irv
+-schumacher-clean-bold-r-normal--8-80-75-75-c-80-iso8859-1 -schumacher-clean-bold-r-normal--8-80-75-75-c-80-iso646.1991-irv
+-schumacher-clean-medium-i-normal--8-80-75-75-c-80-iso8859-1 -schumacher-clean-medium-i-normal--8-80-75-75-c-80-iso646.1991-irv
+-schumacher-clean-bold-r-normal--12-120-75-75-c-80-iso8859-1 -schumacher-clean-bold-r-normal--12-120-75-75-c-80-iso646.1991-irv
+-schumacher-clean-bold-r-normal--13-130-75-75-c-80-iso8859-1 -schumacher-clean-bold-r-normal--13-130-75-75-c-80-iso646.1991-irv
+-schumacher-clean-bold-r-normal--10-100-75-75-c-80-iso8859-1 -schumacher-clean-bold-r-normal--10-100-75-75-c-80-iso646.1991-irv
+-schumacher-clean-bold-r-normal--16-160-75-75-c-80-iso8859-1 -schumacher-clean-bold-r-normal--16-160-75-75-c-80-iso646.1991-irv
+-schumacher-clean-bold-r-normal--14-140-75-75-c-80-iso8859-1 -schumacher-clean-bold-r-normal--14-140-75-75-c-80-iso646.1991-irv
+-schumacher-clean-bold-r-normal--15-150-75-75-c-90-iso8859-1 -schumacher-clean-bold-r-normal--15-150-75-75-c-90-iso646.1991-irv
+-schumacher-clean-bold-r-normal--12-120-75-75-c-60-iso8859-1 -schumacher-clean-bold-r-normal--12-120-75-75-c-60-iso646.1991-irv
+-schumacher-clean-bold-r-normal--10-100-75-75-c-60-iso8859-1 -schumacher-clean-bold-r-normal--10-100-75-75-c-60-iso646.1991-irv
+-schumacher-clean-medium-i-normal--12-120-75-75-c-60-iso8859-1 -schumacher-clean-medium-i-normal--12-120-75-75-c-60-iso646.1991-irv