ConTeXt:更改脚注规则

ConTeXt:更改脚注规则

我想知道是否可以改变脚注规则的长度(在 Wiki 上,只能增加厚度,如果我没记错的话,还可以增加颜色)。

答案1

这样你几乎可以定义任何你需要的东西。玩得开心!

\setuppapersize[A4]

\unexpanded\def\longrule{\blackrule[width=10cm,color=blue,height=1pt,depth=1pt]}
\setupnote[footnote][rule=command,rulecommand=\longrule]

\starttext

\input tufte\footnote{test}

\stoptext

规则命令

答案2

您可以定义自己的规则:

\def\myfootrule
  {\hrule width 10cm \relax \kern \strutdepth}

\setupfootnotes
  [rule=on,
   rule=command,
   rulecommand=\myfootrule]

\starttext
  Some text.\footnote{This is a footnote}
\stoptext

在此处输入图片描述

相关内容