import matplotlib.pyplot as plt
from tueplots import figsizes, fontsizes
style = figsizes.aistats2025_half() | fontsizes.aistats2025()
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()
