How can I select the "Neue Helvetica" instead of the default "Helvetica" as "fontname" ?

12 ビュー (過去 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'

採用された回答

Abderrahim. B
Abderrahim. B 2022 年 8 月 29 日
編集済み: Abderrahim. B 2022 年 8 月 29 日
Hi!
Use set:
get(gca,'fontname') ;
set(gca, 'FontName', "Neue Helvetica") ;
get(gca, 'FontName')
ans = 'Neue Helvetica'

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by