I have some sections without a number, but which I would like to have with a dotted line. However they automatically get the indentation of a section as that is globally defined with \tableofcontents. Is it possible to remove the indentation before the "1 Context" but uphold the indentation afterwards?
\documentclass[11pt]{report} ... \begin{document} \section*{Inhoudsopgave} \makeatletter \@starttoc{toc} \makeatother \section*{Inleiding} \addcontentsline{toc}{section}{\protect\numberline{}Inleiding}% ... text ... \chapter{Context} ... \end{document} 

\usepackage{tocloft}will give a clue. Whether this will work with one of the\cftXindentcommands depends on the class, however. Please post a working example, not just a screen shot of the desired outcome\@starttoc{toc}instead of\tableofcontents?