I have two nodes
\node (A) {A};
\node [below=of A] (B) {B};
I can draw a line between them with
\draw (A) -- (B);
But I need two lines between them. If I'm using
\draw (A) -- (B);
\draw (B) -- (A);
it will draw the two lines on top of each other. Can I make some space between them? I have also tried (A.west) -- (B.west) but that's too far to the left. The two lines should be quite close to each other.




\draw [double, double distance between line centers=1.2em] (A) -- (B);– Paul Stiverson Jun 22 '15 at 16:12\draw[thick, black] (A) -- (B); \draw[thin, white] (A) -- (B);. The black line is 'longer' because of anti-aliasing. If you transform your pdf to bitmap using ghostscript (without anti-aliasing), there will be no this very thin line. – Kpym Jun 22 '15 at 18:34