
\footnotemark
在小頁中使用with\footnotetext
使用數字來標記腳註,使用字母來標記腳註文字。
\documentclass{article}
\begin{document}
\begin{minipage}{\textwidth}
This\footnotemark[3] is a test\footnotemark[2].
\footnotemark[3]{test}
\footnotetext[2]{two}
\end{minipage}
\end{document}
\usepackage{footmisc}
\renewcommand\thempfootnote{\fnsymbol{mpfootnote}}
但無法解決。
答案1
\documentclass[10pt]{article}
\renewcommand{\thempfootnote}{\arabic{mpfootnote}}
\begin{document}
\begin{minipage}{\textwidth}
This\footnotemark[3] is a test\footnotemark[2].
\footnotetext[3]{test}
\footnotetext[2]{two}
\end{minipage}
\結束{文件}
這條線\renewcommand{\thempfootnote}{\arabic{mpfootnote}}
就是我所缺少的。小頁面環境中的腳註用小寫字母列印(Stefan Kottwitz 在這個問題中指出) 小型頁面中的 \footnotemark 和 \footnotetext)。 Willie Wong 提供了解決方案。