I am trying to use \authblk to create a beamer presentation with multiple author blocks, where each block basically says:
AUTHOR NAME 1
INSTITUTION 1
I tried using the \authblk but it does not seem to work. Can anyone please help me?
Here is my code:
\documentclass{beamer}
\mode<presentation>
{
\usetheme{CambridgeUS}
\usecolortheme{dolphin}
\setbeamercovered{transparent}
}
\usepackage{authblk}
\usepackage{color,colortbl}
\title[Short title]{Long Title}
\subtitle{Subtitle}
\author[Short Name (U ABC)]{Author 1\Institute 1 \and Author 2\Institute 2 \and Author 3\Institute 3}
\date[Dec 2015]{December 2015}
\begin{document}
\begin{frame}
\maketitle
\end{frame}
\end{document}


\texorpdfstring{<TeX>}{<PDF>}takes two arguments. The first contains TeX-related content, while the latter might contain PDF-specific content. It's often used when content being set has comparable entries in a PDF's structure. For example, when one issues\author{<author>},<author>ends up in the PDF info (when pressing Ctrl+D in Adobe Reader). However, if it's set in the document, it could be set in bold. The formatting is not supported in the PDF attributes, so one may issue\author{\texorpdfstring{\bfseries <author>}{<author>}}to discern between the two components. – Werner Jun 19 '22 at 05:06