I have a following equation 
I need to move it a little bit to the left because it is way to close to the right side and may get clamped while printing.
Those equations are using $$ R=... $$ syntax. How can I move it to the left ?
EDIT
After changing to \[ ... \] syntax:
\begin{description}
\item[Model matrix] \hfill \\
...
\begin{itemize}
\item Rotation matrix - used to rotate vertex (vertices) by a specifed angle $\alpha$ around specified axis, where each from 3 axes has its own rotation matrix
\[
R_x = \begin{bmatrix} 1 & 0 & 0 & 0 \\ 0 & \cos(\alpha) & -\sin(\alpha) & 0 \\ 0 & \sin(\alpha) & \cos(\alpha) & 0 \\ 0 & 0 & 0 & 1 \end{bmatrix},
\newline
R_y = \begin{bmatrix} \cos(\alpha) & 0 & \sin(\alpha) & 0 \\ 0 & 1 & 0 & 0 \\ -\sin(\alpha) & 0 & \cos(\alpha) & 0 \\ 0 & 0 & 0 & 1 \end{bmatrix},
\newline
R_z = \begin{bmatrix} \cos(\alpha) & -\sin(\alpha) & 0 & 0 \\ \sin(\alpha) & \cos(\alpha) & 0 & 0 \\ 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1 \end{bmatrix}
\]
\end{itemize}

$$...$$. See (http://tex.stackexchange.com/questions/503/why-is-preferable-to) – Sep 21 '14 at 23:55$ ... $nothing changed – Patryk Sep 21 '14 at 23:56$$...$$versus\[...\]see why-is-preferable-to. – Sep 21 '14 at 23:59