I would like to add an individual footnote in the title pages generated foreach section.
I am sharing a minimal working example below.
\documentclass[hyperref={pdfpagelabels=false}]{beamer}
\usetheme{CambridgeUS}
\usecolortheme{beaver}
\useoutertheme[footline=authortitle]{miniframes}
\setbeamercolor{footnote}{fg=red}
\setbeamercolor{footnote mark}{fg=red}
\setbeamercolor{section page}{fg=black, bg= darkred!50}
\AtBeginSection[]{
\begin{frame}
\vfill
\centering
\begin{beamercolorbox}[sep=12pt,center,shadow=true,rounded=true]{section page}
\usebeamerfont{title}%
\textit{Section \thesection~}%
{\color{black} \insertsectionhead}\par%
\end{beamercolorbox}
\vfill
\end{frame}
}
\begin{document}
\section{My section}
\begin{frame}{My slide}
Some text here.
\end{frame}
\end{document}
I have tried the following trick, but it did not work.
\section[My section]{My section\raisebox{.3\baselineskip}{\normalsize\footnotemark}}\footnotetext{Here is my note}

