5
如何讓我的圖例條目在沒有MATLAB思維的情況下有下劃線名稱我想讓下劃線表示下標?Matlab標籤,情節,傳說
如何讓我的圖例條目在沒有MATLAB思維的情況下有下劃線名稱我想讓下劃線表示下標?Matlab標籤,情節,傳說
你必須用反斜槓\
逃脫下劃線作爲legend('foo\_bar')
一個選項,如果你不打算使用任何的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
設置'「Interpreter''到'」 none''是正確的做法,如果你不知道該字符串的內容(如參數,如該名包含下劃線)。 – Patrick 2016-01-13 22:13:38