I am using also titletoc to improve how my table of contents. I would like to print the table of contents several times. How can I do it?
It does not work in the MWE:
\documentclass{article}
\usepackage[utf8]{inputenc}
\begin{document}
\tableofcontents
\section{Hello}
\section{Bye}
\tableofcontents
\end{document}

PS: I have this code in my document, in order to have no title for the table of contents.
\makeatletter
\renewcommand\tableofcontents{%
\@starttoc{toc}%
}
\makeatother
PPS: \renewcommand{\contentsname}{}% Remove \tableofcontents' title/name will not work since I am using [french]{babel}.


\makeatletter \renewcommand\tableofcontents{% \@starttoc{toc}% } \makeatother, whose goal is to remove the title "Contents". – Colas May 21 '14 at 10:42\addto\captionsfrench{\renewcommand\contentsname{}}See How to change the name of document elements like “Figure”, “Contents”, “Bibliography” etc.? – Torbjørn T. May 21 '14 at 10:59