Projects tagged ‘evince’


Jump to tag:

Projects tagged ‘evince’

Filtered by Project Tags evince

Refine results Project Tags latex (2) search (1) geany (1) backward (1) synctex (1)

[2 total ]

0 Users

Add synctex-support to evince and geany on linux See http://lundgaard.wep.dk for details.
Created 11 months ago.

0 Users

Evince with Latex Backward Search. How to use Suppose you have a TeX source file "main.tex" 1. Using DVI src specials: latex --src-specials main.tex export LD_LIBRARY_PATH=/usr/local/lib/ ... [More] /usr/local/bin/evince --editor="gedit +%l %f" main.dvi 2. Using SyncTex & DVI: latex -synctex=1 main.tex export LD_LIBRARY_PATH=/usr/local/lib/ /usr/local/bin/evince --editor="synctex edit -o %p:%x:%y:%o -x 'gedit +%%{line} %%{input}'" main.dvi 3. Using SyncTex & PDF: pdflatex -synctex=1 main.tex export LD_LIBRARY_PATH=/usr/local/lib/ /usr/local/bin/evince --editor="synctex edit -o %p:%x:%y:%o -x 'gedit +%%{line} %%{input}'" main.pdf 4. Create a BASH script /usr/local/bin/texpdf : #!/bin/bash fn=$1 fn=${fn%'.tex'} export LD_LIBRARY_PATH=/usr/local/lib/ latex --src-specials $fn.tex && latex --src-specials $fn.tex && dvipdfmx $fn.dvi && rm $fn.nav $fn.snm $fn.blg $fn.aux $fn.log texput.log $fn.out $fn.toc -f && (/usr/local/bin/evince --editor="gedit +%l %f" $fn.dvi &) [Less]
Created 3 months ago.