I am having an issue with my .bib file. Both in text references and the bibliography at the end do not show up. These are the error messages I get:
The top-level auxiliary file: Chapter_one_26.02.21.aux
I found no \citation commands---while reading file Chapter_one_26.02.21.aux
I found no \bibdata command---while reading file Chapter_one_26.02.21.aux
I found no \bibstyle command---while reading file Chapter_one_26.02.21.aux
(There were 3 error messages)
and this is my code:
...
\usepackage{biblatex}
\addbibresource{BiblioC1.bib}
...
\begin{document}
...
\printbibliography
...
\end{document}
any ideas of why this is happening? Thanks a lot
bibtex, butbiblatexexpectsbiberunless stated otherwise – daleif Mar 01 '21 at 09:40bibtex-format. This can be handled via several different external programmes to produce the bibliography that latex can then typeset. The primary of those programmes are calledbibtexandbiber(yes the programme has the same name as the data format, like like with latex). So we need to know exactly which external program you are using here to handle the conversion from the.bibfile to latex – daleif Mar 01 '21 at 10:01natbibinstead ofbiblatexit seems to work so I guess it is bibtex, correct? – Manuel Mar 01 '21 at 10:12biblatexwill work fine, you just need to tell your editor to usebiberinstead ofbibtex. How to do that depends on the editor. – daleif Mar 01 '21 at 10:58