I would like to have one horizontal page with charts. I try to this using pdflscape, but I have blank rotated page before page I would like rotate. How can I fix it? My code below, pdf file here
\documentclass{article}
\usepackage[utf8] {inputenc}
\usepackage {polski}
\usepackage{geometry}
\usepackage{graphicx}
\usepackage{float}
\usepackage{pdflscape}
\begin {document}
\newgeometry{tmargin=3cm, bmargin=3cm, lmargin=3cm, rmargin=3cm}
\section {Section on vertical pages before horizontal page with graphics}
\section {Section on vertical pages before horizontal page with graphics}
\begin{landscape}
\section {Graphics on the new horizontal page}
\begin{figure}[H]
\includegraphics[width=\linewidth]{wykres1.png}
\includegraphics[width=\linewidth]{wykres2.png}
\includegraphics[width=\linewidth]{wykres3.png}
\caption {Caption}
\end{figure}
\end{landscape}
\section {Section on pages afrer horizontal page with graphics}
\section {Section on pages afrer horizontal page with graphics}
\section {Section on pages afrer horizontal page with graphics}
\end {document}
