|
|

楼主 |
发表于 2005-6-16 17:10:48
|
显示全部楼层
Post by findsun
我想说的就是Firefox. 好像访问linuxfans时显示粗体是正确的, 而linuxsir的标题显示都没粗体. 另外, Gnome中的粗体是好的.
把下面的加进/etc/fons/local.conf
- <!--
- 配置粗体中文显示,要配合freetype-2.1.10,libxft-2.1.7,fontconfig-2.3.X
- -->
- <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>
- <!-- set the embolden flag -->
- <edit name="embolden" mode="assign">
- <bool>true</bool>
- </edit>
- </match>
复制代码 |
|