如何引用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*}

相關內容