I want to color all elements of a footnote, but I cannot find how to do this. Minimal example: \def\rednumber#1{\color[red]{#1}} \starttext \setupfootnotes[textcolor=red,numbercommand=\rednumber,foregroundcolor=red] This text\footnote{the footnote} contains a footnote. \stoptext The footnotenumber in the text is the only element that gets colored because of the [textcolor=red] parameter setting. In the command reference it is [numbercommand=\rednumber]. Shouldn't that have made the color of the footnotenumber below? Since \setupfootnotes inherits from setupframed I expected [foregroundcolor=red] to do the trick for the content of the footnote, but it doesn't. How to? Hans van der Meer
On 09/06/2015 11:11 AM, dr. Hans van der Meer wrote:
I want to color all elements of a footnote, but I cannot find how to do this. Minimal example:
\def\rednumber#1{\color[red]{#1}} \starttext \setupfootnotes[textcolor=red,numbercommand=\rednumber,foregroundcolor=red] This text\footnote{the footnote} contains a footnote. \stoptext
The footnotenumber in the text is the only element that gets colored because of the [textcolor=red] parameter setting.
In the command reference it is [numbercommand=\rednumber]. Shouldn't that have made the color of the footnotenumber below?
Since \setupfootnotes inherits from setupframed I expected [foregroundcolor=red] to do the trick for the content of the footnote, but it doesn't.
How to?
Hi Hans, this setup works fine in MkIV: \setupnote[footnote][textcolor=blue] \setupnotation[footnote][numbercommand={\color[red]}, color=green] I hope it helps, Pablo -- http://www.ousia.tk
Indeed, this helped. Thanks.
For the record: in order to keep the position of the number in the footnote high, one has to use:
\def\redfootnotenumber#1{\color[red]{\high{#1}}}
\setupnotation[footnote][numbercommand=\redfootnotenumber]
Hans van der Meer
On 06 Sep 2015, at 12:29, Pablo Rodriguez
Meer, H. van der mailto:H.vanderMeer@uva.nl 6. September 2015 13:15 Indeed, this helped. Thanks.
For the record: in order to keep the position of the number in the footnote high, one has to use: \def\redfootnotenumber#1{\color[red]{\high{#1}}} \setupnotation[footnote][numbercommand=\redfootnotenumber] You can use the headcolor key to change the color of the footnote number.
\setupnotation[footnote][headcolor=red] Wolfgang
Thanks. I would not have thought of that. In the reference manual headcolor occurs in 13.2 \setupdescriptions and in 13.5 \definelabel only. I did not connect that with footnotes. Is \setupnotation a special form of \setupdescriptions?
By the way, is a separate call to \setupnote[footnote][textcolor=red] necessary to color the footnotemark in the running text? Or is there a key for it in \setupnotation[footnote] too?
Hans van der Meer
On 06 Sep 2015, at 18:25, Wolfgang Schuster
participants (4)
-
dr. Hans van der Meer
-
Meer, H. van der
-
Pablo Rodriguez
-
Wolfgang Schuster