views:

65

answers:

3

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?

+1  A: 

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.

lhf
+1  A: 

You can write the page as a separate PDF and then include it with either \includegraphics or the pdfpages package.

jleedev
+1  A: 
\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 
Alexey Malistov