我想防止标题阻止符出现在 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
这使