\
begin{document}
statement (so before any typesetting has
happened.
To adjust text width within a document we define an environment:
\newenvironment{changemargin}[2]{% \begin{list}{}{% \setlength{\topsep}{0pt}% \setlength{\leftmargin}{#1}% \setlength{\rightmargin}{#2}% \setlength{\listparindent}{\parindent}% \setlength{\itemindent}{\parindent}% \setlength{\parsep}{\parskip}% }% \item[]}{\end{list}}
The environment takes two arguments, and will indent the left and
right margins, respectively, by the parameters’ values. Negative
values will cause the margins to be narrowed, so
\
begin{changemargin}{-1cm}{-1cm}
narrows the left and right
margins by 1 centimetre.
quote
environment) doesn’t change the text width
as far as TeX is concerned: it merely moves text around inside the
width that TeX believes in.
The changepage package provides ready-built commands to do the
above; it includes provision for changing the shifts applied to your
text according to whether you’re on an odd (recto) or an even
(verso) page of a two-sided document.
The (earlier) package chngpage provides the same facilities,
but it uses rather different syntax. Changepage’s structure
matches that of the memoir class, and it should be used for
any new work.
Changing the vertical dimensions of a page is more clumsy still: the
LaTeX command \
enlargethispage
adjusts the size of the current
page by the size of its argument. Common uses are
\enlargethispage{\baselineskip}
to make the page one line longer, or
\enlargethispage{-\baselineskip}
to make the page one line shorter.
This question on the Web: http://www.tex.ac.uk/cgi-bin/texfaq2html?label=chngmargonfly