{
const height = 200
const canvas = createCanvas({width, height, background: colors.ghostwhite})
const svg = canvas.svg
const overlay = canvas.overlay
overlay.append('div')
.call(dot, {text: 'E = m \\cdot c^2', latex: true, x: 1 / 2 * width, y: height / 2})
return canvas
}