Possible Duplicate:
Table of Contents with additional description of entries
I'd like to add some notes for every chapter in the table of contents. Have a look at the following minimal compiling example for the idea.
\documentclass{article}
\usepackage{blindtext}
\newcommand{\summary}[1]{\addtocontents{toc}{\textit{#1}}}
\begin{document}
\tableofcontents
\section{First Section}
\summary{This is the introduction. It will make the reader want to continue reading.}
\subsection{Subsection 2.1}
\summary{Here we will explain in detail why this is scientificly important.}
\subsubsection{SubSubsection}
\summary{There are several elements of the argument. This is the first.}
\end{document}
This works great except that I would like to have the notes indented as much as the toc entry they belong to.
How to do that?
