Perform separate compilation of Latex documents
Posted
by ancechu
on Stack Overflow
See other posts from Stack Overflow
or by ancechu
Published on 2010-05-27T05:06:31Z
Indexed on
2010/05/27
5:11 UTC
Read the original article
Hit count: 218
latex
|latex-environment
When compiling latex documents the compiler emits a lot of "object" files. This clutters the directories I'm working on and it difficults the use of VCS like SVN. When I work with C++ code I have separate directories for the code and the objects, I can run make on the source directory but the .o files go to the build directory.
Is there a proper way to perform this separate compilation with Latex documents? Can it be done by using Makefiles or by passing options to the latex compiler?
Thanks
© Stack Overflow or respective owner