In my dissertation, I got some diagrams that don't fit a single (horizontal) A4 page. Hence I decided to print them on A3 pages that might be unfolded when reading. I followed the instructions in several posts, including this one:
Insert foldable A3 pages in an A4 document with active references
My first attempt looks like this:
\newpage
\begingroup
\pdfpagewidth=2\pdfpagewidth
\noindent%\makebox[0pt][l]{%
\begin{figure}
%graphics go here
\caption{foo}
\end{figure}
\newpage
\endgroup
When replacing the figure with plain text, I indeed get a A3 landscape page within my document. Unfortunately, this doesn't seem to work for the figure-environment, since neither the graphics, nor the caption are displayed.
Please note that I want to reference the figures, hence pdfpages might not be an option.
figure, which is a float, into a box, e.g.\makebox[0pt][l]{..}. Instead apply the box command to the content iffigure. Also, in this case you should use\clearpagenot\newpageto create a new page but clear all pending floats (figures andtables) first. This way you insure that yourfigureis placed before the group ends. – Martin Scharrer Jan 19 '13 at 08:01hugepageenvironment in the answer to the above linked question didn't work for you? – Martin Scharrer Jan 19 '13 at 08:03\makebox[0pt][l]in your code which got commented out. So apparently you tried placing afigureinto a\makebox, so I thought to point out that this doesn't work at all. – Martin Scharrer Jan 21 '13 at 07:04