投影机中的绝对定位

投影机中的绝对定位

使用 TikZ 可以轻松绝对定位某些内容remember picture,但它仅适用于 pdfLaTeX。

vskip我可以通过使用负面和hskips(反复试验)来使某些事情起作用,但这非常烦人。

我怎样才能在第一张幻灯片的顶角定位某些东西呢remember picture

答案1

textpos该包被设计用于页面上文本和图形的绝对定位。

答案2

这是一个简单的解决方案第 17.13.2 节Tikz 与 PGF手动的(章节副标题:“引用当前页面节点 – 绝对定位”)。

例如,要将图形放在右上角,您可以使用:

\begin{tikzpicture}[remember picture,overlay]
    \node[xshift=-2cm,yshift=-2cm] at (current page.north east){%
    \includegraphics[width=2cm]{photo.png}};
\end{tikzpicture}

上述代码的关键是current page.north east(修复了参照点) 以及xshiftyshift变量(将图像从该参考点移开)。

当然,您可以使用任何其他参考点,如current page.center、等。然后,只需使用和current page.south west即可实现所需的绝对放置。xshiftyshift

的参考点列表current page.blah包括八个主要基本方向(northwestsoutheast其间的四个方向),加上center。也可以使用任意度数(0-360),其中 0 是east,90 是north(例如,current page.45右上角)。

相关内容