Possible Duplicate:
Changing the apperance of equation numbers with amsmath
I would like to move an equation number from its default position a little bit left.
(I learned to move an equation a little bit left from this site. But I could not locate any reference to move the equation number a little bit left. I searched this site with "move equation number".)
The following is the code that I am using.
\documentclass[12pt]{report}
\usepackage{graphicx}
\usepackage{amssymb}
\begin{document}
\begin{equation}
\hspace{-9cm}a_1+d_1=47
\end{equation}
\end{document}
Edited Question:
How can I align both equations and the equation numbers in the following code?
\documentclass{article}
\usepackage{amsmath}
\makeatletter
\def\mytagform#1{\maketag@@@{\bfseries(\ignorespaces#1\unskip\@@italiccorr)}\hspace{3cm}}
\def\print@eqnum{\mytagform\theequation}
\makeatother
\begin{document}
\begin{align}
\label{eq:eq1}
\hspace{-6cm}a_1+7d=47
\end{align}
\begin{align}
\label{eq2}
\hspace{-6cm}a_1+20d=112
\end{align}
\end{document}

\hskip{-6cm}in that code. If you want "left aligned" equations, consider thefleqnoption to amsmath. – egreg Sep 25 '11 at 21:45\hspace{-6cm}the equation numbers will be aligned. – Peter Grill Sep 25 '11 at 21:49minipageand one of the subsidiary environments (gathered,aligned, oralignedat) fromamsmath? – Gonzalo Medina Sep 25 '11 at 22:39