I would like do change my document. One part of it in two columns, because I want to left in left the text and in the right the picture.
The code is this one.
\begin{enumerate}
\item $ \vec{a} + \vec{b} $
\item $ \vec{a} - \vec{b} $
\item $ \vec{b} - \vec{a} $
\item $ 2\vec{a} $
\end{enumerate}
\noindent\begin{tikzpicture}[> = stealth]
\draw[gray,step=1cm] (0,0) grid +(9cm,6cm);
\draw[ultra thick,red, ->] (1,4) -- node[above] {\Large $\vec{a}$} +(2,1);
\draw[ultra thick,blue,->] (7,5) -- node[below left] {\Large $\vec{b}$} +(0,-3);
%%
% \draw[ultra thick,red, ->] (4,4) -- node[above] {$\vec{a}$} +(1,0);
% \draw[ultra thick,blue,->] (4,4) -- node[below left] {$\vec{b}$} +(1,-2);
% %
\draw[ultra thick,black,|-|] (3,1) -- node[below] {\Large $u$} +(1,0);
\end{tikzpicture}

