지원하는 편집기
지에디트
Forward Search (from gedit to Evince) and Backward search (from Evince to gedit) are both supported.
Vim-latex
The gedit plugin contains a python script (evince_dbus.py) that can be used to get SyncTeX working with Vim. In order to use vim-latex together with Evince you need to follow the next steps:
evince_dbus.py를 경로 어딘가에 복사하고 +x 권한을 줍니다.
-
~/.vimrc 파일을 수정하고 다음 줄을 추가합니다.
let g:Tex_ViewRule_pdf = 'evince_dbus.py' let g:Tex_DefaultTargetFormat = 'pdf' let g:Tex_CompileRule_pdf = 'pdflatex --synctex=1 -interaction=nonstopmode $*' 이제 \ls를 입력하면 vim-latex에서 전방 검색 기능을 사용할 수 있습니다. 후방 검색은 아직 지원하지 않습니다.