Source code for tueplots.fonts

"""Font settings for conference papers and journals."""


[docs] def neurips2021(*, family="serif"): """Fonts for Neurips 2021.""" # NeurIPS' style-files states that it uses Times New Roman # font, but includes the 'ptm' package, which implements # the 'Times' font. # Therefore, refer to 'Times' instead of 'Times New Roman' return _times(family=family)
[docs] def neurips2021_tex(*, family="serif"): """Fonts for Neurips 2021. LaTeX version.""" return _times_tex_via_pkg_ptm(family=family)
[docs] def neurips2022(*, family="serif"): """Fonts for Neurips 2022.""" # NeurIPS' style-files states that it uses Times New Roman # font, but includes the 'ptm' package, which implements # the 'Times' font. # Therefore, refer to 'Times' instead of 'Times New Roman' return _times(family=family)
[docs] def neurips2022_tex(*, family="serif"): """Fonts for Neurips 2022. LaTeX version.""" return _times_tex_via_pkg_ptm(family=family)
[docs] def neurips2023(*, family="serif"): """Fonts for Neurips 2023.""" # NeurIPS' style-files states that it uses Times New Roman # font, but includes the 'ptm' package, which implements # the 'Times' font. # Therefore, refer to 'Times' instead of 'Times New Roman' return _times(family=family)
[docs] def neurips2023_tex(*, family="serif"): """Fonts for Neurips 2023. LaTeX version.""" return _times_tex_via_pkg_ptm(family=family)
[docs] def neurips2024(*, family="serif"): """Fonts for Neurips 2024.""" # NeurIPS' style-files states that it uses Times New Roman # font, but includes the 'ptm' package, which implements # the 'Times' font. # Therefore, refer to 'Times' instead of 'Times New Roman' return _times(family=family)
[docs] def neurips2024_tex(*, family="serif"): """Fonts for Neurips 2024. LaTeX version.""" return _times_tex_via_pkg_ptm(family=family)
[docs] def iclr2023_tex(*, family="serif"): """Fonts for ICLR 2023. LaTeX version.""" return _times_tex_via_pkg_times(family=family)
[docs] def iclr2024_tex(*, family="serif"): """Fonts for ICLR 2024. LaTeX version.""" return _times_tex_via_pkg_times(family=family)
[docs] def iclr2023(*, family="serif"): """Fonts for ICLR 2023. LaTeX version.""" return _times(family=family)
[docs] def iclr2024(*, family="serif"): """Fonts for ICLR 2024. LaTeX version.""" return _times(family=family)
[docs] def cvpr2024_tex(*, family="serif"): """Fonts for CVPR 2024. LaTeX version.""" return _times_tex_via_pkg_ptm(family=family)
[docs] def cvpr2024(*, family="serif"): """Fonts for CVPR 2024. LaTeX version.""" return _times(family=family)
[docs] def icml2022_tex(*, family="serif"): """Fonts for ICML 2022. LaTeX version.""" return _times_tex_via_pkg_times(family=family)
[docs] def icml2024_tex(*, family="serif"): """Fonts for ICML 2024. LaTeX version.""" return _times_tex_via_pkg_times(family=family)
[docs] def eccv2024_tex(*, family="serif"): """Fonts for ECCV 2024. LaTeX version.""" return _computer_modern_tex(family=family)
[docs] def jmlr2001_tex(*, family="serif"): """Fonts for JMLR. LaTeX version.""" return _computer_modern_tex(family=family)
[docs] def tmlr2023_tex(*, family="serif"): """Fonts for TMLR. LaTeX version.""" return _computer_modern_tex(family=family)
[docs] def aistats2022_tex(*, family="serif"): """Fonts for AISTATS 2022. LaTeX version.""" return _computer_modern_tex(family=family)
[docs] def aistats2023_tex(*, family="serif"): """Fonts for AISTATS 2023. LaTeX version.""" return _times_tex_via_pkg_times(family=family)
[docs] def uai2023_tex(*, family="serif"): """Fonts for UAI 2023. LaTeX version.""" return _times_tex_via_pkg_times(family=family)
[docs] def aaai2024_tex(*, family="serif"): """Fonts for AAAI 2024. LaTeX version.""" return _times_tex_via_pkg_times(family=family)
[docs] def icml2022(*, family="serif"): """Fonts for ICML 2022.""" return _times(family=family)
[docs] def icml2024(*, family="serif"): """Fonts for ICML 2024.""" return _times(family=family)
[docs] def beamer_moml(): """Fonts that are compatible with the beamer template of the method-of-machine-learning group in Tübingen.""" return { "text.usetex": False, "mathtext.fontset": "custom", "mathtext.it": "sans:italic", "font.sans-serif": ["Roboto Condensed"], "font.family": "sans-serif", "font.weight": "light", "axes.labelweight": "light", "axes.titleweight": "light", }
[docs] def beamer_moml_dark_bg(): """Fonts for :func:`beamer_moml` with dark background.""" return { "text.usetex": False, "font.serif": ["Roboto Condensed"], "font.family": "serif", "font.weight": "light", "axes.labelweight": "light", "axes.titleweight": "light", }
# Helper functions below def _times(*, family="serif"): """Times font. Used, e.g., for ICML 2022. """ return { "text.usetex": False, "font.serif": ["Times"], "mathtext.fontset": "stix", # free ptmx replacement, for ICML and NeurIPS "mathtext.rm": "Times", "mathtext.it": "Times:italic", "mathtext.bf": "Times:bold", "font.family": family, } def _times_tex_via_pkg_ptm(*, family): """Times font, implemented in Latex via the ptm-package. Default fonts for Neurips. """ preamble = r"\renewcommand{\rmdefault}{ptm}\renewcommand{\sfdefault}{phv}" if family == "serif": return { "text.usetex": True, "font.family": "serif", "text.latex.preamble": preamble, } preamble += ( r"\renewcommand{\familydefault}{\sfdefault} \usepackage{sansmath} \sansmath" ) return { "text.usetex": True, "font.family": "sans-serif", "text.latex.preamble": preamble, } def _times_tex_via_pkg_times(*, family): preamble = r"\usepackage{times} " if family == "serif": return { "text.usetex": True, "font.family": "serif", "text.latex.preamble": preamble, } preamble += ( r"\renewcommand{\familydefault}{\sfdefault} \usepackage{sansmath} \sansmath" ) return { "text.usetex": True, "font.family": "sans-serif", "text.latex.preamble": preamble, } def _computer_modern_tex(*, family): if family == "serif": return { "text.usetex": True, "font.family": "serif", "text.latex.preamble": "", } preamble = ( r"\renewcommand{\familydefault}{\sfdefault} \usepackage{sansmath} \sansmath" ) return { "text.usetex": True, "font.family": "sans-serif", "text.latex.preamble": preamble, }