Any ideas? I haven't had any luck google'ing it...

Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
balf wrote:\renewcommand{\theequation}{\relax}} should work.
B.A.
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\newenvironment{equa}{\equation\nonumber}{\endequation}
\begin{document}
\nonumber
\begin{equa}
a=b
\end{equa}
\begin{align}
a&=b\\
c&=d
\end{align}
\begin{multline}
a=b\\
c=d
\end{multline}
\end{document}
Thanks! Just what I neededbalf wrote:but I have another suggestion: the mathtools package (in the mh bundle) lets customise equation tags with a \newtagform and a \renewtagform commands (you could suppress those damned parentheses) and, simpler, has an option 'showonlyrefs'.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis