\listfiles
\documentclass{scrartcl} %KOMA-Script-Klasse | scrbook | scrartcl |
\usepackage[ngerman]{babel} % %Sprachunterstützung austrian polutonikogreek,
\usepackage[ansinew]{inputenc} %Eingabecodierung | ansinew | utf-8
\usepackage[T1]{fontenc} %T1-Codierung Zeichensatz
\usepackage{lmodern}
\usepackage{tikz}
\begin{document}
\begin{figure}[htb]
\centering
\begin{tikzpicture}[level 1/.style={sibling distance=50mm}]
\node[circle,draw] {Antrieb}
child {node[rectangle,draw] (left node) {kommerziell erhältlich}}
child {node[rectangle,draw] (right node) {Prototypen Antriebe}};
\end{tikzpicture}
\caption{Testbild}
\label{abb:test}
\end{figure}
\end{document}
Gruß, Sepp.-
EDIT: pgfmanual Version 2.1 S. 214ff.
