I am attempting to learn Tikz via this MIT tutorial. Early in the tutorial the author provides the following code:
\draw[help lines, thick] (0,0) grid (4,4);
\draw[->,>=diamond,thick] (0,0) -- (1,2);
Question:
The >=diamond part of the second \draw command is causing
! Package pgf Error: Unknown arrow tip kind 'diamond'
Why is this happening?