스톡의 왼쪽 상단 모서리에 일부 그래픽 자료를 사용하여 일부 그래픽을 배치해야 합니다(페이지가 더 작음). 다음 예를 고려하십시오.
\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}
이 예는 이상한 곳에 위치합니다. 페이지(a4paper)가 아닌 a3paper인 용지의 왼쪽 상단에서 1cm 떨어진 곳에 tikzpicture를 배치하려면 어떻게 해야 합니까?
답변1
인터넷 검색에서 "memoir tikz stock"이 나옵니다.http://www.texample.net/tikz/examples/modifying-current-page-node/