ConTeXt 中的 \overstrike,它能超越領導者嗎?

ConTeXt 中的 \overstrike,它能超越領導者嗎?

我有類似以下內容:

\setuppapersize[A6][A6]
\starttext
\overstrike{Hello\hfill world!} % Works OK

Hello\leaders\hbox{.}\hfill world! % Works OK, nothing special

\overstrike{Hello\leaders\hbox{.}\hfill world!} % Not quite right
\stoptext

這會產生以下輸出:

在此輸入影像描述

問題是我希望重擊也適用於領導者。這可能嗎?

答案1

(透過上下文郵件清單中的 Hans Hagen)。使用continue=all參數setupbar

\setupbar[overstrike][continue=all]
\setuppapersize[A6][A6]
\starttext
\overstrike{Hello\hfill world!} % Works OK

Hello\leaders\hbox{.}\hfill world! % Works OK, nothing special

\overstrike{Hello\leaders\hbox{.}\hfill world!} % Not quite right
\stoptext

這使

在此輸入影像描述

相關內容