小頁中的腳註從數字切換為字母

小頁中的腳註從數字切換為字母

\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}

產生 這可以解決嗎?

我看了這些問題(23)並玩弄

\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 提供了解決方案。

相關內容