From the MWE:
\documentclass{memoir}
\usepackage{graphicx}
\newsubfloat{figure}
\usepackage{hyperref}
\begin{document}
\begin{figure}[h]
\subbottom[Image A]{\includegraphics[width=0.5\columnwidth]{example-image-a}}
\end{figure}
\begin{figure}
\subbottom[Image B]{\includegraphics[width=0.5\columnwidth]{example-image-b}}
\end{figure}
\end{document}
I get the warning destination with the same identifier (name{subfigure.1}) has been already used, duplicate ignored. If the [h] or the \usepackage{hyperref} is removed, the warning disappears.
- Why do I get this warning?
- How is it best resolved?
- And what are the implications of continuing with this warning?
(I get several of these warnings in my non-MWE document, and I still want to link to the subfigures including page numbers using cleveref and varioref.)
(a)(also withouthyperref). – Heiko Oberdiek Apr 08 '16 at 09:091(a)and2(a), respectively. – Thomas Apr 08 '16 at 09:12