Is there a way to automate the mirroring of parboxes every time a new page occurs?
I have a \documentclass{book} that consists of two side-by-side \parbox. I would like one of the \parbox to always remain the "outer" and the other to always remain the "inner". The pages should essentially mirror each other.
In this example, I would like the skinny column to always be the inner column:

MWE:
\documentclass{book}
\usepackage{lipsum}
\begin{document}
\noindent
\parbox[t][][t]{.7\linewidth}{\lipsum[1]}\hfill
\parbox[t][][t]{.25\linewidth}{\lipsum[2]}
\noindent
\parbox[t][][t]{.7\linewidth}{\lipsum[8]}\hfill
\parbox[t][][t]{.25\linewidth}{\lipsum[9]}
\end{document}
\parboxes? Do you always insert these the same way? Is there any flow from one page to the next? – Werner Mar 07 '17 at 04:06\parboxes, the content within them will be of different lengths, and there is flow from one page to the next. – AML Mar 07 '17 at 10:46paracolis a better solution here? Would you please propose an example solution? – AML Mar 07 '17 at 11:12\twosided[pc]% swap margins and columnsunder\usepackage{paracol}. Does anyone know how to achieve the same thing but with\parbox? – AML Mar 07 '17 at 13:18