|
|
发表于 2004-4-11 10:00:31
|
显示全部楼层
我也发现主题丢了。怎么办?
另外,如果不想显示粗体(事实上,Mandrake Linux 10.0 已经自带支持虚拟斜体),或者是通过安装字体的方式来显示粗体,可以只安装 Xft,然后在 /etc/fonts/local.conf 中加上:
- <!--
- Added by ShiyuTang <shiyutang@linuxsir.cn>. If we use the font SimSun, antialias shouldn't work.
- Because it contains bitmap font.
- -->
- <match target="font">
- <test qual="any" name="pixelsize" compare="less">
- <double>17</double>
- </test>
- <test qual="any" name="family" compare="eq">
- <string>SimSun</string>
- </test>
- <edit name="antialias" mode="assign">
- <bool>false</bool>
- </edit>
- </match>
复制代码 |
|