MATLAB使文字以粗体显示

时间:2014-07-30 22:31:40

标签: matlab

有没有办法让我添加到图表中的文字变粗?

我使用以下内容添加了文字:

text(9,2  , '1,296 atoms', 'Color', 'k');

然而,文字很微弱,很难看到。

1 个答案:

答案 0 :(得分:6)

您可以使用FontWeight属性。

text(0.1,0.5  , 'normal', 'Color', 'k');
text(0.5,0.5  , 'bold', 'Color', 'k', 'FontWeight', 'bold');

enter image description here

通常,如果要查看绘图类型的可编辑属性,可以进行简单的调用:

t = text(0.5, 0.5, 'a')
get(t)

这将显示所有可编辑属性。然后,在MathWorks页面中搜索要设置它们的值会更容易一些。

有关text属性的更多信息,请访问:http://www.mathworks.com.au/help/matlab/ref/text_props.html