Matlab 标签、绘图、图例
如何让图例条目的名称中包含下划线,而 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您不打算对图例字符串使用任何 TeX 或 LaTeX 格式,一种选择是设置 图例对象的
'Interpreter'
属性为'none'
。有两种方法可以做到这一点: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')
You'll have to escape the underscore with a backslash
\
aslegend('foo\_bar')