一般情况下需要使用脚注时只需直接用\footnote{Here is the note}, LaTeX会自动将脚注编号加在页面下方。
但是在caption中直接使用footnote会报错,即使使用\protect勉强生成了编号,但是脚注却并没有出现在页脚。点击编号会跳到首页,此问题着实令人蛋疼。经过一番查证发现可以用更强势的脚注表示法解决问题:
\begin{figure}[!ht] \centering \includegraphics[]{ch1_architechture.png} \caption{Architechture du système Android<strong>\protect\footnotemark</strong>} \end{figure} \footnotetext{}
其中footnotemark会和下面的footnotetext自动对应,并生成脚注。