\frac{ab}{cd}
, I would prefer to write something like \frac{ab⌂cd}
where the Unicode ⌂
is the }{
.My understanding of TeX is limited, but I think I can use
\catcode
to do this, My understanding is that:\catcode `@=2
is equivalent to}
\catcode `@=1
is equivalent to{
Code: Select all
\catcode`\⌂=\active
\def ⌂{ \catcode `@=2 \catcode `@=1 }
Thanks in advance!