With a regular article/report/... class, you can use the showframe package to draw outlines of where the various regions of the page lie. I cannot get the same functionality with beamer, however. Using geometry with its showframe option similarly does not work.
How can I get this functionality with beamer?
MWE:
\documentclass{beamer}
%\usepackage[showframe]{geometry} % Doesn't work
\usepackage{showframe} % Doesn't work
\begin{document}
\begin{frame}{Slide Title}
\centering
Centered Text
\end{frame}
\end{document}
Edit:
A similar question is posed here that asks for a diagram depicting the layout of the page with lengths of various parameters given. The \layout package gives this output when applied to the MWE:

While this output gives margin information and general layout information, it does not give the visual output that I am looking for, with boxes overlaid on my own content.
I am less interested in seeing the value of margins and other lengths than I am in visualizing the fit of my own content on the slide and seeing how close the boxes actually are to content. This is why I desire functionality more close to what the showframe package would provide.


beamerbuild theframe? – Werner May 06 '14 at 17:23