我使用推荐的包在 LaTeX 中有 2 个并排的图形subcaption
。
\begin{figure}
\centering
\begin{subfigure}[b]{0.48\textwidth}
\includegraphics[width=\textwidth]{events/pad_p2}
\label{fig:pad_p2}
\end{subfigure}
~
\begin{subfigure}[b]{0.48\textwidth}
\includegraphics[width=\textwidth]{events/pad_p8}
\label{fig:pad_p8}
\end{subfigure}
\caption{Pads.}
\end{figure}
然后我尝试使用以下方法在文本中引用它们:
Look at figure~\ref{fig:pad_p8}
但是在编译引用不存在的文档时出现错误。
相反,如果我在每个子图中添加一个标题,那么错误就会消失,但这不是我真正想要做的。
如何在不添加caption
每个子图的情况下解决问题?