由于安装footmisc
了para
,如在此主题。
但这是全局设置的。我想将脚注排版为仅针对文档中某些页面的段落。我该如何获得此功能?
答案1
该footmisc
包重写了输出例程来处理脚注,并且很难逐页更改。另一方面,该类memoir
具有类似的样式,并且可以在文档中更改。
第 1 页(第 3 页类似):
第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}