Background
I previously asked: Can I convert a 16 page pdf into an 8x2 matrix in LaTeX?
I ended up creating a 3x5 matrix of images from a 15 page pdf by compiling a document "foo.tex":
\documentclass{article}
\usepackage{pdfpages}
\begin{document}
\includepdf[landscape = false,
pages={1-15},
nup=3x8,
delta={10 10}]{myplots.pdf}
\end{document}
Which gives the document foo.pdf:
I have used the caption package to place captions on a separate page, as described in the answer to a separate question by putting this in the preamble:
\usepackage{caption}
\usepackage{letltxmacro}% http://ctan.org/pkg/letltxmacro
\captionsetup{labelsep=none}
\DeclareCaptionTextFormat{none}{} \captionsetup{labelsep=none,textformat=none}
And then include foo.pdf in my manuscript as a figure with the following command:
\begin{figure}[p]
\caption{This is my caption that will end up on another page}
\begin{center}
\includegraphics[width=0.9\textwidth]{foo.pdf}
\end{center}
\label{fig:foo}
\end{figure}
\end{document}
Question
Now, I need to add a title and an x-axis label to the overall figure (not to the individual plots), how can I do this?
I have looked in the pgfpages documentation, and could not find any such feature.
Updates / What I have tried
using overpic, as suggested in the related question suggested by @percusse would work after adding ofset=10mm,10mm to the pdfpages command, except that it is not clear how to rotate the text 90 degrees for the x-axis. I have come up with a temporary "good-enough" solution and posted this as an answer


pdfpagesand the x-axis label ? I think your solution is not related to plots per se. Why not using\caption{X-axis label}. – percusse Jun 26 '12 at 14:35pdfpagesis only that I used it to create the figure, and I don't know if the solution is in the figure creation or when including it in the main document. Please re-tag as appropriate. I don't use caption mainly because the caption is on a separate page, as per publishers' instructions using the caption package, as described in the answer to a related question – David LeBauer Jun 26 '12 at 14:44captionpackage. – David LeBauer Jun 26 '12 at 14:50pagecommandoption of\includepdf? In its argument, you can add all the necessary content (usingoverpicfor example). – Paul Gaborit Jul 02 '12 at 23:06pagecommandoption is used to add something to the overall figure. Look at my answer... – Paul Gaborit Jul 03 '12 at 11:18