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?
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?
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.
pagecommand. See http://tex.stackexchange.com/q/21248/4918 for instance. If this is not what you are looking for you are welcome to ask a follow up question (include an explanation what you want an a MWE ā¦) ā Tobi Aug 21 '14 at 11:59