小页面中的脚注由数字改为字母

小页面中的脚注由数字改为字母

\footnotemark在小页面中使用\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 在这个问题中指出 minipage 中的 \footnotemark 和 \footnotetext)Willie Wong提供了解决方案。

相关内容