I have a really big problem:
I need a TikZ node that looks like that:
but i have no idea how to split the node like that. Esecially the "more text" is a big problem. All i tried ended in errors. So I'm at the beginning again. Can anybody out there help me please?.
my last code did look like that but didn't work...
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{shapes}
\usetikzlibrary{arrows}
\usetikzlibrary{calc,positioning}
\begin{document}
\begin{tikzpicture}
\node[name=data, rectangle split, rectangle split horizontal, rectangle split draw splits=false, draw, rounded corners=5pt] {1 \nodepart{two} 2 \nodepart{three} 3 \nodepart{four} 4 \nodepart{five} 5 \nodepart{six} 6};
\foreach \subnode in {1,...,5}% counter goes 1 to number_of_subnodes-1
{\draw[dashed] ($(data.north east)!{\subnode*0.25}!(data.north west)$) -- ($(data.south east)!{\subnode*0.25}!(data.south west)$);}
\end{tikzpicture}
\end{document}
One more Question: Why is CMD not centered???
\node[name=data, rectangle split, very thick,
rectangle split horizontal,
rectangle split parts=6,
rectangle split draw splits=true,
draw, rounded corners=2pt,
label={[fill=white,inner sep=0pt,font=\tiny]center:Daten/Parameter},
align=center,
text width=2.5em,
inner sep=2pt,
font=\tiny] at (mega88)
{CMD\nodepart{two} ~
\nodepart{three} ~
\nodepart{four} ~
\nodepart{five} ~
\nodepart{six}CS};

