如何在 MATLAB 中创建此图形标题?

发布于 2024-09-12 07:10:23 字数 258 浏览 3 评论 0 原文

我想使用以下内容将 Latex、数字和 Tex 组合到图形的标题中(beta_blambda 是定义的变量):

title(['$\overline{\beta}=$' num2str(beta_b) 'TE0 , \lambda=' num2str(lambda*1e6) ' \mum'], 'interpreter','latex');

但它无法正确显示。有什么问题吗?

I want to combine Latex, numbers, and Tex into the title of a figure using the following (beta_b and lambda are defined variables):

title(['$\overline{\beta}=

But it doesn't display properly. What's the problem?

num2str(beta_b) 'TE0 , \lambda=' num2str(lambda*1e6) ' \mum'], 'interpreter','latex');

But it doesn't display properly. What's the problem?

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

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

发布评论

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

评论(1

分分钟 2024-09-19 07:10:23

您不能将 Latex 和 Tex 组合在 'Interpreter' 属性)。以下内容将起作用:

title(['$\overline{\beta}=

请注意,您必须在 \lambda\mu 的两侧包含 $,以便可以正确解释它们。 $ 也必须位于 \mum 之间,否则它会被 \mum 绊倒。

num2str(beta_b) ... ' TEO , $\lambda=

请注意,您必须在 \lambda\mu 的两侧包含 $,以便可以正确解释它们。 $ 也必须位于 \mum 之间,否则它会被 \mum 绊倒。

num2str(lambda*1e6) ' $\mu$m'],... 'Interpreter','latex');

请注意,您必须在 \lambda\mu 的两侧包含 $,以便可以正确解释它们。 $ 也必须位于 \mum 之间,否则它会被 \mum 绊倒。

You can't combine Latex and Tex in a title. You have to use one or the other (i.e. whichever one you set for the 'Interpreter' property). The following will work:

title(['$\overline{\beta}=

Note that you have to include $ on either side of \lambda and \mu so they can be interpreted properly. The $ also has to go between the \mu and m, otherwise it gets tripped up on the \mum.

num2str(beta_b) ... ' TEO , $\lambda=

Note that you have to include $ on either side of \lambda and \mu so they can be interpreted properly. The $ also has to go between the \mu and m, otherwise it gets tripped up on the \mum.

num2str(lambda*1e6) ' $\mu$m'],... 'Interpreter','latex');

Note that you have to include $ on either side of \lambda and \mu so they can be interpreted properly. The $ also has to go between the \mu and m, otherwise it gets tripped up on the \mum.

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