General ⇒ How do I add a cover(pdf) to the pdf latex build
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.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
How do I add a cover(pdf) to the pdf latex build
that can be done by the command \includepdf of the pdfpages package, see its documentation.
Stefan
How do I add a cover(pdf) to the pdf latex build
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
or the correpondent tool on your LaTeX editor

Best regards
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
How do I add a cover(pdf) to the pdf latex build
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
- 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
