I write some short reports with the article class, and I would like to have a minimalist table of contents, which would be rendered like an itemized list. To be more specific, I would like to have a rendering similar as this one (but with clickable titles) for the table of contents of an article with three sections.
\subsection*{Agenda}
\begin{itemize}
\item First section
\item Second section
\item etc
\end{itemize}
Is it possible to easily get such a result? Thank you in advance!
Edit: Thank you for your answers! Here is the code I used.
\makeatletter
\renewcommand{\numberline}[1]{} % Removes the section numbers in the ToC
\renewcommand{\l@section}[2]{#1} % #1 = section number + title; #2 = page number
\pretocmd{\contentsline}{\item\gdef\contentslineused{}}{}{}
\renewcommand{\tableofcontents}{
\subsection*{Agenda}
\begin{itemize}
\@starttoc{toc}
\ifcsname contentslineused\endcsname\else
\item Agenda
\fi
\end{itemize}
}
\makeatother


\textbulletwith{\color{black}\textullet}. – Mico Oct 17 '20 at 13:39itemize), so I could more easily figure how to customize it. :) – Michael Marx Oct 18 '20 at 11:31