文档边缘和背景之间的空白

文档边缘和背景之间的空白

我在文档中使用页面大小的背景图像来获得美观的公司页面。但是,它并没有完全与左侧对齐,而是略微偏移,导致左侧出现难看的白边(见附图)。我遗漏了什么?

\documentclass[11pt, oneside, a4paper]{report}
\usepackage[top=20mm, bottom=25mm, left=20mm, right=20mm]{geometry}
\usepackage{graphicx}
\usepackage{eso-pic}
\newcommand\BackgroundPic{
    \put(0, 0){
        \parbox[b][\paperheight]{\paperwidth}{
            \vfill
            \centering
            \includegraphics[width=\paperwidth, height=\paperheight]{background_pic}
            \vfill
        }
    }
}
\begin{document}
\AddToShipoutPicture*{\BackgroundPic}
Here is some text
\end{document}

灰色是我的编辑器背景,蓝色是我的实际background_pic,而文档中的白线是让我烦恼的。

在此处输入图片描述

相关内容