I would like to obtain a table of contents like this one:

But I haven't found yet how to instruct LaTeX to format a table of contents like this. I have also tried a different approach giving up the table of contents and using instead an ordinary table. But also with tables I wasn't able to reproduce this kind of index.
UPDATE: I've tried to use the suggestions provided and I put them together into:
\documentclass{book}
\makeatletter
\newcommand*\l@chapterinfo{\@nodottedtocline{0}{0.0em}{1.5em}}
\def\@nodottedtocline#1#2#3#4#5{%
\ifnum #1>\c@tocdepth \else
\vskip \z@ \@plus.2\p@
{\leftskip #2\relax \rightskip \@tocrmarg \parfillskip -\rightskip
\parindent #2\relax\@afterindenttrue
\interlinepenalty\@M
\leavevmode
\@tempdima #3\relax
\advance\leftskip \@tempdima \null\nobreak\hskip -\leftskip
{#4}\nobreak
\leaders\hbox{$\m@th
\mkern \@dotsep mu\hbox{\,}\mkern \@dotsep
mu$}\hfill
\nobreak
\hb@xt@\@pnumwidth{\hfil\normalfont \normalcolor }%
\par}%
\fi}
\makeatother
\def\chapterinfo#1{%
\addcontentsline{toc}{chapterinfo}{%
\noexpand\numberline{}#1}%
}
\begin{document}
\tableofcontents
\chapter{First conference}
\chapterinfo{\textit{\textbf{Some place, 12 may 2014}}}
\chapterinfo{Lorem ipsum dolor sit amet, consectetur adipiscing elit.}
But I haven't found yet how to instruct LaTex to format a table of contents ike this. I have also tried a different approach giving up the table of contents and using instead an ordinary table.
\chapter{Second conference}
\chapterinfo{\textit{\textbf{Some place, 22 may 2014}}}
\chapterinfo{Pellentesque pellentesque hendrerit urna, et commodo metus rhoncus ut. Praesent eget magna nec leo rhoncus congue nec non leo.}
But I haven't found yet how to instruct LaTex to format a table of contents like this. I have also tried a different approach giving up the table of contents and using instead an ordinary table. But also with tables I wasn't able to reproduce this kind of index.
\end{document}
But:
- How do I suppress the number before the title of the conference?
- How do I put "Some place" in the right side?
- How do I suppress "Chapter x" in the following pages?
I wasn't able to find how to use this tip:
\let\Chapter\chapter \def\chapter#1#2{\Chapter{#1}\chapterinfo{#2}}
Where can I find some documentation about it?



\documentclass{...}and ending with\end{document}. – Jun 07 '14 at 12:39