Evince
Download †
Installing Evince †
MSYS2 64-bit Evince
pacman -S mingw-w64-x86_64-evince
MSYS2 32-bit Evince
pacman -S mingw-w64-i686-evince
Installer
Repository †
Changelog †
Issues †
Configuring fallback fonts †
代替フォントの設定がされていない場合はフォントが埋め込まれていない場合に明朝体 (Ryumin-Light) がゴシック体で表示されてしまうことがある
~/.config/fontconfig/fonts.conf を作成して TeX Live に含まれている IPAexMincho, IPAexGothic で表示するように設定する
$ mkdir -p ~/.config/fontconfig
$ vim ~/.config/fontconfig/fonts.conf
- ~/.config/fontconfig/fonts.conf
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<dir>/usr/local/texlive/2020/texmf-dist/fonts/truetype/public/ipaex</dir>
<dir>/usr/share/texlive/texmf-dist/fonts/truetype/public/ipaex</dir>
<dir>/usr/share/texmf-dist/fonts/truetype/public/ipaex</dir>
<dir>/usr/share/texmf/fonts/truetype/public/ipaex</dir>
<match target="pattern">
<test qual="any" name="family">
<string>Ryumin</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>IPAexMincho</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family">
<string>GothicBBB</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>IPAexGothic</string>
</edit>
</match>
</fontconfig>
Forks †