[Tex/LaTex] Biber doesn’t find the .bib-file

biberbiblatexjabref

My system is Windows 10. I have recently started to work with LaTeX. For writing I use TeXmaker. I am trying to get the citation and bibliography functions working. I have generated a .bib-file with the BibTex-Funktion of Mendeley. I saved the .bib-file in the same directory as my .tex-document.
My test document for citation and bibliography looks like this:

\documentclass{scrreprt}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[babel, german=guillemets]{csquotes}
\usepackage[style=authoryear, backend=biber]{biblatex}
\bibliography{library02.bib}
\begin{document}
\cite{Angelica2008}
\printbibliography
\end{document}

After saving the .tex-document I ran latex on the file:
latex C:…\beispiel02.tex – that worked.

In a next step I ran biber:
biber beispiel02

I tried this in quite some varying .tex-documents, directory structures and commands etc., but I always get the Error: cannot find library02.bib

I have already looked for hidden extension files (a phenomenon previously described in this forum) but I found none.

My biber version is 2.5. TeX Live Manager didn't give me any possible further updates, neither for biblatex.

I opened my .bib-file with Jabref, which worked, and saved it again with this program. I made sure that the settings were on saving files as utf-8.

I also tried to put in the full directory path of the library, or saving the library.bib in another folder (also in the texmf folder).

Up to now none of this worked and I would happy to get more ideas how to solve the problem.

Best Answer

The problem was solved by chosing the exact directory of the folder with the files when putting the commands in the command window. Otherwise, the latex was still able to find the tex-file by naming the complete path, but biber wasn't able to find the .bib file.

Related Question