How can I change the space between multiline title ?

2 Ansichten (letzte 30 Tage)
Will Fonseca
Will Fonseca am 22 Jan. 2013
Kommentiert: Mr M. am 24 Sep. 2018
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

Akzeptierte Antwort

Will Fonseca
Will Fonseca am 22 Jan. 2013
Bearbeitet: Will Fonseca am 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

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by