ich versuche jetzt schon länger, einen Vektor in einem Tikz Node unterzubringen:
\begin{tikzpicture}[] \node (abc) [] { $\begin{pmatrix} x \\ y \\ z \end{pmatrix}$ }; \end{tikzpicture}
Hat jemand eine Lösung parat?

Schonmal Danke!

\begin{tikzpicture}[] \node (abc) [] { $\begin{pmatrix} x \\ y \\ z \end{pmatrix}$ }; \end{tikzpicture}
\documentclass{scrartcl} \usepackage{amsmath, tikz} \begin{document} \begin{tikzpicture} \node (abc) { $\begin{pmatrix} x \\ y \\ z \end{pmatrix}$ }; \end{tikzpicture} \end{document}