如何在文档中插入没有边框的旋转的侧注/文本框?

如何在文档中插入没有边框的旋转的侧注/文本框?

我需要它在文档的每一页上以固定位置重复。文本流不必参与其中。这涉及合同中的两个签名。它们必须呈垂直位置。如果我想从更改中排除某些页面怎么办?通常是合同中的最后一页。再次感谢。

答案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}

相关内容