I would like to use biblatex for the bibliography, cleveref for clever references, and a package for automatic equation numbering such as autonum. Unfortunately, autonum is incompatible with biblatex. A popular alternative to autonum is the mathtools package with the option \mathtoolsset{showonlyrefs}. However, this solution is incompatible with cleveref.
Is there a solution to this problem?
Minimal (non-)working example:
% !BIB program = biber\documentclass[a4paper, 11pt, oneside]{book}\usepackage[utf8]{inputenc}\usepackage{amsmath}\usepackage{cleveref}\usepackage[backend=biber, style=numeric, citestyle=ieee, sorting=ynt]{biblatex}\usepackage{autonum}\begin{document}\chapter{Introduction}\label{chap:intro}\begin{align}a & = b\\c &= d\label{eq:test}\end{align}Equation~\eqref{eq:test} in \cref{chap:intro} states that...\end{document}