Lab book in Quarto

Quarto is a an editing platform centered on Markdown.

You can write down multiple kinds of interactive documents in Quarto, including websites that mix code, text, equations etc. The individual notebook can be jupyter notebooks or dedicated markdown documents.

Combined with combined repositories such as GitHub, Quarto allows you to create a static website to collect your progress is very easily.

For more information on Quarto, see https://quarto.org

1 What you need

  • A quarto installation, e.g. from https://quarto.org
  • A suitable editor (e.g. VSCode)
  • An account on Github (or similar services)
  • Some knowledge of git

2 To create your website on github

3 Example of minimal code

import numpy as np
import matplotlib.pyplot as plt

t = np.linspace(0,10)
plt.plot(t,t)
plt.show()