MarkTeX

A rich markdown editor with additional features and LaTeX support.

Please use a larger screen for the best experience.

# Tutorial

MarkTex is a markdown editor that supports LaTeX and interactive dropdowns.

## Markdown

See [Markdown Guide](https://www.markdownguide.org/basic-syntax/) for more information.

## LaTeX

MarkTex supports inline LaTeX and block LaTeX.

### Inline LaTeX

Inline LaTeX is written between two dollar signs, like this: $x^2$.

### Block LaTeX

Block LaTeX is opened like this:

\[f(x) = x^2\]

\[\text{det}\left(\begin{bmatrix} \alpha & \beta \\ \beta & \gamma \end{bmatrix}\right) = 0\]

## Other features

Dropdowns can be written like this:

::: dropdown | Click this !

You can include math inside the dropdown as well:

\[\dfrac{-b \pm \sqrt{b^2 -- 4ac}}{2a}\]

:::

Emphasize text like this:

::: theorem | Title

Content

::: dropdown | Another dropdown!

You can put a dropdown inside the box as well.

:::

:::

Emphasize a main point like this:

::: mainpoint | Title | red

Content

:::

You may color mainpoints with "red", "blue", "purple", "green", or "orange".

You can also write code blocks like this:

```python

def hello():

print('Hello, World!')

```

Tutorial

MarkTex is a markdown editor that supports LaTeX and interactive dropdowns.

Markdown

See Markdown Guide for more information.

LaTeX

MarkTex supports inline LaTeX and block LaTeX.

Inline LaTeX

Inline LaTeX is written between two dollar signs, like this: x2x^2.

Block LaTeX

Block LaTeX is opened like this:

f(x)=x2f(x) = x^2
det([αββγ])=0\text{det}\left(\begin{bmatrix} \alpha & \beta \\ \beta & \gamma \end{bmatrix}\right) = 0

Other features

Dropdowns can be written like this:

Click this !

Emphasize text like this:

Title

Content

Another dropdown!

Emphasize a main point like this:

Title

Content

You may color mainpoints with "red", "blue", "purple", "green", or "orange".

You can also write code blocks like this:


def hello():

 print('Hello, World!')