防止标题停止符出现在 ConTeXt 的参考文献中

防止标题停止符出现在 ConTeXt 的参考文献中

我想防止标题阻止符出现在 ConTeXt 中的参考文献中。

这是一个简单的例子:

\starttext
\setupcaptions[numberstopper=.~---~, distance=0em]
\placefigure[][cow]{A Cow}{\externalfigure[cow]}
\in{Figure}[cow] shows a cow.
\stoptext

我怎样才能numberstopper\in命令中删除它?

答案1

使用suffix而不是numberstopper

\useMPlibrary[dum] % For dummy figures

\setupcaptions[suffix=.~---~, distance=0em]
\starttext
\placefigure[][cow]{A Cow}{\externalfigure[cow]}
\in{Figure}[cow] shows a cow.
\stoptext

这使

在此处输入图片描述

相关内容