source: projects/specs/trunk/T/TrueType-ipafont/59-ipa-mincho.conf @ 1888

Revision 1888, 1.2 KB checked in by daisuke, 14 years ago (diff)

TrueType?-ipafont:

  • update to 3.02
  • add ttfconf/cidfmap/fontconfig conf to svn repo.
Line 
1<?xml version="1.0"?>
2<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
3<fontconfig>
4
5<!-- IPA Mincho -->
6    <match target="font">
7        <test name="family">
8            <string>IPAPMincho</string>
9            <string>IPAMincho</string>
10        </test>
11        <test name="pixelsize" compare="less">
12            <double>9</double>
13        </test>
14        <edit name="hinting" mode="assign">
15            <bool>false</bool>
16        </edit>
17        <edit name="autohint" mode="assign">
18            <bool>false</bool>
19        </edit>
20    </match>
21
22    <match target="font">
23        <test name="family">
24            <string>IPAPMincho</string>
25            <string>IPAMincho</string>
26        </test>
27        <test name="pixelsize" compare="more_eq">
28            <double>9</double>
29        </test>
30        <edit name="hinting" mode="assign">
31            <bool>true</bool>
32        </edit>
33        <edit name="hintstyle" mode="assign">
34            <const>hintslight</const>
35        </edit>
36        <edit name="autohint" mode="assign">
37            <bool>true</bool>
38        </edit>
39    </match>
40
41    <alias>
42        <family>serif</family>
43        <prefer>
44            <family>IPAPMincho</family>
45        </prefer>
46    </alias>
47
48</fontconfig>
Note: See TracBrowser for help on using the repository browser.