(self, default_font_prop: FontProperties, load_glyph_flags: LoadFlags)
| 488 | } |
| 489 | |
| 490 | def __init__(self, default_font_prop: FontProperties, load_glyph_flags: LoadFlags): |
| 491 | self._stix_fallback = StixFonts(default_font_prop, load_glyph_flags) |
| 492 | |
| 493 | super().__init__(default_font_prop, load_glyph_flags) |
| 494 | for key, val in self._fontmap.items(): |
| 495 | fullpath = findfont(val) |
| 496 | self.fontmap[key] = fullpath |
| 497 | self.fontmap[val] = fullpath |
| 498 | |
| 499 | _slanted_symbols = set(r"\int \oint".split()) |
| 500 |