不寻常的几何形状和背景图像

不寻常的几何形状和背景图像

我正在尝试制作我的名片。第一张名片没什么特别的。背面会有一个二维码链接到我的http://card.vcf

在正面,我的主要信息在卡片的中心/左侧,右侧部分(右侧约 15-20%)将带有我的徽标(我正在考虑使用表格进行这些分隔,或者使用 makebox,直到现在才真正考虑过。)无论如何,在那之前,我希望我有一张背景图像……:我用 gimp 制作了它,很快……蓝色上可能什么都不会写。我希望它只出现在名片的正面: 名片大小的图像

也许为了简化,我会在其上添加我的徽标,因为这个背景与名片的大小相同。

问题是:我的几何图形,蓝色不会出现在我等待他的地方。如果我评论以下行:\usepackage[]{geometry} .... 我的背景是 A4 格式。

我尝试过: \usepackage{eso-pic} \usepackage{background} 也尝试过“\makebox”,但都无法实现。我将它们注释在示例代码中。

如果有人知道我缺少什么才能使它工作,我将非常感激我的帮助。

\documentclass[10pt]{memoir}
\usepackage{hyperref}
\usepackage{xcolor}
\usepackage{qrcode}
\usepackage[paperheight=5cm,paperwidth=9cm]{geometry}
\pagestyle{empty}
\usepackage{graphicx}

%\usepackage{background}
%\newcommand\BackImage[2][scale=1]{%
%\BgThispage\backgroundsetup{contents={\includegraphics[#1]{#2}}}

%\usepackage{eso-pic}
%\newcommand\BackgroundPic{%
%\put(0,0){%
\parbox[b][5cm]{9cm}{\vfill\centering\includegraphics[width=9cm,keepaspectratio]{160606-fond_carte_visite.png}\vfill}}}

\begin{document}
%\AddToShipoutPicture*{\BackgroundPic}
\makebox[0pt][l]{%
\raisebox{-\totalheight}[0pt][0pt]{%
\includegraphics[width=8.99cm,height=4.5cm]{160606-fond_carte_visite.png}}%}%
%\BackImage[width=\textwidth]{160606-fond\_carte\_visite.png}%

FirstName Lastname\\
Address\\

\newpage
\qrcode[height=15mm]{https://example.com/card.vcf}

\end{document}

答案1

像这样吗?

\documentclass[10pt,landscape]{article}


\usepackage{graphicx}
\usepackage{tikz}
\usepackage{tikzpagenodes}


\begin{document}



\begin{tikzpicture}[remember picture,overlay,shift={(current page.south west)}]
\node[anchor=south west] (0,0) {\includegraphics[width=\paperwidth,height=\paperheight]{pig}};
\end{tikzpicture}

\end{document}

我使用横向模式是因为我的图片就是这种方向。

答案2

在@JPi 的帮助下,得到了这个问题的答案:tikzpicture 的背景图片不适合整个页面,我按照自己的意愿使背景图像适合边距:

(...)
\usepackage[paperheight=5cm, paperwidth=9cm, left=0mm, bottom=0mm]{geometry}
(...)

\begin{tikzpicture}[remember picture,overlay,shift={(current page.center)}]
\node[inner sep=0] {\includegraphics[width=\paperwidth,height=\paperheight]{my_background.png}};
\end{tikzpicture}

相关内容