[Tex/LaTex] Left-aligning Beamer titles with text

beamerhorizontal alignment

How can I set things up so that my \frametitle has the same indentation as the main body of text in my slide?

Best Answer

You can use \setbeamersize to change the value of text margin left so that the tile and the left margin have the same value; depending on the used theme, you will have to adjust the value for text margin left:

\documentclass{beamer}
\usetheme{Warsaw}
\usepackage{lipsum}

\setbeamersize{text margin left=1.2em}

\begin{document}

\begin{frame}
\frametitle{Some title}
\lipsum[1]
\end{frame}
\end{document}

enter image description here