[Tex/LaTex] Positioning content at the top of a beamer slide (by default)

beamervertical alignment

When I create beamer frame, the content is centred in the slide. How do I make the content move to the top of the slide by default?

Best Answer

You could specify vertical top alignment globally by the t class option:

\documentclass[t]{beamer}

For single frames you could use the same option locally:

\begin{frame}[t]
...
\end{frame}