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'
댓글 수: 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!