更改 matplotlib 图例中各个标签的字体大小

Change fontsize of indivual labels in the matplotlib legend

我想更改图例中各个元素的字体大小。我知道如何更改整个图例的字体属性,但我想不出单独更改它们的方法。

例如:在下面的示例中,我绘制了两条线,我希望第 1 行的标签具有比第 2 行更大的字体大小

import numpy as np
from matplotlib import pyplot as plt

def line (m , c):
    return m*x + c

x = np.arange(0, 10, .25)
plt.plot(x, line(1, 0), label = "Line 1")
plt.plot(x, line(1,1), label = "Line 2")
plt.legend(prop={'family': 'Georgia', 'size': 15})
plt.show()

使用prop={'family': 'Georgia', 'size': 15}我可以同时修改两个标签的字体大小但是有没有办法控制图例中各个标签的字体属性?

感谢所有帮助。

这里有一些:一是设置字体属性,二是标签设置使用Latexh表示法。我会用自定义字体属性的方法来回答。

import numpy as np
from matplotlib import pyplot as plt
from matplotlib.font_manager import FontProperties

def line (m , c):
    return m*x + c

x = np.arange(0, 10, .25)
plt.plot(x, line(1, 0), label = "Line 1")
plt.plot(x, line(1,1), label = "Line 2")
leg = plt.legend(prop={'family': 'Georgia', 'size': 15})
label1, label2 = leg.get_texts()
label1._fontproperties = label2._fontproperties.copy()
label1.set_size('medium')

plt.show()