|
|
发表于 2007-1-14 09:57:28
|
显示全部楼层
在local.conf中加入一段虚拟粗体的代码
<!-- artificial bold by: firefly-->
<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> |
|