[Tex/LaTex] Remove author and institution in footline

beamerheader-footer

I am writing a beamer presentation using the CambridgeUS theme but my presentation has multiple authors and their names do not fit in the footline at the author section. I want to delete all of their names so that they do not appear at all. Also I do not want the institution name to appear either.

How can I do this?

Best Answer

As texenthusiast, said in the comment, the simplest thing to do is to use the optional arguments of \author and \institute commands and let them be empty.

\documentclass{beamer}
\usepackage{lmodern}
\usetheme{CambridgeUS}
\title{My talk}
\author[]{Author 1, Author 2, Author 3}
\institute[]{My university}

\begin{document}

\begin{frame}
\titlepage
\end{frame}

\section{One}
\subsection{One one}
\begin{frame}{Title}
Some text
\end{frame}


\end{document}

The title page:

enter image description here

The first frame:

enter image description here