Tikz Nodes

[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.

Nodes are used in tikz to place content in a picture as part of a LaTeX document.

Fast Tube
Fast Tube by Casper

When creating a tikz picture the origin is assumed to be at (0,0) and objects are placed with positioning relative to the origin on the picture. If we wanted to add a grid with lines from -3 to +3 in both the horizontal and vertical axes then we would use the \draw command combined with grid.

\draw (-3,-3) grid (3,3);

We can use the draw options to change how the grid is displayed. To make the grid lines thin we could add very thin and change the colour to a light gray (black!20):

\draw[very thin,black!20] (-3,-3) grid (3,3);

To add a node with text we use a combination of \draw and node, For example to put the node with a single letter A at (1,1):

\draw (1,1) node {A};

We can put an outline around the text in a node by specifying a shape and the draw option (which refers to the colour of the outline of the shape).

\node[shape=rectangle,draw=black] at (0,2) {B};

The fill option is for the inside of the shape. A circle with outline and filled background could be drawn with the following code:

\node[shape=circle,draw=blue,fill=blue!50] at (2,2) {D};

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)