How do you add a header to a printed figure?

29 views (last 30 days)
Suppose you wanted to write a script to make several pages of figures each with several small subplots that could be used as thumbnails. When done, you would like to print the figures each with a header containing the page number and the number of pages of similar plots. For example:
for page = 1:3
figure (page)
clf
for sub = 1:9
subplot(3,3,sub)
plot(1:100,rand(1,100))
end
set(gcf,'PaperPosition',[.25 .25 8 10])
% add page header here
end
and you want to put a header on the page like this
  3 Comments
Carl Hopkins
Carl Hopkins on 14 May 2021
Thank you Grzegorz Lippe:
This addition to Matlab sgtitle() is exactly the solution needed for this problem. A page of subplots needs to have its own title and this works seamlessly. Jan's answer has served as solution for the time being but this new function is perfect.
Adam Danz
Adam Danz on 14 May 2021
If you're using tiledlaytout (Matlab R2019b and later), you can assign the title to the tiledlayout object.
figure
tlo = tiledlayout(3,3);
nexttile; nexttile; nexttile;
nexttile; nexttile; nexttile;
nexttile; nexttile; nexttile;
title(tlo, 'Global Title', 'FontWeight','Bold','FontSize',18)

Sign in to comment.

Accepted Answer

Carl Hopkins
Carl Hopkins on 14 May 2021
see above for sbtitle()

More Answers (3)

Jan
Jan on 23 May 2017
Add a text to an invisible axes covering the complete figure:
AxesH = axes('Units', 'Normalized', 'Position', [0,0,1,1], 'Visisble', 'off', ...
'NextPlot', 'add');
text(0.5, 0.99, 'Your figure title', 'Parent', AxesH, ...
'Units', 'normalized', ...
'VerticalAlignment', 'top', 'HorizontalAlignment', 'center');
  1 Comment
Carl Hopkins
Carl Hopkins on 23 May 2017
Brilliant ! Thank you very much.
AxesH = axes('Units', 'Normalized', 'Position', [0,0,1,1], 'Visible', 'off', ...
'NextPlot', 'add');
text(0.5, 0.99, 'Your figure title', 'Parent', AxesH, ...
'Units', 'normalized', ...
'VerticalAlignment', 'top', 'HorizontalAlignment', 'center');

Sign in to comment.


KL
KL on 23 May 2017
title(['Pg.no:' num2str(page) ' sub:' num2str(sub)])
add this next to plot
  1 Comment
Carl Hopkins
Carl Hopkins on 23 May 2017
Thank you for your response. Although title works well for labeling an individual axis, but it does not put a header on a page with multiple axes. I would like to have a header or footer on the page that numbers the pages of plots in sequence (as in the figure where I did it manually)

Sign in to comment.


Sean de Wolski
Sean de Wolski on 14 May 2021
You can use the MATLAB Report Generator to build sophisticated reports with whatever formatting, chapters, sections, etc. you need. A trivial example:
import mlreportgen.report.*
import mlreportgen.dom.*
r = Report('figs', 'pdf');
t = Text("Figures:");
t.Style = {Bold, FontSize('24pt')};
add(r, t);
for ii = 1:3
plot(sin(1:(2^(ii+1))))
add(r, Figure);
end
close(r)
% rptview(r)

Categories

Find more on Graphics Object Properties in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!