Is it possible to #show
∂ₜ
as ∂_t
, and a ₜ
as a_t
in math?
In the following matrix, I want to input as the second column, and display as the first column.
$ mat(diff_t, ∂ₜ; a_t, a ₜ) $
#repr[$ mat(diff_t, ∂ₜ; a_t, a ₜ) $]
equation(
block: true,
body: mat(
rows: (
(
attach(base: [∂], b: [t]),
sequence([∂], [ₜ]),
),
(
attach(base: [a], b: [t]),
sequence([a], [ ], [ₜ]),
),
),
),
)
I have tried some possibilities, but I have no idea how to turn ₜ
into an argument of the attach
function.
Any explanation or help is appreciated. Thanks in advance.