Add font.superfamily support with genre-aware resolution#30155
Add font.superfamily support with genre-aware resolution#30155socram-somel wants to merge 1 commit intomatplotlib:mainfrom
Conversation
Closes matplotlib#29866 This commit adds support for rcParam 'font.superfamily', allowing users to define logical font groups (superfamilies) that span multiple genres like 'serif', 'sans', and 'mono'. Each superfamily maps genre + weight + style to real font names using keys like 'bold-italic' or 'normal-normal'. Font resolution uses genre from font.family and matches against the selected superfamily, trying exact and fallback variants in order of specificity to generality. Superfamilies can be defined by name (preloaded registry) or passed as inline dicts in rcParams['font.superfamily']. Legacy behavior is preserved unless superfamily is set. If set, genre-aware matching replaces generic family name. Includes defaults for DejaVu, Noto, Liberation, and more. Co-authored-by: Tiago Marques <tiago.l.marques@tecnico.ulisboa.pt>
anntzer
left a comment
There was a problem hiding this comment.
I still don't know if we really want that feature, but if we do, it would definitely not by using a hard-coded table, but more likely by extracting the relevant metadata from the font files.
Ok, I'll look into that. About the part of extracting metadata, is it worth to add more dependencies to mpl ? |
|
Hopefully it can be done without additional dependencies. |
|
We already have |
Closes #29866
Adds support for rcParam 'font.superfamily', allowing users to define logical font groups (superfamilies) that span multiple genres like 'serif', 'sans', and 'mono'.
Each superfamily maps genre + weight + style to real font names using keys like 'bold-italic' or 'normal-normal'.
Font resolution uses genre from font.family and matches against the selected superfamily, trying exact and fallback variants in order of specificity to generality.
Superfamilies can be defined by name (preloaded registry) or passed as inline dicts in rcParams['font.superfamily'].
Legacy behavior is preserved unless superfamily is set. If set, genre-aware matching replaces generic family name.
Includes defaults for DejaVu, Noto, Liberation, and more.
PR summary
PR checklist