LaTeX Block
To render math you can use LaTeX math expressions. Surround LaTeX expression with fenced block and specify as a language The result will be a following math expression. \forall x \in X, \quad \exists y \leq \epsilon x = \begin{cases} a &\text{if } b \\ c &\text{if } d \\ x &\text{if } z \end{cases} Alternatively surround a match expression with double dollar sign to render it into a latex block. Given: x=y and y=z latex ```latex \forall x \in X, \quad \exists y \leq \epsilon ``` ```latex x = \begin{cases} a &\text{if } b \\ c &\text{if } d \\ x &\text{if } z \end{cases} ``` $$ Given: $$x=y$$ and $$y=z$$