I'm trying to remove unused labels from my latex document. I realize that this question has been addressed before. However, it doesn't answer my query, because the package refcheck is not compatible with cleverer, which is what I have used in my document. Hence, recheck is declaring all labels unused in my document.
EDIT:
The solution here, written for the explicit purpose of making refcheck compatible with cleveref, doesn't work for me either. Labels for theorems and sections are recognized, but labels for equations are not.
An example from my code would be:
\documentclass{article}
\begin{document}
\begin{equation}
\label{eq1}
a=b
\end{equation}
Refer to \cref{eq1}
\end{document}
refcheck claims that that eq1 is an unused label.
\refcheckizeparts from the other question and mention which error messages you get with that document. – Marijn Feb 18 '22 at 14:26refcheckis basically stale since 2004. The author has had many years to upgrade it in order to supportcleveref, but doesn't seem interested in doing it. – egreg Feb 18 '22 at 15:14\documentclassand end with\end{document}. That way, no guessing is necessary on the part of potential helpers. – barbara beeton Feb 18 '22 at 15:17\refcheckize{\cref}as suggested in my answer to the linked question, I have no problem. – egreg Feb 18 '22 at 15:17\cref, you should have a\usepackage{cleveref}in the preamble.refcheckpackage, you need a\usepackage{refcheck}in the preamble.\refcheckize{\cref}from egreg's answer to https://tex.stackexchange.com/q/87610 makesrefcheckaware of\cref(as pointed out in egreg's comment).