我正在写一封求职信,想用大学信笺抬头,我有一份全尺寸的电子版(PDF 和 JPG)。有没有简单的方法可以让 TeX 做到这一点?
答案1
我建议使用pdftk
对于此类事情。如果template.pdf
是求职信并且mydocument.pdf
是(可能是 LaTeX 生成的)自己的文档,您可以使用模板“盖章”它:
pdftk mydocument.pdf background cover.pdf output mydocumentwithcover.pdf
background
是透明“印章”,但stamp
属于前景印章。如果只想印章第一页,请创建template.pdf
带有附加空白页的 ,并使用multistamp
/multibackground
代替中的stamp
/ 。background
pdftk
答案2
这是使用的解决方案墙纸包裹:
\documentclass{article}
% adjust margins to fit your letterhead
\usepackage[left=3cm,right=3cm,top=7cm,bottom=3cm]{geometry}
% embed pdf of letterhead as background image
\usepackage{wallpaper}
\ULCornerWallPaper{1}{empty-letter.pdf}
\pagestyle{empty}
\begin{document}
Your text goes here \dots
\end{document}
答案3
评论中已经提到了一些专门用于此目的的软件包,包括eso-pic
和wallpaper
。然而,通常必须将图像放在文本后面变暗在某种程度上,这样文本仍然可读。出于这个原因,我会使用 TikZ,它通过其 opacity=
选项为您提供了一种轻松更改所包含材质的不透明度的方法:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{tikz}
\usepackage{lipsum} % only needed for example text, can be removed in real application
\AtBeginDocument{%
\tikz[overlay,remember picture]\node[opacity=0.5, anchor=center] at (current page){\includegraphics[width=\paperwidth]{example-image}};%
}
\begin{document}
\lipsum
\end{document}