Thread: [Vim-latex-devel] double xdvi opens and compiler error
Brought to you by:
srinathava,
tmaas
From: Fabio S. <fab...@ti...> - 2002-11-12 11:00:55
|
Hi. I've just checkout CVS module vimfiles and installed it. Dunno why, but :make still does not works: :!latex \\nonstopmode \\input\{\} 2>&1| tee /tmp/v105219/4 This is TeX, Version 3.14159 (Web2C 7.3.1) LaTeX2e <2001/06/01> Babel <v3.7h> and hyphenation patterns for american, french, german, ngerman, b asque, italian, portuges, russian, spanish, swedish, nohyphenation, loaded. ! LaTeX Error: File `.tex' not found. Type X to quit or <RETURN> to proceed, or enter new name. (Default extension: tex) Enter file name: ! Emergency stop. <read *> <*> \nonstopmode \input{} ^^M No pages of output. Transcript written on texput.log. (1 of 2) error: File `.tex' not found. -- Second thing; when I \lv it opens two xdvi windows and not only one. Please cc me in your reply; i'm not subscribed to the list. Thank you -- Fabio Spelta email: fab...@ti... jabber: fe...@ja... ecdl project: http://ecdllibre.sf.net |
From: Srinath A. <sr...@fa...> - 2002-11-12 13:46:49
|
Hello Fabio, This is kinda strange... But we'll work it out soon. Just to eliminate the obvious, When you open up a tex file, what does :set makeprg? display? It should be: latex \\nonstopmode \\input\{$*\} Hopefully, the $* is not missing. If you can tell us that, we'll proceed from there. Also, there was a syntax error in the ViewLaTeX() command causing those errors and causing 2 xdvi's to shoot up. Please download the latest from Thanks, Srinath On 12 Nov 2002, Fabio Spelta wrote: > Hi. > I've just checkout CVS module vimfiles and installed it. > Dunno why, but :make still does not works: > :!latex \\nonstopmode \\input\{\} 2>&1| tee /tmp/v105219/4 > This is TeX, Version 3.14159 (Web2C 7.3.1) > LaTeX2e <2001/06/01> > Babel <v3.7h> and hyphenation patterns for american, french, german, > ngerman, b > asque, italian, portuges, russian, spanish, swedish, nohyphenation, > loaded. > > > ! LaTeX Error: File `.tex' not found. > > Type X to quit or <RETURN> to proceed, > or enter new name. (Default extension: tex) > > Enter file name: > ! Emergency stop. > <read *> > > <*> \nonstopmode \input{} > ^^M > No pages of output. > Transcript written on texput.log. > (1 of 2) error: File `.tex' not found. > > -- > > Second thing; when I \lv it opens two xdvi windows and not only one. > > Please cc me in your reply; i'm not subscribed to the list. > > Thank you > -- > Fabio Spelta > > email: fab...@ti... > jabber: fe...@ja... > ecdl project: http://ecdllibre.sf.net > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Vim-latex-devel mailing list > Vim...@li... > https://lists.sourceforge.net/lists/listinfo/vim-latex-devel > > |
From: Benji F. <be...@me...> - 2002-11-12 22:00:53
|
It certainly looks as though the $* is missing. Try "\lv" (without the quotes, from Normal mode) or use the menu or (for more verbose messages) :call RunLaTeX() and see if that works. We should probably set things up so that :make will work as expected. --Benji Srinath Avadhanula wrote: > Hello Fabio, > > This is kinda strange... But we'll work it out soon. Just to eliminate > the obvious, > > When you open up a tex file, what does > :set makeprg? > display? > It should be: > latex \\nonstopmode \\input\{$*\} > Hopefully, the $* is not missing. > > If you can tell us that, we'll proceed from there. Also, there was a > syntax error in the ViewLaTeX() command causing those errors and causing > 2 xdvi's to shoot up. > > Please download the latest from > > > Thanks, > Srinath > > > On 12 Nov 2002, Fabio Spelta wrote: > > >>Hi. >>I've just checkout CVS module vimfiles and installed it. >>Dunno why, but :make still does not works: >>:!latex \\nonstopmode \\input\{\} 2>&1| tee /tmp/v105219/4 >>This is TeX, Version 3.14159 (Web2C 7.3.1) [snip] |
From: Benji F. <be...@me...> - 2002-11-13 03:08:00
|
Benji Fisher wrote: > It certainly looks as though the $* is missing. Try "\lv" (without > the quotes, from Normal mode) or use the menu or (for more verbose > messages) > > :call RunLaTeX() > > and see if that works. We should probably set things up so that :make > will work as expected. > > --Benji I meant to say "\ll", not "\lv". I think that the behavior noted by Fabio is to be expected. Calling RunLaTeX() usually invokes :make foo (or maybe :make foo.tex) if I am editing foo.tex . You can type this form of the :make command yourself. To save typing, try :make % You can set things up so that main.tex does \include{chap1.tex} and, while editing chap1.tex, RunLaTeX() will invoke :make main which is what you want. I do not see a good way to enable this feature and still have a plain :make work. --Benji |
From: Fabio S. <fab...@ti...> - 2002-11-13 10:23:33
|
> When you open up a tex file, what does > :set makeprg? makeprg=make (???) Mr. Fisher, I got latest CVS and xdvi opens oly once. \ll seems to work and compile my file! Thank you; bye -- Fabio Spelta email: fab...@ti... jabber: fe...@ja... ecdl project: http://ecdllibre.sf.net |
From: Fabio S. <fab...@ti...> - 2002-11-13 10:34:41
|
Sorry... the output is: makeprg=latex \\nonstopmode \\input\{$*\} Anyway, it does'nt change... I have to run \ll on the first (main) file. -- Fabio Spelta email: fab...@ti... jabber: fe...@ja... ecdl project: http://ecdllibre.sf.net |
From: Srinath A. <sr...@fa...> - 2002-11-13 19:37:42
|
Please see http://vim-latex.sourceforge.net/download/latex-suite.html#latex-master-file for how latex-suite does this. Thanks, Srinath On 13 Nov 2002, Fabio Spelta wrote: > Sorry... > the output is: > > makeprg=latex \\nonstopmode \\input\{$*\} > > Anyway, it does'nt change... I have to run \ll on the first (main) file. > > -- > Fabio Spelta > -- Srinath Avadhanula Nov 13 11:36am As long as I am mayor of this city [Jersey City, New Jersey] the great industries are secure. We hear about constitutional rights, free speech and the free press. Every time I hear these words I say to myself, "That man is a Red, that man is a Communist". You never hear a real American talk like that. -- Frank Hague (1896-1956) |