Tikz absolute positioning

[This article was first published on Software for Exploratory Data Analysis and Statistical Modelling, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

When working with a tikz drawing within LaTeX document we might want to locate an object using an absoute position on the page rather than leaving LaTeX to make the decision for us.

The use of nodes and the current.page label in conjunction with some other parameters attached to the tikz drawing will allow us to achieve the absolute positioning on the page.

As an example consider a one page drawing where we want to put a text box in the centre of the page.

\begin{tikzpicture}[remember picture,overlay]
\draw (current page.center) node {Add Text};
\end{tikzpicture}

If we wanted to add elements to the edge of a page we could use the current page.north west anchor to locate in the top left of the page.

Other useful resources are provided on the Supplementary Material page.

To leave a comment for the author, please follow the link and comment on their blog: Software for Exploratory Data Analysis and Statistical Modelling.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)