*[[Evince:https://wiki.gnome.org/Apps/Evince]] [#fec1fb99]

//#ref(http://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Evince_logo.svg/200px-Evince_logo.svg.png,right,around,nolink,Evince)
#ref(https://git.gnome.org/browse/evince/plain/data/icons/256x256/apps/evince.png,right,around,nolink,Evince)

&color(White,#5F2F2F){  ''◆目次◆''  };&br;

#contents

*Evince とは [#l8fbb2e6]

Evince は PDF, PS, DVI ファイルが表示可能なドキュメント・ビューアです.~
SyncTeX に対応しています.~
ファイルの自動更新機能もあります.~

-[[Evince:https://wiki.gnome.org/Apps/Evince]]
-[[Evince Document Viewer:https://help.gnome.org/users/evince/stable/index.html.en]]
-[[evince.mirror:http://sourceforge.net/projects/evince.mirror/]]

**動作環境 [#q9c64542]

Windows, OS X, Linux

**License [#lf30b1e1]

[[GPLv2:https://git.gnome.org/browse/evince/tree/COPYING]]

**リリース情報 [#m8e1200a]

https://git.gnome.org/browse/evince/refs/tags を参照.~

**ChangeLog [#nb7ae766]
-https://git.gnome.org/browse/evince/
--[[log:https://git.gnome.org/browse/evince/log/]]

*ダウンロード/インストール [#j395f01d]

**Windows [#f2460848]

-[[Apps/Evince/Downloads - GNOME Wiki!:https://wiki.gnome.org/Apps/Evince/Downloads]]

公式サイトの Windows 版の Evince で日本語を表示したい場合はフォントを埋め込む必要があります.~
公式サイトの Windows 版の Evince で日本語を表示したい場合はフォントを埋め込む必要があります. (→ [[(W32TeX)LualatexのPDFがEvinceで日本語が表示されない:http://oku.edu.mie-u.ac.jp/tex/mod/forum/discuss.php?d=836]])~
自分で Evince をビルドして使用する場合はフォントを埋め込まなくても日本語を表示することが可能です.~
Evince は [[MinGW]] でビルド可能です.~

**OS X [#y8d21820]

-[[/trunk/dports/gnome/evince/Portfile:http://trac.macports.org/browser/trunk/dports/gnome/evince/Portfile]]

**Linux Mint [#lacd43b5]

-http://packages.ubuntu.com/ja/evince

**Debian [#rf817124]

-http://packages.debian.org/ja/evince

**Fedora [#jbf882d0]

-https://apps.fedoraproject.org/packages/evince

**openSUSE [#rd040fd0]

-http://software.opensuse.org/package/evince

**Arch Linux [#eb51c4f9]

-https://www.archlinux.org/packages/?q=evince

**Gentoo Linux [#lcdb6ed7]

-http://packages.gentoo.org/package/app-text/evince

**Beyond Linux From Scratch [#i9f92bae]

-http://www.linuxfromscratch.org/blfs/view/svn/gnome/evince.html
-http://lfsbookja.sourceforge.jp/BLFS/svn.ja/gnome/evince.html

*SyncTeX [#w699c2c2]
-[[Evince Document Viewer › SyncTex:https://help.gnome.org/users/evince/stable/index.html.en#synctex]]
--[[Evince Document Viewer › SyncTex » Supported Editors:https://help.gnome.org/users/evince/stable/synctex-editors.html.en]]

**forward and inverse search [#ga060086]

fwdevince, evince_forward_search を使用して forward search ができます.~
invevince, bwdevince, evince_inverse_search, evince_backward_search を使用して inverse search ができます.~
inverse search は Ctrl + 左クリックで対応する TeX 文書の該当箇所にジャンプします.~

***fwdevince &aname(fwdevince); [#ie18c015]

[[Evince/fwdevince]] を参照.

*代替フォントの設定 &aname(substitute); [#id0a7178]

フォントが埋め込まれていない場合に Ryumin-Light (明朝体) がゴシック体で表示されてしまう場合は ~/.config/fontconfig/fonts.conf を作成して代替フォントの設定をします.~
以下の設定では TeX Live に含まれている IPAexMincho, IPAexGothic で表示するようにしています.~

 $ mkdir -p ~/.config/fontconfig
 $ vi ~/.config/fontconfig/fonts.conf

----
-~/.config/fontconfig/fonts.conf
----
 <?xml version="1.0"?>
 <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
 <fontconfig>
 <dir>/usr/local/texlive/2013/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>
----

 $ fc-match Ryumin
 ipaexm.ttf: "IPAex明朝" "Regular"
 $ fc-match GothicBBB
 ipaexg.ttf: "IPAexゴシック" "Regular"

*関連リンク [#n7670496]
-[[(W32TeX)LualatexのPDFがEvinceで日本語が表示されない:http://oku.edu.mie-u.ac.jp/tex/mod/forum/discuss.php?d=836]]