import matplotlib.pyplot as plt
from tueplots import bundles
style = bundles.icml2024(usetex=False)
plt.rcParams.update(style)
fig, ax = plt.subplots()
ax.plot([0, 1, 2], [2, 1, 3])
ax.set_xlabel("$x$ label")
ax.set_ylabel("$y$ label")
plt.show()
