I have a question concerning arrows in tikz pgf
I need to create a diagramm that looks like the one shown in the attatched picture. I suppose that this was done in tex to, but I do not know how.
(The diagramm is a representation of the Needham Schroeder Protocol modelled in Strand Spaces,a verification technique for security protocols).
I would like to do it with tikz pgf, but my problem is, that the double arrows do not look like the arrows in the sample. The tip is way to thick
(As far as I understood the explanation i found in the 300 pages manual, this has to do with the way double arrows are drawn: one thick line and than a thin line in the background color. )
Code: Select all
\draw [->,double,shorten <=1pt,>=angle 90,thick](A2) -- (A1);
\node [place] (B2)[below of =B1] {}
edge [double distance=2pt,->,>=angle 90,thick]node {b}(A2);
Sarah