I can't seem to find an appropriate option in the paracol documentation, but I was wondering if there is a way to easily adjust the margins using the paracol package or if I have to do some external solution (like using the geometry package, such as Change \textwidth and \textheight in mid-document, but note this doesn't seem to work for mid-page). That is, I want the paracol part to be wider (mid-page) relative to the rest of the text (in particular, cutting into the left margin).
For context, I was using two mdframes in minipages to get them side by side. To adjust the margins, I (dirtily) used \hspace*{-0.2\linewidth} or something like that until I was happy how much it cut into the left margin (I didn't care about the right margin). I switched to paracol instead of minipages so that my environment would work across page breaks, but now I can't figure out how to adjust the paracol part so it has a different left margin (that is, the left margin of the page itself is smaller).
Thanks!
EDIT: here is sort of the thing I am testing with:
\usepackage{paracol}
\usepackage{mdframed}
\newenvironment{env}[1][]
{
% \hspace*{-0.2\linewidth}
\begin{paracol}{2}
\begin{leftcolumn}
\begin{mdframed}
{#1}
\end{mdframed}
\end{leftcolumn}
\begin{rightcolumn}
\begin{mdframed}
}
{
\end{mdframed}
\end{rightcolumn}
\end{paracol}
}
And as I said, inputting \hspace*{-0.2\linewidth} in the commented part didn't yield a change in the margins.

tabularxbreak across pages (unlike minipage)? I noticed I couldn't putmarginnotesinparacoldue to something about floats (I don't quite understand what floating is, just that apparently you cannot do nested floats?). – anak Oct 04 '19 at 02:49