[Tex/LaTex] Adding one more information in the front page – beamer

beamertitles

I am creating a slide template for a presentation in LaTex using Beamer and i want to add some more information "Supervised by " between "Directed by " and "the institue" , so i put

\documentclass{beamer}
\usetheme{CambridgeUS} % theme
\title[Project's name]{Project 's name }
\author[My name]{\textbf {Directed by: my name}} % auteur
\institute[Rouen University]{\textbf {Rouen University}}
\date{20 july 2012}
\titlegraphic{\includegraphics[width=2cm]{logo_ur.jpg}}
\begin{document}

\begin{frame}
\maketitle
\end{frame}


\end{document}

the result is given by this picture :
enter image description here

and i want something like this :

enter image description here

Best Answer

You can use a line break in author field and add the second line.

\documentclass{beamer}
\usetheme{CambridgeUS} % theme
\title[Project's name]{Project 's name }
\author[My name]{\textbf {Directed by: my name\\ \footnotesize Supervised by: first name, second name}} % auteur
\institute[Rouen University]{\textbf {Rouen University}}
\date{20 july 2012}
\titlegraphic{\includegraphics[width=2cm]{example-image}}
\begin{document}

\begin{frame}
\maketitle
\end{frame}
\end{document}

enter image description here