2011-04-07 98 views

回答

3

你必須用反斜槓\逃脫下劃線作爲legend('foo\_bar')

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 
+0

設置'「Interpreter''到'」 none''是正確的做法,如果你不知道該字符串的內容(如參數,如該名包含下劃線)。 – Patrick 2016-01-13 22:13:38