When using includepdf and includegraphics to include a pdf or an image, the trimmed part is only hidden but not removed.
\documentclass{article}
\usepackage{pdfpages}
\begin{document}
\includepdf[trim={10mm 10mm 50mm 10mm}]{example-image.pdf}
\includepdf[trim={10mm 10mm 50mm 10mm},clip]{example-image.pdf}
\includepdf[clip,trim={10mm 10mm 50mm 10mm}]{example-image.pdf}
\end{document}
My questions are:
- Why is it done this way?
- Can I somehow remove the invisible parts?
- Should I remove the invisible parts?
I tried using the clip key but it does not seem to work.