ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* footnote coloring
@ 2015-09-06  9:11 dr. Hans van der Meer
  2015-09-06 10:29 ` Pablo Rodriguez
  0 siblings, 1 reply; 5+ messages in thread
From: dr. Hans van der Meer @ 2015-09-06  9:11 UTC (permalink / raw)
  To: NTG ConTeXt


[-- Attachment #1.1: Type: text/plain, Size: 723 bytes --]

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


 

[-- Attachment #1.2.1: Type: text/html, Size: 1571 bytes --]

[-- Attachment #1.2.2: footnotecolor.pdf --]
[-- Type: application/pdf, Size: 9604 bytes --]

[-- Attachment #1.2.3: Type: text/html, Size: 259 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: footnote coloring
  2015-09-06  9:11 footnote coloring dr. Hans van der Meer
@ 2015-09-06 10:29 ` Pablo Rodriguez
  2015-09-06 11:15   ` Meer, H. van der
  0 siblings, 1 reply; 5+ messages in thread
From: Pablo Rodriguez @ 2015-09-06 10:29 UTC (permalink / raw)
  To: mailing list for ConTeXt users

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
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: footnote coloring
  2015-09-06 10:29 ` Pablo Rodriguez
@ 2015-09-06 11:15   ` Meer, H. van der
  2015-09-06 16:25     ` Wolfgang Schuster
  0 siblings, 1 reply; 5+ messages in thread
From: Meer, H. van der @ 2015-09-06 11:15 UTC (permalink / raw)
  To: NTG ConTeXt


[-- Attachment #1.1: Type: text/plain, Size: 522 bytes --]

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 <oinos@gmx.es<mailto:oinos@gmx.es>> wrote:

this setup works fine in MkIV:

 \setupnote[footnote][textcolor=blue]

 \setupnotation[footnote][numbercommand={\color[red]}, color=green]


I hope it helps,


[-- Attachment #1.2: Type: text/html, Size: 5521 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: footnote coloring
  2015-09-06 11:15   ` Meer, H. van der
@ 2015-09-06 16:25     ` Wolfgang Schuster
  2015-09-06 17:28       ` Meer, H. van der
  0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Schuster @ 2015-09-06 16:25 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 447 bytes --]

> 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

[-- Attachment #1.2: Type: text/html, Size: 1796 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: footnote coloring
  2015-09-06 16:25     ` Wolfgang Schuster
@ 2015-09-06 17:28       ` Meer, H. van der
  0 siblings, 0 replies; 5+ messages in thread
From: Meer, H. van der @ 2015-09-06 17:28 UTC (permalink / raw)
  To: NTG ConTeXt


[-- Attachment #1.1: Type: text/plain, Size: 1097 bytes --]

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 <schuster.wolfgang@gmail.com<mailto:schuster.wolfgang@gmail.com>> wrote:
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
___________________________________________________________________________________


[-- Attachment #1.2: Type: text/html, Size: 2831 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-09-06 17:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-06  9:11 footnote coloring dr. Hans van der Meer
2015-09-06 10:29 ` Pablo Rodriguez
2015-09-06 11:15   ` Meer, H. van der
2015-09-06 16:25     ` Wolfgang Schuster
2015-09-06 17:28       ` Meer, H. van der

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).