I want all my equations to be in italics and the vectors to be bold as well. When I write the following LaTeX code it gives italic equations:
\begin{equation}
F = kx
\end{equation}
But when I re-write to make the vectors bold, the vectors become bold but don't stay italic anymore:
\begin{equation}
\mathbf{F} = k\mathbf{x}
\end{equation}
How can I keep the whole equation in italics with vectors appearing as bold?

