0

I am working on a two-sided article with outer margins, and I would like to have an environment that stretches the main text block to the margins.

I have come up with something using the adjustwith* environment of the changepage package; however when going to a new page, the environment doesn't consider the margin side change.

Here is my MWE:

\documentclass[twoside]{article}

\usepackage[marginparwidth= 80pt, showframe]{geometry} \usepackage{lipsum} \usepackage{changepage}

\begin{document}

\lipsum[1-3]

\begin{adjustwidth}{0pt}{-\marginparwidth} \lipsum \end{adjustwidth}

\lipsum[1]

\end{document}

It produces the following document:

first page, the environment does what I want

second page, the environment doesn't extent to the left margin but still protrudes on the right

On the second page, I would like to have the text extend to the left margin and not protrude on the right.

0 Answers0