Re: [Vim-latex-devel] output path for .log files
Brought to you by:
srinathava,
tmaas
From: Aditya M. <ad...@ii...> - 2006-08-01 23:20:48
|
On Tue, 1 Aug 2006, Gast=F3n Aragu=E1s wrote: > Hello > > how can i do to put the *.log and *.aux *.toc in the same directory > where i'm compiling but under tmp/? > > what i'm doing now is (my ~/.vim/ftplugin/tex.vim) > > let g:Tex_DefaultTargetFormat =3D 'pdf' > let g:Tex_FormatDependency_pdf =3D 'dvi,pdf' > let g:Tex_CompileRule_dvi =3D 'latex -interaction=3Dnonstopmode $*' > let g:Tex_CompileRule_pdf =3D 'dvipdf $*.dvi;mv *.log *.aux *.dvi *.toc > *.backup tmp' Miktex (in Windows) has a command line option -output-directory and=20 -aux-directory to specify where temp files should go. I do not know=20 which OS and latex distribution you are using and whether it has these=20 options. You can check the output of latex --help. Aditya |