[Tex/LaTex] Output TeX into a PDF template

graphicsletterhead

I'm writing a cover letter that I want to have on university letterhead, which I have a full-sized electronic copy of (in PDF as well as JPG). Is there an easy way to make TeX do this?

Best Answer

I recommended to use pdftk for such things. If template.pdf is the cover letter and mydocument.pdf is the (may be LaTeX generated) own document, you can can "stamp" it with the template:

pdftk mydocument.pdf background cover.pdf output mydocumentwithcover.pdf

background is transparent "stamping", but stamp is a foreground stamping. If you want to stamp only the first page, create the template.pdf with an additinal empty page and use multistamp/multibackground instead of stamp/background in pdftk.