In my work there are case analysis of graphs of the type:
I am new to the wonderful world of TikZ and I have tried the following:
\begin{tikzpicture}[every node/.style={circle, draw, scale=.6}, scale=.5, rotate = 180, xscale = -1]
\node [draw,shape=circle](one) at (0,0) {};
\node[draw,shape=circle] (two) at (-2,2) {};
\node [draw,shape=circle](three) at (0,4) {};
\node [draw,shape=circle](four) at (2,2) {};
\node[draw,shape=circle] (five) at (0,1) {};
\node [draw, shape=circle] (six) at (0,2) {};
\node [draw, shape=circle] (seven) at (0,3) {};
\draw (one) -- (two) -- (three) -- (four) -- (one);
\draw (four) -- (six);
\draw (six)
to [out=45, in =315] (seven);
\draw (seven) to [out=225, in=135] (five) -- (two);
\draw (three) -- (seven);
\end{tikzpicture}
Result:
My questions are:
- How to get the squiggly path (dashed/dotted in some cases)?
- Why is my figure upside down?
Best Answer