我需要它在文档的每一页上以固定位置重复。文本流不必参与其中。这涉及合同中的两个签名。它们必须呈垂直位置。如果我想从更改中排除某些页面怎么办?通常是合同中的最后一页。再次感谢。
答案1
下面插入一个12厘米,旋转
签名:_______________ 签名:_______________
在每页文本块垂直中心的F
圆形区域,右边距 1 英寸处。代码注释以突出显示定位:G
\documentclass{article}
\usepackage{eso-pic,graphicx}
\usepackage{lipsum}
\AddToShipoutPictureFG{%
\AtTextLowerLeft{%
\hspace*{\textwidth}% Move to LowerRight of Text block
\hspace*{1in}% Move 1in into the right margin
\raisebox{\dimexpr.5\textheight-.5\height}{% Move image to vertical centre
\rotatebox{90}{% Rotate 90 degrees
\makebox[12cm]{Signature: \hrulefill \quad Signature: \hrulefill}}}% Insert signature(s)
}%
}
\begin{document}
\sloppy\lipsum[1-50]\lipsum[1-50]% Your document content
\end{document}