
\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}
\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)。ウィリー・ウォン氏が解決策を提供しました。