我可以通过.fonts.conf
在用户目录中进行编辑(或编辑global /etc/fonts/fonts.conf
)来指定用于在X中显示特定语言的默认字体系列。但是,我无法以相同的方式强制使用特定的字体大小。
例如,以下命令迫使俄语在Linux Libertine中显示:
<fontconfig>
<match>
<test name="lang">
<string>rus</string>
</test>
<edit mode="prepend" name="family">
<string>Linux Libertine</string>
</edit>
</match>
</fontconfig>
我尝试添加以下XML标记,但是它不起作用:
<edit mode="assign" name="size">
<int>18</int>
</edit>
<size>
,以<pixelsize>
足以让我目前的.fonts.conf
工作。