Hello, Quarto

Markdown

Markdown is an easy to read and write text format:

Code Cell

Here is a Python code cell:

Code
import os
os.cpu_count()
12

Equation

Use LaTeX to write equations:

\[ \chi' = \sum_{i=1}^n k_i s_i^2 \]

Results

Code
for i in range(10):
    print(i+1)
1
2
3
4
5
6
7
8
9
10