私はArchLinuxとLXDEをインストールしましたが、すべてがうまく機能しますが、フォントレンダリングは最適ではありません。読書フォント構成に関するWiki外部情報ソースを使用して、次のように設定しました。/etc/fonts/fonts.conf文書
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font">
<edit mode="assign" name="rgba">
<const>rgb</const>
</edit>
<edit mode="assign" name="hinting">
<bool>true</bool>
</edit>
<edit mode="assign" name="hintstyle">
<const>hintfull</const>
</edit>
<edit mode="assign" name="antialias">
<bool>true</bool>
</edit>
<edit mode="assign" name="lcdfilter">
<const>lcddefault</const>
</edit>
</match>
</fontconfig>
私は何を見逃していますか?
答え1
解決策が見つかりました。 Xフォントファイルのインデックスが作成されていません。
/var/log/Xorg.0.log
ログファイルよりもこの事実を発見しました。
$ grep /fonts /var/log/Xorg.0.log.old
[ 13.492] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[ 13.493] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[ 13.493] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[ 13.493] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[ 13.494] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
/usr/share/fonts/misc/,
/usr/share/fonts/TTF/,
/usr/share/fonts/OTF/
それから走り続け、mkfontdir
問題/usr/share/fonts/75dpi
が/usr/share/fonts/100dpi
解決しました。