I would like to make \tableofcontents look like \itemize, with the same indentation, unnumbered circle radius, circle and text color, but keeping the link capability.
Is there a beamer option or I need specific package? What are beamer default presets?
\documentclass{beamer}
\setbeamertemplate{itemize items}[circle]
\setbeamertemplate{section in toc}[circle]
\begin{document}
\begin{frame}{Overview}
\setbeamercolor{structure}{fg=black}
\tableofcontents
\end{frame}
\section{First section}
\begin{frame}{First content frame}
\itemize
\item First item
\item Second item
\item Other item
\item Other item
\item Other item
\item Other item
\item Other item
\item Other item
\end{frame}
\section{Second section}
\section{Other section}
\section{Other section}
\section{Other section}
\section{Other section}
\begin{frame}{Second content frame}
\itemize
\item Other item
\item Other item
\end{frame}
\end{document}


section in tocreferences withsubsection in tocshould be enough – BambOo Oct 04 '20 at 17:07