Skip to content

Latest commit

 

History

History
68 lines (45 loc) · 655 Bytes

Basics.md

File metadata and controls

68 lines (45 loc) · 655 Bytes

Basics

How to add Latex blocks.


Inline Block

Useful for inline formulas as well as
the only way to left align Latex blocks.


$<Latex Content>$
$x = 1 + a$

$x = 1 + a$



$$ Block

Similar to the previous block but multiline.

$$<
Latex Content
>$$
$$x = 1 + a$$

$$x = 1 + a$$



Math Block 

Code block with the math type.

```math
<Latex Content>
```
```math
x = 1 + a
```
$$x = 1 + a$$