[Tex/LaTex] include an article (revtex4) inside a book-class latex document

booksrevtex

I would like to include in an Appendix of my thesis some articles written, and I would like to do so in the original style which is revtex-prl. The thesis is written as a book.

Can I actually do this?

Best Answer

IF you have your articles as PDFs, you could use the pdfpages package

\documentclass{scrbook}

\usepackage{pdfpages}


\begin{document}
Some text before \dots

\includepdf[pages={1-4,6}]{pdffilename}

Some more text.
\end{document}

The inclusion works independently form the pdf it just puts the pages in. One can even specify a header (e.g. pagemark) for the included pages.

Related Question