source: projects/specs/trunk/T/TrueType-vlgothic/59-vlgothic.conf @ 7656

Revision 7656, 1.0 KB checked in by daisuke, 11 years ago (diff)

fontconfig > 2.10 対応

Line 
1<?xml version="1.0"?>
2<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
3<fontconfig>
4
5    <!-- VL PGothic -->
6    <match target="font">
7        <test name="family">
8            <string>VL PGothic</string>
9        </test>
10        <edit name="hinting" mode="assign">
11            <bool>false</bool>
12        </edit>
13        <edit name="autohint" mode="assign">
14            <bool>false</bool>
15        </edit>
16    </match>
17
18    <!-- VL Gothic -->
19    <match target="font">
20        <test name="family">
21            <string>VL Gothic</string>
22        </test>
23        <edit name="hinting" mode="assign">
24            <bool>false</bool>
25        </edit>
26        <edit name="autohint" mode="assign">
27            <bool>false</bool>
28        </edit>
29    </match>
30
31    <alias>
32        <family>sans-serif</family>
33        <prefer>
34            <family>VL PGothic</family>
35        </prefer>
36    </alias>
37
38    <alias>
39        <family>monospace</family>
40        <prefer>
41            <family>VL Gothic</family>
42        </prefer>
43    </alias>
44
45</fontconfig>
Note: See TracBrowser for help on using the repository browser.