Ein Anchor bestimmt, welcher Punkt eines Knotens an einer gegebenen Position liegt. Standardmässig ist das der Mittelpunkt.
Syntax: \node[anchor=option] at (x,y) {Text};
Das sind die Optionen: center, north, south, east, west, north west, north east, south west, south east.
\begin{tikzpicture}
\node[anchor=north] at (0,0) {Zentrum};
\node[anchor=north east] at (-5,-2) {Unten links};
\node[anchor=south west] at (2,2) {Oben rechts};
\draw (0,0) -- (2,2);
\draw (2,2) -- (-5,-2);
\end{tikzpicture}