同一行的脚注

同一行的脚注

对于包含大量脚注的文档,特别是一些较短的脚注,最好在同一行上有多个脚注,例如:

  1. 这是第一个脚注 2. 这是第二个脚注 3. 这是第三个脚注 4. 最后,我们开始回绕。

而不是拥有它:

  1. 第一个脚注
  2. 第二个脚注
  3. 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}

enter image description here

相关内容