Is it possible to insert one legal-sized (or other size) page in a document. I have a table that is especially long that I would like to do this for. For example:
Code: Select all
\documentclass[11pt,twoside]{article}
\usepackage{pdflscape}
\begin{document}
Body text...
\begin{landscape}
% Change the paper size to legal here
Extra long table here...
\end{landscape}
% Go back to regular paper
Finish body text here
\end{document}