LaTeX - 如何在图片说明(caption)中使用脚注(footnote)


一般情况下需要使用脚注时只需直接用\footnote{Here is the note}, LaTeX会自动将脚注编号加在页面下方。

但是在caption中直接使用footnote会报错,即使使用\protect勉强生成了编号,但是脚注却并没有出现在页脚。点击编号会跳到首页,此问题着实令人蛋疼。经过一番查证发现可以用更强势的脚注表示法解决问题:

  1. \begin{figure}[!ht]  
  2.     \centering  
  3.     \includegraphics[]{ch1_architechture.png}  
  4.     \caption{Architechture du système Android<strong>\protect\footnotemark</strong>}  
  5. \end{figure}  
  6. \footnotetext{http://developer.android.com/guide/basics/what-is-android.html}  
其中footnotemark会和下面的footnotetext自动对应,并生成脚注。

相关内容