[Tex/LaTex] How to include a paper (pdf file) at the end of a thesis

graphics

My examiners have asked me to include the papers I've published in an appendix of my PhD. Due to changes of computers, I only have pdfs of most of them not .tex files, so I'd like to find a way of inserting them at the end of the document.

Best Answer

\usepackage{pdfpages}

\includepdf[pages={1}]{myfile.pdf}
\includepdf[pages={1,3,5}]{myfile2.pdf}
\includepdf[pages=-]{myfile3.pdf}           % Include all pages

See Inserting a PDF file in Latex

Related Question