So I`m trying to get a landscape page mid document (to print 6 figures in one row) and was following the instructions of this article.
Here is code fragment.
\documentclass[parskip=full, oneside]{scrreprt}
\usepackage{blindtext}
\usepackage[]{typearea}
\title{hello}
% DOCUMENT
\begin{document}
\maketitle
\newpage
\KOMAoptions{paper=landscape, paper=A4, pagesize}
\recalctypearea
\chapter{Findings}
\blindtext
\end{document}
The landscape part of the PDF looks like this:
Now to my problem: As you can see, it seems to still be in portrait mode (left and right empty spaces). Is there a setting I am missing? I work with TeXstudio 4.1.1 (git 4.1.1)
Using Qt Version 6.2.1, compiled with Qt 6.2.1 R. Operating system is macOS.
\recalctypearea. The type area is already recalculated because ofDIV=.... Alsopaper=A4andpagesizecan be removed. They are default. – esdd Apr 07 '22 at 09:18