我在文件中使用頁面大小的背景圖像,以獲得美觀的公司頁面。然而,它並沒有完全向左對齊,而是稍微偏移,導致左側出現難看的白色邊緣(見附圖)。我缺什麼?
\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
,文件中的白線讓我煩惱。