在fedora的原始配置中和大虾的修改配置中,有如下一段:
<!--
Alias well known font names to available TrueType fonts
-->
<alias>
<family>Times</family>
<accept><family>Times New Roman</family></accept>
</alias>
<alias>
<family>Helvetica</family>
<accept><family>Verdana</family></accept>
</alias>
<alias>
<family>Arial</family>
<accept><family>Verdana</family></accept>
</alias>
<alias>
<family>Courier</family>
<accept><family>Courier New</family></accept>
</alias>
这段配置的本意是将ttf字体排在点阵字体前,但alias中acccept的含义是:Fonts matching the family element are edited to prepend the list of prefered families before the matching family, append the acceptable familys after the matching family and append the default families to the end of the family list。
因此这段配置将ttf字体排在点阵字体后,与本意不符,请问我的理解是否正确?