ミニページの脚注が数字から文字に切り替わります

ミニページの脚注が数字から文字に切り替わります

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

生産する これを修正することはできますか?

私はこれらの質問を見ました(2そして3)で遊んでみました

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

\end{ドキュメント}

解決

この行は\renewcommand{\thempfootnote}{\arabic{mpfootnote}}私が見逃していたものです。ミニページ環境内の脚注は小さな文字で印刷されます(この質問でStefan Kottwitzが指摘しました) ミニページの \footnotemark と \footnotetext)。ウィリー・ウォン氏が解決策を提供しました。

関連情報