Easy example:
\documentclass{scrreprt}
\usepackage{minitoc}
\begin{document}
\doparttoc[n]
\noptcrule
\tableofcontents
\part{foo}
\parttoc
\chapter{bar1}
\chapter{bar2}
\chapter{bar3}
\chapter{bar4}
\end{document}
This creates a nice document, but the toc for the part is on a new page, but it would fit perfectly on the same pag as the part title. Is there a way to have the parttoc on the same page as the part title? So that it behaves like minitoc for chapters.


