Graphics, Figures & Tables ⇒ Inclusion of multi-page PDF Files
-
- Posts: 41
- Joined: Sun Apr 08, 2012 4:31 pm
Inclusion of multi-page PDF Files
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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Inclusion of multi-page PDF Files
-
- Posts: 41
- Joined: Sun Apr 08, 2012 4:31 pm
Re: Inclusion of multi-page PDF Files
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
How is your code written?
Stefan
-
- Posts: 41
- Joined: Sun Apr 08, 2012 4:31 pm
Inclusion of multi-page PDF Files
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}