The TOC in LaTeX seams to be an itemize environment.
Is it possible to change that in {beamer}, so that the TOC renders like an standard paragraph including line beaks if it gets longer than \linewidth?
My desired output should look like this:
\documentclass[14pt]{beamer}
\begin{document}
\section{Section1}
\section{Section2}
\section{Section3}
\section{Section4}
\section{Section5}
\section{Section6}
\section{Section7}
\frame{{TOC}
\tableofcontents
}
\end{document}

