Possible Duplicate:
Selective numbering of equations with align
I would like to know, how to number only one specific line among many, in the align environment.
For instance, I don't want to number all the step of my equation, only the final result.
Possible Duplicate:
Selective numbering of equations with align
I would like to know, how to number only one specific line among many, in the align environment.
For instance, I don't want to number all the step of my equation, only the final result.
You can use the \notag command
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
x=5\notag\\
y=2\notag\\
z=1
\end{align}
\end{document}

You can use \notag or \nonumber to get rid of numbers.
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
ax^2+bx+c
& = 0\nonumber\\
ax^2+bx
& = -c\nonumber\\
ax^2+bx
& = -c
\end{align}
\end{document}
align*number the last equation, which is at least a little related. – Torbjørn T. Aug 18 '12 at 23:59