对于包含大量脚注的文档,特别是一些较短的脚注,最好在同一行上有多个脚注,例如:
- 这是第一个脚注 2. 这是第二个脚注 3. 这是第三个脚注 4. 最后,我们开始回绕。
而不是拥有它:
- 第一个脚注
- 第二个脚注
- ETC。
有没有办法在 LaTeX 中实现这一点?
(这不是这个问题因为我问的是常规全页环境。)
答案1
选项para
脚杂包(这是链接问题的起点)是适合“常规全页环境”。
\documentclass{article}
\usepackage[para]{footmisc}
\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.}
\end{document}