我正在将Debian GNU / Linux版本8与LXDE一起使用。关于字体,我将系统配置为使用抗锯齿,亚像素渲染和完整提示。但是,我想禁用Liberif Serif的提示,但是在Firefox中不起作用。Firefox仍使用Liberation Serif的完整提示。但是,Liberation Serif在其他程序中正确显示为非暗示(我在Gucharmap,Leafpad和LibreOffice Writer中进行了检查)。
如何在Firefox中禁用所有衬线字体的提示或仅禁用Liberif Serif?
我已经暗示设定为全用自带的LXDE定制器,并在下面的代码~/.config/fontconfig/fonts.conf
和~/.fonts.conf
(后来是一个符号链接到前):
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font">
<edit mode="assign" name="lcdfilter">
<const>lcddefault</const>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family"><string>Liberation Serif</string></test>
<edit name="hintstyle" mode="assign">
<const>hintnone</const>
</edit>
</match>
</fontconfig>
谢谢。