歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

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自動對應,並生成腳注。
Copyright © Linux教程網 All Rights Reserved