[Tex/LaTex] A0 (landscape) sheet inside A4 paper

koma-scriptmarginspaper-size

Well I "can" do this using the koma options.. However it results in a warning and the effect isn't completelly what I like it to be.

First the way I do it is:

\clearpage
\KOMAoptions{paper=A3,paper=portrait}
\recalctypearea

\chapter{Chosen airfoil and wing shape}
\label{app:cad-airfoil}



\clearpage
\KOMAoptions{paper=A4,paper=portrait}
\recalctypearea

Now this results in a warning as follow:

/appendixAirfoil.tex: Package typearea Warning: Bad type area
settings! (typearea) The detected line width is about 55% (typearea)
larger than the heuristically detected line width. (typearea) You
should e.g. decrease DIV, increase fontsize (typearea) or change
papersize.

Another problem I have with above is that the margins are still relative to the paper size. Making the margins ridiculously large, and the actually area where I can put the cad drawing very small. (Ok I could put the cad at an offset from the margin, however then the accompanying text looks weird staring at a random position).

So How can I fix this problem with the margins (or problems, though I think it is the same one?). – Preferably just keep the same margins as A4 sheets, and if that's not easily possible manually set them?

Best Answer

Changing the papersize mid document is a strange thing for me. I would try to put stuff like that in the appendix.

Internally, package typearea takes care of laying out the text block on the page. With the code below you get an A0-page mid document, the high DIV value decreases the amrgin size and increases width and height of the text block.

But why does package typearea give a warning? Typearea tries to lay a certain amount of glyphs on the line to result in the best readability (which is said to be around 66 to 70 glyphs for a casual reader). As far as text is concerned, imagine holding an A0 page in your hand with a font size of just 11 pt. You would have to turn your head a lot. Hence the warning, »Hey, this is bad, think about it.«

Maybe it would be easier to include the pdf using \includepdf from package pdfpages?

\documentclass{scrreprt}
\usepackage{mwe}
\usepackage{showframe}
\begin{document}
\blinddocument
\storeareas\normalpage
\cleardoubleoddpage
\KOMAoptions{paper=a0,paper=landscape,pagesize,DIV=50,}
\blindtext
\cleardoubleoddpage
\KOMAoptions{paper=a4,paper=portrait,pagesize}
\normalpage
\blindtext
\end{document}