如果没有MATLAB认为我希望下划线表示下标,我如何让我的图例条目在名称中加上下划线?
答案 0 :(得分:4)
如果您不打算对图例字符串使用任何 TeX或LaTeX格式,则可以选择将图例对象的'Interpreter'
property设置为'none'
。 。有两种方法可以做到这一点:
legend({'foo_bar'},'Interpreter','none'); %# One line, labels in a cell array
%# OR...
hLegend = legend('foo_bar'); %# Create the legend, returning a handle
set(hLegend,'Interpreter','none'); %# Set the property
答案 1 :(得分:3)
您必须使用反斜杠\
转义下划线为legend('foo\_bar')