Latex。图片参考不起作用

Latex。图片参考不起作用

知道为什么以下代码的图形引用不起作用吗?

\usepackage{graphicx}
\usepackage{floatrow}

\begin{figure}[h]
\floatbox[{\capbeside\thisfloatsetup{capbesideposition={right,top},capbesidewidth=4cm}}]{figure}[\FBwidth]
{\caption{A test figure with its caption side by side}\label{fig:tri}}
{\includegraphics[height=10cm]{triangulation}}
\end{figure}

“参见图 \ref{tri}” 编译为“参见图 ??”

答案1

您应该简单地使用“参见图表\ref{fig:tri}”,对参考的调用\ref{}应该使用与标签本身相同的内容\label{}

相关内容