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)左上角 1 公分的位置,而不是頁面(a4paper)?

答案1

谷歌搜尋「回憶錄 tikz 股票」收益率http://www.texample.net/tikz/examples/modifying-current-page-node/

相關內容