Skip to content

Commit a5fb261

Browse files
committed
skip lfseries
1 parent 8c0049e commit a5fb261

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

matplotlib2tikz/text.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,10 @@ def draw_text(data, obj):
160160
'black'
161161
] or (isinstance(weight, int) and weight > 550):
162162
style.append('\\bfseries')
163-
elif weight == 'light' or (isinstance(weight, int) and weight < 300):
164-
style.append('\\lfseries')
163+
164+
# \lfseries isn't that common yet
165+
# elif weight == 'light' or (isinstance(weight, int) and weight < 300):
166+
# style.append('\\lfseries')
165167

166168
if obj.axes:
167169
# If the coordinates are relative to an axis, use `axis cs`.

0 commit comments

Comments
 (0)