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