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.
1 parent 8c0049e commit a5fb261Copy full SHA for a5fb261
matplotlib2tikz/text.py
@@ -160,8 +160,10 @@ def draw_text(data, obj):
160
'black'
161
] or (isinstance(weight, int) and weight > 550):
162
style.append('\\bfseries')
163
- elif weight == 'light' or (isinstance(weight, int) and weight < 300):
164
- style.append('\\lfseries')
+
+ # \lfseries isn't that common yet
165
+ # elif weight == 'light' or (isinstance(weight, int) and weight < 300):
166
+ # style.append('\\lfseries')
167
168
if obj.axes:
169
# If the coordinates are relative to an axis, use `axis cs`.
0 commit comments