Re: [Vim-latex-devel] [Contact] Vim-Latex Compiling and Viewing help !
Brought to you by:
srinathava,
tmaas
From: Srinath A. <sr...@fa...> - 2004-05-05 23:20:40
|
On Wed, 5 May 2004 vim...@so...valid wrote: > let g:Tex_CompileRule_dvi = \'latex > --src-specials \\input{$*}\' in this file. so now when i do :echo > Tex_CompileRule_dvi it is printing what is required: > > latex --src-specials > \\input{$*} > I suggest using let g:Tex_CompileRule_dvi = 'latex --src-specials --interaction=nonstopmode $*' I think this is what the manual suggests... The \\input thing is prone to shell escape errors. > I dont understand what is meant by executing on the terminal; in which > directory; i tried to execute in a couple of directories but it doesnt > work. It says latex not recognized as internal or external command. > etc.. > This is the problem. The directory where latex.exe resides should be included in your %PATH% settings. In windows, the %PATH% setting is changed in "Control Panel > System > Advanced > Environement Variables". > :call RunLaTeX() says unknown function RunLaTeX This needs to be updated. It should have been Tex_RunLaTeX. Srinath |