This is simply done by writing a markdown cell with the metadata at the very beginning of the notebook. Citations are like (Garcia et al. 2020).
Jupyter notebook example title
overview
🕰 Time Estimation: X minutes
💬 Learning Objectives:
First item
Second item
Write your introduction to the page here.
Writing admonitions
You can write admonitions as above in a markdown cell. Look for more in the quarto manual to hide admonitions or use other types like warnings or tips admonitions.
Running code
This is some example code
import pandas as pdimport numpy as npimport matplotlib.pyplot as pltdataset_url = ('https://raw.githubusercontent.com/m-mehdi/pandas_tutorials/main/weekly_stocks.csv')df = pd.read_csv(dataset_url, parse_dates=['Date'], index_col='Date')pd.set_option('display.max.columns', None)print(df.head())