Manually modifying title position in tiledlayout environment
46 次查看(过去 30 天)
显示 更早的评论
Hello everyone
I was wondering if it is possible to manually modify the overall title position in the tiledlayout environment. I currently have it positioned at the top of my figures, as seen in the attached image:
being the title defined in my code like:
t=tiledlayout(2,2);
title(t,['First case'],'FontSize',25,'interpreter','latex');
I was wondering if it is possible to move the title a little closer to the upper limit of the figure environment than it currently is, how could this be done?
0 个评论
采纳的回答
Matt J
2023-12-7
编辑:Matt J
2023-12-7
I was wondering if it is possible to move the title a little closer to the upper limit of the figure environment than it currently is...?
No, but if you're really asking if there's a way to add space between the title and the tiles, you could add an additional blank line to the title:
title(t,{'First case'; ' '},'FontSize',25,'interpreter','latex');
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Title 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!