API: tueplots package#
tueplots
package.
tueplots
is a Python package that helps you create plots that match the styles and guidelines of different conferences and journals.
Each module in TUEplots provides specific settings like fonts, figure sizes, axes behavior, and bundled configurations for specific conferences.
Examples
>>> import matplotlib.pyplot as plt
>>> from tueplots import bundles
>>>
>>> # Select a style bundle
>>> style = bundles.icml2024(usetex=False)
>>>
>>> # Apply the style to matplotlib
>>> plt.rcParams.update(style)
>>>
>>> # Create a plot
>>> fig, ax = plt.subplots()
>>> ax.plot([0, 1, 2], [2, 1, 3])
>>> ax.set_xlabel("$x$ label")
>>> ax.set_ylabel("$y$ label")
>>> plt.show()
(Source code
, png
, hires.png
, pdf
)

- tueplots.axes module
- tueplots.bundles module
- tueplots.cycler module
- tueplots.figsizes module
aaai2024_full()
aaai2024_half()
aistats2022_full()
aistats2022_half()
aistats2023_full()
aistats2023_half()
aistats2025_full()
aistats2025_half()
beamer_169()
cvpr2022_full()
cvpr2022_half()
cvpr2024_full()
cvpr2024_half()
eccv2024()
iclr2023()
iclr2024()
icml2022_full()
icml2022_half()
icml2024_full()
icml2024_half()
jmlr2001()
neurips2021()
neurips2022()
neurips2023()
neurips2024()
probnum2025_full()
probnum2025_half()
tmlr2023()
uai2023_full()
uai2023_half()
- tueplots.fonts module
aaai2024_tex()
aistats2022_tex()
aistats2023_tex()
aistats2025_tex()
beamer_moml()
beamer_moml_dark_bg()
cvpr2024()
cvpr2024_tex()
eccv2024_tex()
iclr2023()
iclr2023_tex()
iclr2024()
iclr2024_tex()
icml2022()
icml2022_tex()
icml2024()
icml2024_tex()
jmlr2001_tex()
neurips2021()
neurips2021_tex()
neurips2022()
neurips2022_tex()
neurips2023()
neurips2023_tex()
neurips2024()
neurips2024_tex()
probnum2025_tex()
tmlr2023_tex()
uai2023_tex()
- tueplots.fontsizes module
- tueplots.markers module
- tueplots.constants package