Hi,
I'm using TeXnicCenter editor with MikTeX 2.9. I want to insert a PDF page, that I called "abc.pdf", in my PDF document. I opened a folder and called it "myfiles", this is where all my source files and "abc.pdf" are. The code related to "abc.pdf" is the following:
- Code: Select all • Open in writeLaTeX
\makeatletter
\AddToShipoutPictureBG*{
\setlength{\@tempdimc}{.06\paperheight}
\setlength{\unitlength}{1pt}
\put(\strip@pt\@tempdimb,\strip@pt\@tempdimc){
\includegraphics{abc.pdf}
}
}
\makeatother
But when I compile the document from Latex to PDF, "abc.pdf" does not appear in my document and I get the error message:
- Code: Select all • Open in writeLaTeX
Package pdftex.def error: file "abc.pdf" not found.
By the way, I am sure that there is nothing wrong with the code.
Thanks