i am trying to draw an ER-Modell, but unfortunately some node styles are missing. So I tried to build up the styles of the nodes myself...
That didn't work that well, actually i could not find a way to draw a double circle (a double ellipse actually

Code: Select all
...
\usepackage{tikz}
\usetikzlibrary{er}
\usepgflibrary{shapes.geometric}
\begin{tikzpicture}
[ multiA/.style ={draw =black, line width=2mm,shape=ellipse, fill=black!5, thick}]
\node [multiA] (b) at (0,0) {Hello};
\end{tikzpicture}
...
I tried to use the preaction and postaction command but i think it does not work properly with nodes.
Maybe one of you has a good idea how i could create such a style

greetings Jones