First Try

An example of most of Quarto’s feature
Author

wildsea

Published

December 10, 2025

Overview

See Figure 1 in Section 2 for a demonstration of a simple plot.

See Equation 1 to better understand standard deviation.

See Section 4 for a demonstration of code annotations.

Plot

Code
import matplotlib.pyplot as plt
plt.plot([1,23,2,4])
plt.show()
Figure 1: Simple Plot

Equation

\[ s = \sqrt{\frac{1}{N-1} \sum_{i=1}^N (x_i - \overline{x})^2} \tag{1}\]

Annotations

library(tidyverse)
library(palmerpenguins)
1penguins |>
2  mutate(
    bill_ratio = bill_depth_mm / bill_length_mm,
    bill_area  = bill_depth_mm * bill_length_mm
  )
1
Take penguins, and then,
2
add new columns for the bill ratio and bill area.

Task lists

Footnotes

Here is a footnote reference,1 and another.2

This paragraph won’t be part of the note, because it isn’t indented.

Seaborn

Code
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt
sns.set_theme(style="ticks")

rs = np.random.RandomState(11)
x = rs.gamma(2, size=1000)
y = -.5 * x + rs.normal(size=1000)

sns.jointplot(x=x, y=y, kind="hex", color="#4CB391")
plt.show()

Back to top

Footnotes

  1. Here is the footnote.↩︎

  2. Here’s one with multiple blocks.

    Subsequent paragraphs are indented to show that they belong to the previous footnote.

    { some.code }

    The whole paragraph can be indented, or just the first line. In this way, multi-paragraph footnotes work like multi-paragraph list items.↩︎