[Tex/LaTex] How to write text after \part

parts

I am writing a report divided into parts. I would like to write a short description of each part on the same page as the part headline. When I just write:

\part{Hello}
Hello there...

The text "Hello there.." skips to the next page instead of the same.
Can you help me?

Best Answer

You could make the text an optional argument to \part for example

enter image description here

\documentclass{report}
\makeatletter
\let\old@endpart\@endpart
\renewcommand\@endpart[1][]{%
\begin{quote}#1\end{quote}%
\old@endpart}
\makeatother
\begin{document}
\tableofcontents
\part{Hello}
[Hello there...]

\chapter{zzz}
zzz


\end{document}