Reputation: 33
I've configured Texmaker to send the output files to a "build" subdirectory to try and keep the folder organized. Within the main folder is my .tex and .bib files accompanied by the "build" folder. Now when I run my .tex file it typesets correctly but when I run BibTeX it can't find the .aux file. I assume this is because it lies within that "build" folder. Is there a way I can tell BibTeX to search for it in the "build" folder irrespective of what main folder I'm working in.
I'm using Texmaker 5.0.3 on a Windows machine.
Upvotes: 2
Views: 8650
Reputation: 1
My setup:
as shown in the image, you need to add at the end of the path to biber "build/%.bcf"
In my case, the whole line is:
"C:/Program Files/MiKTeX/miktex/bin/x64/biber.exe" build/%.bcf
Upvotes: -1
Reputation: 448
I do not know if this will solve your problem on Windows, but on Linux (Ubuntu) it does: (sorry if the options are not exactly like I write them, I am translating from a different language)
The "%"- symbol is a placeholder here, it will be replaced by the name of your .tex file. Maybe on Windows this is a different symbol, lets say "#". If so, just do the same thing as above but keep the Windows placeholder symbol instead of "%".
Upvotes: 5