How can I select the "Neue Helvetica" instead of the default "Helvetica" as "fontname" ?
20 ビュー (過去 30 日間)
古いコメントを表示
How can I select the "Neue Helvetica" instead of the default "Helvetica" as "fontname" ?
Currently I have the following:
>> get(gca,'fontname')
ans =
'Helvetica'
0 件のコメント
採用された回答
Abderrahim. B
2022 年 8 月 29 日
編集済み: Abderrahim. B
2022 年 8 月 29 日
Hi!
Use set:
get(gca,'fontname') ;
set(gca, 'FontName', "Neue Helvetica") ;
get(gca, 'FontName')
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!