ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* white color turns black inside a table
@ 2009-09-14 17:53 Mojca Miklavec
  2009-09-14 17:56 ` Mojca Miklavec
  2009-09-14 18:47 ` Hans Hagen
  0 siblings, 2 replies; 3+ messages in thread
From: Mojca Miklavec @ 2009-09-14 17:53 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hello,

I have problems with the following minimal example (I only want to
typeset white labels inside the table), but maybe I'm the only one
again:

\setupcolors[state=start]
\starttext

\startcolor[white]

\placetable[force]{none}{\starttable[|r|]
	\NC \color[red]{me} \AR
\stoptable}

\placetable[force]{none}{\def\a#1{\color[white]{#1}}\starttable[|r|l|]
	\NC \a{one} \NC \a{one} \AR
	\NC \a{two} \NC \a{two} \AR
\stoptable}

\placetable[force]{none}{\starttable[|r|]
	\NC \color[white]{me} \AR
\stoptable}
\stopcolor
\stoptext

I get black labels instead of white ones in the second and third
table. Any idea what goes wrong? I'm using mkii.

Mojca
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: white color turns black inside a table
  2009-09-14 17:53 white color turns black inside a table Mojca Miklavec
@ 2009-09-14 17:56 ` Mojca Miklavec
  2009-09-14 18:47 ` Hans Hagen
  1 sibling, 0 replies; 3+ messages in thread
From: Mojca Miklavec @ 2009-09-14 17:56 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Mon, Sep 14, 2009 at 19:53, Mojca Miklavec wrote:
> Hello,
>
> I have problems with the following minimal example (I only want to
> typeset white labels inside the table), but maybe I'm the only one
> again:
>
> \setupcolors[state=start]
> \starttext
>
> \startcolor[white]
>
> \placetable[force]{none}{\starttable[|r|]
>        \NC \color[red]{me} \AR
> \stoptable}
>
> \placetable[force]{none}{\def\a#1{\color[white]{#1}}\starttable[|r|l|]
>        \NC \a{one} \NC \a{one} \AR
>        \NC \a{two} \NC \a{two} \AR
> \stoptable}
>
> \placetable[force]{none}{\starttable[|r|]
>        \NC \color[white]{me} \AR
> \stoptable}
> \stopcolor
> \stoptext
>
> I get black labels instead of white ones in the second and third
> table. Any idea what goes wrong? I'm using mkii.

I forgot to say that I know a workaround ... I only need to disable
the white around the table, but it nevertheless seems a bit buggy. (I
was hoping that I would get white labels inside a table out of the
box).

Thanks,
    Mojca
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: white color turns black inside a table
  2009-09-14 17:53 white color turns black inside a table Mojca Miklavec
  2009-09-14 17:56 ` Mojca Miklavec
@ 2009-09-14 18:47 ` Hans Hagen
  1 sibling, 0 replies; 3+ messages in thread
From: Hans Hagen @ 2009-09-14 18:47 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Mojca Miklavec wrote:
> Hello,
> 
> I have problems with the following minimal example (I only want to
> typeset white labels inside the table), but maybe I'm the only one
> again:
> 
> \setupcolors[state=start]
> \starttext
> 
> \startcolor[white]
> 
> \placetable[force]{none}{\starttable[|r|]
> 	\NC \color[red]{me} \AR
> \stoptable}
> 
> \placetable[force]{none}{\def\a#1{\color[white]{#1}}\starttable[|r|l|]
> 	\NC \a{one} \NC \a{one} \AR
> 	\NC \a{two} \NC \a{two} \AR
> \stoptable}
> 
> \placetable[force]{none}{\starttable[|r|]
> 	\NC \color[white]{me} \AR
> \stoptable}
> \stopcolor
> \stoptext
> 
> I get black labels instead of white ones in the second and third
> table. Any idea what goes wrong? I'm using mkii.

some kind of intereference i guess ....

\setupcolors[state=start]

\definecolor[White][s=1]

\starttext

\startcolor[white]

\placetable[force]{none}{\def\A#1{\color[White]{#1}}\starttable[|r|l|]
	\NC \A{one} \NC \A{one} \AR
	\NC \A{two} \NC \A{two} \AR
\stoptable}

\stopcolor

\stoptext

or properly used textcolor:

\setupcolors[state=start,textcolor=white]

\definecolor[white][s=1]

\starttext

\placetable[force]{none}{\def\A#1{\color[white]{#1}}\starttable[|r|l|]
	\NC \A{one} \NC \A{one} \AR
	\NC \A{two} \NC \A{two} \AR
\stoptable}

\stoptext

I hope that this is not going to spoil your defence!

Hans



-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
      tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

end of thread, other threads:[~2009-09-14 18:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-14 17:53 white color turns black inside a table Mojca Miklavec
2009-09-14 17:56 ` Mojca Miklavec
2009-09-14 18:47 ` Hans Hagen

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).