Matlab 标签、绘图、图例

发布于 2024-10-31 04:50:59 字数 48 浏览 1 评论 0原文

如何让图例条目的名称中包含下划线,而 MATLAB 不会认为我希望下划线表示下标?

How do I get my legend entry to have an underscore in the name without MATLAB thinking I want the underscore to mean subscript?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜点 2024-11-07 04:50:59

如果您不打算对图例字符串使用任何 TeX 或 LaTeX 格式,一种选择是设置 图例对象的'Interpreter' 属性'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

One option, if you don't intend to use any TeX or LaTeX formatting for your legend strings, is to set the 'Interpreter' property for the legend object to 'none'. There are two ways to do this:

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
ゃ懵逼小萝莉 2024-11-07 04:50:59

您必须使用反斜杠 \ 将下划线转义为 legend('foo\_bar')

You'll have to escape the underscore with a backslash \ as legend('foo\_bar')

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文