1

I want to add at the beginning of all beamer frame environments some extra commands (for example, \vspace{-0.5cm}) and my trial with

\addtobeamertemplate{frame begin}{}{\vspace{-0.5cm}}

doesn't work at all.

Which line should I add to solve this problem?

user54824
  • 318
  • 2
  • 8

1 Answers1

2

I do not know if this breaks some thing some where!

\documentclass{beamer}
\usepackage{etoolbox}
\AtBeginEnvironment{frame}{\vspace*{-1in}}
\begin{document}
  \begin{frame}
    Some text
  \end{frame}
\end{document}