2007年9月13日 星期四

Ubuntu字型設定

原則上是參考中文 fontconfig 設定檔裡的設定,但是由於這裡面的設定有些部份不是很喜歡,所以又自行修改了某些地方:
  1. 有關所有字型的AA、hinting、autohint:
    <match target="font">
    <edit name="antialias" mode="assign">
    <bool>true</bool>
    </edit>
    <edit name="hinting" mode="assign">
    <bool>true</bool>
    </edit>
    <edit name="autohint" mode="assign">
    <bool>false</bool>
    </edit>
    </match>
  2. 關閉英文小字AA:
    <test name="pixelsize" compare="less">
    <double>8</double>
    </test>
  3. 關閉中文字體小字AA:
    <test name="pixelsize" compare="less_eq">
    <double>16</double>
    </test>

沒有留言: