We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b8fab17 + 89a314e commit 67ef316Copy full SHA for 67ef316
lib/matplotlib/texmanager.py
@@ -169,6 +169,8 @@ def __init__(self):
169
ff = rcParams['font.family']
170
if len(ff) == 1 and ff[0].lower() in self.font_families:
171
self.font_family = ff[0].lower()
172
+ elif ff.lower() in self.font_families:
173
+ self.font_family = ff.lower()
174
else:
175
mpl.verbose.report(
176
'font.family must be one of (%s) when text.usetex is True. '
0 commit comments