epdfview で明朝体とゴシック体を表示,フォント設定.

epdfviewでpdfを閲覧すると,普通(acroread)なら明朝体で表示される文字も
ゴシック体で表示されていた.
どうやら原因は

% fc-match ryumin
VL-Gothic-Regular.ttf: "VL Gothic" "regular"

と,正しく明朝体のフォントを選べていなのが原因らしい.
だから,明朝体を選ぶようにこちらで指定すればオッケー,って流れみたい.

とりあえず,使用できるフォントを調べる(IPAに絞った).

% fc-list | grep IPA
M+1P+IPAG:style=regular
M+2P+IPAG circle:style=regular
M+1P+IPAG circle:style=regular
IPA モナー ゴシック,IPAMonaGothic:style=Regular,Book
IPA UIゴシック,IPAUIGothic:style=Regular
IPA モナー 明朝,IPAMonaMincho:style=Regular,Book
IPA モナー Pゴシック,IPAMonaPGothic:style=Regular,Book
IPAゴシック,IPAGothic:style=Regular
IPA Pゴシック,IPAPGothic:style=Regular
M+1VM+IPAG circle:style=regular
M+2P+IPAG:style=regular
IPA モナー P明朝,IPAMonaPMincho:style=Regular
IPA モナー UIゴシック,IPAMonaUIGothic:style=Regular
IPA明朝,IPAMincho:style=Regular
IPA P明朝,IPAPMincho:style=Regular
M+2VM+IPAG circle:style=regular

そして,~/.fonts.confに以下を追加.

 <match target="pattern">
  <test qual="any" name="family">
   <string>Ryumin</string>
  </test>
  <edit name="family" mode="prepend" binding="strong">
   <string>IPAMincho</string>
  </edit>
 </match>

 <match target="pattern">
  <test qual="any" name="family">
   <string>GothicBBB</string>
  </test>
  <edit name="family" mode="prepend" binding="strong">
   <string>IPAGothic</string>
  </edit>
 </match>

確認.

% fc-match ryumin
ipam.ttf: "IPAMincho" "Regular"

あちこちにフォントの設定があってワケワカランな.正直なところ.