带边距的背景图像/图片

带边距的背景图像/图片

我想在页面背景中添加一些图像或彩色图片。但是,我想留出一些边距空间。

较暗的区域超出了页面范围。主要页面颜色为白色,背景为浅灰色。

我因为其他资源而使用 xelatex。

参见下图:

示例图片

答案1

您可以使用该background包,但实际上要获得正确的位置可能很棘手!请参见以下示例,其中我使用hshiftvshift设置将随机图片设置为固定边距的背景,并遵循您的图像:

% !TeX program  = xelatex
\documentclass{article}
\usepackage{background,lipsum}

\backgroundsetup{
    scale=1,
    color=black,
    opacity=1,
    contents={%
        \includegraphics[%
            height=\dimexpr\paperheight-2cm\relax, % double the vert. margin
            width=\dimexpr\paperwidth-2cm\relax    % double the horiz. margin
            ]{example-image-a}
    },
    angle=0,
    position = current page.south west,
    nodeanchor = south west,
    hshift = 1cm, % horizontal margin
    vshift = 1cm  % vertical margin
}

\begin{document}
\lipsum[1-10]
\end{document}

在此处输入图片描述

答案2

我用这个解决了我的问题:

\usepackage{background}
\definecolor{myColor}{RGB}{234,234,234}
\backgroundsetup{
    contents={
        \begin{tikzpicture}
            \fill[myColor] (0,0) rectangle (18.5,28);
            \end{tikzpicture}
    },
    angle=0,
    scale=1
}

谢谢您的帮助!

相关内容