I have an equation array consisting of around 9 equations, however I wish to number only some of them. How can I do that?
Asked
Active
Viewed 2,471 times
2
1 Answers
2
You can use \notag and/or \nonumber from amsmath (or improvised mathtools package):
\documentclass{article}
\usepackage{mathtools,amssymb}
\begin{document}
\begin{align}
x &= y \\\nonumber
x &= 3 \\
y &= 10 \\ \notag
\therefore\ x &\neq y \\
x &= y \\\nonumber
x &= 3 \\
y &= 10 \\ \notag
\therefore\ x &\neq y \\
? &=?
\end{align}
\end{document}

Moriambar
- 11,466
\nonumberbefore the \. – azetina Oct 17 '12 at 13:54