Change spacing between title lines

조회 수: 47 (최근 30일)
John Cruce
John Cruce 2021년 9월 11일
답변: Sulaymon Eshkabilov 2021년 9월 12일
I have a multi-line title I'm trying to change the spacing between. The first line is size 14 font, the second line is size 10 font. The gap between the lines feels especially big. Any thoughts or suggestions on how to correct this? Code provided below.
t = title({['\fontsize{14}','Line 1']; ...
['\fontsize{10}',sprintf('Line 2',variable)]}, ...
'FontWeight','Normal');
  댓글 수: 1
dpb
dpb 2021년 9월 11일
Amongst anything else,
sprintf('Line 2',variable)
isn't valid syntax; missing a format expression for a variable which is undefined/unknown in isolation...

댓글을 달려면 로그인하십시오.

답변 (2개)

Image Analyst
Image Analyst 2021년 9월 12일
It doesn't seem that big to me. Any less and it would be too crowded
plot([0 1]) % Create axes with a plot in it.
[t, s] = title('Line 1 is the main title','Line 2 is the subtitle','Color','blue');
t.FontSize = 14; % Set main title font.
s.FontSize = 10; % Set subtitle font.

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021년 9월 12일
In your exercise, one of the viable solutions is to create one necessarily formatted blank line between the two lines. Here is one thread that discusses and demonstrates this approach: https://www.mathworks.com/matlabcentral/answers/59545-how-can-i-change-the-space-between-multiline-title?s_tid=answers_rc1-3_p3_Topic

카테고리

Help CenterFile Exchange에서 Title에 대해 자세히 알아보기

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by