Arrow Left

example markdown

• updateda string


[123456789]\begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \\ 7 & 8 & 9 \end{bmatrix}

heading 1

link back

link extern

heading 2

heading 3

heading 4


bold text

italic text

bold and italic text

strikethrough

blockquote

nested blockquote


unordered list:

  • item 1
  • item 2
    • subitem 2a
    • subitem 2b
      • subsubitem 2b-i

ordered list:

  1. first
  2. second
    1. subsecond
    2. subsecond 2
  3. third

task list:

  • task complete
  • task incomplete

code block:

fn main() {
    println!("hello, world!");
}

inline code: let x = 42


horizontal rule:


link: openai

openai

image: sample image


tables:

header 1header 2header 3
row 1datamore
row 2datamore

math (inline):

E=mc2E = mc^2

math (block):

ex2dx=π\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}

another block:

a2+b2=c2a^2 + b^2 = c^2

matrix:

[123456789]\begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \\ 7 & 8 & 9 \end{bmatrix}

system of equations:

{x+y=1xy=3\begin{cases} x + y = 1\\ x - y = 3 \end{cases}

aligned equations:

f(x)=x2+3x+2f(x)=2x+3\begin{aligned} f(x) &= x^2 + 3x + 2\\ f'(x) &= 2x + 3 \end{aligned}

limits and sums:

limx0sinxx=1\lim_{x \to 0} \frac{\sin x}{x} = 1
n=11n2=π26\sum_{n=1}^{\infty} \frac{1}{n^2} = \frac{\pi^2}{6}

footnote:

here is a sentence with a footnote 1 .


html passthrough:

this text is red

Footnotes

  1. this is the footnote text.