我正在使用\documentclass{article}
,如何创建一个带有背景图像而没有边距的页面,以便背景图像可以跨越整个页面?
我正在使用这个:
\usepackage{eso-pic}
\newcommand\BackgroundPic{%
\put(0,0){%
\parbox[b][\paperheight]{\paperwidth}{%
\vfill
\centering
\includegraphics[width=\paperwidth,height=\paperheight,%
keepaspectratio]{img0016.png}%
\vfill
}}}
然后对于页面如下:
\newpage
%\newgeometry{left=2.5cm,right=2.5cm,top=2.5cm,bottom=2cm}
\AddToShipoutPicture*{\BackgroundPic}
\section*{Something, some text}
%\restoregeometry
结果是这样的:
顶部和底部边距均为 0,所以没问题,我怎样才能去除这一页的白线?
非常感谢
答案1
\includegraphics[width=\paperwidth,keepaspectratio,clip]{img0016.png}
解决了我的问题。