I would like to have three authors in the first presentation page in the same line.
How is it possible to make it.
Here I try to reproduce this example:
\documentclass{beamer}
\usetheme{CambridgeUS}
\useoutertheme{infolines}
\usepackage{tikz}
\newcommand\RBox[1]{%
\tikz\node[draw,rounded corners,align=center,] {#1};%
}
\author[Subham Soni S. \& Mithun C.K. \& Karthikeyan \& Shantikumar L.]
{%
\texorpdfstring{
\begin{columns}
\column{.45\linewidth}
\centering
\RBox{Subham Soni S.\\
\href{mailto:subhamsoni0049@pec.edu}{subhamsoni0049@pec.edu}}
\column{.45\linewidth}
\centering
\RBox{Mithun C.K.\\
\href{mailto:subhamsoni0049@pec.edu}{subhamsoni0049@pec.edu}}
\end{columns}
\vspace{0.5cm}
\begin{columns}
\column{.45\linewidth}
\centering
\RBox{Karthikeyan\\
\href{mailto:subhamsoni0049@pec.edu}{subhamsoni0049@pec.edu}}
\column{.45\linewidth}
\centering
\RBox{Shantikumar L.\\
\href{mailto:subhamsoni0049@pec.edu}{subhamsoni0049@pec.edu}}
\end{columns}
\vspace{-0.3cm}
\begin{columns}
\column{0.3\linewidth}
\raggedleft
\includegraphics[width=0.7cm]{pecemblem}
\vspace{-4.8cm}
\column{0.6\linewidth}
\raggedright
Department of CSE\\[1.1ex]
PEC\\
\vspace{-4.8cm}
\end{columns}
}
{John Doe \& Jane Doe}
}
\title{Work Culture}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\end{document}
However, I can reproduce it for three authors but to be in the same line?


