Questions tagged [changepage]

For questions regarding the changepage package that pro­vides com­mands to change the page lay­out in the mid­dle of a doc­u­ment, and to ro­bustly check for type­set­ting on odd or even pages.

The changepage package pro­vides com­mands to

1. robustly detect odd or even pages

To determine if TEX is typesetting on an odd or even numbered page, the \checkoddpage command can be used anywhere in the body of a document. \ifoddpage is either set to <true> or <false> if on an odd or even page, respectively.

2. locally adjust the margins

With the help of the adjustwidth environment (and its starred variant for twosided documents) the left and right (inner and outer) margins can be locally changed. See also the adjustwidth tag.

\begin{adjustwidth}{<change to left margin>}{<change to right margin>}

3. change the textblock

With the help of the \changetext command, the size and horizontal position of the text block on a page can be changed. The lengths are added to the corresponding current lengths and the new layout remains in effect until another \change.... command is issued.

\changetext{<text height>}{<text width>}{<even-side margin>}{<odd-side margin>}{<column sep.>}

4. change the entire page design

The \changepage command cn be used for changing the general layout of a page. The given lengths are also added to the corresponding current lengths and the new layout remains in effect until another \change.... command is issued.

\changepage{<text height>}{<text width>}{<even-side margin>}{<odd-side margin>}{<column sep.>}{<topmargin>}{<headheight>}{<headsep>}{<footskip>}
25 questions
0
votes
1 answer

Strange side effect of option strict for package changepage

I thought my previous problem on placing names, numbers and notes of theorems in the margin column had been solved. In fact, the code proposed in my answer works as expected: \documentclass[fontsize=11pt, paper=a4,…
Matthias
  • 1,956