I want to put a picture in a beamer slide and make it use all the available height of the frame. So I tried:
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\begin{document}
\begin{frame}{FRAMETITLE}
\centering
\includegraphics[height=\paperheight,draft]{figure}
\end{frame}
\end{document}
but this makes my figure exceed the slide:
I guess \paperheight includes the frame title, hence it is too large. Is there something like a \frameheight length which corresponds to the exact height available for the frame's content?


\textheight? – samcarter_is_at_topanswers.xyz May 08 '17 at 09:40\paperheight. – Feodoran May 08 '17 at 09:42