My First Post

notes
First post — and a smoke test of the {python} figure pipeline.
Author

Raja Biswas

Published

June 23, 2026

Hello. This post renders a figure from Python at build time:

import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0, 2 * np.pi, 200)
plt.plot(x, np.sin(x))
plt.show()
Figure 1: A sine wave.

Inline math works too: \(e^{i\pi} + 1 = 0\).