Look at this piece of paper from an APS journal:
as you can see there is a single image (called figure 3) with already embedded the (a), (b), etc.. letters indicating different parts of the same figure. If you look above it you can see they are able to reference the single parts of the figure (e.g. fig. 3(b)), but how is possible to do that since they don't have subfigures? My guessing was they were using phantom captions from the subcaption package, but this is not possible since this latter is not compatible with REVTeX 4.2 (that is the standard document package for APS journals). My question is: how can I obtain the same result?
Here you can find a Minimal Working Example of my attempt:
\documentclass{revtex4-2}
\usepackage[colorlinks,linkcolor=red,citecolor=red,urlcolor=red]{hyperref}
\usepackage[demo]{graphicx}
\begin{document}
\begin{figure}
\centering
\includegraphics[width=\textwidth]{example-image-a}
\caption{Main caption here}
\label{fig:main}
\end{figure}
Suppose that figure \ref{fig:main} is already divided in part (a) and part (b). I want to reference part \ref{fig:main}a and part \ref{fig:main}b, but if I do like this only the number is \textit{clickable}, not the letter. Moreover I have to write manually the letter. A workaround I have found is \hyperref[fig:main]{\ref{fig:main}a}, but I am still not satisfied because I still have to write the letter manually.
\end{document}




