long title problem printing
조회 수: 1 (최근 30일)
이전 댓글 표시
Hei. I have written a long title for a plot but not all of it appears when saving it as pdf! any idea to fix this?
댓글 수: 1
Walter Roberson
2017년 11월 15일
Which MATLAB release are you using? A couple of years ago there was a release that had this problem.
What font are you using for the title?
채택된 답변
per isakson
2017년 11월 15일
편집: per isakson
2017년 11월 16일
Two lines
title({'First line';'Second line'})
Smaller font size
h = title( 'abc' )
h.FontSize = 9;
And Walter just reminded me: a more space efficient font
h.Font = 'Helvetica';
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Labels and Annotations에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!