September 2008
4 posts
3 tags
:D
There is also a game about this: http://current.com/gatesvsjobs
2 tags
Georg Schramm live in Pantheon
Endlich habe ich ihn live gesehen! Ich muss sagen: UNGLAUBLICH! Die heutige Vorstellung wird auch benutzt werden, um eine CD zu erstellen. Einfach super! Wenn man keine Gelegenheit hat, ihn live zu sehen, sollte man die Sendung “Neues aus der Anstalt” auf ZDF sehen!
2 tags
Changing the warning setting of vim-latex
If I compile LaTeX files using vim-latex, very often vim opens package files, e.g. xy.sty etc., because the LaTeX compiler had some - not that important for the most of the time - warnings. Then I have to re-open the tex file. It is really annoying. However you can avoid this by adding the following lines to the .vimrc file:
let g:Tex_IgnoredWarnings...
2 tags
Forward & inverse searching with Vim, Xdvi and...
I’ve finally found out how to do the forward & inverse searching with (g)vim in combination with vim-latex and xdvi. For forward searching one adds the following line to the .vimrc
let g:Tex_CompileRule_dvi = 'latex --interaction=nonstopmode --src-specials $*'
For inverse searching one opens gvim using the following option
gvim --servername xdvi file.tex
and the xdvi using
xdvi...