ffigbox 내부의 그림을 참조하는 방법은 무엇입니까?

ffigbox 내부의 그림을 참조하는 방법은 무엇입니까?

두 개의 그림과 테이블이 나란히 있는 다음 코드를 작성했습니다. 참조를 사용하여 그림을 참조하면 \ref{dev}올바르게 표시되지만 개별 이미지를 참조하면 \ref{done}표시 \ref{dtwo}되지 않습니다.

\begin{figure*}
    \begin{floatrow}
    \ffigbox[0.6\textwidth]{%
        \begin{subfloatrow}
        \ffigbox[\FBwidth][]
          {\includegraphics[scale=0.34]{done.eps}}
          {\label{done}}
          {\caption{One}}
        \ffigbox[\FBwidth][]
          {\includegraphics[scale=0.34]{dtwo.eps}}
          {\label{dtwo}}
          {\caption{Two}}
      \end{subfloatrow}
    %   \rule{1cm}{1cm}%
    }{%
      \caption{Figures}%
      {\label{dev}}
    }
    \capbtabbox[0.4\textwidth]{%
      \input{memorytable.tex}
    }{%
      \caption{Memory}%
      \label{mem}
    }
    \end{floatrow}
\end{figure*}

관련 정보