Represent points or text elements in a graphic.
Syntax:
\begin{tikzpicture}
\node at (0,0) {Text}; % simple node
\node[draw, rectangle] at (2,0) {Box}; % node in a rectangle
\node[draw, circle, fill=red!40] at (4,0) {Circle}; % node in a circle
\end{tikzpicture}
Options:
draw → draw a border around the node
circle, rectangle → shape of the node
fill=color!NUMBER → background color mixed with white (percentage)