I found the file, tabl-tbl.mkiv, here: /usr/local/texlive/2013/texmf-dist/tex/context/base/tabl-tbl.mkiv I insert the line you said that was missing at line #721. But, it did not change anything. Does this file need to be compiled or anything? I am not familiar with the deeper workings of ConTeXt code yet. The below is show for context --------------------------- LINE #721 is the next line: \setvalue{\??tabulatecolorspec C}#1{\xdef\m_tabl_tabulate_color {#1}\global\c_tabl_tabulate_colorspan\zerocount} \setvalue{\??tabulatecolorspec L}#1{\xdef\m_tabl_tabulate_color {#1}\global\c_tabl_tabulate_colorspan\plusone } \setvalue{\??tabulatecolorspec M}#1{\xdef\m_tabl_tabulate_color {#1}\global\c_tabl_tabulate_colorspan\plustwo } \setvalue{\??tabulatecolorspec R}#1{\xdef\m_tabl_tabulate_color {#1}\global\c_tabl_tabulate_colorspan\plusthree} ---- Wolfgang Schuster wrote:
Am 02.09.2013 um 05:34 schrieb hwitloc
Using the texlive 2013 version
; ; minimal example from context wiki
\starttext \starttabulate[|CR{red}c|CC{yellow}c|CM{green}c|CL{blue}c|] \NC test \NC test \NC test \NC test \NC \NR \NC test \NC test \NC test \NC test \NC \NR \NC test \NC test \NC test \NC test \NC \NR \NC test \NC test \NC test \NC test \NC \NR \stoptabulate \stoptext
Problem: The second column does not display with a yellow background. The word "yellow" is displayed just before the table.
How can this be fixed?
The following line is missing in tabl-tbl.mkiv:
\setvalue{\??tabulatecolorspec C}#1{\xdef\m_tabl_tabulate_color {#1}\global\c_tabl_tabulate_colorspan\zerocount}
Wolfgang