I am using PGF/Tikz package in latex to draw figures. In the following segment of code, the arrow heads do not suite the figure. How can I change them to a more appropriate one?
Code: Select all
Code, edit and compile here:
\documentclass[a4paper,12pt,openany,oneside]{memoir}\listfiles\usepackage{tikz}\begin{document}\begin{figure}\begin{center}\begin{tikzpicture}\node (source) at (0,0) [circle,double,draw,label=below:Source] {$S$};\node (relay) at (3,2) [circle,double,draw,label=above:Relay] {$R$};\node (destination) at (6,0) [circle,double,draw,label=below:Destination] {$D$};\draw [double distance=2pt,->] (source.60) to node [auto] {$\mathbf{H}_A$} (relay.west);\draw [double distance=2pt,->] (relay.east) to node [auto] {$\mathbf{H}_B$} (destination.120);\draw [double distance=2pt,->] (source.east) to node [auto,swap] {$\mathbf{H}_C$} (destination.west);\end{tikzpicture}\end{center}\end{figure}\end{document}