wie ändere ich die Textfarbe der Fußnoten in ConTeXt?

wie ändere ich die Textfarbe der Fußnoten in ConTeXt?

Die Standardfarbe von Fußnotentexten ist Schwarz. Wie kann ich sie in Rot ändern?

Ich habe die

\setupfootnotes
  [textcolor=red]

oder

\setupfootnotes
  [foregroundcolor=red]

oder

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

beide Methoden haben keine Wirkung.

Antwort1

Verwenden Sie den \setupnotationBefehl mit footnoteals Argument. Beispiel:

\setupnotation[footnote][color=red]

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

verwandte Informationen