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

相关内容