How do I add a cover(pdf) to the pdf latex build?
The cover is a pdf with one page.
I want to when I build in latex, add to the front of the paf latex build.
Could I do that by some command or setting?
I know the process can be done in adobe reader, but it is not convenient.
Becuse I must merge them very time when I rebuild the pdf.
General ⇒ How do I add a cover(pdf) to the pdf latex build
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
How do I add a cover(pdf) to the pdf latex build
Hi,
that can be done by the command \includepdf of the pdfpages package, see its documentation.
Stefan
that can be done by the command \includepdf of the pdfpages package, see its documentation.
Stefan
LaTeX.org admin
How do I add a cover(pdf) to the pdf latex build
I saw the manul about inserting one page of dpf.
But I add the two commands in preabmle.
It appears some error messages as below:
Package pdfpages Warning: I will use a dummy \ includepdf command whiich will NOT insert any pages, becuase you are producing DVI output.
Package pdfpages Warning: I cannot determine the number of pages of the included document, while being in DVI mode. You can use the option 'lastpage' to give me a hint.
[/color]
But I add the two commands in preabmle.
It appears some error messages as below:
Package pdfpages Warning: I will use a dummy \ includepdf command whiich will NOT insert any pages, becuase you are producing DVI output.
Package pdfpages Warning: I cannot determine the number of pages of the included document, while being in DVI mode. You can use the option 'lastpage' to give me a hint.
Code: Select all
\usepackage{pdfpages}
\begin{document}
......
\end{document}
\includepdf[pages=1]{mycover.pdf}
- black-wolf
- Posts: 7
- Joined: Wed Jul 02, 2008 10:58 pm
Re: How do I add a cover(pdf) to the pdf latex build
Seems to me that you are trying to build a DVI, you need to build a PDF using pdfLatex
or the correpondent tool on your LaTeX editor
Best regards
or the correpondent tool on your LaTeX editor

Best regards
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
How do I add a cover(pdf) to the pdf latex build
Hi black-wolf,
welcome to the board!
Your advice is correct. Just an additional information, the question was already solved in another thread, what wasn't mentioned here. Until now.
Stefan
welcome to the board!
Your advice is correct. Just an additional information, the question was already solved in another thread, what wasn't mentioned here. Until now.

Stefan
LaTeX.org admin
- black-wolf
- Posts: 7
- Joined: Wed Jul 02, 2008 10:58 pm
Re: How do I add a cover(pdf) to the pdf latex build
Thank you for your welcome Stefan 
