My question is the same as this one.
Since the solution there demands a lot of adjustments and computations, I'd like to know if there is some new tool with a more powerful and simpler solution. Maybe some new tikz feature.
Also, one of solutions is not exactly two arrows but a single double arrow.
I'd like to move the arrows to get them parallels.
\documentclass[margin=2mm]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\tikzset{
togo/.style={-to,line width=.4pt},
tocome/.style={to-,line width=.4pt},
}
\node (A) at (0,0) {$A$};
\node (B) at (2,3) {$B$};
\draw[togo] (A) -- (B);
\draw[tocome] (A) -- (B);
\end{tikzpicture}
\end{document}
