I'm writing a thesis and need to embed some publications somewhere in the middle. I have already learned that this can be done with the
pdfpages package, but this appears to only work with
pdflatex. I'm using the
texify,
dvips and
ps2pdf commands from MiKTeX 2.7 from the WinEdt interface, because otherwise the images in the thesis won't work.
So my question is:
Given that I can't use pdflatex, how can I embed a PDF document in my thesis?
Thanks!
More detail:
Code: Select all
\documentclass{article}
\usepackage[final]{pdfpages}
\begin{document}
\includepdf[pages=-]{dummy.pdf} % get it here: http://www.tex.ac.uk/CTAN/macros/latex/contrib/pdfpages/dummy.pdf
\end{document}
If I try using pdfpages anyway (using the above code), I just get an empty page embedded in my document if I use texify/dvips/ps2pdf. If I use pdflatex, this code works and I get the 30 page document included, like I want. If I actually specify the pages (pages=1-30 or pages=6-10), I get 30 (or 5) blank pages using texify/dvips/ps2pdf. I also tried using absolute rather than relative paths, but it doesn't help.