Putting output in different dierectories
ConTeXt puts all generated files in the same directory as the sourcefile. Is it possible to put the PDF-file in its own directory en all the other generated files in another directory? -- Cecil Westerhof
Assuming the lack of responses means that there isn't a way to do that
using texexec, you could always use a script to do that.
#!/bin/sh
PAPER=test
texexec $PAPER".tex"
mv $PAPER".pdf" ./newdir
mv $PAPER.* ./newdir2
mv ./newdir2/$PAPER".tex" .
Then just execute the script instead of directly using the texexec command
Mike
On Fri, Feb 13, 2009 at 11:04 AM, Cecil Westerhof
ConTeXt puts all generated files in the same directory as the sourcefile. Is it possible to put the PDF-file in its own directory en all the other generated files in another directory?
-- Cecil Westerhof ___________________________________________________________________________________ If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context webpage : http://www.pragma-ade.nl / http://tex.aanhet.net archive : https://foundry.supelec.fr/projects/contextrev/ wiki : http://contextgarden.net ___________________________________________________________________________________
participants (2)
-
Cecil Westerhof
-
Michael Bynum