如何将脚注放在图片标题中而不显示在 \listofffigures 中?

如何将脚注放在图片标题中而不显示在 \listofffigures 中?

我知道这个话题在这个论坛上已经被广泛讨论了,但我似乎找不到一个好的答案。要获得图表标题的脚注,我真正满意的唯一方法是这样的:

\begin{document}

\begin{figure}[h]
    \centering
    \includegraphics{name.png}
    \caption{caption \protect\footnotemark}
    \label{fig:enter-label}
\end{figure}
\footnotetext{source}

\end{document}

但是使用时\listoffigures脚注仍然存在,而不仅仅是标题。有没有简单的方法可以解决这个问题,让图片列表中只有标题?

相关内容