I would like to compile a thesis with the tufte-book class. Is tufte-book supposed to be compatible with biblatex? This question suggests that it's possible? Maybe something changed since?
Here's a MWE:
\documentclass{tufte-book}
\usepackage[style=verbose, autocite=footnote, backend=biber]{biblatex}
\addbibresource{../references.bib}
\begin{document}
Hello World.
\end{document}
The error is:
! Package biblatex Error: Incompatible package 'natbib'.
See the biblatex package documentation for explanation.
Type H <return> for immediate help.
...
l.202 \blx@packageincompatibility
?
I tried using both Tectonic and pdflatex which the authors of tufte-book recommend in their README. This GitHub issue of tufte-latex suggests that they wish to switch to biblatex from natbib?

biditufte-bookand I used thenobiboption and I still get the same errors as before. – Doron Behar Mar 16 '21 at 17:17biditufte-book(as included inbidi) appears to be based on an ancient version oftufte-latex(from before2011/06/18) that doesn't support thenoibidoption. – moewe Mar 16 '21 at 17:20\documentclass{biditufte-book} \begin{document}Hello World\end{document}to compile without error with a current LaTeX kernel, so you may have other problems here. – moewe Mar 16 '21 at 17:28