在页边空白处带有编号的脚注

在页边空白处带有编号的脚注

如何让脚注编号显示在页边距中,而不是嵌入在正文中?我试过

\marginpar{ \footnote{ blah } }

并且出现了脚注编号,但没有出现脚注文本。

例子:

\documentclass{article}
\begin{document}
Here is a normal footnote.\footnote{My footnote text.} 
Next we'll place a note in the margin.\marginpar{Margin note here.}
Can we put a footnote number in the margin, 
with the footnote text at the bottom of the page?\marginpar{\footnote{I hope so!}}
\end{document}

结果:

在此处输入图片描述

我也尝试使用marginnote包来代替\marginpar,但是也不起作用。

答案1

您可以使用一对命令\footnotemark和,\footnotetext如下所示:

\documentclass{article}
\newcommand{\marginfootnote}[1]{\marginpar{\footnotemark}\footnotetext{#1}}
\begin{document}
Can we put a footnote number in the margin, with the footnote text at 
the bottom of the page?\marginfootnote{I hope so!}
\end{document}

相关内容