我在 ConTeXt 中定义了一个定义枚举:
\defineenumeration[definition][theorem][
text={Definition},
prefix=chapter,
way=bychapter,
right=.,
titleleft=(,
titleright=.),
distance=0.5em,
headstyle=\ss,
title=yes,
titlestyle=\ss,
alternative=serried,
width=broad,
indentnext=no]
我想将标题(即“Defintion [numberOfTheDefintion]”)与其标题之间的距离设置为 0.5em(就像我用键设置distance
标题和定义文本之间的距离一样)。
谢谢。
答案1
正如 Aditya 所说,解决方案是将密钥设置titledistance
为0.5em
如下形式:
\defineenumeration[definition][theorem][
text={Definition},
prefix=chapter,
way=bychapter,
right=.,
title=yes,
titledistance=0.5em, % the "titledistance" key does the job
titleleft=(,
titleright=.),
distance=0.5em,
headstyle=\ss,
titlestyle=\ss,
alternative=serried,
width=broad,
indentnext=no]
谢谢。