I'm using Modelio but I want to do everything on my paper with LaTeX, so I chose pgf-umlsd to do my sequence diagram. The trouble I have is that I don't know how to create an message to create a instance with this library, can you help me? Check the image below where you can see what I'm talking about.
My first code:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{arrows,shadows}
\usepackage{pgf-umlsd}
\begin{document}
\begin{sequencediagram}
\newinst{act}{Actor}
\newthread{nr}{NetRoute}
\newthread{nr}{NetScan}
\begin{call}{act}{ Buscar una red}{nr}{ redes }
%\begin{call}{act}{ Buscar una red}{nr}{ redes }
\end{call}
\end{sequencediagram}
\end{document}
which yields:




pfg-umlsdhttp://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CCAQFjAA&url=http%3A%2F%2Fpgf-umlsd.googlecode.com%2Fgit-history%2Fbc853ab627d49800cd4d0346acba2740195846a3%2Ftags%2Fpgf-umlsd-0.6%2Fpgf-umlsd-manual.pdf&ei=LhSjU-vMCemp7Aa8_oDwBQ&usg=AFQjCNG8G-0L8GKOuleUjTLyi11TaLfGTg&sig2=NyOna1KgKZu6ivkvXhrWaw&bvm=bv.69411363,d.ZGU&cad=rja. But are you sure that this is the right way to do in a sequence diagram. Normally all the instances stay at the top. – LaRiFaRi Jun 19 '14 at 16:49