markup icon indicating copy to clipboard operation
markup copied to clipboard

Math rendering: `{` and `}` require double escaping (`\\{` and `\\}`)

Open mlondschien opened this issue 3 years ago • 2 comments

$$
S = \{ s: s \in S\}
$$

get's rendered as

$$ S = { s: s \in S} $$

(same for inline). The correct rendering is achieved with

$$
S = \\{ s: s \in S\\}
$$

resulting in

$$ S = \{ s: s \in S\} $$

mlondschien avatar Jul 26 '22 14:07 mlondschien

Same for the negative space \!:

$$
\perp \!\!\! \perp
$$

get's rendered as

$$ \perp !!! \perp $$

(same for inline). The correct rendering is achieved with

$$
\perp \\!\\!\\! \perp
$$

resulting in

$$ \perp \!\!\! \perp $$

mlondschien avatar Jul 26 '22 15:07 mlondschien

Any solution for this? Thanks

yiyi-wang-rv avatar May 04 '23 06:05 yiyi-wang-rv