I want to center an image vertically in landscape format.
Here's what I've got up to now:
Code: Select all
\documentclass[12pt]{scrartcl}
\usepackage{rotating}
\begin{document}
\thispagestyle{empty}
\begin{sidewaysfigure}
\centering
\includegraphics[width=\linewidth]{testimage}
\caption{caption of the image}
\label{Label1}
\end{sidewaysfigure}
\end{document}
Has anybody got an idea?