[Tex/LaTex] Adding extra documents in moderncv

moderncv

I would like to add extra documents (like reference letters and certificates) to the moderncv in a way that everything is in the same pdf. I can´t include them as text because they will actually be scanned copies.

Is there any way to add it so every scan occupies an extra page in the same pdf or has the template been created to just have the CV and cover letter?

Best Answer

The moderncv document class can handle this just like any other document class. Easiest would be to include

\usepackage{pdfpages}% http://ctan.org/pkg/pdfpages

in your preamble and insert

\includepdf{<file>}

wherever you want to include a PDF <file>. <file> can be multi-page (or not) and you can specify the pages to include. See the pdfpages documentation for options or choices.