Inserting a page with a different paper size
I am writing a report in LaTeX and开发者_运维知识库 want to insert a page at the end containing a summary of the content. Of course the summary will contain a lot of data so I want to add a page with another paper size (A3,...). But I don't find any solution on the internet for that problem. Is there a solution to this problem or do I have to write an additional LaTeX file with that summary?
\par\vfill\break % Break Last Page
\advance\vsize by 8cm % Advance page height
\advance\voffset by -4cm % Shift top margin
% Start big page
Some text
% End big page
\par\vfill\break % Break the page with different margins
\advance\vsize by -8cm % Return old margings and page height
\advance\voffset by 4cm % Return old margings and page height
I think setting all page parameters after a page flush (aka eject) should work, but I haven't tried it. Start with \paperwidth and \paperheight. You can try using the geometry package and issuing another \geometry{...} command.
You can write the page as a separate PDF and then include it with either \includegraphics
or the pdfpages
package.
精彩评论