5

I have a Beamer presentation and I'd like to get the items of an itemize environment evenly spaced in each frame.

For instance, using the option \frame[t] gets all the content of a frame top aligned. How can I "vertically justify" the items, i.e. distribute them evenly?

Mel
  • 5,837
  • 10
  • 37
  • 42
thetouristbr
  • 153
  • 1
  • 3

2 Answers2

8

Insert \vfill between your content (items, images, text, etc.) where you want space to be added. This will automatically share the available space between all occurrences of \vfill.

Tom
  • 1,329
  • 6
  • 15
0

[t] is an alignment option meaning top align. Just call \frame{...} and the content will be centered.

xevincent
  • 3,674
  • 18
  • 20