回忆录中 tikzpicture 的绝对定位

回忆录中 tikzpicture 的绝对定位

我需要使用一些图形材料将一些图形定位在库存的左上角(页面较小)。请考虑以下示例:

\documentclass[a3paper,showtrims]{memoir}
\usepackage{tikz}
\pageaiv
\isopage
\setpagecc{\paperheight}{\paperwidth}{*}
\checkandfixthelayout
\begin{document}
\chapter{A}
\begin{tikzpicture}[remember picture,overlay]
\node [xshift=1cm,yshift=1cm] at (current page.north west)
      [text width=7cm,fill=red!20,rounded corners,above right]
{
  This is an absolutely positioned text in the
  upper left corner.
};
\end{tikzpicture}
\end{document}

此示例的定位位置很奇怪。我怎样才能将 tikzpicture 放置在距离纸张(即 a3paper)左上角 1cm 的位置,而不是页面(a4paper)的位置?

答案1

谷歌搜索“memoir tikz stock”可得出http://www.texample.net/tikz/examples/modifying-current-page-node/

相关内容