Simple subfigure example that works in latex, and in the web-version but not in typst:¶

(a)Here is some fruit 🍏

(b)My vacation pics! 🏝
Figure 1:Some pictures of fruit and the ocean!
Separate Issue: Experimentation with wrapping embed in figure¶
Leads to typst error
x = np.linspace(0, 4 * np.pi, 100)
y = np.sin(x)
_ = plt.plot(x, y)
This is a figure caption for embedded content.
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 8 * np.pi, 100)
y = np.sin(x)
_ = plt.plot(x, y)A code-cell generating a sine plot