Save multiple figures in one pdf page without using subplots
问题 I have a lot of figures and i want to get them on the same page in a pdf. Currently i am using the PDF backend, but it only writes them on one page per figure. What changes are needed to get a list of figures on one page? I don't want to use subplots because of several reasons of the code. So let's say it is not possible to change the plotting part. I only want to change the part where i save the figures to the pdf: for i in range(number_of_figures): fig = figures[i] pp.savefig(fig) pp.close(