Skip to content

Commit 66c502b

Browse files
authored
Added image and examples for math equations (#344)
1 parent 0b95d3e commit 66c502b

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

docs/core-concepts/pages/editor-blocks.mdx

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,19 +66,28 @@ Uploads and embeds files directly into your content, supporting documents, image
6666
]}
6767
/>
6868
</div>
69+
![Math equations](https://media.docs.plane.so/pages/math-equations.webp#center)
6970

7071
### Block equation
7172
Creates standalone mathematical expressions using LaTeX syntax. Block equations are displayed on their own line with centered formatting, perfect for formulas, theorems, and complex mathematical statements that need emphasis.
7273

73-
Use the `/blockequation` slash command or double dollar syntax:
74+
Use the `/blockequation` slash command:
75+
```
76+
\lim_{x \to \infty} \frac{1}{x} = 0
77+
```
78+
Or use double dollar syntax:
7479
```latex
7580
$$ \int_a^b f(x)\,dx = F(b) - F(a) $$
7681
```
7782

7883
### Inline equation
7984
Embeds mathematical expressions within regular text flow using LaTeX syntax. Inline equations maintain the same text baseline, allowing you to seamlessly integrate mathematical notation into sentences and paragraphs.
8085

81-
Use the `/inlineequation` slash command or single dollar syntax:
86+
Use the `/inlineequation` slash command:
87+
```
88+
/inlineequation \bar{x} = \frac{1}{n}\sum_{i=1}^{n} x_i
89+
```
90+
Or use single dollar syntax:
8291
```latex
8392
$ a^2 + b^2 = c^2 $
8493
```

0 commit comments

Comments
 (0)