|
|
我的~/.fonts.conf内容这样:
- <?xml version="1.0"?>
- <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
- <fontconfig>
- <!--
- Small font needn't use antialias
- -->
- <match target="font">
- <test name="lang" compare="contains">
- <string>zh-cn</string>
- <string>zh-tw</string>
- </test>
- <test qual="any" name="pixelsize" compare="more_eq">
- <double>11</double>
- </test>
- <test qual="any" name="pixelsize" compare="less_eq">
- <double>15</double>
- </test>
- <edit name="antialias" mode="assign">
- <bool>false</bool>
- </edit>
- </match>
- <!--
- synthetical bold
- -->
- <match target="font">
- <!-- check to see if the font is just regular -->
- <test name="weight" compare="less_eq">
- <int>100</int>
- </test>
- <!-- check to see if the pattern requests bold -->
- <test target="pattern" name="weight" compare="more_eq">
- <int>180</int>
- </test>
- <!-- pretend the font is bold now , first for cario, second for libxft-->
- <edit name="weight" mode="assign">
- <const>bold</const>
- </edit>
- <edit name="embolden" mode="assign">
- <bool>true</bool>
- </edit>
-
- </match>
- </fontconfig>
复制代码
firefox的效果如附件中:
我安装了x-ttcidfont-conf,我安装的字体是文鼎细宋。 |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?注册
x
|