Math expressions
Mathematical expressions are an important part of technical documentation, especially in fields like mathematics, physics, data science, and engineering.
Writerside supports rendering mathematical expressions as block elements using Tex syntax, which can include Greek letters, operators, trigonometric functions, and other mathematical symbols. For more information about the syntax, see Wikibooks: LaTeX/Mathematics.
To add a math expression, use a code block and set the language to tex
. For example, the following code defines the quadratic formula:
Semantic markup
Markdown code block
Markdown $$ notation
<code-block lang="tex">
\begin{equation}
x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}
\end{equation}
</code-block>
```tex
\begin{equation}
x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}
\end{equation}
```
$$
\begin{equation}
x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}
\end{equation}
$$
The result will look like this:
Use the <math>
element to insert math equations in a paragraph, not as a separate block. In a Markdown topic, use dollar characters $...$
.
Semantic markup
Markdown
Pythagorean theorem: <math>x^2 + y^2 = z^2</math>
Pythagorean theorem: $x^2 + y^2 = z^2$
Pythagorean theorem: