123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?xml version="1.0"?>
- <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
- <fontconfig>
- <!-- VL PGothic -->
- <match target="font">
- <test name="family">
- <string>VL PGothic</string>
- </test>
- <edit name="hinting" mode="assign">
- <bool>false</bool>
- </edit>
- <edit name="autohint" mode="assign">
- <bool>false</bool>
- </edit>
- </match>
- <!-- VL Gothic -->
- <match target="font">
- <test name="family">
- <string>VL Gothic</string>
- </test>
- <edit name="hinting" mode="assign">
- <bool>false</bool>
- </edit>
- <edit name="autohint" mode="assign">
- <bool>false</bool>
- </edit>
- </match>
- <alias>
- <family>sans-serif</family>
- <prefer>
- <family>VL PGothic</family>
- </prefer>
- </alias>
- <alias>
- <family>monospace</family>
- <prefer>
- <family>VL Gothic</family>
- </prefer>
- </alias>
- </fontconfig>
|