I would like to change the margin with the beginning of the second page simply by using a KOMA-script option: mpinclude=true. It works, if I write at the end of the text on page 1 this line:
\KOMAoptions{mpinclude=true}\recalctypearea{}
But the drawback is a pagebreak exactly where I put this line.
So I'd like to postpone the command to the end of the page. I found the package everyshi, which offers the command \AtNextShipout.
The following MWE does not work, the margin does not change on the second page, but I get the words [current]last as first line of the second page.
Any ideas?
\documentclass{scrartcl}
\usepackage{everyshi}
\usepackage{blindtext}
\begin{document}
Here is some text.
\AtNextShipout{\KOMAoptions{mpinclude=true}\recalctypearea{}}
\blinddocument
\end{document}
This MWE is rather short. My file as well uses the packages scrletter and some *.lco customisation.
\parinto the argument of\AtNextShipout? Or something like this? Or ist there something like\AtEndOfLastParagraphFullyOnPage? But if no good solution, then let's forget about it and I add the\AtNextShipoutafter finishing the article. – Keks Dose Apr 27 '18 at 14:38