I'm trying to put a parallellogram into a coordinate system, so that it starts from the bottom left corner of the trapezoid. However, the problem is that the coordinate axis do not start from that corner, and I don't seem to get the x axis right either.
Does anyone have any ideas of how this can be solved?
\begin{tikzpicture}
\node (a) [shape=trapezium, draw, minimum width=3cm, trapezium right angle=120, trapezium left angle=60] {};
\node (b) [below left] at (a.bottom left corner) {};
\node (d) [below left] at (a.bottom right corner) {};
\node (c) at (b |- 3,2) {B};
\node (e) at (d |- 3,2) {E};
%\draw (b |- ,2) node {B};
\draw[->] (b) -- (c);
\draw[->] (b) -- (3,-1);
%\draw [->] b -- ++ (1,2);
\end{tikzpicture}


