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

조회 수: 6 (최근 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 CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by