this might be a newbie's question, but I probably only need a short guidance into the right direction. I want this to be on two pages in total, because I see that it would fit. How would I accomplish that? It always turns out to be on three pages, as soon as I use more than 0.65\textheight of height.
Thanks,
bers
Code: Select all
\documentclass{scrreprt}%
\usepackage{graphicx}%
\usepackage{lipsum}%
\begin{document}%
\lipsum[1-6]%
\begin{figure}%
\includegraphics[width=5cm,height=0.7\textheight]{images/TODO}%
\end{figure}%
\end{document}%
Code: Select all
\documentclass{scrreprt}%
\usepackage{graphicx}%
\usepackage{lipsum}%
\renewcommand{\topfraction}{0.9}
\begin{document}%
\lipsum[1-6]%
\begin{figure}[h]%
\includegraphics[width=5cm,height=0.7\textheight]{images/TODO}%
\end{figure}%
\end{document}%