同一页的脚注只能在同一行

同一页的脚注只能在同一行

由于安装footmiscpara,如在此主题

但这是全局设置的。我想将脚注排版为仅针对文档中某些页面的段落。我该如何获得此功能?

答案1

footmisc包重写了输出例程来处理脚注,并且很难逐页更改。另一方面,该类memoir具有类似的样式,并且可以在文档中更改。

第 1 页(第 3 页类似):

第 1 页

第2页:

第2页

\documentclass{memoir}

\textheight=100pt% just for the example

\begin{document}
Some text.\footnote{A footnote.}

Some text.\footnote{Another footnote.}

Some text.\footnote{And yet another footnote which (finally!) ends on
a new line.}

\clearpage
\paragraphfootnotes

Some text.\footnote{A footnote.}

Some text.\footnote{Another footnote.}

Some text.\footnote{And yet another footnote which (finally!) ends on
a new line.}

\clearpage
\plainfootnotes

Some text.\footnote{A footnote.}

Some text.\footnote{Another footnote.}

Some text.\footnote{And yet another footnote which (finally!) ends on
a new line.}

\end{document}

相关内容