미니페이지의 각주는 숫자에서 문자로 전환됩니다.

미니페이지의 각주는 숫자에서 문자로 전환됩니다.

숫자를 사용하여 각주를 표시하고 문자를 사용하여 각주 텍스트에 레이블을 지정하는 \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그리고) 그리고 놀았어

\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). Willie Wong이 솔루션을 제공했습니다.

관련 정보