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? Thanks, Jack
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
Thank you. I've updated the wiki to reflect those changes. The wiki's version of ConTeXt still seems to use the old \NC and \MC commands though. Jack
participants (2)
-
Aditya Mahajan
-
Jack Hill