When I try to include a pdf file in my appendices, it gives the header and the label, and begins the pdf-file on the next page. I have a lot of pdf-files as my appendices, many only 1 page long, meaning I will have a lot of blank pages only saying:
\usepackage{pdfpages}
\begin{appendices}
\section{Interviews}
\subsection{Interview: Christine}
\includepdf[pages=1-2]{fig/interviews/christine.pdf}
\end{appendices}
This results in:
The rest of the page is then blank, and the actual appendix begins on the next page.
Is there any way I can alter the pdf-file to begin on the same page as the headline, maybe by scaling it to be smaller than actual page-sizes, so it fits on the same page?

pdfpagesmanual regarding the options of\includepdf. The optiontemplatesizemight allow you to shrink the page (didn't try it, though). – gernot Nov 07 '16 at 10:34pdfas an image using\includegraphics{fig/interviews/christine.pdf}. You can then use options like\includegraphics[height=<some-dimension>]{<PATH>}to ensure yourpdffits the rest of the page. However, it's text (i.e. font size) will be shrunck/inconsistent with the rest of the document. – ebosi Nov 07 '16 at 10:58