<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import matplotlib.pyplot as plt
import matplotlib as mpl

fig, ax  = plt.subplots(tight_layout=True, figsize=(3, 3))

ax.plot(range(15), label=r'int: $15 \int_0^\infty dx$')
ax.legend()
ax.set_title('v2.0')</pre></body></html>