[Tex/LaTex] Include PDF on the same page

graphicspdf

I would like to append the several-pages .pdf directly after the section-heading.

\subsection{Kopie des Projektantrages}
\includepdf[pages=-, fitpaper=true]{\antrag} // my PDF file-command

… but it's inserting the pdf on a new page…

Do you know what i try to achive? Hope someone can help me.

Second Try:

    \includepdf[pages=1,pagecommand=\subsection{Kopie des Projektantrages}, fitpaper=true]{\antrag}
\includepdf[pages=2-,pagecommand={}, fitpaper=true]{\antrag}

Now the Headlines of the latex document and the pdf are colliding…

Best Answer

This solves the problem :-)

\includepdf[pages=1,pagecommand={\subsection{Kopie des Projektantrages} \thispagestyle{empty}}, fitpaper=true]{\antrag}
\includepdf[pages=2-,pagecommand={\thispagestyle{empty}}, fitpaper=true]{\antrag}