一般情況下需要使用腳注時只需直接用\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{http://developer.android.com/guide/basics/what-is-android.html}
其中footnotemark會和下面的footnotetext自動對應,並生成腳注。