ConTeXt에서 각주 텍스트 색상을 변경하는 방법은 무엇입니까?

ConTeXt에서 각주 텍스트 색상을 변경하는 방법은 무엇입니까?

각주 텍스트의 기본 색상은 검은색입니다. 빨간색으로 변경하려면 어떻게 해야 합니까?

나는

\setupfootnotes
  [textcolor=red]

또는

\setupfootnotes
  [foregroundcolor=red]

또는

\def\myfootnotetextcolor#1{%
  \startcolor[red]#1\stopcolor}
\setupfootnotes
  [textcommand={\myfootnotetextcolor}]

두 방법 모두 효과가 없습니다.

답변1

인수로 \setupnotation명령 을 사용하십시오 . footnote예:

\setupnotation[footnote][color=red]

\starttext
  Some text
  \startfootnote
    and a footnote
  \stopfootnote
\stoptext

관련 정보