How can I change the space between multiline title ?

6 views (last 30 days)
Hi,
I have the following title:
h = title({'Frequency vs. Beampattern - GA Array ' ; 'Plane Wave on Cylinder (Free-Field) - \phi_{in}=90^{\circ}'},...
'FontWeight','bold',...
'FontSize',11,...
'FontName','Palatino Linotype');
However, the lines are too close, hence I need some extra line spacing.
Does anyone know how to do it ?
Thanks,
Will

Accepted Answer

Will Fonseca
Will Fonseca on 22 Jan 2013
Edited: Will Fonseca on 22 Jan 2013
Solved !
As suggested by Doug in
The complete solution is
tall_str = sprintf(['\\fontsize{14}' blanks(1) '\\fontsize{11}']);
h = title({'Frequency vs. Beampattern - GA Array ' ;...
[tall_str 'Plane Wave on Cylinder (Diffraction+Free-Field) - \phi_{in}=90^{\circ}']},...
'FontWeight','bold',...
'FontSize',11,...
'FontName','Palatino Linotype');
The "tall_str" is a dummy string with a bigger size just to allocate more space.
Cheers,
Will

More Answers (0)

Community Treasure Hunt

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

Start Hunting!