ConTeXt 中脚注的段落样式

ConTeXt 中脚注的段落样式

有没有办法在 ConTeXt 中使用段落样式的脚注,类似于footmisc包中提供的脚注?例如:

This is some text^1. This is some
other^2 text. This is some more
text.
--------
1 This is a footnote 2. This is
another footnote. See how it
begins on the same line as the
first footnote?

答案1

您正在寻找\setupnotation[alternative=serried](控制数字位置)与\setupnote[paragraph=yes](删除中断)的结合。

\setuppapersize[A6,landscape]
\define[1]\footnotenumbercommand{#1.}

\setupnotation [footnote] [
  numbercommand=\footnotenumbercommand,
  alternative=serried,
]

\setupnote[footnote] [paragraph=yes,]

\starttext

Foo\footnote{This is a footnote.}
bar.\footnote{%
  This is another footnote. See how it begins on the same line as the
  first footnote?
}

\stoptext

段落样式脚注

答案2

您可以定义脚注的列数,例如:

\setupfootnotes[n=4]

相关内容