I have just discovered refcheck and would love it to bits if my document wasn't full of \autoref's. According to refcheck's documentation, it works with hyperref in general, as long as the latter is loaded first, but apparently that doesn't extend to \autoref's (as per MWE below). Is there a way to make the two work together and correctly mark labels as referenced when done so via \autoref?
\documentclass{article}
\usepackage{mwe}
\usepackage{hyperref}
\usepackage{refcheck}
\begin{document}
\autoref{mylabel} is referenced here, so why does refcheck mark it as unreferenced?
\begin{figure}
\centering
\includegraphics[width=.5\linewidth]{example-image-a}
\caption{My caption}\label{mylabel}
\end{figure}
\end{document}
refcheckcode that does anything special forhyperref. The only thing seems to work is\ref. Commands such as\ref*actually give a wrong output withrefcheckloaded. For\autorefsee the final comment on the answer to http://tex.stackexchange.com/a/87648/15925 – Andrew Swann Dec 10 '14 at 19:55