I would like to have the table of contents slide displayed at every \section{} however, along with the particular section highlighted (as usual in beamer using \AtBeginSection[]{...}), I would like to display an image to its right too.
Can anyone tell me how this could be done. Here is a TeX file which will achieve the same but I have done it manually and not with the \AtBeginSection[]{...}` command. Hence I cannot get the other sections to dim out in the usual beamer style. I hope the problem is clear.
\documentclass[blue,aspectratio=1610]{beamer}
\begin{document}
\section{New section}
\begin{frame}{Table of contents}
\begin{enumerate}
\item New Section
\item \textcolor{gray}{New New Section}
\item \textcolor{gray}{New New New Section}
\end{enumerate}
\vspace{0.3cm}
\hfill \includegraphics[scale=0.1]{pic1.png}
\end{frame}
\begin{frame}{some details about this section}
\end{frame}
\begin{frame}{some more details about this section}
\end{frame}
\section{New New section}
\begin{frame}{Table of contents}
\begin{enumerate}
\item \textcolor{gray}{New Section}
\item New New Section
\item \textcolor{gray}{New New New Section}
\end{enumerate}
\vspace{0.3cm}
\hfill \includegraphics[scale=0.1]{pic2.png}
\end{frame}
\begin{frame}{some details about this section}
\end{frame}
\begin{frame}{some more details about this section}
\end{frame}
\section{New New New section}
\begin{frame}{Table of contents}
\begin{enumerate}
\item \textcolor{gray}{New Section}
\item \textcolor{gray}{New New Section}
\item New New New Section
\end{enumerate}
\vspace{0.3cm}
\hfill \includegraphics[scale=0.3]{pic3.png}
\end{frame}
\begin{frame}{some details about this section}
\end{frame}
\begin{frame}{some more details about this section}
\end{frame}
\end{document}
Sorry for the small font, but hope you get the idea.
