I have the following, picture and I want to make the edges between 1 and 3 and 1 and dotted. Also if I want to put names on the edges in the pictures how do I do that?
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[transform shape]
\foreach \x in {1,...,4}{%
\pgfmathparse{(\x-1)*360/4}
\node[draw,circle,inner sep=0.15cm] (N-\x) at (\pgfmathresult:1.4cm) {\x};
}
\foreach \x [count=\xi from 1] in {1,...,4}{%
\foreach \y in {\x,...,4}{%
\path (N-\x) edge[ultra thin,-] (N-\y);
}
}
\end{tikzpicture}
\end{document}
