<?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <!-- /etc/fonts/local.conf file for system local configuration --> <!-- DO NOT EDIT THE /etc/fonts/fonts.conf FILE. IT WILL BE REPLACED WHEN FONTCONFIG IS UPDATED. LOCAL CHANGES BELONG IN 'local.conf'. Note that the normal 'make install' procedure for fontconfig is to replace any existing fonts.conf file with the new version. Place any local customizations in local.conf which this file references. --> <fontconfig> <!-- Font directory list --> <!-- Accept deprecated 'mono' alias, replacing it with 'monospace' <match target="pattern"> <test qual="any" name="family"> <string>mono</string> </test> <edit name="family" mode="assign"> <string>monospace</string> </edit> </match> --> <!-- Font family preferences --> <!-- Serif faces --> <alias> <family>serif</family> <prefer> <family>Bitstream Vera Serif</family> <family>Times New Roman</family> <family>Times</family> <family>SimSun</family><family>SimKai</family><family>SimHei</family> <family>AR PL New Sung</family> <family>AR PL Mingti2L Big5</family> <family>AR PL SungtiL GB</family> <family>Ming(ISO10646)</family> <family>Kochi Mincho</family> <family>Baekmuk Batung</family> </prefer> </alias> <!-- Sans-serif faces --> <alias> <family>sans-serif</family> <prefer> <family>Bitstream Vera Sans</family> <family>Arial</family> <family>Verdana</family> <family>Helvetica</family> <family>SimSun</family><family>SimKai</family><family>SimHei</family> <family>AR PL New Sung</family> <family>Ming(ISO10646)</family> <family>AR PL kaitiM Big5</family> <family>AR PL kaitiM GB</family> <family>Kochi Gothic</family> <family>Baekmuk Dotum</family> </prefer> </alias> <!-- Monospace faces --> <alias> <family>monospace</family> <prefer> <family>Bitstream Vera Sans Mono</family> <family>Courier New</family> <family>Courier</family> <family>SimSun</family><family>SimKai</family><family>SimHei</family> <family>AR PL New Sung</family> <family>Ming(ISO10646)</family> <family>Kochi Mincho</family> <family>Baekmuk Batung</family> </prefer> </alias> <!-- Some Asian fonts misadvertise themselves as monospaced when in fact they are dual-spaced (half and full). This makes FreeType very confused as it forces all widths to match. Undo this magic by disabling the width forcing code <match target="font"> <test name="family"><string>GulimChe</string></test> <edit name="globaladvance"><bool>false</bool></edit> </match> --> <!-- Disable font antialias for fonts <= 16px --> <match target="font"> <!-- Disable font antialias for Chinese <= 16px --> <!-- <test qual="any" name="family" compare="eq"> <string>AR PL Mingti2L Big5</string> <string>AR PL SungtiL Big5</string> <string>SimSun</string> <string>AR PL New Sung</string> <string>Ming(ISO10646)</string> <string>MingLiu</string> <string>PMingLiu</string> <string>Kochi Mincho</string> <string>Baekmuk Dotum</string> </test> --> <test name="pixelsize" compare="less_eq"> <double>16</double> </test> <edit name="antialias"> <bool>false</bool> </edit> <edit name="hinting"> <bool>true</bool> </edit> </match> </fontconfig>