On Thu, 22 Jul 2021, Jack Hill wrote:
Dear list,
I'm using ConTeXt version 2021.07.22 19:16 and the following code typesets both columns in math mode
\starttext \startformula \delta_{ij} = \startcases \NC 1 \NC if i = j \NR \NC 0 \NC otherwise \NR \stopcases \stopformula \stoptext
The wiki states that the second column should be typeset in text mode. Is this a bug or does ConTeXt now typeset the second column in math mode by default?
Yes, we felt that it was more consistent with other align mechanisms to default to math. So, for the 2nd column, we now have \NC for a "normal" (i.e., math) column and \TC for a text column. So you can use: \startformula \delta_{ij} = \startcases \NC 1 \TC if $i = j$ \NR \NC 0 \TC otherwise \NR \stopcases \stopformula \stoptext Aditya