26

How may I enlarge a single page in LaTeX?

I need this for the summary of a thesis that has to fit on a single page without respect to an eyecandy design.

In order to move the lower border, I was successful using \enlargethispage{10\baselineskip}, but I'd like to move the upper and right/left margins as well.

Werner
  • 603,163

2 Answers2

12

You're enlarging the page with 10 lines? That ought to make the text run below the page. Now we're far away from "eye candy design" :-)

In any case, try adding a \vspace*{-10\baseline} command at the top of the page. That adds negative space and moves the starting point up.

To make the margins smaller (or larger), you can use an environment like this:

\newenvironment{wide}{%
  \begin{list}{}{%
      \setlength{\topsep}{0pt}%
      \addtolength{\leftmargin}{-2cm}%
      \addtolength{\rightmargin}{-2cm}%
      \setlength{\listparindent}{\parindent}%
      \setlength{\itemindent}{\parindent}%
      \setlength{\parsep}{\parskip}}%
  \item[]%
}{%
  \end{list}%
}

Adjust the -2 cm above to suit your needs.

  • 1
    Thanks - that's exactly what I was looking for for the upper margin. Now I need something like this to make the right and left margin smaller on that very page. P.S.: I had to use \vspace*{-3\baselineskip} to move the upper border of the text. –  Jan 19 '12 at 15:07
7

You can also use \enlargethispage{}. For example, to enlarge the \textheight for the current page by one line, use this command: \enlargethispage{\baselineskip}

Tim A
  • 1,945