30

I find this classic figure of LaTeX's page geometry very helpful:

geometry

Source: http://commons.wikimedia.org/wiki/File:Latex_layout.svg

Now, I am fiddling with some beamer slides and I could really use such an overview of beamer's slide layout. Does it exist anywhere? I have not been able to find it...

For now, I need it to figure out how to get the height of a frame's body.

cmhughes
  • 100,947
Thomas Arildsen
  • 1,855
  • 1
  • 19
  • 27
  • 5
    I don't think that a similar picture will ever exist; the geometry depends on how the used theme has been made, whether if the title bar count or not in the \textheight. You could read the manual (section 8.2.2 the sidebars): you will find some dimensions here – Lionel MANSUY Jan 31 '13 at 17:57
  • It's not quite what you want, but you might find http://tex.stackexchange.com/q/26299/86 a little bit helpful. – Andrew Stacey Jan 31 '13 at 18:13
  • @LionelMANSUY: To which manual are you refering? Is it the one of geometry? – strpeter Feb 15 '13 at 09:06
  • 1
    @strpeter I was talking about the Beamer's manual – Lionel MANSUY Feb 15 '13 at 09:12

1 Answers1

34

You can use the code provided by the author of the image. I tried with this:

\documentclass{beamer}

\usepackage{layout}

\begin{document}
\begin{frame}
\layout
\end{frame}
\end{document}

and got a single page with the beamer's slide layout.

Package layout, as far as I remember, creates the layout diagram for the current geometry of the document. In the previous code, for example, if you change the document class to article and remove the environment frame, you will obtain a layout like the one you put. For more information, check the package documentation.

I hope it is still useful.

enter image description here

Herr K.
  • 17,946
  • 4
  • 61
  • 118
  • 1
    At another place 1 on stackexchange it is mentioned that the \textheight includes the header. That would mean that the above graphic is wrong ... – StackJack Sep 17 '17 at 21:48