This question might be related to Biblatex error: Incompatible backref package but has no solution and did not provide an example of document.
Running the following
\documentclass{scrbook}
\usepackage[natbib=true,style=ieee]{biblatex}
\usepackage[backref=page]{hyperref}
\addbibresource{sample.bib}
\begin{document}
\chapter{Chap 1}
Some text\cite{greenwade93}.
\printbibliography
\end{document}
Gives me the error:
See the biblatex package documentation for explanation. Type H for immediate help. ...
l.8 \begin{document} The 'backref' package and biblatex are incompatible.
What is the right way to use backref? I also tried \usepackage[pagebackref]{hyperref} and got a similar error. I don't get what is not compatible with it.
biblatexoffers its own back referencing mechanism. You could try addingbackref=trueto its package options. – leandriis Jul 25 '21 at 17:48