How can I change the space between multiline title ?

5 次查看(过去 30 天)
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

采纳的回答

Will Fonseca
Will Fonseca 2013-1-22
编辑:Will Fonseca 2013-1-22
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by