Hi there,
I am trying to add my survey questions to my thesis. They are two PDF files. Each one is four pages. But, the output file shows only one of them. I don't know how to show them both.
Thanks in advance
Graphics, Figures & Tables ⇒ Inclusion of multi-page PDF Files
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Inclusion of multi-page PDF Files
LaTeX.org admin
-
- Posts: 41
- Joined: Sun Apr 08, 2012 4:31 pm
Re: Inclusion of multi-page PDF Files
Hi Stefan_k,
thanks for the reply. Yes, I used this package. But the problem is that I need to comment one of the files to see the other in the PDF file. Otherwise, the first file is shown only.
Thanks
thanks for the reply. Yes, I used this package. But the problem is that I need to comment one of the files to see the other in the PDF file. Otherwise, the first file is shown only.
Thanks
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Inclusion of multi-page PDF Files
Do you get any warning or error message?
How is your code written?
Stefan
How is your code written?
Stefan
LaTeX.org admin
-
- Posts: 41
- Joined: Sun Apr 08, 2012 4:31 pm
Inclusion of multi-page PDF Files
Hi Stefan,
thanks a lot for your effort. I just realized that the mistake was in writing
thanks a lot for your effort. I just realized that the mistake was in writing
\chapter*
instead of \section*
in the second appendix. Thanks again 
Code: Select all
\bibliography{Webbib}
\appendix
\chapter{First Appendix}
\chapter*{Survey questions (First version)}
\includepdf[pages=1-4]{FirstStage.pdf}
\appendix
\chapter{Second Appendix}
\section*{Survey questions (Second version)}
\includepdf[pages=1-4]{SurveyQUESTIONS.pdf}
\end{document}