Too many non-property/value arguments error occurred when applying a text box to a figure
21 ビュー (過去 30 日間)
古いコメントを表示
Zeynab Mousavikhamene
2019 年 9 月 6 日
コメント済み: Walter Roberson
2019 年 9 月 6 日
Here is the line:
text(2,3,'\bf fontname{times} infty','FontSize',12,'center')
0 件のコメント
採用された回答
Walter Roberson
2019 年 9 月 6 日
'center' is not an option by itself. You want either 'HorizontalAlignment', 'center' or 'VerticalAlignment', 'center'
Also you appear to be missing \ before fontname and before infty: '\bf \fontname{times} \infty'
2 件のコメント
Walter Roberson
2019 年 9 月 6 日
text(2, 3, '\bf\fontname{times}\infty','horizontalalignment', 'center', 'fontsize', 12)
That is, those two spaces you had in your control string were being output as spaces.
\ signals to the (default) tex interpreter that the next few characters are a command or special character . For example 'beta \beta' would output
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!