I've set a page layout for my entire document with a space for margin notes with the following memoir commands:
\setstocksize{11in}{8.5in}
\settrims{0pt}{0pt}
\settypeblocksize{7.5in}{4.3in}{*}
\setlrmargins{1.5cm}{*}{*}
\setmarginnotes{20pt}{6.2cm}{0pt}
\checkandfixthelayout
The problem is that now I want some of the pages not to have the margin notes space, yet conserving the margins. That is, I want the blocksize to be extended on width, occupying the space of the margin notes. If it's possible, I'd like to have all the settings into an environment, such as the following:
\newenvironment{fullwidth}{%
% The settings that would make the layout go fullwidth
}{%
% The settings that would make the layout return to its normal lengths
}
I've seen this question as well, but for some reason it couldn't solve my case.