I have to make a A3 page (which contains several figures) within my A4 document. This page should have landscape style, two columns and contain the usual header and page number. With the help of several posts here I found a solution for most of the problems, but: The space for text/figures is too small resp. the margins are too large. As it was recommended on other posts I tried \addtolength{\hoffset}{-4.0cm}, but unfortunately it just shifted everything to the left, so the right margin was still too large...I also tried some stuff by the use of \usepackage{changepage}, but I had no luck. Any advices?
\documentclass[12pt,a4paper,twoside,BCOR=12mm]{scrbook} %,BCOR=80mm
\usepackage{geometry}
\usepackage{afterpage}
\usepackage{multicol}
\usepackage{lipsum}
\usepackage[demo]{graphicx}
\usepackage[autooneside=false,headsepline=1.9pt]{scrlayer-scrpage}
\ohead{\pagemark}
\begin{document}
Text on A4 page \lipsum[1]
\afterpage{% Insert after the current page
\clearpage
\KOMAoptions{paper=A3,paper=landscape,twocolumn,pagesize}
%\addtolength{\hoffset}{-4.0cm}
\recalctypearea
Text on A3 page\lipsum[2]
\lipsum[3]
\begin{figure}
\centering
\includegraphics[width=\linewidth]{foo}
\caption{Awesome figure caption.}
\end{figure}
\clearpage
\KOMAoptions{paper=A4,pagesize}
\recalctypearea
}
\end{document}






\savegeometry,\newgeometryand\restoregeometrymacros of thegeometrypackage should allow such things for you. – Steven B. Segletes Dec 24 '16 at 01:37\newgeometrybut it did not work. As far as I understood the documentation of the geometry usepackage, it is not the aim to use\newgeometryfor other dimensions of the page itself. – Holg Dec 26 '16 at 13:47