答案1
现在注释太长了。您可以使用tikzpagenodes
和eso-pic
。如果您只想在特定页面上使用 ,请在该页面上使用 ,\AddToShipoutPictureBG*{...}
如...
下面的代码所示。对于所有页面,请使用
\documentclass{article}
\usepackage{tikzpagenodes}
\usepackage{eso-pic}
\AddToShipoutPictureBG{\begin{tikzpicture}[overlay,remember picture]
\fill[red,even odd rule] (current page.south west)
rectangle (current page.north east)
([xshift=-1cm,yshift=-1cm]current page text area.south west)
rectangle ([xshift=1cm,yshift=1cm]current page text area.north east);
\end{tikzpicture}}
\usepackage{lipsum}
\begin{document}
\lipsum[1-23]
\end{document}