GeneralOutput directory problems

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
ChosSimbaOne
Posts: 9
Joined: Sat Dec 13, 2008 10:33 pm

Output directory problems

Post by ChosSimbaOne »

Hi.
I've tried to move the aux files from my latex folder to a sub-dir. I've found this on the forum: http://www.latex-community.org/forum/vi ... ory#p40418

Now i can't compile my bib-file, and i get this error message:
"bibtex: unrecognized option `--include-directory=C:\User\Boye\Documtens\Universitet\SW5\SVN\Latex\tobedeleted'"

my bibtex file is in in the latex dir and the aux files is in a dir named output.

Im using TexLive09 and texniccenter.

What am i doing wrong?

Hope this is sufficent information, and hope that you can help me.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

meho_r
Posts: 823
Joined: Tue Aug 07, 2007 5:28 pm

Output directory problems

Post by meho_r »

Until someone using Windows and TXC provides a more relevant answer, here's my guess. Maybe you should try to specify the path to aux files instead of using --include-directory for bibtex entry. E.g., in Texmaker, I changed my bibtex command from this:

Code: Select all

bibtex %.aux
to this:

Code: Select all

bibtex ./output/%.aux
This is how it looks on Linux and means that bibtex should look in output directory which is located in current directory. Now, you take a look how bibtex command looks in TXC settings and try to add the output folder (the one containing aux files) to the path (of course, don't forget that on Windows, you'll use \ instead of / in paths).
Post Reply