0

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: generatedpdf 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.

Hoerbii3
  • 148

1 Answers1

2

The pages are the right size; it just isn't recalculating the type area using the right settings. Try adding DIV=current. For other options, see the KOMA-script documentation, page 39.

\KOMAoptions{paper=landscape, paper=A4, pagesize, DIV=current}
frabjous
  • 41,473