回想録における 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 をページ (a4 用紙) ではなく、ストック (つまり、a3 用紙) の左上隅から 1cm の位置に配置するにはどうすればよいでしょうか。

答え1

「memoir tikz stock」をグーグルで検索するとhttp://www.texample.net/tikz/examples/現在のページノードの変更/

関連情報