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]
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]

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