我在一些图前面添加了一些参考资料,但我不希望它显示在图页中:
\begin{figure}
\centering
\includegraphics{images/rmi.png}
\caption{text[5]}
\label{fig:text}
\end{figure}
我想[5]
从图表中删除。该怎么做?
答案1
我认为你可以做这样的事情
\caption[short]{Long}
在您的示例中 -
\begin{figure}
\centering
\includegraphics{images/rmi.png}
\caption[text]{text [5]}
\label{fig:text}
\end{figure}
这将为您的标题提供 tof 中不包含参考的内容。