How to create a show rule for table cells other than the first row?

How do I define a show rule for all cells in a table other than the first row? Something like:

#show table.cell.where(x: 0, y > 0): it => strong[#it]

Hi. Just do the inverse until a more flexible approach is added:

#show table.cell: set text(weight: "bold")
#show table.cell.where(y: 0): set text(weight: "regular")
#table[a][b][c]

image

The show-set rule order is important in this case.

3 Likes