I am trying to make a table that shows how an element moves from location in the table to another. I would like to add a vector that starts at the first element and goes to the second element.
How do I do this?
I've tried putting the table in a picture but I get the error: Not in outer par mode.
\begin{figure}
\setlength{\unitlength}{1mm}
\begin{picture}(500,400)
\put(20,-10){\vector(1,-1){5}}
\begin{table}
\begin{tabular}[t]{ll}
\textbf{Something here} & \\ \hline
A & F \\
B & A \\
C & G \\
D & H \\
E & I%
\end{tabular}
\end{table}
\end{picture}
\end{figure}
I want a vector pointing from A in left column to A in right column.
And I've tried putting the picture in a cell but the \vector commands don't show up in the PDF.
I have also searched Google but can't find how to do it.
Can anyone help?

\vectoror what package defines this command? Also, does this\vectorstretch in a straight line from one cell to the other? – Werner Mar 07 '12 at 18:30Vector is a part of LaTeX and is not a part of any package that I know of.
– Fred Mar 07 '12 at 18:48