|
发表于 2006-7-30 19:31:49
|
显示全部楼层
不带粗体的中文是 fontconfig 给自动合成的。
在 fonts.conf 里有一段:- <!--
- Synthetic emboldening for fonts that do not have bold face available
- -->
- <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>200</int>
- </test>
- <!-- set the embolden flag -->
- <edit name="embolden" mode="assign">
- <bool>true</bool>
- </edit>
- </match>
复制代码 把里面的 200 改成 180, linuxsir 里就能看到完整粗体,你最好把这个加到 /etc/fonts/local.conf 或 ~/.fonts.conf |
|